/* ============================================================
   SynergyAffiliates.com — Affiliate acquisition landing
   Visual system: Cyber-Fintech, carbon black + electric purple + neon cyan
   Type: Plus Jakarta Sans (display/body) · Fragment Mono (labels/data)
   ============================================================ */

/* ---------- Tokens -------------------------------------- */
:root {
  /* Surfaces — carbon */
  --bg-base:        #0B0C0E;
  --bg-deeper:      #060708;
  --surface-1:      #121318;   /* card rest */
  --surface-2:      #17181F;   /* card hover / nested */
  --surface-3:      #1F202B;   /* elevated */

  /* Accents */
  --purple:         #6366F1;
  --purple-light:   #818CF8;
  --purple-dark:    #4F46E5;
  --cyan:           #00F5D4;
  --cyan-dim:       #0FD3BC;
  --cyan-deep:      #06b6a4;

  /* Glows */
  --glow-purple:    rgba(99, 102, 241, 0.18);
  --glow-cyan:      rgba(0, 245, 212, 0.15);

  /* Foreground */
  --fg-1:           #FFFFFF;
  --fg-2:           #ECEFF4;
  --fg-3:           #9BA3B2;
  --fg-4:           #626B7A;
  --fg-5:           #393F4D;

  /* Semantic */
  --positive:       #00F5D4;
  --negative:       #F4587A;

  /* Borders */
  --border-1:       rgba(255, 255, 255, 0.045);
  --border-2:       rgba(255, 255, 255, 0.075);
  --border-cyan:    rgba(0, 245, 212, 0.18);
  --border-purple:  rgba(99, 102, 241, 0.22);

  /* Glass */
  --glass-bg:       rgba(18, 19, 24, 0.55);
  --glass-strong:   rgba(11, 12, 14, 0.78);

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 100px;

  /* Spacing */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 20px;
  --s-6: 24px; --s-7: 32px; --s-8: 40px; --s-9: 48px; --s-10: 64px;
  --s-11: 80px; --s-12: 96px; --s-13: 128px;

  /* Shadows */
  --sh-card:      0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.35);
  --sh-card-hi:   0 10px 15px -3px rgba(0, 0, 0, 0.35), 0 4px 6px -2px rgba(0, 0, 0, 0.25), 0 30px 50px -10px rgba(0, 0, 0, 0.55);
  --sh-cta:       0 8px 24px rgba(0, 245, 212, 0.18), inset 0 1px 0 rgba(255,255,255,0.25);
  --sh-cta-hi:    0 12px 36px rgba(0, 245, 212, 0.30), inset 0 1px 0 rgba(255,255,255,0.35);
  --sh-inset:     inset 0 1px 0 rgba(255, 255, 255, 0.05);

  /* Motion */
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.16, 1, 0.3, 1);

  /* Type */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'Fragment Mono', monospace;
}

/* ---------- Reset --------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-base);
  color: var(--fg-1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4, p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { background: var(--cyan); color: #04201d; }

/* ---------- Ambient background -------------------------- */
.bg-wash {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(1000px 700px at 85% 15%, rgba(99, 102, 241, 0.05), transparent 70%),
    radial-gradient(1200px 900px at 15% 5%, rgba(0, 245, 212, 0.03), transparent 60%),
    var(--bg-base);
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at 50% 28%, #000 20%, transparent 68%);
          mask-image: radial-gradient(circle at 50% 28%, #000 20%, transparent 68%);
}

/* ---------- Layout -------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-7);
}
section { position: relative; }
.section-pad { padding: var(--s-10) 0; }
@media (max-width: 900px) { .section-pad { padding: var(--s-8) 0; } }

/* ---------- Type helpers -------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 6px 14px;
  background: rgba(0, 245, 212, 0.04);
  border: 1px solid var(--border-cyan);
  border-radius: var(--r-pill);
}
.eyebrow.purple { color: var(--purple-light); background: rgba(99,102,241,0.05); border-color: var(--border-purple); }
.eyebrow .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

.gradient-text {
  background: linear-gradient(115deg, #FFFFFF 30%, var(--cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg-1);
}
.section-lead {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--fg-3);
  line-height: 1.6;
  max-width: 600px;
}
.section-head { text-align: center; max-width: 740px; margin: 0 auto var(--s-7); display: flex; flex-direction: column; align-items: center; gap: var(--s-3); }
.section-head .section-lead { margin: 0 auto; }

/* ---------- Buttons ------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: transform var(--ease) .2s, box-shadow var(--ease) .2s, background var(--ease) .2s, border-color var(--ease) .2s, color var(--ease) .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  position: relative;
  color: #042a26;
  background: linear-gradient(120deg, var(--cyan) 0%, #5BFBE6 100%);
  box-shadow: var(--sh-cta);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-primary:hover { transform: translateY(-1.5px); box-shadow: var(--sh-cta-hi); }

.btn-secondary {
  color: var(--fg-1);
  background: rgba(255,255,255,0.02);
  border-color: var(--border-1);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.05); border-color: var(--border-2); transform: translateY(-1.5px); }

.btn-neon {
  color: var(--cyan);
  background: rgba(0,245,212,0.03);
  border-color: var(--border-cyan);
}
.btn-neon:hover { background: rgba(0,245,212,0.06); box-shadow: 0 4px 20px rgba(0,245,212,0.12); transform: translateY(-1.5px); }

.btn-lg { padding: 16px 30px; font-size: 15px; }
.btn-block { width: 100%; }

/* ---------- Nav ----------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--glass-strong);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border-1);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-links { display: flex; align-items: center; gap: var(--s-7); }
.nav-links a {
  font-size: 14.5px; color: var(--fg-3); font-weight: 500;
  transition: color .2s var(--ease); position: relative;
}
.nav-links a:hover { color: var(--fg-1); }
.nav-right { display: flex; align-items: center; gap: var(--s-4); }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(140deg, var(--purple) 0%, var(--purple-dark) 100%);
  display: grid; place-items: center;
  box-shadow: 0 4px 16px rgba(99,102,241,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  flex: none;
}
.logo-mark svg { display: block; }
.logo-word { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; color: var(--fg-1); }
.logo-word b { color: var(--cyan); font-weight: 700; }

/* ---------- Hero (split layout) ------------------------- */
.hero {
  padding-top: 100px;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  max-height: 100vh;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 1000px 800px at 78% 62%, rgba(99,102,241,0.52) 0%, transparent 62%),
    radial-gradient(ellipse 560px 460px at 105% 40%, rgba(0,245,212,0.24) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero-split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: var(--s-7);
  align-items: stretch;
  min-height: calc(100vh - 100px);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-5);
  justify-content: center;
  padding-bottom: var(--s-10);
}
.hero-img-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* Luzes atrás do mockup */
.hbs-lights {
  position: absolute;
  top: -150px;
  left: -280px;
  right: -80px;
  bottom: -150px;
  pointer-events: none;
  z-index: 0;
}
.hbs-light { position: absolute; border-radius: 50%; }
.hbs-l1 {
  width: 720px; height: 520px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.62) 0%, rgba(99,102,241,0.08) 55%, transparent 72%);
  filter: blur(80px);
}
.hbs-l2 {
  width: 520px; height: 320px;
  top: 5%; left: -5%;
  background: radial-gradient(ellipse at center, rgba(0,245,212,0.55) 0%, transparent 68%);
  filter: blur(70px);
}
.hbs-l3 {
  width: 500px; height: 300px;
  top: 35%; right: -10%;
  background: radial-gradient(ellipse at center, rgba(0,245,212,0.44) 0%, transparent 68%);
  filter: blur(70px);
}
.hbs-l4 {
  width: 360px; height: 220px;
  bottom: 8%; left: 20%;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.32) 0%, transparent 70%);
  filter: blur(60px);
}

