/* ============================================================
   NewsSigma marketing site — "constellation floating on black velvet"
   Design system: marketing.md (Dala style reference)
   ============================================================ */

:root {
  /* Colors */
  --color-void: #000000;
  --color-bone-white: #ffffff;
  --color-ash-gray: #9a9a9a;
  --color-silver-mist: #bdbdbd;
  --color-electric-iris: #8052ff;
  --color-saffron-spark: #ffb829;
  --color-deep-verdant: #15846e;

  /* Typography */
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --text-caption: 12px;
  --text-nav-label: 14px;
  --text-body: 18px;
  --text-heading-2xs: 24px;
  --text-heading-xs: 27px;
  --text-subheading: 36px;
  --text-heading-sm: 42px;
  --text-heading: 48px;
  --text-heading-lg: 78px;
  --text-display: 113px;

  /* Spacing (6px base) */
  --spacing-6: 6px;
  --spacing-12: 12px;
  --spacing-18: 18px;
  --spacing-24: 24px;
  --spacing-30: 30px;
  --spacing-36: 36px;
  --spacing-60: 60px;
  --spacing-96: 96px;
  --spacing-120: 120px;

  /* Layout */
  --page-max-width: 1280px;

  /* Radii */
  --radius-cards: 24px;
  --radius-buttons: 24px;
  --radius-full: 9999px;
}

/* ---------- base ---------- */

* { margin: 0; padding: 0; box-sizing: border-box; }

/* native smooth scrolling only when Lenis is NOT driving the scroll —
   the two fight each other and cause desktop stutter */
html:not(.has-gsap) { scroll-behavior: smooth; }

/* Lenis recommended setup */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--color-void);
  color: var(--color-bone-white);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  font-weight: 200;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  /* clip does not create a scroll container (hidden can steal the
     window scroll and break smooth scrolling) */
  overflow-x: hidden;
  overflow-x: clip;
}

a { color: var(--color-bone-white); text-decoration: none; }

::selection { background: var(--color-electric-iris); color: #fff; }

#ambient-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

main, .nav, .footer { position: relative; z-index: 1; }

/* emphasis highlight — amber per style guide */
.em { color: var(--color-saffron-spark); font-weight: 400; }

/* small uppercase label above body copy */
.label {
  color: var(--color-saffron-spark);
  font-size: var(--text-nav-label);
  font-weight: 600;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-18);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-nav-label);
  font-weight: 600;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  padding: 14.4px 22px;
  border-radius: var(--radius-buttons);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-electric-iris);
  color: #fff;
}

.btn--primary:hover { transform: translateY(-2px); opacity: 0.92; }

.btn--ghost {
  color: var(--color-ash-gray);
  padding-left: 0;
  padding-right: 0;
}

.btn--ghost:hover { color: var(--color-bone-white); }

.btn__soon {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-full);
  padding: 2px 8px;
}

.btn--ghost .btn__soon { color: var(--color-ash-gray); border-color: rgba(154, 154, 154, 0.4); }

/* ---------- navigation ---------- */

.nav {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: var(--spacing-24) var(--spacing-36);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-24);
}

.nav__logo { display: inline-flex; align-items: center; gap: var(--spacing-12); }

.nav__mark { width: 26px; height: 26px; }

.nav__wordmark { font-size: 17px; font-weight: 600; letter-spacing: -0.2px; }

.nav__links {
  display: flex;
  gap: var(--spacing-30);
}

.nav__links a {
  color: var(--color-ash-gray);
  font-size: var(--text-nav-label);
  font-weight: 600;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav__links a:hover { color: var(--color-bone-white); }

/* ---------- shared section chrome ---------- */

.section {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: var(--spacing-120) var(--spacing-36);
}

.section__head { max-width: 780px; margin-bottom: var(--spacing-60); }

.section__title {
  font-size: clamp(38px, 5.2vw, var(--text-heading-lg));
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--spacing-24);
}

.section__body {
  font-size: var(--text-body);
  font-weight: 200;
  color: var(--color-silver-mist);
  max-width: 520px;
  margin-bottom: var(--spacing-24);
}

