
/* =====================================================================
   TRADEMASTER AI · LANDING — Neurom DS 1.0 effects (1:1)
   ===================================================================== */

:root{
  /* Brand */
  --brand-500: #0b3bf0;
  --brand-600: #1e5af5;
  --cyan-500: #7afbfc;

  /* Surfaces (from Neurom) */
  --bg-1000: #030614;
  --bg-1: #030614;
  --bg-2: #13172a;
  --bg-3: #181c2a;
  --tag-border: #2e2d48;
  --border-gray: #373b4b;

  /* Text */
  --text-100: #ffffff;
  --text-200: #d6d8e3;
  --text-400: #9b9da7;
  --text-600: #6b6f7e;

  /* Trade semantic */
  --up:   #00ff9d;
  --down: #ff3a64;
  --warn: #f59e0b;

  /* Effects */
  --brand-gradient: linear-gradient(135deg, #0b3bf0 0%, #1e5af5 100%);

  /* Radii (Neurom) */
  --r-tiny: 12px;
  --r-sm: 14px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Container */
  --container-max: 1280px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body{
  margin: 0;
  background: var(--bg-1);
  color: var(--text-100);
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
hr{ border: 0; border-top: 1px solid rgba(255,255,255,0.06); margin: 0; }

/* =====================================================================
   1. CURSOR FOLLOWER GLOW — copied 1:1 from DS
   ===================================================================== */
.ds-cursor-glow{
  pointer-events: none;
  position: fixed;
  top: 0; left: 0;
  width: 480px; height: 480px;
  border-radius: 100%;
  background: radial-gradient(circle, rgba(122,251,252,.10) 0%, rgba(11,59,240,.06) 35%, transparent 70%);
  transform: translate3d(-50%, -50%, 0);
  z-index: 1;
  mix-blend-mode: screen;
  filter: blur(20px);
  opacity: 0;
  transition: opacity .6s ease;
  will-change: transform, opacity;
}
.ds-cursor-glow.is-visible{ opacity: 1; }

/* =====================================================================
   2. REVEAL DEPTH-FADE — 2nd plane → 3rd plane (1:1)
   1.8s cubic-bezier(.16,.84,.30,1), perspective 1400px,
   translate3d Z=-160px, scale .94, filter blur(28px) saturate(.85)
   ===================================================================== */
.ds-reveal{
  opacity: 0;
  transform: perspective(1400px) translate3d(0, 36px, -160px) scale(.94);
  filter: blur(28px) saturate(0.85);
  transition:
    opacity 1.8s cubic-bezier(.16,.84,.30,1),
    transform 1.8s cubic-bezier(.16,.84,.30,1),
    filter 1.8s cubic-bezier(.16,.84,.30,1);
  transform-origin: 50% 70%;
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}
.ds-reveal.is-in{
  opacity: 1;
  transform: perspective(1400px) translate3d(0, 0, 0) scale(1);
  filter: blur(0) saturate(1);
}
.ds-reveal[data-delay="1"]{ transition-delay: .15s; }
.ds-reveal[data-delay="2"]{ transition-delay: .30s; }
.ds-reveal[data-delay="3"]{ transition-delay: .45s; }
.ds-reveal[data-delay="4"]{ transition-delay: .60s; }
.ds-reveal[data-delay="5"]{ transition-delay: .75s; }

/* Stagger children — same depth language, smaller magnitude */
.ds-stagger{ perspective: 1600px; perspective-origin: 50% 40%; }
.ds-stagger > *{
  opacity: 0;
  transform: translate3d(0, 28px, -120px) scale(.96);
  filter: blur(22px) saturate(0.85);
  transition:
    opacity 1.6s cubic-bezier(.16,.84,.30,1),
    transform 1.6s cubic-bezier(.16,.84,.30,1),
    filter 1.6s cubic-bezier(.16,.84,.30,1);
  transform-origin: 50% 60%;
  backface-visibility: hidden;
  will-change: opacity, transform, filter;
}
.ds-stagger.is-in > *{
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0) saturate(1);
}
.ds-stagger.is-in > *:nth-child(1){ transition-delay: .00s; }
.ds-stagger.is-in > *:nth-child(2){ transition-delay: .12s; }
.ds-stagger.is-in > *:nth-child(3){ transition-delay: .24s; }
.ds-stagger.is-in > *:nth-child(4){ transition-delay: .36s; }
.ds-stagger.is-in > *:nth-child(5){ transition-delay: .48s; }
.ds-stagger.is-in > *:nth-child(6){ transition-delay: .60s; }
.ds-stagger.is-in > *:nth-child(7){ transition-delay: .72s; }
.ds-stagger.is-in > *:nth-child(8){ transition-delay: .84s; }
.ds-stagger.is-in > *:nth-child(n+9){ transition-delay: .96s; }

/* =====================================================================
   3. AMBIENT BREATH ORBS — 16s/22s 1:1
   ===================================================================== */
@keyframes ds-breath {
  0%,100% { transform: translate3d(-30%, -20%, 0) scale(1); opacity: .55; }
  50%     { transform: translate3d(-10%,  10%, 0) scale(1.18); opacity: .85; }
}
@keyframes ds-breath2 {
  0%,100% { transform: translate3d(40%, 60%, 0) scale(1); opacity: .35; }
  50%     { transform: translate3d(30%, 30%, 0) scale(1.25); opacity: .65; }
}
.ds-ambient{ position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.ds-ambient::before, .ds-ambient::after{
  content:""; position: absolute; width: 70vw; height: 70vw; border-radius: 100%;
  filter: blur(120px);
}
.ds-ambient::before{
  left: -10%; top: -10%;
  background: radial-gradient(circle, rgba(11,59,240,.65), transparent 60%);
  animation: ds-breath 16s ease-in-out infinite;
}
.ds-ambient::after{
  right: -10%; bottom: -10%;
  background: radial-gradient(circle, rgba(122,251,252,.30), transparent 60%);
  animation: ds-breath2 22s ease-in-out infinite;
}

/* Page wrapper above orbs */
.page{ position: relative; z-index: 1; }

/* =====================================================================
   4. CONTAINER & TYPE
   ===================================================================== */
.container{ width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

.eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--cyan-500);
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(122,251,252,.25);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(122,251,252,.06), rgba(11,59,240,.04));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.eyebrow::before{
  content:""; width: 6px; height: 6px; border-radius: 100%;
  background: var(--cyan-500);
  box-shadow: 0 0 12px var(--cyan-500), 0 0 4px #fff;
  animation: ds-pulse 2.4s ease-in-out infinite;
}
@keyframes ds-pulse{
  0%,100%{ transform: scale(1); opacity: 1; }
  50%{ transform: scale(.7); opacity: .55; }
}

h1,h2,h3,h4{
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  letter-spacing: -1.2px;
  margin: 0 0 .4em;
  color: var(--text-100);
}
h1{ font-size: clamp(40px, 6vw, 76px); line-height: 1.04; letter-spacing: -2.4px; font-weight: 600; }
h2{ font-size: clamp(32px, 4.4vw, 54px); line-height: 1.10; letter-spacing: -1.4px; }
h3{ font-size: clamp(20px, 2vw, 26px); line-height: 1.2; letter-spacing: -.6px; font-weight: 600; }

p{ color: var(--text-200); font-size: 17px; line-height: 1.6; margin: 0 0 1em; }
.lead{ font-size: clamp(17px, 1.6vw, 21px); color: var(--text-200); max-width: 720px; }

.gradient-text{
  background: linear-gradient(135deg, #ffffff 0%, #7afbfc 60%, #1e5af5 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Section title underline (Neurom 1:1) */
.section-title-line{
  position: relative;
  display: inline-block;
}
.section-title-line::after{
  content:"";
  position: absolute;
  left: 0; bottom: -10px;
  width: 64px; height: 2px;
  background: linear-gradient(90deg, var(--brand-500), var(--cyan-500), transparent);
  border-radius: 2px;
}

/* =====================================================================
   5. BUTTONS (with magnetic + ripple)
   ===================================================================== */
.btn{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter Tight'; font-weight: 600; font-size: 15px;
  letter-spacing: -0.01em;
  padding: 14px 22px;
  border-radius: 999px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .55s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn--primary{
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 0 24px rgba(11,59,240,0.4), 0 0 64px rgba(11,59,240,0.18);
}
.btn--primary::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .9s cubic-bezier(.22,.61,.36,1);
  z-index: -1;
}
.btn--primary:hover::before{ transform: translateX(130%); }
.btn--primary:hover{ box-shadow: 0 0 32px rgba(11,59,240,0.55), 0 0 72px rgba(11,59,240,0.3); }
.btn--secondary{
  background: rgba(255,255,255,0.04);
  color: var(--text-100);
  border: 1px solid rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.btn--secondary:hover{ background: rgba(255,255,255,0.08); border-color: rgba(122,251,252,0.4); }
.btn--lg{ padding: 18px 28px; font-size: 16px; }

.ds-ripple{
  position: absolute;
  border-radius: 100%;
  background: radial-gradient(circle, rgba(255,255,255,.45), rgba(255,255,255,0) 65%);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ds-ripple .8s cubic-bezier(.22,.61,.36,1) forwards;
  z-index: 3;
  mix-blend-mode: screen;
}
@keyframes ds-ripple{
  to { transform: translate(-50%, -50%) scale(8); opacity: 0; }
}

/* =====================================================================
   5b. HERO STAGE — centered MacBook (1:1 from DS showcase)
   ===================================================================== */
.hero-stage{
  position: relative;
  min-height: 100vh;
  padding: 120px 0 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(60% 50% at 50% 35%, rgba(11,59,240,.32), transparent 70%),
    radial-gradient(50% 40% at 50% 90%, rgba(122,251,252,.18), transparent 70%),
    radial-gradient(80% 60% at 50% 50%, rgba(20,30,80,.30), transparent 70%),
    #04060f;
  perspective: 2400px;
  perspective-origin: 50% 55%;
}
/* Concrete-floor grid (1:1 from DS ss-stage::before) */
.hero-stage::before{
  content:"";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(122,251,252,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,251,252,.05) 1px, transparent 1px);
  background-size: 90px 90px;
  background-position: -1px -1px;
  mask-image: radial-gradient(60% 80% at 50% 95%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(60% 80% at 50% 95%, #000 0%, transparent 75%);
  transform: perspective(800px) rotateX(62deg) translateY(40%) scale(1.6);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
/* Bloom halo behind laptop (1:1 from DS ss-stage::after) */
.hero-stage::after{
  content:"";
  position: absolute;
  left: 50%; top: 60%;
  width: 1100px; height: 700px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(45% 40% at 50% 50%, rgba(122,251,252,.18), transparent 70%),
    radial-gradient(60% 50% at 50% 60%, rgba(11,59,240,.30), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  opacity: .8;
  z-index: 0;
}

.hero-stage > .container{ position: relative; z-index: 2; width: 100%; }

/* Headline above the stage */
.hero-headline{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
  padding: 0 16px;
  position: relative;
  z-index: 3;
}
.hero-headline .eyebrow{ margin-bottom: 18px; }
.hero-headline h1{
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -2.4px;
  font-weight: 600;
  margin: 0 0 18px;
}
.hero-headline p{
  color: var(--text-200);
  font-size: clamp(16px, 1.5vw, 19px);
  margin: 0 auto 28px;
  max-width: 660px;
}
.hero-ctas{ display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-trust{
  display: flex; gap: 10px; justify-content: center; align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
  font-size: 12px; color: var(--text-400);
}
.hero-trust .badge{
  display: inline-flex; gap: 8px; align-items: center;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-trust .badge .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--up); box-shadow: 0 0 6px var(--up); }

/* MacBook scene — pre-rendered SVG asset from DS w/ mouse-tilt + hover-glow */
.hero-deck{
  position: relative;
  width: min(1280px, 96vw);
  margin: 0 auto;
  display: grid;
  place-items: center;
  perspective: 1500px;
}
.hero-image{
  position: relative;
  width: 100%;
  border-radius: var(--r-lg);
  /* Initial tilt — same as DS hero on load */
  transform: translate3d(0,0,0) rotateX(4deg) rotateY(-4deg);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  filter: drop-shadow(0 38px 50px rgba(0,0,0,.55))
          drop-shadow(0 8px 22px rgba(11,59,240,.18));
}
.hero-header-image-wrapper{
  position: relative;
  z-index: 1;
  border-radius: var(--r-lg);
  width: 100%;
}
.header-image-block{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.hero-header-image{
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
/* Cursor-following soft halo on the laptop screen (1:1 from DS) */
.hover-glow{
  pointer-events: none;
  width: 100%;
  max-width: 200px;
  height: 200px;
  position: absolute;
  top: 0; left: 0;
}
.glow-inner{
  border-radius: 100%;
  background-color: #ffffff59;
  opacity: .14;
  filter: blur(100px);
  width: 100%;
  max-width: 200px;
  height: 200px;
  will-change: transform;
  transition: transform .25s cubic-bezier(.22,.61,.36,1);
}

.hero-footnote{
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: var(--text-400);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  z-index: 4;
  pointer-events: none;
}
.hero-footnote::before, .hero-footnote::after{
  content:""; width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
}

/* =====================================================================
   6. HEADER (sticky w/ elevation)
   ===================================================================== */
.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  background: rgba(3,6,20,.55);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  backdrop-filter: blur(8px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background-color .5s ease, backdrop-filter .5s ease, border-color .5s ease, box-shadow .5s ease;
}
.header.is-elevated{
  background-color: rgba(3,6,20,.85);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  border-bottom-color: var(--tag-border);
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
}
.header-inner{
  max-width: var(--container-max); margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
}
.logo{
  display: inline-flex; align-items: center;
  color: #fff;
  transition: filter .25s ease, transform .25s ease;
}
.logo img{
  height: 28px;
  width: auto;
  display: block;
  /* SVG already has correct colours: text + icon background = white, bull = black.
     Just add a soft cyan glow for the dark page background. */
  filter: drop-shadow(0 0 12px rgba(122,251,252,.15));
  transition: filter .25s ease;
}
.logo:hover img{ filter: drop-shadow(0 0 18px rgba(122,251,252,.35)); }
.footer .logo img{ height: 26px; }
@media (max-width: 540px){
  .logo img{ height: 24px; }
}
.nav{ display: flex; gap: 6px; flex-wrap: wrap; }
.nav a{
  position: relative;
  color: var(--text-400);
  font-size: 14px; font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    color .35s cubic-bezier(.22,.61,.36,1),
    background-color .35s cubic-bezier(.22,.61,.36,1),
    border-color .35s cubic-bezier(.22,.61,.36,1),
    transform .35s cubic-bezier(.22,.61,.36,1);
  overflow: hidden;
  isolation: isolate;
}
.nav a::before{
  content:"";
  position: absolute; inset: 0;
  background: radial-gradient(120px 60px at var(--mx,50%) var(--my,50%), rgba(122,251,252,.22), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -1;
}
.nav a:hover{
  color: #fff;
  background-color: #ffffff0a;
  border-color: var(--tag-border);
  transform: translateY(-1px);
}
.nav a:hover::before{ opacity: 1; }
.nav a.is-active{
  color: #fff;
  background-color: #ffffff14;
  border-color: var(--tag-border);
}
.header-cta{ display: flex; align-items: center; gap: 12px; }
@media (max-width: 880px){ .nav{ display: none; } }

/* =====================================================================
   7. HERO 1 — w/ floating 3D fx + mouse parallax tilt
   ===================================================================== */
.hero1{
  padding: 144px 0 80px;
  position: relative;
  overflow: hidden;
  perspective: 1800px;
  perspective-origin: 50% 30%;
}

/* Floating 3D fx layer (behind hero content) — 1:1 from DS */
.hero-3d-fx{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  perspective: 1400px;
  perspective-origin: 50% 40%;
  transform-style: preserve-3d;
  overflow: hidden;
}
.h3d-item{
  position: absolute;
  left: var(--x, 50%);
  top:  var(--y, 50%);
  width: var(--w, 160px);
  --mx: 0; --my: 0;
  --rot: 0deg;
  transform: translate3d(-50%, -50%, 0)
             translate3d(calc(var(--mx) * 1px), calc(var(--my) * 1px), 0)
             rotate(var(--rot));
  transition: transform 1.4s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.h3d-inner{
  position: relative;
  width: 100%;
  animation: h3d-drift var(--dur, 12s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
  transform-origin: 50% 50%;
  filter: blur(var(--blur, 0px));
  opacity: var(--op, 1);
}
@keyframes h3d-drift{
  0%   { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%  { transform: translate3d(var(--dx, 8px), calc(var(--dy, 14px) * -1), 0) rotate(var(--rotw, 1.5deg)); }
  100% { transform: translate3d(calc(var(--dx, 8px) * -.6), var(--dy, 14px), 0) rotate(calc(var(--rotw, 1.5deg) * -1)); }
}

/* Mountain-style chart silhouettes */
.h3d-mountain{ width: var(--w, 700px); pointer-events: none; }
.h3d-mountain svg{
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 0 18px rgba(122,251,252,.18))
          drop-shadow(0 0 6px rgba(11,59,240,.18));
}

/* Win / loss balloons */
.h3d-balloon{ display: flex; }
.h3d-balloon-card{
  position: relative;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0,255,157,.18), rgba(11,59,240,.10));
  border: 1px solid rgba(0,255,157,.30);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  backdrop-filter: blur(10px) saturate(160%);
  box-shadow:
    0 14px 28px -10px rgba(0,255,157,.20),
    0 0 0 1px rgba(255,255,255,.04) inset,
    inset 0 1px 0 rgba(255,255,255,.20);
  color: #fff;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 11px; font-weight: 600;
  white-space: nowrap;
}
.h3d-balloon-card.dn{
  background: linear-gradient(135deg, rgba(255,58,100,.18), rgba(11,59,240,.08));
  border-color: rgba(255,58,100,.30);
  box-shadow:
    0 14px 28px -10px rgba(255,58,100,.20),
    0 0 0 1px rgba(255,255,255,.04) inset,
    inset 0 1px 0 rgba(255,255,255,.18);
}
.h3d-balloon-arr{
  width: 18px; height: 18px; border-radius: 100%;
  background: radial-gradient(circle at 30% 30%, #7afbfc, #00b07b);
  display: grid; place-items: center;
  color: #03060f; font-weight: 800; font-size: 11px;
  box-shadow: 0 0 12px rgba(0,255,157,.55);
}
.h3d-balloon-card.dn .h3d-balloon-arr{
  background: radial-gradient(circle at 30% 30%, #ff9bb0, #d4264f);
  color: #fff;
  box-shadow: 0 0 12px rgba(255,58,100,.55);
}
.h3d-balloon-tk{ color: rgba(255,255,255,.65); font-weight: 600; letter-spacing: .04em; font-size: 10px; }
.h3d-balloon-pnl{ color: #d4ffe9; font-weight: 700; }
.h3d-balloon-card.dn .h3d-balloon-pnl{ color: #ffd6df; }
.h3d-balloon-card::after{
  content:"";
  position: absolute; right: 6px; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 100%;
  background: #00ff9d;
  box-shadow: 0 0 6px #00ff9d;
  animation: h3d-pulse 1.6s ease-in-out infinite;
}
.h3d-balloon-card.dn::after{ background: #ff3a64; box-shadow: 0 0 6px #ff3a64; }
@keyframes h3d-pulse{
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}

/* Hero grid */
.hero1-grid{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px){
  .hero1-grid{ grid-template-columns: 1fr; gap: 32px; }
}
.hero1-text{ position: relative; z-index: 2; }
.hero1 h1{ margin-top: 18px; }
.hero1 .lead{ margin-top: 18px; }
.hero1-ctas{ display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero1-trust{
  display: flex; gap: 12px; align-items: center;
  margin-top: 28px;
  font-size: 12px; color: var(--text-400);
  flex-wrap: wrap;
}
.hero1-trust .badge{
  display: inline-flex; gap: 8px; align-items: center;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.hero1-trust .badge .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--up); box-shadow: 0 0 6px var(--up); }

/* Mockup with mouse-tilt 3D */
.hero1-mockup{
  position: relative;
  aspect-ratio: 16/11;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(180deg, #0e1226, #050816);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.hero1-mockup::before{
  content: "";
  position: absolute; inset: -40%;
  background: radial-gradient(circle, rgba(122,251,252,0.18) 0%, transparent 70%);
  opacity: .55;
  z-index: 0;
}
.mockup-os{
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex; flex-direction: column;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
}
.mockup-bar{
  display: flex; gap: 6px; align-items: center;
  padding: 10px 14px;
  background: rgba(13,17,32,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mockup-bar .dot{ width: 11px; height: 11px; border-radius: 50%; }
.mockup-bar .dot.r{ background: #ff5f57; }
.mockup-bar .dot.y{ background: #ffbd2e; }
.mockup-bar .dot.g{ background: #27c93f; }
.mockup-bar .title{ font-size: 11px; color: var(--text-400); margin-left: 12px; }
.mockup-body{
  flex: 1;
  display: grid;
  grid-template-columns: 220px 1fr;
  background: linear-gradient(180deg, #0a0e17 0%, #050816 100%);
}
.mockup-side{
  padding: 14px;
  border-right: 1px solid rgba(255,255,255,0.04);
  display: flex; flex-direction: column; gap: 8px;
}
.mockup-side .item{
  display: flex; gap: 8px; align-items: center;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12px; color: var(--text-200);
  font-family: 'Inter Tight';
}
.mockup-side .item.on{ background: rgba(11,59,240,0.14); color: #fff; box-shadow: inset 0 0 0 1px rgba(11,59,240,0.3); }
.mockup-side .item .ic{ width: 14px; height: 14px; border-radius: 4px; background: rgba(122,251,252,.16); }
.mockup-main{
  padding: 14px;
  display: grid; gap: 10px;
  grid-template-rows: 32px 1fr 80px;
}
.mockup-tabs{ display: flex; gap: 8px; }
.mockup-tabs .tab{ padding: 6px 12px; font-size: 11px; border-radius: 8px; background: rgba(255,255,255,0.03); color: var(--text-400); font-family: 'Inter Tight'; font-weight: 500; }
.mockup-tabs .tab.on{ background: rgba(122,251,252,0.1); color: var(--cyan-500); }
.mockup-chart{
  position: relative;
  border-radius: 10px;
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,0.03) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(255,255,255,0.03) 79px 80px),
    linear-gradient(180deg, rgba(11,59,240,0.06), transparent);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}
.mockup-chart svg{ position: absolute; inset: 0; width: 100%; height: 100%; }
.mockup-stats{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.mockup-stat{
  padding: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
}
.mockup-stat .l{ font-size: 9px; color: var(--text-400); text-transform: uppercase; letter-spacing: .14em; font-family: 'Inter Tight'; }
.mockup-stat .v{ font-size: 16px; font-weight: 600; color: #fff; margin-top: 4px; font-family: 'Inter Tight'; letter-spacing: -.4px; }
.mockup-stat .v.up{ color: var(--up); }
.mockup-stat .v.down{ color: var(--down); }

/* =====================================================================
   8. LOGOS STRIP
   ===================================================================== */
.logos-strip{
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.012);
  position: relative; z-index: 2;
}
.logos-strip .head{
  text-align: center;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-400);
  margin-bottom: 24px;
}
.logos-strip .row{
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 28px 56px; align-items: center;
}
.brand-chip{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  font-weight: 500; font-size: 14px;
  color: var(--text-200);
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.brand-chip:hover{ border-color: rgba(122,251,252,.3); transform: translateY(-2px); background: rgba(122,251,252,.04); }
.brand-chip .ic{
  width: 18px; height: 18px; border-radius: 6px;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}

/* =====================================================================
   9. SECTIONS
   ===================================================================== */
.section{ padding: 120px 0; position: relative; perspective: 1800px; perspective-origin: 50% 30%; }
.section--tight{ padding: 80px 0; }
.section + .section{ border-top: 1px solid #ffffff0d; }
.section-head{
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head .eyebrow{ margin-bottom: 18px; }
.section-head p{ color: var(--text-400); }

/* =====================================================================
   10. HERO 2 — CANVAS FRAME-BY-FRAME SCROLL + STATIC FINALE
   ===================================================================== */
.hero2-stage{
  position: relative;
  height: 700vh;
}
.hero2-sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 50% 35%, rgba(11,59,240,.32), transparent 70%),
    radial-gradient(50% 40% at 50% 90%, rgba(122,251,252,.18), transparent 70%),
    radial-gradient(80% 60% at 50% 50%, rgba(20,30,80,.30), transparent 70%),
    #04060f;
}
/* Desktop: canvas fullscreen, cover behaviour (original) */
.hero2-frame{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}
.hero2-frame::before{ display: none; }
#hero2-canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Desktop: stronger top + bottom gradient overlay so text stays readable
   over any frame of the animation, without sitting "on top" of subjects. */
.hero2-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(3,6,20,.92) 0%, rgba(3,6,20,.7) 18%, transparent 32%, transparent 65%, rgba(3,6,20,.6) 85%, rgba(3,6,20,.92) 100%);
}

/* Desktop: headline absolute at top, INSIDE the safe gradient zone */
.hero2-headline{
  position: absolute;
  top: 64px;
  left: 0; right: 0;
  text-align: center;
  z-index: 3;
  padding: 0 24px;
  pointer-events: none;
}
.hero2-headline .eyebrow{ pointer-events: auto; }
.hero2-headline h2{
  margin-top: 14px;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -1.4px;
  text-shadow: 0 4px 24px rgba(0,0,0,.65);
}
.hero2-headline p{
  font-size: 15px;
  color: var(--text-200);
  max-width: 540px;
  margin: 10px auto 0;
  text-shadow: 0 2px 12px rgba(0,0,0,.65);
}

/* Caption pill — absolute at bottom (inside the bottom safe zone) */
.hero2-captions{
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 32px));
  z-index: 4;
  text-align: center;
  height: 28px;
  pointer-events: none;
}
.hero2-captions .cap{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  filter: blur(6px);
  transition:
    opacity .8s cubic-bezier(.16,.84,.30,1),
    transform .8s cubic-bezier(.16,.84,.30,1),
    filter .8s cubic-bezier(.16,.84,.30,1);
}
.hero2-captions .cap.is-active{
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: blur(0);
}
.hero2-captions .cap-text{
  font-family: 'Inter Tight';
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--text-200);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(3,6,20,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.hero2-captions .cap-text::before{
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 8px var(--cyan-500);
  flex-shrink: 0;
}
@media (max-width: 768px){
  .hero2-captions{ top: calc(72px + 110px); width: calc(100% - 32px); }
  .hero2-headline{ top: 72px; }
}

.hero2-progress{
  position: absolute;
  right: 32px; top: 50%; transform: translateY(-50%);
  z-index: 5;
  display: flex; flex-direction: column; gap: 10px;
}
.hero2-progress .seg{
  width: 3px; height: 36px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  transition: background .3s ease, height .3s ease, box-shadow .3s ease;
}
.hero2-progress .seg.is-active{
  background: linear-gradient(180deg, var(--cyan-500), var(--brand-500));
  box-shadow: 0 0 12px var(--cyan-500);
  height: 56px;
}
.hero2-loading{
  position: absolute;
  bottom: 24px; right: 32px;
  z-index: 5;
  font-family: 'JetBrains Mono';
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--text-400);
  text-transform: uppercase;
}
@media (max-width: 768px){
  .hero2-progress{ right: 16px; }
  .hero2-progress .seg{ width: 2px; height: 24px; }
  .hero2-progress .seg.is-active{ height: 36px; }
}

/* =====================================================================
   11. PROBLEMA × SOLUÇÃO grid w/ mouse spotlight
   ===================================================================== */
.contrast-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-xl);
  overflow: hidden;
}
@media (max-width: 880px){ .contrast-grid{ grid-template-columns: 1fr; } }
.contrast-side{
  padding: 32px;
  background: var(--bg-1);
}
.contrast-side h3.cs-title{
  font-size: 14px; text-transform: uppercase; letter-spacing: .14em;
  color: var(--text-400); margin-bottom: 24px; font-weight: 500;
}
.contrast-side.bad{ background: linear-gradient(180deg, rgba(255,58,100,0.04), var(--bg-1)); }
.contrast-side.good{ background: linear-gradient(180deg, rgba(0,255,157,0.04), var(--bg-1)); }
.contrast-side.good h3.cs-title{ color: var(--cyan-500); }

.problem-list, .solution-list{ display: flex; flex-direction: column; gap: 16px; }
.pcard{
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.04);
  align-items: flex-start;
  isolation: isolate;
  overflow: hidden;
  transition: border-color .55s ease, box-shadow .55s ease, transform .55s cubic-bezier(.22,.61,.36,1);
}
.pcard::before{
  content:"";
  position: absolute; inset: 0;
  background: radial-gradient(360px 200px at var(--mx,50%) var(--my,50%), rgba(122,251,252,.10), transparent 65%);
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
  z-index: -1;
}
.pcard:hover{
  border-color: rgba(122,251,252,.25);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.pcard:hover::before{ opacity: 1; }
.pcard .ic-wrap{
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
}
.contrast-side.bad .pcard .ic-wrap{ background: rgba(255,58,100,0.12); color: var(--down); }
.contrast-side.good .pcard .ic-wrap{ background: rgba(0,255,157,0.1); color: var(--up); }
.pcard h4{ font-size: 17px; margin: 0 0 4px; font-weight: 600; letter-spacing: -.4px; }
.pcard p{ font-size: 14px; color: var(--text-400); margin: 0; line-height: 1.5; }

/* =====================================================================
   12. FEATURES — alternating cards w/ mouse spotlight
   ===================================================================== */
.feat-card{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
}
.feat-card.flip{ grid-template-areas: "img text"; }
.feat-card.flip .feat-text{ grid-area: text; }
.feat-card.flip .feat-vis{ grid-area: img; }
@media (max-width: 980px){
  .feat-card{ grid-template-columns: 1fr; gap: 32px; padding: 32px 0; }
  .feat-card.flip{ grid-template-areas: "text" "img"; }
}

.feat-text h2{ margin-top: 18px; }
.feat-text p{ margin-top: 14px; }
.feat-bullets{
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 12px;
}
.feat-bullets li{
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--text-200);
}
.feat-bullets li .check{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,255,157,0.12);
  color: var(--up);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Feature visual — block with mouse spotlight */
.feat-vis{
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at var(--mx,30%) var(--my,0%), rgba(11,59,240,.18), transparent 55%),
    linear-gradient(180deg, #0e1226, #050816);
  border: 1px solid var(--tag-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
  aspect-ratio: 4/3;
  isolation: isolate;
  transition: border-color .55s ease, box-shadow .55s ease, transform .55s cubic-bezier(.22,.61,.36,1);
}
.feat-vis::before{
  content:"";
  position: absolute; inset: 0;
  background: radial-gradient(360px 200px at var(--mx,50%) var(--my,50%), rgba(122,251,252,.12), transparent 65%);
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
  z-index: -1;
}
.feat-vis:hover{ border-color: rgba(122,251,252,.25); box-shadow: 0 32px 80px rgba(0,0,0,.5); }
.feat-vis:hover::before{ opacity: 1; }
.feat-vis::after{
  content: "";
  position: absolute; inset: -30%;
  background: radial-gradient(circle, rgba(122,251,252,0.15) 0%, transparent 70%);
  opacity: .35;
  z-index: 0;
  pointer-events: none;
}
.feat-vis .ui{
  position: relative; z-index: 1;
  height: 100%;
  padding: 24px;
  display: flex; flex-direction: column;
  font-family: 'JetBrains Mono';
  font-size: 11px;
}

/* Brokers grid */
.brokers-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: auto; }
.broker-item{
  display: flex; gap: 12px; align-items: center;
  padding: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-md);
}
.broker-item .b-ic{
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--brand-gradient);
  display: grid; place-items: center;
  font-weight: 700; font-size: 13px; color: #fff;
}
.broker-item .b-name{ font-family: 'Inter Tight'; font-size: 14px; font-weight: 600; color: #fff; letter-spacing: -.2px; }
.broker-item .b-sub{ font-family: 'Inter Tight'; font-size: 11px; color: var(--text-400); }
.broker-item .b-status{
  margin-left: auto;
  display: flex; align-items: center; gap: 6px;
  font-family: 'Inter Tight'; font-size: 11px; color: var(--up);
}
.broker-item .b-status .live-dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--up); box-shadow: 0 0 6px var(--up);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{ opacity: 1; } 50%{ opacity: .35; } }

/* MCP conversation */
.mcp-conv{ display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.mcp-msg{
  padding: 12px 14px;
  border-radius: var(--r-md);
  max-width: 88%;
  font-family: 'Inter Tight';
  font-size: 13px;
  line-height: 1.5;
}
.mcp-msg.user{
  background: rgba(122,251,252,0.08);
  border: 1px solid rgba(122,251,252,0.2);
  align-self: flex-end;
  color: var(--cyan-500);
}
.mcp-msg.ai{
  background: rgba(11,59,240,0.1);
  border: 1px solid rgba(11,59,240,0.25);
  align-self: flex-start;
  color: #d6e0ff;
}
.mcp-signal{
  margin-top: 10px;
  padding: 14px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(11,59,240,0.18), rgba(122,251,252,0.06));
  border: 1px solid rgba(122,251,252,0.3);
  font-family: 'Inter Tight'; font-size: 12px;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 10px;
}
.mcp-signal .lbl{ font-size: 9px; text-transform: uppercase; color: var(--text-400); letter-spacing: .14em; }
.mcp-signal .val{ font-size: 14px; color: #fff; font-weight: 600; letter-spacing: -.4px; }
.mcp-signal .val.up{ color: var(--up); }

/* Monitor mock */
.monitors-vis{
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.monitor{
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0a0e17, #131932);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}
.monitor::after{
  content: ""; position: absolute; inset: 6px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.04);
}
.monitor.tint-1::before{ content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 100%, rgba(247,147,26,0.3), transparent 60%); }
.monitor.tint-2::before{ content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 100%, rgba(0,255,157,0.25), transparent 60%); }
.monitor.tint-3::before{ content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 100%, rgba(245,158,11,0.25), transparent 60%); }

/* =====================================================================
   13. TIMELINE
   ===================================================================== */
.timeline{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before{
  content: "";
  position: absolute;
  top: 30px;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,251,252,.4), rgba(11,59,240,.4), transparent);
}
@media (max-width: 880px){
  .timeline{ grid-template-columns: 1fr; gap: 32px; }
  .timeline::before{ display: none; }
}
.tstep{ text-align: left; position: relative; }
.tstep .num{
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--bg-1);
  border: 1px solid rgba(11,59,240,0.4);
  box-shadow: 0 0 24px rgba(11,59,240,0.25);
  display: grid; place-items: center;
  font-family: 'Inter Tight'; font-weight: 700; font-size: 22px;
  color: var(--cyan-500);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  letter-spacing: -.4px;
}
.tstep h3{ margin-bottom: 10px; }
.tstep p{ font-size: 14px; color: var(--text-400); }

/* =====================================================================
   14. EARLY ACCESS
   ===================================================================== */
.early{
  background: linear-gradient(135deg, rgba(11,59,240,0.1) 0%, rgba(122,251,252,0.04) 100%);
  border: 1px solid rgba(122,251,252,0.18);
  border-radius: var(--r-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
@media (max-width: 880px){ .early{ grid-template-columns: 1fr; padding: 32px; } }
.early h2{ font-size: clamp(22px, 2.6vw, 32px); }
.early p{ font-size: 15px; color: var(--text-400); margin-bottom: 18px; }
.early-progress{
  width: 100%; height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 999px; overflow: hidden;
  margin-top: 6px;
}
.early-progress span{
  display: block; height: 100%;
  width: 76.5%;
  background: linear-gradient(90deg, var(--brand-500), var(--cyan-500));
  box-shadow: 0 0 12px var(--cyan-500);
}
.early-meta{
  display: flex; gap: 14px; margin-top: 12px;
  font-family: 'JetBrains Mono'; font-size: 12px; color: var(--text-400);
}
.early-meta b{ color: var(--cyan-500); font-weight: 600; }

/* =====================================================================
   15. COMPARATIVO
   ===================================================================== */
.compare-wrap{
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.compare-table{ width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table thead th{
  font-weight: 600; padding: 18px 16px;
  text-align: left;
  font-size: 13px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--text-400);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: 'Inter Tight';
}
.compare-table thead th.tm{ color: var(--cyan-500); }
.compare-table tbody td{
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}
.compare-table tbody tr.tm-row{ background: rgba(122,251,252,0.025); }
.compare-table tbody tr.tm-row:hover{ background: rgba(122,251,252,0.05); }
.compare-table tbody tr:hover{ background: rgba(255,255,255,0.02); }
.compare-table thead th.tm{
  background: linear-gradient(180deg, rgba(122,251,252,.08), transparent);
  border-bottom: 2px solid rgba(122,251,252,.4);
}
.compare-table .cat-row td{
  background: rgba(255,255,255,.01);
  font-family: 'JetBrains Mono';
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan-500);
  font-weight: 600;
  padding-top: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(122,251,252,.15);
}
.compare-table .feat-name{ color: var(--text-200); font-weight: 500; }
.compare-table .ic-yes{ color: var(--up); }
.compare-table .ic-no{ color: var(--down); }
.compare-table .ic-warn{ color: var(--warn); }
@media (max-width: 880px){
  .compare-table thead{ display: none; }
  .compare-table tbody tr{
    display: block; padding: 16px;
    background: rgba(255,255,255,0.025);
    border-radius: var(--r-md); margin-bottom: 12px;
    border-bottom: 0;
  }
  .compare-table tbody td{ display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 0; }
  .compare-table tbody td::before{ content: attr(data-label); font-size: 12px; color: var(--text-400); text-transform: uppercase; letter-spacing: .1em; }
  .compare-table tbody td.feat-name::before{ content: ""; }
  .compare-table tbody td.feat-name{ font-weight: 600; color: #fff; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 8px; }
}

/* =====================================================================
   16. PRICING
   ===================================================================== */
.toggle-wrap{ display: flex; justify-content: center; }
.pricing-toggle{
  display: inline-flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 48px;
}
.pricing-toggle button{
  padding: 8px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: var(--text-400);
  transition: all .25s;
}
.pricing-toggle button.on{
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 0 24px rgba(11,59,240,0.4);
}
.pricing-toggle .badge-save{
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: rgba(0,255,157,0.15);
  color: var(--up);
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
}

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px){ .pricing-grid{ grid-template-columns: 1fr; } }

.plan{
  position: relative;
  background:
    radial-gradient(circle at var(--mx,30%) var(--my,0%), rgba(11,59,240,.10), transparent 55%),
    linear-gradient(180deg, rgba(11,59,240,0.04) 0%, rgba(3,6,20,0.6) 100%);
  border: 1px solid var(--tag-border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
  isolation: isolate;
  overflow: hidden;
  transition: transform .55s cubic-bezier(.22,.61,.36,1), border-color .55s ease, box-shadow .55s ease;
}
.plan::before{
  content:"";
  position: absolute; inset: 0;
  background: radial-gradient(360px 200px at var(--mx,50%) var(--my,50%), rgba(122,251,252,.10), transparent 65%);
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
  z-index: -1;
}
.plan:hover{ transform: translateY(-6px); border-color: rgba(122,251,252,.25); box-shadow: 0 32px 80px rgba(0,0,0,.5); }
.plan:hover::before{ opacity: 1; }
.plan.featured{
  border-color: rgba(122,251,252,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04), 0 0 32px rgba(122,251,252,0.2);
}
.plan.featured::after{
  content: "MAIS ESCOLHIDO";
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(11,59,240,0.5);
}
.plan-name{
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--cyan-500);
  font-weight: 600;
}
.plan-tag{
  font-size: 14px; color: var(--text-400);
  margin: 4px 0 18px;
}
.plan-price{
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 8px;
}
.plan-price .currency{ font-size: 20px; color: var(--text-400); font-weight: 600; }
.plan-price .amount{ font-size: 56px; font-weight: 700; letter-spacing: -2.4px; color: #fff; line-height: 1; font-family: 'Inter Tight'; }
.plan-price .per{ font-size: 14px; color: var(--text-400); }
.plan-price.year .amount{ font-size: 44px; }
.plan-features{
  list-style: none; margin: 24px 0; padding: 0;
  display: grid; gap: 12px;
}
.plan-features li{
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--text-200);
  line-height: 1.45;
}
.plan-features li .check{
  width: 18px; height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0,255,157,0.12);
  color: var(--up);
  display: grid; place-items: center;
  margin-top: 2px;
}
.plan-features li.no{ color: var(--text-600); }
.plan-features li.no .check{ background: rgba(255,255,255,0.04); color: var(--text-600); }
.plan .btn{ margin-top: auto; justify-content: center; width: 100%; }

/* =====================================================================
   17. FAQ
   ===================================================================== */
.faq{ max-width: 820px; margin: 0 auto; }
.faq-item{ border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-q{
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
  font-family: 'Inter Tight'; font-weight: 600; font-size: 17px; color: #fff;
  letter-spacing: -.4px;
}
.faq-q .chev{
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  display: grid; place-items: center;
  transition: transform .3s, background .3s, color .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q .chev{ transform: rotate(180deg); background: rgba(122,251,252,0.12); color: var(--cyan-500); }
.faq-a{ max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a{ max-height: 400px; }
.faq-a .inner{
  padding: 0 0 22px 0;
  color: var(--text-400);
  font-size: 15px;
  line-height: 1.6;
  max-width: 720px;
}

/* =====================================================================
   18. HARDENING
   ===================================================================== */
.hardening{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 980px){ .hardening{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px){ .hardening{ grid-template-columns: 1fr; } }
.hard-card{
  position: relative;
  padding: 24px;
  border-radius: var(--r-md);
  background:
    radial-gradient(circle at var(--mx,30%) var(--my,0%), rgba(11,59,240,.08), transparent 55%),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  isolation: isolate;
  overflow: hidden;
  transition: border-color .55s ease, transform .55s cubic-bezier(.22,.61,.36,1), box-shadow .55s ease;
}
.hard-card::before{
  content:""; position: absolute; inset: 0;
  background: radial-gradient(360px 200px at var(--mx,50%) var(--my,50%), rgba(122,251,252,.10), transparent 65%);
  opacity: 0; transition: opacity .6s ease; pointer-events: none; z-index: -1;
}
.hard-card:hover{ transform: translateY(-3px); border-color: rgba(122,251,252,0.3); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.hard-card:hover::before{ opacity: 1; }
.hard-card .ic-wrap{
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(11,59,240,0.14);
  color: var(--cyan-500);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.hard-card h4{ font-size: 16px; margin: 0 0 6px; letter-spacing: -.4px; }
.hard-card p{ font-size: 13px; color: var(--text-400); margin: 0; line-height: 1.5; }

/* =====================================================================
   AIDA-A2 · BIG STAT BANNER (proof / desire trigger)
   Quebra de padrão visual — números GIGANTES, layout assimétrico
   ===================================================================== */
.bigstat{
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(80% 60% at 50% 30%, rgba(11,59,240,.18), transparent 70%),
    linear-gradient(180deg, #04060f 0%, #030614 100%);
  overflow: hidden;
}
.bigstat::before{
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(122,251,252,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,251,252,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(50% 60% at 50% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(50% 60% at 50% 50%, #000 0%, transparent 75%);
  opacity: .6;
  pointer-events: none;
}
.bigstat-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px){ .bigstat-grid{ grid-template-columns: 1fr; gap: 40px; } }

.bigstat-num{
  font-family: 'Inter Tight';
  font-weight: 700;
  font-size: clamp(120px, 18vw, 240px);
  line-height: .9;
  letter-spacing: -8px;
  background: linear-gradient(180deg, #ffffff 0%, #7afbfc 50%, #0b3bf0 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
}
.bigstat-num small{
  display: inline-block;
  font-size: 0.42em;
  letter-spacing: -4px;
  vertical-align: top;
  opacity: .6;
  margin-left: -.2em;
  -webkit-text-fill-color: var(--cyan-500);
}
.bigstat-text h2{
  margin-top: 12px;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -1.4px;
}
.bigstat-text p{ margin-top: 14px; max-width: 480px; }
.bigstat-stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.bigstat-stats div{ font-family: 'Inter Tight'; }
.bigstat-stats .v{
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--cyan-500);
  letter-spacing: -.6px;
  line-height: 1;
}
.bigstat-stats .l{
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-400);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.bigstat-source{
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  font-family: 'JetBrains Mono';
  font-size: 11px;
  color: var(--text-400);
}
.bigstat-source::before{
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--up); box-shadow: 0 0 6px var(--up);
}

/* =====================================================================
   AIDA-D · PIPELINE 12 CAMADAS — visual diferente, vertical, denso
   ===================================================================== */
.pipeline-section{
  background:
    linear-gradient(180deg, transparent 0%, rgba(11,59,240,.04) 50%, transparent 100%);
}
.pipeline-wrap{
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1100px){ .pipeline-wrap{ grid-template-columns: 1fr; gap: 40px; } }

.pipeline-intro{ position: sticky; top: 100px; }
.pipeline-intro h2{ margin-top: 18px; }
.pipeline-intro p{ margin-top: 14px; }
.pipeline-callout{
  margin-top: 28px;
  padding: 20px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(0,255,157,.06), rgba(11,59,240,.04));
  border: 1px solid rgba(0,255,157,.20);
}
.pipeline-callout .icon{
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(0,255,157,.14);
  color: var(--up);
  display: grid; place-items: center;
  margin-bottom: 10px;
}
.pipeline-callout strong{ color: var(--up); font-weight: 600; font-size: 14px; letter-spacing: -.2px; }
.pipeline-callout p{ font-size: 13px; color: var(--text-200); margin-top: 8px; line-height: 1.5; }

.pipeline-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  position: relative;
}
@media (max-width: 700px){ .pipeline-list{ grid-template-columns: 1fr; } }

.layer{
  position: relative;
  padding: 16px 18px;
  background:
    radial-gradient(circle at var(--mx,30%) var(--my,0%), rgba(11,59,240,.10), transparent 55%),
    rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: flex-start;
  isolation: isolate;
  overflow: hidden;
  transition: border-color .55s ease, transform .55s cubic-bezier(.22,.61,.36,1);
}
.layer::before{
  content:""; position: absolute; inset: 0;
  background: radial-gradient(220px 140px at var(--mx,50%) var(--my,50%), rgba(122,251,252,.10), transparent 65%);
  opacity: 0; transition: opacity .6s ease; pointer-events: none; z-index: -1;
}
.layer:hover{ transform: translateY(-3px); border-color: rgba(122,251,252,.30); }
.layer:hover::before{ opacity: 1; }
.layer-num{
  font-family: 'JetBrains Mono';
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan-500);
  letter-spacing: .04em;
  background: rgba(122,251,252,.08);
  border: 1px solid rgba(122,251,252,.20);
  border-radius: 6px;
  padding: 4px 0;
  text-align: center;
  line-height: 1;
  display: grid; place-items: center;
  height: 28px;
}
.layer-name{
  font-family: 'Inter Tight';
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.3px;
  margin: 4px 0 4px;
  display: block;
}
.layer-desc{
  font-family: 'Inter Tight';
  font-size: 12px;
  color: var(--text-400);
  line-height: 1.45;
  margin: 0;
}
.layer.is-key{
  border-color: rgba(122,251,252,.35);
  background:
    radial-gradient(circle at var(--mx,30%) var(--my,0%), rgba(11,59,240,.14), transparent 55%),
    linear-gradient(135deg, rgba(122,251,252,.06), rgba(11,59,240,.04));
}

/* =====================================================================
   AIDA-D2 · BENTO GRID — features secundárias em layout assimétrico
   Quebra padrão dos feat-cards repetidos
   ===================================================================== */
.bento{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}
@media (max-width: 980px){
  .bento{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
}
.bento-cell{
  position: relative;
  padding: 24px;
  background:
    radial-gradient(circle at var(--mx,30%) var(--my,0%), rgba(11,59,240,.10), transparent 55%),
    rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color .55s ease, transform .55s cubic-bezier(.22,.61,.36,1), box-shadow .55s ease;
}
.bento-cell::before{
  content:""; position: absolute; inset: 0;
  background: radial-gradient(280px 180px at var(--mx,50%) var(--my,50%), rgba(122,251,252,.10), transparent 65%);
  opacity: 0; transition: opacity .6s ease; pointer-events: none; z-index: -1;
}
.bento-cell:hover{ transform: translateY(-3px); border-color: rgba(122,251,252,.30); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.bento-cell:hover::before{ opacity: 1; }
.bento-cell .ic-wrap{
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(122,251,252,.10);
  color: var(--cyan-500);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.bento-cell h4{ font-size: 18px; margin: 0 0 8px; letter-spacing: -.4px; font-weight: 600; }
.bento-cell p{ font-size: 13px; color: var(--text-400); margin: 0; line-height: 1.5; }
.bento-cell .stat{
  font-family: 'Inter Tight';
  font-size: 32px;
  font-weight: 700;
  color: var(--cyan-500);
  letter-spacing: -.8px;
  line-height: 1;
  display: block;
}
.bento-cell .stat-sub{
  font-family: 'JetBrains Mono';
  font-size: 11px;
  color: var(--text-400);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}
.bento-cell.span-2{ grid-column: span 2; }
.bento-cell.span-3{ grid-column: span 3; }
.bento-cell.span-4{ grid-column: span 4; }
.bento-cell.row-2{ grid-row: span 2; }
.bento-cell.featured{
  border-color: rgba(122,251,252,.30);
  background:
    radial-gradient(circle at var(--mx,30%) var(--my,0%), rgba(11,59,240,.14), transparent 55%),
    linear-gradient(135deg, rgba(122,251,252,.08), rgba(11,59,240,.04));
}
@media (max-width: 980px){
  .bento-cell.span-2, .bento-cell.span-3, .bento-cell.span-4{ grid-column: span 2; }
  .bento-cell.row-2{ grid-row: auto; }
}

/* DNA strand visual for Strategy DNA card */
.dna-strand{
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
}
.dna-strand svg{ width: 100%; height: 100%; }

/* =====================================================================
   AIDA-D3 · TESTIMONIALS — avaliações de usuários
   ===================================================================== */
.testimonials{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px){ .testimonials{ grid-template-columns: 1fr; } }

.review{
  position: relative;
  padding: 32px;
  background:
    radial-gradient(circle at var(--mx,30%) var(--my,0%), rgba(11,59,240,.08), transparent 55%),
    rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  isolation: isolate;
  overflow: hidden;
  transition: border-color .55s ease, transform .55s cubic-bezier(.22,.61,.36,1), box-shadow .55s ease;
}
.review::before{
  content:""; position: absolute; inset: 0;
  background: radial-gradient(360px 220px at var(--mx,50%) var(--my,50%), rgba(122,251,252,.10), transparent 65%);
  opacity: 0; transition: opacity .6s ease; pointer-events: none; z-index: -1;
}
.review::after{
  content: "\201C";
  position: absolute;
  top: 12px; right: 24px;
  font-family: serif;
  font-size: 96px;
  line-height: .8;
  color: rgba(122,251,252,.10);
  pointer-events: none;
}
.review:hover{ transform: translateY(-3px); border-color: rgba(122,251,252,.30); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.review:hover::before{ opacity: 1; }
.review-stars{
  display: flex; gap: 2px;
  margin-bottom: 16px;
  color: #ffd43b;
}
.review-stars svg{ width: 16px; height: 16px; fill: currentColor; }
.review-quote{
  font-family: 'Inter Tight';
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-100);
  letter-spacing: -.2px;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}
.review-author{
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.review-avatar{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-gradient);
  display: grid; place-items: center;
  color: #fff;
  font-family: 'Inter Tight';
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.4px;
  flex-shrink: 0;
}
.review-meta-name{
  font-family: 'Inter Tight';
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.2px;
  display: block;
  line-height: 1.3;
}
.review-meta-role{
  font-family: 'Inter Tight';
  font-size: 12px;
  color: var(--text-400);
  display: block;
  margin-top: 2px;
}
.review-tag{
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: 'JetBrains Mono';
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.review-tag.up{ background: rgba(0,255,157,.10); color: var(--up); border: 1px solid rgba(0,255,157,.25); }
.review-tag.cyan{ background: rgba(122,251,252,.10); color: var(--cyan-500); border: 1px solid rgba(122,251,252,.25); }
.review-tag.brand{ background: rgba(11,59,240,.14); color: #97b4ff; border: 1px solid rgba(11,59,240,.30); }

/* Aggregate rating bar above testimonials */
.review-aggregate{
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  font-family: 'Inter Tight';
}
.review-aggregate .stars{ display: flex; gap: 2px; color: #ffd43b; }
.review-aggregate .stars svg{ width: 14px; height: 14px; fill: currentColor; }
.review-aggregate .rate{ font-weight: 700; font-size: 16px; color: #fff; letter-spacing: -.4px; }
.review-aggregate .count{ font-size: 12px; color: var(--text-400); }

/* =====================================================================
   18b. LANGUAGES — multilíngue
   ===================================================================== */
.lang-wrap{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px){
  .lang-wrap{ grid-template-columns: 1fr; gap: 40px; }
}
.lang-text h2{ margin-top: 18px; }
.lang-text p{ margin-top: 14px; max-width: 520px; }
.lang-text .lead-meta{
  display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap;
  font-family: 'JetBrains Mono'; font-size: 12px;
  color: var(--text-400);
  letter-spacing: .04em;
}
.lang-text .lead-meta b{ color: var(--cyan-500); font-weight: 600; font-size: 22px; letter-spacing: -.4px; font-family: 'Inter Tight'; display: block; margin-bottom: 4px; }

.lang-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 540px){ .lang-grid{ grid-template-columns: repeat(2, 1fr); } }

.lang-card{
  position: relative;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background:
    radial-gradient(circle at var(--mx,30%) var(--my,0%), rgba(11,59,240,.08), transparent 55%),
    rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  isolation: isolate;
  overflow: hidden;
  transition: border-color .55s ease, transform .55s cubic-bezier(.22,.61,.36,1), box-shadow .55s ease;
}
.lang-card::before{
  content:""; position: absolute; inset: 0;
  background: radial-gradient(280px 160px at var(--mx,50%) var(--my,50%), rgba(122,251,252,.10), transparent 65%);
  opacity: 0; transition: opacity .6s ease; pointer-events: none; z-index: -1;
}
.lang-card:hover{
  border-color: rgba(122,251,252,.30);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}
.lang-card:hover::before{ opacity: 1; }
.lang-card.featured{
  border-color: rgba(122,251,252,.35);
  background:
    radial-gradient(circle at var(--mx,30%) var(--my,0%), rgba(11,59,240,.14), transparent 55%),
    linear-gradient(135deg, rgba(122,251,252,.06), rgba(11,59,240,.04));
}
.lang-flag{
  width: 36px; height: 36px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.lang-name{
  font-family: 'Inter Tight';
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.2px;
  line-height: 1.2;
}
.lang-region{
  font-family: 'Inter Tight';
  font-size: 11px;
  color: var(--text-400);
  margin-top: 2px;
}
.lang-card.featured .lang-name{ color: var(--cyan-500); }

/* =====================================================================
   19. FINAL CTA
   ===================================================================== */
.final-cta{
  background: linear-gradient(135deg, #0b3bf0 0%, #1e5af5 50%, #0b3bf0 100%);
  position: relative;
  overflow: hidden;
}
.final-cta::before{
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(122,251,252,0.3), transparent 60%);
  pointer-events: none;
}
.final-cta .container{ position: relative; z-index: 1; text-align: center; padding: 96px 24px; }
.final-cta h2{ color: #fff; font-size: clamp(36px, 5vw, 64px); }
.final-cta p{ color: rgba(255,255,255,0.85); font-size: 18px; }
.final-cta .btns{ margin-top: 32px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn--primary{
  background: #fff;
  color: var(--brand-500);
  box-shadow: 0 0 32px rgba(255,255,255,0.3);
}
.final-cta .btn--primary:hover{ background: #f0f4ff; }

/* =====================================================================
   20. FOOTER
   ===================================================================== */
.footer{
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: var(--bg-1);
}
.footer-grid{
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 980px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer h5{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-400);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer ul{ list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer ul a{ font-size: 14px; color: var(--text-200); transition: color .2s; }
.footer ul a:hover{ color: var(--cyan-500); }
.footer-about p{ font-size: 13px; color: var(--text-400); margin-top: 18px; max-width: 340px; line-height: 1.6; }
.footer-bottom{
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-600);
}
.footer-disclaim{
  margin-top: 24px;
  font-size: 11px;
  color: var(--text-600);
  line-height: 1.55;
  max-width: 920px;
  font-style: italic;
}
.socials{ display: flex; gap: 8px; }
.socials a{
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: var(--text-400);
  transition: all .25s;
}
.socials a img{
  width: 14px;
  height: 14px;
  object-fit: contain;
  opacity: .75;
  transition: opacity .25s ease;
}
.socials a:hover{
  background: rgba(122,251,252,0.12);
  border-color: rgba(122,251,252,0.3);
  transform: translateY(-2px);
}
.socials a:hover img{ opacity: 1; }

[data-lucide]{ width: 20px; height: 20px; }

/* =====================================================================
   SECTION BACKGROUNDS — break the visual repetition
   ===================================================================== */

/* Pipeline section — circuit/dot pattern */
.pipeline-section{
  background:
    radial-gradient(circle at 20% 0%, rgba(11,59,240,.10), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(122,251,252,.06), transparent 50%),
    #030614;
  position: relative;
  overflow: hidden;
}
.pipeline-section::before{
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(122,251,252,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 100% at 50% 50%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 50% 50%, #000 0%, transparent 80%);
  opacity: .35;
  pointer-events: none;
}
.pipeline-section > .container{ position: relative; z-index: 1; }

/* Features section — diagonal split with subtle warm tint shift */
#features{
  background:
    linear-gradient(135deg, transparent 0%, rgba(11,59,240,.04) 50%, transparent 100%),
    #030614;
  position: relative;
}

/* Bento section — angled gradient stripe */
#bento{
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(122,251,252,.08), transparent 60%),
    radial-gradient(ellipse 80% 50% at 100% 100%, rgba(11,59,240,.10), transparent 60%),
    #04060f;
  position: relative;
  overflow: hidden;
}
#bento::after{
  content: "";
  position: absolute;
  top: 0; left: -20%;
  right: -20%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(122,251,252,.3) 50%, transparent 100%);
  pointer-events: none;
}

/* Reviews — soft cyan ambient wash */
#reviews{
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(122,251,252,.06), transparent 70%),
    linear-gradient(180deg, #050816 0%, #030614 100%);
  position: relative;
}
#reviews::before{
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(45deg, rgba(122,251,252,.025) 25%, transparent 25%, transparent 50%, rgba(122,251,252,.025) 50%, rgba(122,251,252,.025) 75%, transparent 75%);
  background-size: 60px 60px;
  opacity: .35;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 0%, transparent 70%);
}
#reviews > .container{ position: relative; z-index: 1; }

/* How it works — vertical streamline pattern */
#how{
  background:
    linear-gradient(180deg, #030614 0%, #050a18 50%, #030614 100%);
  position: relative;
  overflow: hidden;
}
#how::before{
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,251,252,.2) 30%, rgba(11,59,240,.2) 70%, transparent);
  pointer-events: none;
}

/* Comparativo — light grid pattern */
.compare-section{
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(11,59,240,.06), transparent 70%),
    #03050f;
  position: relative;
}
.compare-section::before{
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.compare-section > .container{ position: relative; z-index: 1; }

/* Pricing — vignette spotlight center */
#pricing{
  background:
    radial-gradient(ellipse 70% 80% at 50% 30%, rgba(11,59,240,.14), transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(122,251,252,.08), transparent 70%),
    #050816;
  position: relative;
}

/* Hardening — darker, security feel */
.hardening-section{
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(11,59,240,.08), transparent 70%),
    linear-gradient(180deg, #02040c 0%, #030614 100%);
  position: relative;
  overflow: hidden;
}
.hardening-section::before{
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(122,251,252,.03) 0 1px, transparent 1px 60px);
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 0%, transparent 70%);
}
.hardening-section > .container{ position: relative; z-index: 1; }

/* Languages — diagonal soft gradient */
#languages{
  background:
    linear-gradient(115deg, #030614 0%, #060d22 50%, #030614 100%);
  position: relative;
  overflow: hidden;
}
#languages::before{
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(122,251,252,.10) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  opacity: .6;
}
#languages > .container{ position: relative; z-index: 1; }

/* FAQ — clean, slight bottom warm */
#faq{
  background:
    linear-gradient(180deg, #030614 0%, #04081a 100%);
}

/* Early access — keep its own pattern */
.early-section{
  background: linear-gradient(180deg, #030614 0%, #050918 100%);
}

/* =====================================================================
   COMPARE TABLE → MOBILE CARD LAYOUT (≤980px)
   Each platform becomes a column-card; features stack inside categories.
   ===================================================================== */
.compare-cards{ display: none; }

@media (max-width: 980px){
  .compare-wrap{ background: transparent; border: 0; }
  .compare-table-wrap{ display: none; }
  .compare-cards{
    display: grid;
    gap: 16px;
  }
  .compare-cat{
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--r-lg);
    padding: 20px;
  }
  .compare-cat-title{
    font-family: 'JetBrains Mono';
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cyan-500);
    font-weight: 600;
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(122,251,252,.15);
  }
  .compare-row{
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
  }
  .compare-row:last-child{ border-bottom: 0; padding-bottom: 0; }
  .compare-row .feat{
    font-family: 'Inter Tight';
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -.2px;
    margin-bottom: 10px;
    display: block;
    line-height: 1.3;
  }
  .compare-pills{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 6px;
  }
  .cmp-pill{
    display: flex; align-items: center; gap: 6px;
    padding: 7px 10px;
    border-radius: 8px;
    font-family: 'Inter Tight';
    font-size: 12px;
    line-height: 1.2;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
  }
  .cmp-pill .platform{
    font-size: 10px;
    color: var(--text-400);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    flex-shrink: 0;
    min-width: 56px;
  }
  .cmp-pill .val{ font-size: 12px; color: var(--text-200); flex: 1; text-align: right; line-height: 1.25; }
  .cmp-pill.tm{
    background: linear-gradient(135deg, rgba(122,251,252,.08), rgba(11,59,240,.04));
    border-color: rgba(122,251,252,.30);
  }
  .cmp-pill.tm .platform{ color: var(--cyan-500); }
  .cmp-pill.tm .val{ color: #fff; font-weight: 600; }
  .cmp-pill .ic-yes{ color: var(--up); width: 14px; height: 14px; }
  .cmp-pill .ic-no{ color: var(--down); width: 14px; height: 14px; opacity: .6; }
  .cmp-pill .ic-warn{ color: var(--warn); width: 14px; height: 14px; }
}

/* =====================================================================
   RESPONSIVE PASS — tablet + mobile breakpoints (1100 / 980 / 768 / 540)
   ===================================================================== */

/* ===== Tablet wide (≤ 1100px) ===== */
@media (max-width: 1100px){
  .container{ padding: 0 20px; }
  .section{ padding: 88px 0; }
  .section--tight{ padding: 64px 0; }
  .pipeline-intro{ position: static; }
  .pipeline-wrap{ grid-template-columns: 1fr; gap: 40px; }
}

/* ===== Tablet (≤ 980px) ===== */
@media (max-width: 980px){
  /* Header */
  .header{ height: 56px; }
  .header-inner{ padding: 0 16px; }
  .nav{ display: none; }

  /* Hero stage */
  .hero-stage{ padding: 96px 0 40px; min-height: auto; }
  .hero-stage::after{ width: 700px; height: 500px; }
  .hero-headline{ margin-bottom: 32px; }
  .hero-headline h1{ font-size: clamp(32px, 6vw, 48px); letter-spacing: -1.6px; }
  .hero-headline p{ font-size: 16px; }
  .hero-trust .badge{ font-size: 11px; padding: 5px 10px; }
  .hero-deck{ width: min(640px, 100%); transform: translateY(0) rotateX(4deg); }
  .hero-image{ transform: rotateX(2deg) rotateY(-2deg); }
  .hero-footnote{ display: none; }

  /* Disable expensive effects on tablet/mobile */
  .ds-cursor-glow{ display: none; }
  .hover-glow{ display: none; }

  /* Reveal — quicker, less depth (mobile-friendlier) */
  .ds-reveal{ transform: translate3d(0, 24px, -60px) scale(.97); filter: blur(16px); transition-duration: 1.2s; }
  .ds-stagger > *{ transform: translate3d(0, 20px, -50px) scale(.98); filter: blur(14px); transition-duration: 1.0s; }

  /* Hero scroll — switch to letterbox layout: text outside, frame 16:9 */
  .hero2-stage{ height: 600vh; }
  .hero2-sticky{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
  }
  /* Frame becomes a 16:9 letterboxed container */
  .hero2-frame{
    position: relative;
    inset: auto;
    width: 94vw;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: 56vh;
    border-radius: var(--r-md);
    background: #000;
    box-shadow:
      0 24px 60px rgba(0,0,0,.6),
      0 0 0 1px rgba(255,255,255,.06),
      0 0 60px rgba(11,59,240,.12);
  }
  .hero2-frame::before{
    display: block;
    content: "";
    position: absolute; inset: 0;
    border-radius: inherit;
    background: linear-gradient(155deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,0) 35%, rgba(255,255,255,0) 70%, rgba(255,255,255,.04) 100%);
    pointer-events: none;
    z-index: 3;
  }
  /* Hide the dark gradient overlay (no longer needed; text is outside) */
  .hero2-overlay{ display: none; }
  /* Headline + caption become flow content, ABOVE/BELOW the frame */
  .hero2-headline{
    position: relative;
    inset: auto;
    top: auto;
    margin-bottom: 20px;
    flex-shrink: 0;
  }
  .hero2-headline h2{ font-size: clamp(20px, 4.5vw, 28px); text-shadow: none; }
  .hero2-headline p{ font-size: 13px; text-shadow: none; }
  .hero2-captions{
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 18px;
    flex-shrink: 0;
  }
  .hero2-progress{ display: none; }
  .hero2-loading{ font-size: 10px; bottom: 16px; right: 16px; }

  /* Big stat */
  .bigstat{ padding: 72px 0; }
  .bigstat-grid{ grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .bigstat-num{ font-size: clamp(96px, 28vw, 180px); letter-spacing: -5px; }
  .bigstat-text h2{ font-size: clamp(24px, 5vw, 34px); }
  .bigstat-text p{ margin-left: auto; margin-right: auto; font-size: 15px; }
  .bigstat-stats{ grid-template-columns: repeat(3, 1fr); gap: 12px; padding-top: 24px; margin-top: 24px; }
  .bigstat-stats .v{ font-size: 22px; }
  .bigstat-stats .l{ font-size: 10px; }
  .bigstat-source{ margin-top: 18px; }

  /* Features */
  .feat-card{ grid-template-columns: 1fr; gap: 24px; padding: 24px 0; }
  .feat-card.flip{ grid-template-areas: "text" "img"; }
  .feat-vis{ aspect-ratio: 4/3; }

  /* Bento — empilha em 2 col */
  .bento{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; gap: 12px; }
  .bento-cell{ min-height: 200px; padding: 20px; }
  .bento-cell.span-2,
  .bento-cell.span-3,
  .bento-cell.span-4{ grid-column: span 2; }
  .bento-cell.row-2{ grid-row: auto; min-height: 280px; }
  .bento-cell h4{ font-size: 16px; }
  .bento-cell .stat{ font-size: 28px; }

  /* Testimonials */
  .testimonials{ grid-template-columns: 1fr; gap: 16px; }
  .review{ padding: 24px; }
  .review-quote{ font-size: 15px; }

  /* Languages */
  .lang-wrap{ grid-template-columns: 1fr; gap: 32px; }
  .lang-grid{ grid-template-columns: repeat(2, 1fr); }
  .lang-text .lead-meta{ gap: 18px; font-size: 11px; }
  .lang-text .lead-meta b{ font-size: 18px; }

  /* Pricing */
  .pricing-grid{ grid-template-columns: 1fr; gap: 16px; }
  .plan{ padding: 28px 24px; }
  .plan-price .amount{ font-size: 48px; }

  /* Hardening */
  .hardening{ grid-template-columns: repeat(2, 1fr); }

  /* Comparative table — horizontal scroll on smaller screens */
  .compare-wrap{ overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table{ min-width: 760px; font-size: 13px; }
  .compare-table thead th{ padding: 14px 12px; font-size: 12px; white-space: nowrap; }
  .compare-table tbody td{ padding: 12px; }

  /* Timeline */
  .timeline{ grid-template-columns: 1fr; gap: 28px; }
  .timeline::before{ display: none; }

  /* Early access */
  .early{ grid-template-columns: 1fr; padding: 28px; gap: 20px; text-align: center; }
  .early h2{ font-size: clamp(20px, 4vw, 26px); }
  .early-meta{ justify-content: center; flex-wrap: wrap; gap: 10px; }

  /* Footer */
  .footer{ padding: 56px 0 32px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ===== Mobile (≤ 768px) ===== */
@media (max-width: 768px){
  .section{ padding: 64px 0; }
  .section--tight{ padding: 48px 0; }
  .container{ padding: 0 16px; }

  /* Type scale */
  h1{ letter-spacing: -1.4px; }
  h2{ letter-spacing: -1px; }
  h3{ font-size: 19px; }

  /* Buttons */
  .btn{ padding: 12px 18px; font-size: 14px; }
  .btn--lg{ padding: 14px 22px; font-size: 15px; }

  /* Hero */
  .hero-stage{ padding: 80px 0 32px; }
  .hero-headline{ margin-bottom: 28px; padding: 0 8px; }
  .hero-headline h1{ font-size: clamp(28px, 8vw, 40px); }
  .hero-headline p{ font-size: 15px; line-height: 1.5; }
  .hero-trust{ gap: 8px; margin-top: 18px; }
  .hero-trust .badge{ font-size: 10px; padding: 4px 9px; }
  .hero-ctas{ gap: 10px; flex-direction: column; align-items: stretch; width: 100%; }
  .hero-ctas .btn{ justify-content: center; width: 100%; }
  .hero-deck{ width: 100%; transform: none; }
  .hero-image{ transform: none; }

  /* Disable hero-3d-fx balloons in mobile (visual noise) */
  .hero-3d-fx{ opacity: .35; }
  .hero-3d-fx .h3d-balloon{ display: none; }

  /* Hero 2 caption — let it stack */
  .hero2-stage{ height: 500vh; }
  .hero2-captions .cap-text{ font-size: 11px; padding: 5px 11px; }
  .hero2-headline{ padding: 0 16px; margin-bottom: 14px; }
  .hero2-headline h2{ font-size: clamp(18px, 5vw, 24px); margin-top: 10px; }
  .hero2-headline p{ font-size: 13px; line-height: 1.4; margin-top: 8px; }
  .hero2-headline .eyebrow{ font-size: 10px; padding: 4px 10px; }
  .hero2-frame{ width: 94vw; max-height: 48vh; border-radius: var(--r-md); }

  /* Big stat */
  .bigstat{ padding: 56px 0; }
  .bigstat-num{ font-size: clamp(80px, 30vw, 140px); letter-spacing: -3px; }
  .bigstat-num small{ font-size: 0.4em; letter-spacing: -2px; }
  .bigstat-text h2{ font-size: clamp(20px, 5.5vw, 28px); letter-spacing: -.8px; }
  .bigstat-text p{ font-size: 14px; }
  .bigstat-stats{ grid-template-columns: 1fr; gap: 16px; }

  /* Pipeline */
  .pipeline-list{ grid-template-columns: 1fr; gap: 8px; }
  .layer{ padding: 14px 16px; gap: 10px; grid-template-columns: 32px 1fr; }
  .layer-num{ height: 24px; font-size: 10px; }
  .layer-name{ font-size: 13px; }
  .layer-desc{ font-size: 12px; }

  /* Section heads */
  .section-head{ margin-bottom: 40px; }
  .section-head .eyebrow{ font-size: 11px; padding: 5px 12px; }

  /* Features */
  .feat-card{ padding: 16px 0; gap: 20px; }
  .feat-text h2{ font-size: clamp(22px, 6vw, 30px); }
  .feat-vis{ padding: 0; aspect-ratio: 5/4; }
  .feat-vis .ui{ padding: 16px; font-size: 10px; }
  .brokers-grid{ gap: 8px; }
  .broker-item{ padding: 10px; gap: 8px; }
  .broker-item .b-ic{ width: 28px; height: 28px; font-size: 12px; }
  .broker-item .b-name{ font-size: 13px; }
  .broker-item .b-sub{ font-size: 10px; }
  .feat-bullets li{ font-size: 14px; }

  /* MCP signal grid */
  .mcp-signal{ grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px; }
  .mcp-signal .val{ font-size: 13px; }

  /* Bento — single column on phone */
  .bento{ grid-template-columns: 1fr; gap: 10px; }
  .bento-cell{ grid-column: span 1 !important; min-height: 180px; padding: 18px; }
  .bento-cell.row-2{ min-height: 200px; }
  .bento-cell h4{ font-size: 15px; }
  .bento-cell p{ font-size: 12px; }

  /* Testimonials */
  .review{ padding: 22px; }
  .review-quote{ font-size: 14px; }
  .review::after{ font-size: 64px; top: 8px; right: 16px; }
  .review-aggregate{ flex-wrap: wrap; padding: 10px 14px; font-size: 13px; }
  .review-aggregate .rate{ font-size: 14px; }

  /* Pricing */
  .plan{ padding: 24px 20px; }
  .plan-price .amount{ font-size: 42px; letter-spacing: -1.6px; }
  .plan-price.year .amount{ font-size: 34px; }
  .plan-features li{ font-size: 13px; }

  /* Languages — 2 cols on small phones */
  .lang-grid{ grid-template-columns: 1fr 1fr; gap: 8px; }
  .lang-card{ padding: 12px; gap: 10px; }
  .lang-flag{ width: 32px; height: 32px; font-size: 18px; }
  .lang-name{ font-size: 13px; }
  .lang-region{ font-size: 10px; }
  .lang-text .lead-meta{ flex-direction: column; gap: 12px; }

  /* Hardening — single col */
  .hardening{ grid-template-columns: 1fr; }

  /* FAQ */
  .faq-q{ font-size: 15px; padding: 18px 0; gap: 16px; }
  .faq-a .inner{ font-size: 14px; padding-bottom: 18px; }

  /* Comparative table — keep horizontal scroll */
  .compare-table{ min-width: 700px; font-size: 12px; }
  .compare-table thead th{ padding: 12px 10px; }
  .compare-table tbody td{ padding: 10px; font-size: 12px; }
  .compare-table .cat-row td{ padding: 14px 10px 8px; font-size: 10px; }

  /* Final CTA */
  .final-cta .container{ padding: 64px 16px; }
  .final-cta h2{ font-size: clamp(28px, 7vw, 44px); }
  .final-cta p{ font-size: 16px; }
  .final-cta .btns{ flex-direction: column; align-items: stretch; gap: 12px; }
  .final-cta .btn{ width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
  .footer-disclaim{ font-size: 10px; }
}

/* ===== Small phone (≤ 540px) ===== */
@media (max-width: 540px){
  .container{ padding: 0 14px; }

  /* Logo a bit smaller */
  .logo img{ height: 22px; }
  .header-cta .btn{ padding: 10px 14px; font-size: 13px; }
  .header-cta .btn i{ display: none; }

  /* Hero */
  .hero-headline h1{ font-size: clamp(26px, 9vw, 36px); }

  /* Big stat */
  .bigstat-num{ font-size: clamp(72px, 32vw, 120px); }

  /* Cards */
  .pcard{ padding: 14px; gap: 12px; grid-template-columns: 36px 1fr; }
  .pcard .ic-wrap{ width: 36px; height: 36px; }
  .pcard h4{ font-size: 15px; }
  .pcard p{ font-size: 13px; }
  .contrast-side{ padding: 20px; }

  /* Hardening cards */
  .hard-card{ padding: 18px; }

  /* Languages — single col on tiny phones */
  .lang-grid{ grid-template-columns: 1fr; }

  /* Plan featured badge — smaller */
  .plan.featured::after{ font-size: 10px; padding: 5px 12px; top: -10px; }
}

/* ===== Touch devices — disable cursor + tilt + parallax ===== */
@media (pointer: coarse), (hover: none){
  .ds-cursor-glow{ display: none !important; }
  .hover-glow{ display: none !important; }
  /* Reset any hover state transforms that might stick on touch */
  .hero-image{
    transform: rotateX(2deg) rotateY(-2deg) !important;
  }
  /* No hover lift on touch — too jarring */
  .pcard:hover, .plan:hover, .bento-cell:hover,
  .review:hover, .lang-card:hover, .layer:hover,
  .hard-card:hover, .feat-vis:hover, .brand-chip:hover{
    transform: none;
  }
}

/* ===== Landscape phone — reduce vertical spacing ===== */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px){
  .hero-stage{ min-height: auto; padding: 72px 0 32px; }
  .hero2-stage{ height: 400vh; }
}