.hero-img-col img {
  position: relative;
  z-index: 1;
  width: 130%;
  height: auto;
  max-width: none;
  display: block;
  margin-right: -26%;
  filter: drop-shadow(0 -8px 32px rgba(99,102,241,0.36)) drop-shadow(0 28px 60px rgba(0,0,0,0.72));
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--fg-2);
  padding: 6px 6px 6px 7px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.025);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.hero-pill:hover { border-color: var(--border-cyan); background: rgba(0,245,212,0.04); }
.hero-pill-tag {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #042a26; background: linear-gradient(120deg, var(--cyan), #5BFBE6);
  padding: 3px 9px; border-radius: var(--r-pill);
}
.hero-pill-go { color: var(--fg-4); display: inline-flex; align-items: center; padding-right: 6px; }

.hero-bigtitle {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 0;
  max-width: 18ch;
  color: var(--fg-1);
}
.hero-sub {
  font-size: clamp(14.5px, 1.1vw, 16.5px); color: var(--fg-3); line-height: 1.65;
  max-width: 480px; margin-top: 0;
}
.hero-ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; justify-content: flex-start; margin-top: 0; }
.hero-ctas .btn-secondary { display: none; }
.hero-ctas .btn-primary { min-width: 240px; }

/* Stat cards — 2 colunas no desktop */
.hero-mob-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}
.hero-mob-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-2);
  background: rgba(18, 19, 24, 0.80);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  backdrop-filter: blur(10px);
}
.hero-mob-card span {
  font-size: 13px;
  color: var(--fg-3);
  font-weight: 500;
  line-height: 1.4;
}
.hero-mob-card strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-mob-card--alt strong { color: var(--purple-light); }

/* ---------- Hero Metrics (SaaS Social Proof) ------------ */
.hero-metrics {
  display: none;
  align-items: center;
  justify-content: flex-start;
  gap: var(--s-6);
  margin-top: 0;
  flex-wrap: wrap;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border-1);
  width: 100%;
}
.h-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  text-align: center;
}
.hm-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg-1);
  background: linear-gradient(115deg, #FFFFFF 40%, var(--cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hm-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.h-metric-sep {
  width: 1px;
  height: 28px;
  background: var(--border-1);
}
@media (max-width: 620px) {
  .hero-metrics { gap: var(--s-3); }
}

/* ---------- Hero product scene -------------------------- */
/* ---------- Hero abstract showcase ---------------------- */
.hero-graphic-wrap {
  position: relative;
  max-width: 960px;
  margin: var(--s-8) auto 0;
  padding: 0 var(--s-7);
  perspective: 1200px;
}
.hero-graphic-glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 280px; z-index: -1;
  background: radial-gradient(closest-side, rgba(99,102,241,0.22), transparent 75%);
  filter: blur(54px);
}
.hero-image-frame {
  background: var(--surface-1);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 12px;
  box-shadow: var(--sh-card-hi), 0 0 50px rgba(99,102,241,0.06);
  overflow: hidden;
  transform: rotateX(3deg);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.hero-image-frame:hover {
  transform: rotateX(0deg) translateY(-6px);
  border-color: var(--border-purple);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.95), 0 0 60px rgba(99,102,241,0.12);
}
.hero-image-frame img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  display: block;
  border: 1px solid var(--border-1);
}
.browserframe {
  position: relative;
  background: #0a0c12;
  border: 1px solid var(--border-2);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -1px 0 rgba(255,255,255,0.05), 0 40px 90px -30px rgba(0,0,0,0.85);
  overflow: hidden;
}
.bf-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px;
  background: #11131a;
  border-bottom: 1px solid var(--border-1);
}
.bf-dot { width: 11px; height: 11px; border-radius: 50%; background: #2b2f3a; flex: none; }
.bf-url {
  margin-left: 12px; font-family: var(--font-mono); font-size: 12px; color: var(--fg-4);
  letter-spacing: 0.02em;
}
.bf-live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cyan);
}