.section__body--muted { color: var(--color-ash-gray); }

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   SECTION 1 · HERO
   ============================================================ */

.hero { position: relative; overflow: hidden; }

.hero__constellation {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: var(--spacing-96) var(--spacing-36) var(--spacing-120);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: var(--spacing-60);
  align-items: center;
  min-height: 82vh;
}

.hero__headline {
  font-size: clamp(44px, 6.6vw, 92px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: var(--spacing-30);
}

.hero__sub {
  font-size: var(--text-body);
  font-weight: 200;
  color: var(--color-silver-mist);
  max-width: 480px;
  margin-bottom: var(--spacing-36);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-24);
  flex-wrap: wrap;
}

/* --- phone mockup --- */

.hero__device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-18);
  perspective: 1400px;
}

.hero__device-hint {
  font-size: var(--text-caption);
  color: var(--color-ash-gray);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.phone {
  width: 290px;
  height: 590px;
  border-radius: 44px;
  background: #050505;
  border: 1px solid #262626;
  box-shadow:
    0 0 0 6px #0c0c0c,
    0 0 90px rgba(128, 82, 255, 0.22),
    0 0 220px rgba(128, 82, 255, 0.10);
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-14deg) rotateX(4deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 22px;
  background: #000;
  border: 1px solid #1e1e1e;
  border-radius: var(--radius-full);
  z-index: 3;
}

.phone__screen {
  position: absolute;
  inset: 8px;
  border-radius: 36px;
  background: linear-gradient(175deg, #0a0a0e 0%, #000 55%);
  overflow: hidden;
  padding: 48px 20px 20px;
}

.phone__statusbar {
  position: absolute;
  top: 14px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-ash-gray);
}

.phone__signal { letter-spacing: 2px; font-size: 6px; line-height: 16px; color: var(--color-ash-gray); }

.phone__view {
  position: absolute;
  inset: 48px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.phone__view.is-active { opacity: 1; transform: none; }

.phone__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-electric-iris);
}

.phone__tag--meme { color: var(--color-saffron-spark); }

.phone__headline {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.phone__scroller {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.phone__scroller p {
  font-size: 13.5px;
  font-weight: 200;
  line-height: 1.65;
  color: var(--color-silver-mist);
  transition: transform 6s linear;
}

.phone.is-scrolling .phone__scroller p { transform: translateY(-52%); }

.phone__levels {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.phone__levels span {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-ash-gray);
  border: 1px solid #242424;
  border-radius: var(--radius-full);
  padding: 4px 10px;
}

.phone__levels span.is-on {
  color: #fff;
  border-color: var(--color-electric-iris);
  background: rgba(128, 82, 255, 0.18);
}

/* meme view */
.phone__meme {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.phone__meme-art {
  border: 1px solid #222;
  border-radius: 18px;
  background: #070707;
  padding: 18px 12px;
}

.phone__meme-art svg { width: 100%; height: auto; display: block; }

.phone__meme-caption {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-bone-white);
}

.phone__meme-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--color-ash-gray);
}

.phone__meme-link { color: var(--color-saffron-spark); }

.phone__meme-stats {
  display: flex;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-silver-mist);
}

.phone__meme-reward { color: var(--color-deep-verdant); }

/* ============================================================
   SECTION 2 · TABS
   ============================================================ */

.tabs__bar {
  display: flex;
  gap: var(--spacing-6);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-60);
}

.tabs__tab {
  font-family: var(--font-sans);
  font-size: var(--text-nav-label);
  font-weight: 600;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  color: var(--color-ash-gray);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-buttons);
  padding: 12px 20px;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.tabs__tab:hover { color: var(--color-bone-white); }

.tabs__tab.is-active {
  color: var(--color-bone-white);
  border-color: var(--color-electric-iris);
}

.tabs__panels { position: relative; }