/* Affiliate dashboard mock */
.da { background: linear-gradient(180deg, #0c0e15 0%, #0a0c12 100%); padding: 0 0 var(--s-7); }
.da-topbar {
  display: flex; align-items: center; gap: var(--s-6);
  padding: 14px var(--s-7); border-bottom: 1px solid var(--border-1);
}
.da-acct {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; color: var(--fg-1);
  padding: 7px 12px; border: 1px solid var(--border-2); border-radius: var(--r-sm);
  background: rgba(255,255,255,0.02);
}
.da-avatar { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(140deg, var(--purple), var(--cyan)); flex: none; }
.da-caret { color: var(--fg-4); margin-left: 2px; }
.da-nav { display: flex; align-items: center; gap: var(--s-6); }
.da-nav a { font-size: 13.5px; color: var(--fg-4); }
.da-nav a.on { color: var(--fg-1); font-weight: 600; }
.da-search {
  margin-left: auto; font-size: 13px; color: var(--fg-5);
  padding: 8px 16px; min-width: 220px; border: 1px solid var(--border-2);
  border-radius: var(--r-sm); background: rgba(255,255,255,0.02); text-align: left;
}
.da-head { display: flex; align-items: center; justify-content: space-between; padding: var(--s-6) var(--s-7) var(--s-5); }
.da-head h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.da-head-actions { display: flex; align-items: center; gap: 10px; }
.da-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; color: var(--fg-2);
  padding: 8px 13px; border: 1px solid var(--border-2); border-radius: var(--r-sm);
  background: rgba(255,255,255,0.02);
}
.da-chip svg { width: 14px; height: 14px; color: var(--fg-4); }
.da-chip.solid { color: #042a26; background: linear-gradient(120deg, var(--cyan), #5BFBE6); border-color: transparent; font-family: var(--font-display); font-weight: 600; font-size: 13px; }
.da-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); padding: 0 var(--s-7); }
.da-stat { background: var(--surface-1); border: 1px solid var(--border-1); border-radius: var(--r-md); padding: var(--s-5); text-align: left; }
.da-stat-l { font-size: 12px; color: var(--fg-4); }
.da-stat-v { font-family: var(--font-mono); font-size: 26px; color: var(--fg-1); letter-spacing: -0.02em; margin-top: 7px; }
.da-stat-d { font-size: 11.5px; color: var(--fg-4); font-family: var(--font-mono); margin-top: 5px; }
.da-stat-d.up { color: var(--cyan); }
.da-main { display: grid; grid-template-columns: 1.7fr 1fr; gap: var(--s-4); padding: var(--s-4) var(--s-7) 0; }
.da-panel { background: var(--surface-1); border: 1px solid var(--border-1); border-radius: var(--r-md); padding: var(--s-5); }
.da-panel-head { display: flex; align-items: center; justify-content: space-between; font-size: 13.5px; font-weight: 600; color: var(--fg-2); margin-bottom: var(--s-4); }
.da-panel-tag { font-family: var(--font-mono); font-size: 11px; color: var(--fg-4); font-weight: 400; }
.da-chart { height: 168px; }
.da-chart svg { width: 100%; height: 100%; display: block; }
.da-sources { display: flex; flex-direction: column; gap: 15px; padding-top: 4px; }
.da-src { display: grid; grid-template-columns: 96px 1fr 38px; align-items: center; gap: 12px; }
.da-src-name { font-size: 12.5px; color: var(--fg-3); }
.da-src-bar { height: 7px; border-radius: 100px; background: rgba(255,255,255,0.05); overflow: hidden; }
.da-src-bar i { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--purple), var(--cyan)); }
.da-src b { font-family: var(--font-mono); font-size: 12.5px; color: var(--fg-1); font-weight: 400; text-align: right; }

/* MacBook */
.macbook { position: absolute; top: 18px; left: 50%; width: 560px; transform: translateX(-50%) rotateX(4deg); transform-style: preserve-3d; }
.mac-screen {
  position: relative;
  background: #05060A;
  border: 2px solid #2a2f3c;
  border-radius: 16px 16px 4px 4px;
  padding: 10px;
  box-shadow: var(--sh-card-hi), inset 0 0 0 1px rgba(255,255,255,0.04);
}
.mac-bezel-cam { position: absolute; top: 5px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: #14161d; box-shadow: inset 0 0 2px #000; }
.mac-viewport { border-radius: 8px; overflow: hidden; background: var(--bg-deeper); aspect-ratio: 16/10.2; }
.mac-base {
  height: 14px; width: 660px; margin: 0 auto;
  margin-left: -50px;
  background: linear-gradient(180deg, #2a2f3c 0%, #1a1d26 55%, #0d0f15 100%);
  border-radius: 0 0 14px 14px;
  position: relative;
  box-shadow: 0 26px 40px rgba(0,0,0,0.6);
}
.mac-base::after { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 7px; background: #06070b; border-radius: 0 0 9px 9px; }

/* Trading dashboard (inside mac) */
.dash { font-family: var(--font-mono); height: 100%; display: flex; flex-direction: column; background: linear-gradient(160deg, #0c1018 0%, #0a0d14 100%); }
.dash-top { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.dash-pair { display: flex; align-items: center; gap: 8px; }
.dash-pair .tk { font-size: 12px; font-weight: 600; color: #fff; letter-spacing: 0.03em; }
.dash-pair .chip { font-size: 9px; color: var(--cyan); background: rgba(0,245,212,0.1); padding: 2px 7px; border-radius: 100px; border: 1px solid var(--border-cyan); }
.dash-price { font-size: 14px; color: #fff; }
.dash-price .up { color: var(--cyan); font-size: 10px; margin-left: 6px; }
.dash-body { flex: 1; display: grid; grid-template-columns: 1fr 116px; min-height: 0; }
.dash-chart { position: relative; padding: 6px; }
.dash-chart svg { width: 100%; height: 100%; display: block; }
.dash-side { border-left: 1px solid rgba(255,255,255,0.05); padding: 10px; display: flex; flex-direction: column; gap: 9px; }
.dash-side .row { display: flex; justify-content: space-between; font-size: 9.5px; color: var(--fg-3); }
.dash-side .row b { color: #fff; font-weight: 400; }
.dash-payout { margin-top: auto; }
.dash-payout .big { font-size: 22px; color: var(--cyan); line-height: 1; }
.dash-payout .lbl { font-size: 8px; color: var(--fg-4); text-transform: uppercase; letter-spacing: 0.1em; }
.dash-btns { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.dash-btns .b { text-align: center; font-size: 10px; font-weight: 600; padding: 7px; border-radius: 7px; }
.dash-btns .up { background: linear-gradient(120deg, var(--cyan), #5BFBE6); color: #042a26; }
.dash-btns .down { background: rgba(244,88,122,0.14); color: var(--negative); border: 1px solid rgba(244,88,122,0.3); }

/* Phone */
.phone {
  position: absolute; bottom: 0; right: -6px; width: 138px; z-index: 4;
  border-radius: 26px;
  background: #06070b;
  border: 2px solid #2a2f3c;
  padding: 6px;
  box-shadow: -10px 24px 50px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.03);
  animation: floatPhone 6.5s ease-in-out infinite;
}
.phone-screen { border-radius: 20px; overflow: hidden; background: linear-gradient(165deg, #0c1018, #0a0d14); aspect-ratio: 9/19; padding: 12px 11px; display: flex; flex-direction: column; gap: 9px; font-family: var(--font-mono); }
.phone-notch { width: 40px; height: 5px; background: #14161d; border-radius: 100px; margin: 0 auto 2px; }
.phone-bal { font-size: 9px; color: var(--fg-4); text-transform: uppercase; letter-spacing: 0.1em; }
.phone-amt { font-size: 19px; color: #fff; }
.phone-amt .up { display: block; font-size: 10px; color: var(--cyan); margin-top: 2px; }
.phone-spark { margin-top: 2px; }
.phone-list { display: flex; flex-direction: column; gap: 7px; margin-top: 2px; }
.phone-list .pr { display: flex; justify-content: space-between; align-items: center; font-size: 9px; color: var(--fg-3); padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.phone-list .pr b { color: #fff; font-weight: 400; }
.phone-list .pr .g { color: var(--cyan); }
.phone-list .pr .r { color: var(--negative); }

/* Floating metric cards */
.fcard {
  position: absolute; z-index: 6;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--sh-card);
}
.fcard .cap { font-family: var(--font-mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-3); display: flex; align-items: center; gap: 6px; }
.fcard .cap .ic { width: 14px; height: 14px; color: var(--cyan); }
.fcard .val { font-family: var(--font-mono); font-size: 24px; color: #fff; margin-top: 5px; letter-spacing: -0.02em; }
.fcard .val .delta { font-size: 12px; color: var(--cyan); margin-left: 6px; }

.fcard-roi { top: 6px; left: -14px; animation: floatA 7s ease-in-out infinite; }
.fcard-roi .val { color: var(--cyan); }
.fcard-comm { bottom: 96px; left: -28px; animation: floatB 8s ease-in-out infinite; }
.fcard-live { top: 70px; right: -22px; animation: floatA 7.5s ease-in-out infinite 0.5s; }
.fcard-live .cap .ic { color: var(--purple-light); }

.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 50% { opacity: 0.35; } }

@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(12px); } }
@keyframes floatPhone { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Marquee strip under hero */
.marquee {
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  background: rgba(255,255,255,0.012);
  padding: 18px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; gap: var(--s-10); width: max-content; animation: scrollX 38s linear infinite; }
.marquee-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 13px; color: var(--fg-4); letter-spacing: 0.04em; white-space: nowrap; }
.marquee-item .pct { color: var(--cyan); }
.marquee-item .pct.dn { color: var(--negative); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ---------- Cards: Modelos ------------------------------ */
.models-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.model-card {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  display: flex; flex-direction: column; gap: var(--s-5);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
  box-shadow: var(--sh-card);
}
.model-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-purple);
  box-shadow: var(--sh-card-hi);
}
.model-card.featured { border-color: var(--border-2); }
.model-card.featured:hover { border-color: var(--border-purple); }

.model-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-1);
  color: var(--fg-3);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.model-card:hover .model-icon {
  color: var(--cyan);
  border-color: var(--border-cyan);
  background: rgba(0, 245, 212, 0.02);
}
.model-card.featured:hover .model-icon {
  color: var(--purple-light);
  border-color: var(--border-purple);
  background: rgba(99, 102, 241, 0.03);
}
.model-icon svg { width: 22px; height: 22px; }
.model-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-4); }
.model-card h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; color: var(--fg-1); }
.model-highlight {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 0.95;
  background: linear-gradient(115deg, #FFFFFF 40%, var(--cyan) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
}
.model-card.featured .model-highlight {
  background: linear-gradient(115deg, #FFFFFF 40%, var(--purple-light) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.model-card p { color: var(--fg-3); font-size: 14px; line-height: 1.6; }
.model-foot { margin-top: auto; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--cyan); font-weight: 600; transition: color 0.3s var(--ease); }
.model-card.featured .model-foot { color: var(--purple-light); }
.model-foot svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.model-card:hover .model-foot svg { transform: translateX(4px); }

/* Custom plan banner */
.custom-banner {
  margin-top: var(--s-7);
  display: grid; grid-template-columns: 1fr auto; gap: var(--s-8); align-items: center;
  background:
    radial-gradient(600px 200px at 0% 0%, rgba(99,102,241,0.14), transparent 60%),
    linear-gradient(120deg, var(--surface-2), var(--surface-1));
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: var(--s-9) var(--s-10);
  overflow: hidden;
  position: relative;
}
.custom-banner h3 { font-size: clamp(22px, 2.2vw, 30px); font-weight: 700; letter-spacing: -0.02em; }
.custom-banner p { color: var(--fg-3); font-size: 15.5px; line-height: 1.6; max-width: 640px; margin-top: 10px; }
.custom-banner .badge-line { display: inline-flex; align-items: center; gap: 8px; color: var(--purple-light); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }

/* ---------- Plataforma ---------------------------------- */
.platform-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: var(--s-8); align-items: center; }
.platform-features { display: flex; flex-direction: column; gap: var(--s-5); }
.feature-row {
  display: flex; gap: var(--s-5);
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.feature-row:hover { border-color: var(--border-purple); background: var(--surface-2); transform: translateX(4px); }
.feature-ic {
  width: 50px; height: 50px; border-radius: 13px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(99,102,241,0.16), rgba(99,102,241,0.02));
  border: 1px solid var(--border-purple);
  color: var(--purple-light);
}
.feature-ic svg { width: 24px; height: 24px; }
.feature-row h4 { font-size: 18px; font-weight: 700; }
.feature-row p { color: var(--fg-3); font-size: 14px; line-height: 1.6; margin-top: 6px; }

/* Platform image — mockup com luzes */
.plat-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Luzes atrás do mockup */
.plat-lights {
  position: absolute;
  top: -120px; left: -80px; right: -60px; bottom: -100px;
  pointer-events: none;
  z-index: 0;
}
.plat-light { position: absolute; border-radius: 50%; }
.plat-l1 {
  width: 700px; height: 500px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.60) 0%, rgba(99,102,241,0.06) 55%, transparent 72%);
  filter: blur(80px);
}
.plat-l2 {
  width: 480px; height: 300px;
  top: 5%; left: -5%;
  background: radial-gradient(ellipse at center, rgba(0,245,212,0.52) 0%, transparent 68%);
  filter: blur(70px);
}
.plat-l3 {
  width: 440px; height: 280px;
  bottom: 8%; right: -8%;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.40) 0%, transparent 68%);
  filter: blur(65px);
}
.plat-l4 {
  width: 340px; height: 200px;
  top: 60%; left: 10%;
  background: radial-gradient(ellipse at center, rgba(0,245,212,0.28) 0%, transparent 70%);
  filter: blur(55px);
}

.plat-img-wrap img {
  position: relative;
  z-index: 1;
  width: 120%;
  height: auto;
  display: block;
  margin-left: -12%;
  filter: drop-shadow(0 24px 56px rgba(0,0,0,0.70));
}

/* Fade edges para integrar ao fundo escuro */
.plat-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg-base) 0%, transparent 10%),
    linear-gradient(to bottom, transparent 62%, var(--bg-base) 100%);
  z-index: 2;
  pointer-events: none;
}

/* ---------- Zig-Zag Plataforma (card unificado) --------- */
.plat-section { overflow: hidden; }

.zigzag {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--s-8);
}

/* Card full-width: texto + imagem numa peça só */
.zz-card {
  display: flex;
  align-items: center;
  position: relative;
  background: rgba(11, 12, 17, 0.82);
  backdrop-filter: blur(20px) saturate(130%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  cursor: pointer;
}
.zz-card:hover {
  border-color: rgba(255,255,255,0.13);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
}

/* Texto */
.zz-content {
  flex: 0 0 48%;
  padding: var(--s-8);
  padding-right: calc(var(--s-8) + 40px);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  z-index: 1;
  position: relative;
}

/* Imagem — sangra até a borda do card */
.zz-visual {
  flex: 1;
  align-self: stretch;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Fade esquerda */
.zz-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 32%;
  background: linear-gradient(to right, #0b0c11 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
/* Fade direita */
.zz-visual::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 32%;
  background: linear-gradient(to left, #0b0c11 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.zz-visual img {
  height: 100%;
  width: auto;
  max-height: 280px;
  min-height: 220px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 36px rgba(0,0,0,0.7));
}

/* Glow atrás da imagem */
.zz-vis-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.zz-vis-glow--cyan {
  background: radial-gradient(ellipse at center, rgba(0,245,212,0.42) 0%, transparent 65%);
  filter: blur(70px);
}
.zz-vis-glow--purple {
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.50) 0%, transparent 65%);
  filter: blur(70px);
}
.zz-vis-glow--blue {
  background: radial-gradient(ellipse at center, rgba(30,100,255,0.38) 0%, transparent 65%);
  filter: blur(70px);
}

/* Ícone */
.zz-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(0,245,212,0.15), rgba(0,245,212,0.02));
  border: 1px solid var(--border-cyan);
  color: var(--cyan);
  flex: none;
}
.zz-icon--purple {
  background: linear-gradient(150deg, rgba(99,102,241,0.18), rgba(99,102,241,0.02));
  border-color: var(--border-purple);
  color: var(--purple-light);
}
.zz-icon svg { width: 22px; height: 22px; }