.tabs__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--spacing-60);
  align-items: center;
  animation: panelIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tabs__panel[hidden] { display: none; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.tabs__heading {
  font-size: clamp(30px, 3.4vw, var(--text-heading-sm));
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: var(--spacing-18);
}

.tabs__body {
  font-size: var(--text-body);
  font-weight: 200;
  color: var(--color-silver-mist);
  max-width: 520px;
}

/* tab visual · reading layers */
.layers { display: flex; flex-direction: column; gap: var(--spacing-12); }

.layers__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-18);
  padding: var(--spacing-18) var(--spacing-24);
  border-radius: var(--radius-cards);
  border: 1px solid #1b1b1b;
  transition: border-color 0.3s ease, transform 0.3s ease;
  animation: panelIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  animation-delay: calc(var(--i) * 90ms);
}

.layers__item:hover { border-color: var(--color-electric-iris); transform: translateX(6px); }

.layers__badge {
  flex: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-electric-iris);
  color: var(--color-electric-iris);
  font-size: 13px;
  font-weight: 600;
}

.layers__item strong { display: block; font-size: 17px; font-weight: 400; }

.layers__item small { font-size: 13px; font-weight: 200; color: var(--color-ash-gray); }

/* tab visual · MCQ */
.mcq { display: flex; flex-direction: column; gap: var(--spacing-18); }

.mcq__q { font-size: 18px; font-weight: 400; line-height: 1.45; }

.mcq__opts { display: flex; flex-direction: column; gap: var(--spacing-6); }

.mcq__opts span {
  font-size: 15px;
  font-weight: 200;
  color: var(--color-silver-mist);
  border: 1px solid #1b1b1b;
  border-radius: var(--radius-cards);
  padding: 12px 18px;
}

.mcq__opts span.is-correct {
  color: #fff;
  border-color: var(--color-deep-verdant);
  background: rgba(21, 132, 110, 0.14);
}

.mcq__mnemonic { font-size: 15px; font-weight: 200; color: var(--color-ash-gray); }

/* tab visual · contextual bridge */
.bridge {
  display: flex;
  align-items: center;
  gap: var(--spacing-18);
  justify-content: center;
}

.bridge__node {
  border: 1px solid #1b1b1b;
  border-radius: var(--radius-cards);
  padding: var(--spacing-24);
  max-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bridge__node small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-saffron-spark);
}

.bridge__node--news small { color: var(--color-electric-iris); }

.bridge__node span { font-size: 16px; font-weight: 400; line-height: 1.3; }

.bridge__wire { display: flex; gap: 8px; }

.bridge__wire i {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-electric-iris);
  animation: wirePulse 1.6s ease-in-out infinite;
}

.bridge__wire i:nth-child(2) { animation-delay: 0.25s; }
.bridge__wire i:nth-child(3) { animation-delay: 0.5s; }

@keyframes wirePulse {
  0%, 100% { opacity: 0.25; transform: scale(0.8); }
  50%      { opacity: 1;    transform: scale(1.15); }
}

/* ============================================================
   SECTION 3 · CREATOR ECONOMY (split)
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--spacing-96);
  align-items: center;
}

.split__copy .btn { margin-top: var(--spacing-12); }

.earnings { max-width: 440px; }

.earnings__label {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-ash-gray);
  margin-bottom: var(--spacing-12);
}

.earnings__amount {
  font-size: clamp(56px, 6vw, var(--text-heading-lg));
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--spacing-36);
}

.earnings__rows { display: flex; flex-direction: column; gap: var(--spacing-18); }

.earnings__row {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-12);
  font-size: 15px;
}

.earnings__row span { font-weight: 200; color: var(--color-silver-mist); white-space: nowrap; }

.earnings__row i {
  flex: 1;
  border-bottom: 1px dotted #2a2a2a;
  transform: translateY(-4px);
}

.earnings__row strong { font-weight: 400; color: var(--color-bone-white); }

/* ============================================================
   SECTION 4 · ENTERPRISE
   ============================================================ */

.enterprise {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--spacing-96);
}

.enterprise__heading {
  font-size: var(--text-heading-2xs);
  font-weight: 400;
  letter-spacing: -0.48px;
  margin: var(--spacing-30) 0 var(--spacing-12);
}

/* chart */
.chart svg { width: 100%; height: auto; display: block; }

.chart__line {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
}

.is-visible .chart__line { animation: drawLine 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

.chart__line--iris  { stroke: var(--color-electric-iris); }
.chart__line--amber { stroke: var(--color-saffron-spark); animation-delay: 0.3s !important; }

@keyframes drawLine { to { stroke-dashoffset: 0; } }

.chart__legend {
  display: flex;
  gap: var(--spacing-24);
  margin-top: var(--spacing-12);
  font-size: 13px;
  font-weight: 200;
  color: var(--color-ash-gray);
}

.chart__legend span { display: inline-flex; align-items: center; gap: 8px; }

.dot { width: 8px; height: 8px; border-radius: var(--radius-full); display: inline-block; }
.dot--iris  { background: var(--color-electric-iris); }
.dot--amber { background: var(--color-saffron-spark); }

/* text filter */
.filter { display: flex; flex-direction: column; gap: var(--spacing-12); }

.filter__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-18);
  border: 1px solid #1b1b1b;
  border-radius: var(--radius-cards);
  padding: 14px 20px;
}

.filter__text { font-size: 14px; font-weight: 200; color: var(--color-silver-mist); }

.filter__text--flagged { color: var(--color-ash-gray); text-decoration: line-through; }

.filter__flag {
  flex: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 4px 10px;
}

.filter__flag--pass  { color: var(--color-deep-verdant); border: 1px solid rgba(21, 132, 110, 0.5); }
.filter__flag--block { color: var(--color-saffron-spark); border: 1px solid rgba(255, 184, 41, 0.4); }

/* ============================================================
   SECTION 5 · FLOWCHART
   ============================================================ */

.flow {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: stretch;
  gap: var(--spacing-12);
}

.flow__step {
  border: 1px solid #1b1b1b;
  border-radius: var(--radius-cards);
  padding: var(--spacing-30) var(--spacing-24);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-12);
  transition: border-color 0.4s ease;
}

.is-visible .flow__step { animation: stepPulse 3.6s ease-in-out infinite; animation-delay: calc(var(--i) * 0.9s); }

@keyframes stepPulse {
  0%, 100% { border-color: #1b1b1b; box-shadow: none; }
  12%      { border-color: var(--color-electric-iris); box-shadow: 0 0 34px rgba(128, 82, 255, 0.18); }
  30%      { border-color: #1b1b1b; box-shadow: none; }
}

.flow__num {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-electric-iris);
}

.flow__step h3 {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.25;
}

.flow__step p { font-size: 14px; font-weight: 200; color: var(--color-ash-gray); }

.flow__link {
  align-self: center;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, #2a2a2a, var(--color-electric-iris), #2a2a2a);
  opacity: 0.5;
}

/* ============================================================
   CLOSING CTA
   ============================================================ */

.closing { text-align: center; }

.closing__title {
  font-size: clamp(44px, 6.4vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--spacing-36);
}

.closing__actions { justify-content: center; }

/* ============================================================
   SECTION 6 · FOOTER
   ============================================================ */

.footer {
  border-top: 1px solid #141414;
  padding: var(--spacing-60) var(--spacing-36) var(--spacing-36);
}

.footer__grid {
  max-width: var(--page-max-width);
  margin: 0 auto var(--spacing-60);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: var(--spacing-36);
}

.footer__tagline {
  margin-top: var(--spacing-18);
  font-size: 15px;
  font-weight: 200;
  color: var(--color-ash-gray);
  max-width: 260px;
}

.footer__label {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-saffron-spark);
  margin-bottom: var(--spacing-12);
}

.footer__col p { font-size: 15px; font-weight: 200; margin-bottom: var(--spacing-6); }

.footer__col a { color: var(--color-silver-mist); transition: color 0.2s ease; }

.footer__col a:hover { color: var(--color-bone-white); }

.footer__muted { color: var(--color-ash-gray); }

.footer__fine {
  max-width: var(--page-max-width);
  margin: 0 auto;
  font-size: var(--text-caption);
  font-weight: 200;
  color: var(--color-ash-gray);
}