.zz-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg-1);
}
.zz-body {
  font-size: 14px;
  color: var(--fg-3);
  line-height: 1.65;
}
.zz-link {
  font-size: 13px;
  color: var(--fg-4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s var(--ease);
  margin-top: var(--s-1);
}
.zz-link:hover { color: var(--cyan); }

/* Seta lateral */
.zz-chevron {
  position: absolute;
  right: var(--s-5);
  top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: var(--fg-4);
  z-index: 2;
  flex: none;
  transition: background .2s, color .2s;
}
.zz-card:hover .zz-chevron { background: rgba(0,245,212,0.08); color: var(--cyan); }
.zz-chevron svg { width: 15px; height: 15px; }

/* Invertido: imagem esquerda */
.zz-card--rev .zz-visual { order: -1; }
.zz-card--rev .zz-content { padding-right: var(--s-8); padding-left: calc(var(--s-5) + 8px); }

/* Mobile */
@media (max-width: 860px) {
  .zz-card { flex-direction: column; min-height: auto; }
  .zz-content { flex: none; width: 100%; padding: var(--s-6) !important; }
  .zz-visual { width: 100%; min-height: 200px; order: -1 !important; }
  .zz-visual img { max-height: 200px; min-height: 160px; }
  .zz-chevron { display: none; }
  .zigzag { gap: 10px; }
}
@media (max-width: 620px) {
  .zz-content { padding: var(--s-5) !important; }
  .zz-visual { min-height: 160px; }
  .zz-visual img { max-height: 160px; }
}

/* Mini TradingView-ish charts reused */
.mini-dash { font-family: var(--font-mono); height: 100%; display: flex; flex-direction: column; }
.mini-top { display: flex; justify-content: space-between; align-items: center; padding: 8px 11px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 11px; color: var(--fg-2); }
.mini-top .g { color: var(--cyan); }
.mini-chart { flex: 1; padding: 6px; }
.mini-chart svg { width: 100%; height: 100%; }

/* Languages */
.lang-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.lang-chip { font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-3); padding: 5px 12px; border: 1px solid var(--border-1); border-radius: 100px; background: rgba(255,255,255,0.02); }
.lang-chip.on { color: var(--cyan); border-color: var(--border-cyan); background: rgba(0,245,212,0.05); }