/* ============================================================
   PRELOADER
   ============================================================ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--color-void);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader__sigma {
  font-size: clamp(120px, 22vw, 260px);
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(135deg, #8052ff 0%, #15846e 60%, #ffb829 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 60px rgba(128, 82, 255, 0.35));
}

.preloader__count {
  position: absolute;
  bottom: 8vh;
  right: 8vw;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 200;
  letter-spacing: -0.04em;
  color: var(--color-ash-gray);
}

/* ============================================================
   PAGE TRANSITION CURTAIN
   ============================================================ */

.curtain {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-electric-iris);
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  z-index: 98;
  background: linear-gradient(90deg, #8052ff, #ffb829);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */

@media (pointer: fine) {
  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: var(--color-saffron-spark);
    z-index: 97;
    pointer-events: none;
    will-change: transform;
  }

  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border-radius: 50%;
    border: 1.5px solid rgba(128, 82, 255, 0.8);
    z-index: 97;
    pointer-events: none;
    will-change: transform;
    transition: width 0.3s ease, height 0.3s ease, margin 0.3s ease,
                border-color 0.3s ease, background 0.3s ease;
  }

  .cursor-ring.is-hovering {
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
    border-color: rgba(255, 184, 41, 0.9);
    background: rgba(128, 82, 255, 0.12);
  }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================================
   NEWS TICKER
   ============================================================ */

.ticker {
  overflow: hidden;
  padding: var(--spacing-24) 0;
  border-top: 1px solid #121212;
  border-bottom: 1px solid #121212;
  position: relative;
  z-index: 1;
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-36);
  white-space: nowrap;
  will-change: transform;
}

.ticker__item {
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--color-bone-white);
}

.ticker__item--alt { color: var(--color-ash-gray); }

.ticker__sep {
  font-size: 11px;
  color: var(--color-electric-iris);
}

/* ============================================================
   SPLIT TEXT ANIMATION (GSAP hooks)
   ============================================================ */

.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.split-word > span {
  display: inline-block;
  will-change: transform;
}

/* GSAP takes over reveals when available */
html.has-gsap .reveal { opacity: 1; transform: none; transition: none; }

/* ============================================================
   LEGAL / POLICY PAGES
   ============================================================ */

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--spacing-60) var(--spacing-36) var(--spacing-120);
}

.legal__title {
  font-size: clamp(36px, 4.6vw, var(--text-heading));
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: var(--spacing-12);
}

.legal__updated {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-ash-gray);
  margin-bottom: var(--spacing-60);
}

.legal h2 {
  font-size: var(--text-heading-2xs);
  font-weight: 400;
  letter-spacing: -0.48px;
  margin: var(--spacing-60) 0 var(--spacing-18);
}

.legal h2:first-of-type { margin-top: 0; }

.legal p, .legal li {
  font-size: 16px;
  font-weight: 200;
  line-height: 1.7;
  color: var(--color-silver-mist);
  margin-bottom: var(--spacing-18);
}

.legal ul, .legal ol {
  padding-left: var(--spacing-24);
  margin-bottom: var(--spacing-24);
}

.legal li { margin-bottom: var(--spacing-6); }

.legal strong { font-weight: 400; color: var(--color-bone-white); }

.legal a { color: var(--color-saffron-spark); }

.legal a:hover { text-decoration: underline; }

.legal .placeholder { color: var(--color-ash-gray); font-style: italic; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
  .flow { grid-template-columns: 1fr; }
  .flow__link { width: 1px; height: 32px; justify-self: center; background: linear-gradient(180deg, #2a2a2a, var(--color-electric-iris), #2a2a2a); }
}

@media (max-width: 900px) {
  .nav__links { display: none; }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: var(--spacing-60);
  }

  .hero__constellation { width: 100%; opacity: 0.5; }

  .tabs__panel,
  .split,
  .enterprise { grid-template-columns: 1fr; gap: var(--spacing-60); }

  .split__visual { order: 2; }
  .split__copy { order: 1; }

  .footer__grid { grid-template-columns: 1fr; }

  .section { padding: var(--spacing-96) var(--spacing-24); }
}

@media (max-width: 520px) {
  .phone { width: 250px; height: 520px; }
  .bridge { flex-direction: column; }
  .bridge__wire { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