/* ---------- Herramientas -------------------------------- */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.tool-card {
  background: var(--surface-1); border: 1px solid var(--border-1); border-radius: var(--r-xl);
  padding: var(--s-8); display: flex; flex-direction: column; gap: var(--s-5);
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: var(--sh-card);
}
.tool-card:hover { border-color: var(--border-purple); transform: translateY(-4px); box-shadow: var(--sh-card-hi); }
.tool-ic {
  width: 48px; height: 48px; border-radius: var(--r-md); display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-1); color: var(--purple-light);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.tool-card:hover .tool-ic {
  color: var(--cyan);
  border-color: var(--border-cyan);
  background: rgba(0, 245, 212, 0.02);
}
.tool-ic svg { width: 22px; height: 22px; }
.tool-card h4 { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; color: var(--fg-1); }
.tool-card p { color: var(--fg-3); font-size: 14px; line-height: 1.6; }

/* ---------- Pagos / calendar ---------------------------- */
.pay-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--s-10); align-items: center; }
.pay-copy { display: flex; flex-direction: column; gap: var(--s-5); align-items: flex-start; }
.pay-note {
  display: flex; gap: 12px; padding: var(--s-5);
  background: rgba(0,245,212,0.02); border: 1px solid var(--border-cyan); border-radius: var(--r-md);
  margin-top: var(--s-3);
}
.pay-note .ic { width: 22px; height: 22px; color: var(--cyan); flex: none; margin-top: 1px; }
.pay-note p { font-size: 14px; color: var(--fg-3); line-height: 1.6; }
.pay-note b { color: var(--cyan); font-weight: 600; }

.calendar {
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  box-shadow: var(--sh-card-hi);
  position: relative; overflow: hidden;
}
.cal-glow { display: none; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s-6); }
.cal-month { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--fg-1); }
.cal-legend { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; color: var(--fg-4); }
.cal-legend .sw { width: 10px; height: 10px; border-radius: 3px; background: linear-gradient(120deg, var(--cyan), #5BFBE6); box-shadow: 0 0 8px var(--glow-cyan); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.cal-dow { font-family: var(--font-mono); font-size: 11px; color: var(--fg-4); text-align: center; padding-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.cal-cell {
  aspect-ratio: 1; border-radius: var(--r-xs); position: relative;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 13px; color: var(--fg-3);
  background: rgba(255,255,255,0.01);
  border: 1px solid var(--border-1);
  transition: transform .25s var(--ease), border-color 0.25s, background 0.25s, color 0.25s;
}
.cal-cell.empty { background: none; border: none; }
.cal-cell:not(.empty):not(.payday):hover {
  color: var(--fg-1);
  border-color: var(--border-2);
  background: rgba(255,255,255,0.03);
}
.cal-cell.payday {
  color: #042a26; font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), #5BFBE6);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(0,245,212,0.22);
  cursor: pointer;
  border-radius: var(--r-xs);
}
.cal-cell.payday .pay-ic { position: absolute; top: 3px; right: 4px; width: 11px; height: 11px; }
.cal-cell.payday:hover { transform: scale(1.05); z-index: 2; }
.cal-tip {
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--surface-3); color: var(--fg-1); font-family: var(--font-mono); font-size: 10.5px;
  padding: 5px 10px; border-radius: 7px; white-space: nowrap; border: 1px solid var(--border-cyan);
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; z-index: 5;
}
.cal-cell.payday:hover .cal-tip { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Form ---------------------------------------- */
.form-section { position: relative; }
.form-card {
  max-width: 880px; margin: 0 auto; position: relative;
  background:
    radial-gradient(700px 280px at 50% -10%, rgba(99,102,241,0.16), transparent 60%),
    linear-gradient(165deg, var(--surface-2), var(--surface-1));
  border-radius: var(--r-xl);
  padding: var(--s-10) var(--s-11);
  box-shadow: var(--sh-card-hi);
  overflow: hidden;
}
/* gradient border ring */
.form-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(150deg, var(--border-purple), rgba(255,255,255,0.04) 45%, var(--border-cyan));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.form-head { text-align: center; margin-bottom: var(--s-8); display: flex; flex-direction: column; align-items: center; gap: 14px; }
.form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5) var(--s-6); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; color: var(--fg-2); font-weight: 600; }
.field label .req { color: var(--cyan); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--fg-1);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); background: rgba(0,245,212,0.03);
  box-shadow: 0 0 0 3px rgba(0,245,212,0.12);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238B93A7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* radio pills */
.radio-row { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pill span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; color: var(--fg-3); font-weight: 500;
  padding: 11px 16px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.025); border: 1px solid var(--border-2);
  transition: all .22s var(--ease); cursor: pointer;
}
.radio-pill span::before { content: ""; width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid var(--fg-4); transition: all .2s; }
.radio-pill:hover span { border-color: var(--border-purple); color: var(--fg-2); }
.radio-pill input:checked + span { color: var(--fg-1); border-color: var(--border-cyan); background: rgba(0,245,212,0.06); }
.radio-pill input:checked + span::before { border-color: var(--cyan); background: var(--cyan); box-shadow: 0 0 8px var(--glow-cyan); }
.radio-pill input:focus-visible + span { box-shadow: 0 0 0 3px rgba(0,245,212,0.16); }

/* Validation error state */
.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: var(--negative) !important;
  box-shadow: 0 0 0 3px rgba(244, 88, 122, 0.14) !important;
}

.form-submit { margin-top: var(--s-8); }
.form-reassure { text-align: center; margin-top: var(--s-4); font-size: 12.5px; color: var(--fg-4); font-family: var(--font-mono); display: flex; align-items: center; justify-content: center; gap: 7px; }
.form-reassure svg { width: 14px; height: 14px; color: var(--cyan); }

/* Success screen */
.success {
  position: absolute; inset: 0; z-index: 10;
  display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: var(--s-10);
  background: linear-gradient(165deg, var(--surface-2), var(--surface-1));
  border-radius: var(--r-xl);
}
.success.show { display: flex; animation: fadeIn .5s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }
.success-check {
  width: 84px; height: 84px; border-radius: 50%; margin-bottom: var(--s-6);
  display: grid; place-items: center;
  background: radial-gradient(closest-side, rgba(0,245,212,0.2), rgba(0,245,212,0.04));
  border: 1.5px solid var(--border-cyan);
  box-shadow: 0 0 36px rgba(0,245,212,0.4);
}
.success-check svg { width: 42px; height: 42px; color: var(--cyan); }
.success-check svg path { stroke-dasharray: 48; stroke-dashoffset: 48; animation: drawCheck .6s .25s var(--ease) forwards; }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.success h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 700; letter-spacing: -0.02em; max-width: 560px; }
.success p { color: var(--fg-3); font-size: 16px; line-height: 1.65; max-width: 580px; margin-top: var(--s-4); }
.success .hl { color: var(--cyan); }

/* ---------- Footer -------------------------------------- */
.footer { border-top: 1px solid var(--border-1); padding: var(--s-9) 0 var(--s-7); margin-top: var(--s-9); background: var(--bg-deeper); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s-9); margin-bottom: var(--s-9); }
.footer-brand p { color: var(--fg-4); font-size: 13.5px; line-height: 1.6; margin-top: var(--s-4); max-width: 320px; }
.footer-col h5 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-3); margin-bottom: var(--s-4); }
.footer-col a { display: block; font-size: 14px; color: var(--fg-4); padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-disclaimer { border-top: 1px solid var(--border-1); padding-top: var(--s-6); }
.footer-disclaimer p { font-size: 11.5px; color: var(--fg-5); line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: var(--s-6); flex-wrap: wrap; gap: var(--s-4); }
.footer-bottom span { font-size: 12.5px; color: var(--fg-4); font-family: var(--font-mono); }

/* ---------- Reveal animation ---------------------------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease-in), transform .8s var(--ease-in); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Steps (Cómo funciona) ----------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 86px;
  left: calc(33.33% + 8px);
  right: calc(33.33% + 8px);
  height: 1px;
  background: linear-gradient(90deg, var(--border-purple), var(--border-cyan));
  pointer-events: none;
}
.step-card {
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  text-align: center;
  align-items: center;
  box-shadow: var(--sh-card);
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.step-card:hover { border-color: var(--border-purple); transform: translateY(-4px); box-shadow: var(--sh-card-hi); }
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,245,212,0.06);
  border: 1px solid var(--border-cyan);
  border-radius: var(--r-pill);
  padding: 4px 12px;
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(99,102,241,0.16), rgba(99,102,241,0.02));
  border: 1px solid var(--border-purple);
  color: var(--purple-light);
}
.step-icon svg { width: 26px; height: 26px; }
.step-card h3 { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; color: var(--fg-1); }
.step-card p { color: var(--fg-3); font-size: 14px; line-height: 1.6; }

/* ---------- Testimonials -------------------------------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.testi-card {
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  box-shadow: var(--sh-card);
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.testi-card:hover { border-color: var(--border-purple); transform: translateY(-4px); box-shadow: var(--sh-card-hi); }
.testi-rating { color: var(--cyan); font-size: 16px; letter-spacing: 3px; }
.testi-text { color: var(--fg-2); font-size: 14.5px; line-height: 1.65; flex: 1; font-style: italic; }
.testi-author {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--border-1);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--purple), var(--cyan-deep));
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  flex: none;
}
.testi-author strong { display: block; font-size: 14px; color: var(--fg-1); }
.testi-author span { font-size: 12px; color: var(--fg-4); font-family: var(--font-mono); }

/* ---------- Mobile nav toggle --------------------------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  margin-left: var(--s-3);
  flex: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-2);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s, background .3s;
  pointer-events: none;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Responsive ---------------------------------- */
@media (max-width: 1080px) {
  .platform-grid { grid-template-columns: 1fr; }
  .pay-wrap { grid-template-columns: 1fr; }
  .hero-split-grid { grid-template-columns: 1fr; min-height: auto; gap: var(--s-5); }
  .hero-copy { align-items: center; text-align: center; }
  .hero-bigtitle { max-width: none; }
  .hero-sub { max-width: none; }
  .hero-ctas { justify-content: center; }
  .hero-mob-cards { justify-items: center; max-width: 480px; margin: 0 auto; width: 100%; }

  /* Imagem visível abaixo do copy em tablet */
  .hero-img-col {
    display: flex;
    justify-content: center;
    overflow: hidden;
  }
  .hero-img-col img {
    width: 86%;
    margin-right: 0;
    filter: drop-shadow(0 0 52px rgba(99,102,241,0.44)) drop-shadow(0 20px 44px rgba(0,0,0,0.65));
  }
  .hbs-lights { display: none; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-inner { height: 62px; }
  .nav-links {
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: var(--glass-strong);
    backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid var(--border-1);
    flex-direction: column;
    gap: 0;
    padding: var(--s-3) var(--s-6);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .35s;
    z-index: 99;
  }
  .nav-links.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-1);
    font-size: 16px;
  }
  .nav-links a:last-child { border-bottom: none; }

  .models-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }

  .custom-banner { grid-template-columns: 1fr; padding: var(--s-7) var(--s-6); gap: var(--s-5); }
  .custom-banner .btn { width: 100%; }

  .footer-top { grid-template-columns: 1fr; gap: var(--s-6); }
  .footer { padding: var(--s-8) 0 var(--s-5); margin-top: var(--s-7); }

  .container { padding: 0 var(--s-5); }

  /* Padding dos cards */
  .model-card, .tool-card, .testi-card { padding: var(--s-6); }
  .step-card { padding: var(--s-6); }
  .model-highlight { font-size: clamp(28px, 7vw, 42px); }

  /* Section head */
  .section-head { margin-bottom: var(--s-5); }

  .hero-graphic-wrap .fcard { display: none; }
  .hero-graphic-wrap { padding: 0 var(--s-5); }
}

@media (max-width: 620px) {
  .hero { padding-top: 90px; }

  /* Pill compacto */
  .hero-pill { font-size: 12px; padding: 5px 5px 5px 6px; gap: 7px; }

  /* Cards de destaque (estilo referência) */
  .hero-mob-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .hero-mob-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--surface-1);
    border: 1px solid var(--border-2);
    border-radius: var(--r-md);
    padding: 14px 18px;
    font-size: 13.5px;
    color: var(--fg-3);
    font-weight: 500;
  }
  .hero-mob-card strong {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--cyan);
    letter-spacing: -0.02em;
  }
  .hero-mob-card--alt strong { color: var(--purple-light); }

  /* Cards: empilhados com label esquerda / valor direita no mobile */
  .hero-mob-cards { grid-template-columns: 1fr; gap: 10px; }
  .hero-mob-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
  }
  .hero-mob-card span { font-size: 13.5px; }
  .hero-mob-card strong { font-size: 22px; }

  /* CTA primário: largo, proeminente */
  .hero-ctas { flex-direction: column; gap: 0; }
  .hero-ctas .btn-primary {
    width: 100%;
    padding: 18px 24px;
    font-size: 16px;
    border-radius: var(--r-lg);
  }

  /* Imagem full-bleed com glow */
  .hero-img-col {
    margin-left: calc(-1 * var(--s-5));
    margin-right: calc(-1 * var(--s-5));
    overflow: hidden;
    position: relative;
  }
  .hero-img-col::before {
    content: '';
    position: absolute;
    top: -40px; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(ellipse at 40% 20%, rgba(99,102,241,0.50) 0%, transparent 60%),
      radial-gradient(ellipse at 75% 50%, rgba(0,245,212,0.30) 0%, transparent 55%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
  }
  .hero-img-col img {
    position: relative;
    z-index: 1;
    width: 108%;
    margin-left: -4%;
    margin-right: 0;
    filter: drop-shadow(0 -6px 24px rgba(99,102,241,0.40));
  }

  /* Seções */
  .section-pad { padding: var(--s-8) 0; }
  .section-head { gap: var(--s-2); }

  /* Form */
  .form-card { padding: var(--s-7) var(--s-5); }
  .form-fields { grid-template-columns: 1fr; }

  /* Calendar */
  .calendar { padding: var(--s-5) var(--s-4); }
  .cal-grid { gap: 4px; }
  .cal-cell { font-size: 11px; border-radius: 6px; }
  .cal-month { font-size: 15px; }
  .cal-head { margin-bottom: var(--s-4); }

  /* Pagos */
  .pay-note { flex-direction: column; gap: var(--s-3); }

  /* Steps */
  .step-card { padding: var(--s-5); gap: var(--s-3); }

  /* Custom banner */
  .custom-banner h3 { font-size: 20px; }

  /* Nav */
  .nav-right .btn-secondary { display: none; }

  /* DA */
  .da-stats { grid-template-columns: repeat(2, 1fr); }
  .da-main { grid-template-columns: 1fr; }
  .da-nav, .da-search { display: none; }
}

@media (max-width: 460px) {
  .form-card { padding: var(--s-6) var(--s-4); }
  .hero-img-col img { width: 108%; margin-left: -4%; }
  .model-card, .tool-card, .testi-card { padding: var(--s-5); }
  .custom-banner { padding: var(--s-5) var(--s-4); }
}
