:root {
  --blue: #1E63F5;
  --blue-600: #1855D4;
  --blue-50: #EAF1FE;
  --green: #22C55E;
  --green-dark: #16A34A;
  --green-50: #E6F8EE;
  --ink: #0B1220;
  --ink-700: #1F2A3D;
  --ink-500: #4A5670;
  --ink-300: #8995AE;
  --line: #E5E9F2;
  --line-2: #EEF1F7;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FC;
  --bg-deep: #0B1220;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11,18,32,.04), 0 1px 1px rgba(11,18,32,.03);
  --shadow-md: 0 8px 24px -8px rgba(11,18,32,.12), 0 2px 6px rgba(11,18,32,.04);
  --shadow-lg: 0 30px 60px -20px rgba(11,18,32,.18), 0 10px 24px -10px rgba(11,18,32,.08);
  --maxw: 1240px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; color: var(--ink-500); text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
.mono { font-family: 'JetBrains Mono', monospace; letter-spacing: 0; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }
section { padding: 100px 0; position: relative; }
@media (max-width: 768px) { section { padding: 64px 0; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--blue);
  padding: 6px 10px;
  background: var(--blue-50);
  border-radius: 100px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.eyebrow.green { color: var(--green-dark); background: var(--green-50); }
.eyebrow.green .dot { background: var(--green); }
.h1 { font-size: clamp(40px, 6vw, 76px); line-height: 1.02; }
.h2 { font-size: clamp(32px, 4.2vw, 52px); line-height: 1.06; }
.h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2; }
.lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-500); line-height: 1.55; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 22px;
  border-radius: 100px;
  font-weight: 600; font-size: 15.5px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, 0 8px 22px -8px rgba(11,18,32,.5);
}
.btn-primary:hover { background: #1a2640; }
.btn-blue {
  background: var(--blue);
  color: white;
  box-shadow: 0 8px 22px -8px rgba(30,99,245,.6), 0 1px 0 rgba(255,255,255,.15) inset;
}
.btn-blue:hover { background: var(--blue-600); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: #D6DDEB; }
.btn-sm { height: 42px; padding: 0 16px; font-size: 14px; }
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.header.scrolled { border-bottom-color: var(--line-2); }
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 120px;
}
/* El logo nunca debe encogerse: al tener alto fijo y `max-width:100%`, si flex
   lo comprime pierde las proporciones en vez de reducirse. */
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 120px; width: auto; flex-shrink: 0; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 14px; border-radius: 100px;
  color: var(--ink-700); font-weight: 500; font-size: 14.5px;
  transition: background .15s ease, color .15s ease;
}
.nav a:hover { background: var(--bg-soft); color: var(--ink); }
.nav a.active { color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: 10px; }
/* El bloque completo (logo 209 + nav 551 + CTA con selector 226 + holgura)
   necesita ~1080px. Por debajo, el nav se oculta en vez de desbordarse. */
@media (max-width: 1080px) { .nav { display: none; } }
.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 42px; padding: 0 12px;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--ink-700);
  font-weight: 600; font-size: 14px;
  transition: background .15s ease, border-color .15s ease;
}
.lang-btn:hover { background: var(--bg-soft); border-color: #D6DDEB; }
.lang-btn .code { font-family: 'JetBrains Mono', monospace; letter-spacing: .04em; }
.lang-btn .caret { transition: transform .2s ease; }
.lang.open .lang-btn { background: var(--bg-soft); border-color: #D6DDEB; }
.lang.open .lang-btn .caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 168px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 6px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 60;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 12px; border-radius: 10px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-700);
  transition: background .15s ease, color .15s ease;
}
.lang-menu a:hover { background: var(--bg-soft); color: var(--ink); }
.lang-menu a.active { color: var(--blue); font-weight: 600; }
.lang-menu a .code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; letter-spacing: .1em;
  color: var(--ink-300);
}
.lang-menu a.active .code { color: var(--blue); }
/* En móvil una cabecera de 120px se come el 15% de la pantalla y, al ser
   sticky, lo hace durante todo el scroll. La reducimos y con ella el logo,
   que a 120px de alto pedía 209px de ancho y no cabían. */
@media (max-width: 640px) {
  .header-row { height: 64px; }
  .brand img { height: 46px; }
  .header-cta { gap: 8px; }
  .lang-btn { padding: 0 10px; gap: 5px; }
  .lang-btn .caret { display: none; }
}
/* A 320px el CTA más largo ("Demanar demo") ya no cabía junto al logo. */
@media (max-width: 380px) {
  .brand img { height: 40px; }
  .btn-sm { height: 40px; padding: 0 12px; font-size: 13.5px; }
  .lang-btn { height: 40px; padding: 0 8px; }
}
.hero {
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 85% 10%, rgba(34,197,94,.10), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(30,99,245,.08), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  position: relative;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero h1 .accent {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-600) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline;
}
.hero h1 .accent-g {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { margin-top: 22px; max-width: 540px; }
.hero-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #F2F6FF 0%, #EAF1FE 60%, #E1EBFC 100%);
  border: 1px solid var(--line-2);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual .ground {
  position: absolute; left: 0; right: 0; bottom: 0; height: 38%;
  background: linear-gradient(180deg, #2D3854 0%, #1A2238 100%);
}
.hero-visual .road-stripes {
  position: absolute; left: 0; right: 0; bottom: 16%; height: 6px;
  background: repeating-linear-gradient(90deg, #FFF 0 28px, transparent 28px 56px);
  opacity: .7;
}
.hero-visual .stars {
  position: absolute; top: 0; left: 0; right: 0; height: 62%;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(11,18,32,.2), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(11,18,32,.15), transparent),
    radial-gradient(1px 1px at 60% 50%, rgba(11,18,32,.2), transparent);
}
.hero-visual svg.scene { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; }
.hero-badge {
  position: absolute; top: 22px; left: 22px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 8px 14px 8px 10px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm);
  font-size: 12.5px; font-weight: 600;
  z-index: 3;
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  70% { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.hero-stat {
  position: absolute; bottom: 26px; right: 22px;
  background: white;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  min-width: 170px;
  max-width: 200px;
}
.hero-stat .lbl { font-size: 12.5px; color: var(--ink-700); font-weight: 600; line-height: 1.4; }
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px;
}
@media (max-width: 880px) { .problem-grid { grid-template-columns: 1fr; } }
.stat-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line-2);
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card .big {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(40px, 4vw, 56px); line-height: 1; color: var(--ink);
  letter-spacing: -0.03em;
}
.stat-card .big sup { font-size: 0.55em; vertical-align: top; font-weight: 600; }
.stat-card .lbl { margin-top: 16px; color: var(--ink-500); font-size: 15px; }
.stat-card .source {
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ink-300); text-transform: uppercase; letter-spacing: .08em;
}
.how { background: var(--bg-soft); }
.how-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: end; margin-bottom: 48px;
}
@media (max-width: 880px) { .how-head { grid-template-columns: 1fr; } }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 500;
  color: var(--ink-300); letter-spacing: .12em;
}
.step .illu {
  height: 160px; border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.step h3 { font-size: 22px; }
.step p { font-size: 14.5px; }
.demo {
  margin-top: 32px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.2fr;
  min-height: 400px;
}
@media (max-width: 880px) { .demo { grid-template-columns: 1fr; } }
.demo-side {
  padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.demo-side h3 { color: white; font-size: 24px; }
.demo-side p { color: rgba(255,255,255,.65); font-size: 14.5px; }
.demo-progress { display: flex; gap: 6px; margin-top: 8px; }
.demo-progress .bar {
  flex: 1; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.12);
  overflow: hidden; position: relative;
}
.demo-progress .bar .fill {
  position: absolute; inset: 0; width: 0%;
  background: var(--green);
  transition: width .2s linear;
}
.demo-progress .bar.done .fill { width: 100%; }
.demo-controls { margin-top: auto; display: flex; gap: 10px; align-items: center; }
.demo-controls button {
  height: 38px; padding: 0 14px; border-radius: 100px;
  background: rgba(255,255,255,.1);
  color: white; font-weight: 500; font-size: 13.5px;
  transition: background .15s ease;
}
.demo-controls button:hover { background: rgba(255,255,255,.18); }
.demo-controls button.primary { background: var(--green); color: #06200E; font-weight: 600; }
.demo-controls button.primary:hover { background: #34D472; }
.demo-stage {
  position: relative; min-height: 420px;
  background:
    radial-gradient(80% 60% at 50% 20%, rgba(30,99,245,.18), transparent 70%),
    linear-gradient(180deg, #0B1220 0%, #060A14 100%);
  overflow: hidden;
}
.demo-stage .ground {
  position: absolute; left: 0; right: 0; bottom: 0; height: 22%;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.06);
}
.demo-stage .stripes {
  position: absolute; left: 0; right: 0; bottom: 11%; height: 3px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.25) 0 24px, transparent 24px 48px);
}
.demo-stage .caption {
  position: absolute; top: 22px; left: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .12em;
}
.demo-stage svg.scene-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-top: 48px;
}
@media (max-width: 640px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  background: white;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s ease, border-color .25s ease;
}
.benefit:hover { transform: translateY(-3px); border-color: #D9E0EE; }
.benefit .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.benefit.green .ico { background: var(--green-50); color: var(--green-dark); }
.benefit h3 { font-size: 19px; }
.benefit p { font-size: 14.5px; }
.specs-grid {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: center;
}
@media (max-width: 880px) { .specs-grid { grid-template-columns: 1fr; } }
.specs-visual {
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #F2F6FF, #EAF1FE);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  position: relative;
  overflow: hidden;
}
.specs-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.specs-visual .annotate {
  position: absolute;
  background: white;
  padding: 8px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.specs-list {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line-2);
}
.spec-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-2);
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px;
  align-items: baseline;
}
.spec-row .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; color: var(--ink-300);
  text-transform: uppercase; letter-spacing: .08em;
}
.spec-row .v { font-size: 16px; color: var(--ink); font-weight: 500; }
.spec-row .v small { display: block; font-weight: 400; color: var(--ink-500); font-size: 13px; margin-top: 4px; }
.audiences-grid {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 880px) { .audiences-grid { grid-template-columns: 1fr; } }
.audience {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 18px;
  min-height: 340px;
}
.audience.dark {
  background: var(--ink);
  color: white;
  border-color: transparent;
}
.audience.dark h3 { color: white; }
.audience .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-300);
}
.audience.dark .lbl { color: var(--green); }
.audience h3 { font-size: 26px; }
.audience ul {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.audience ul li {
  font-size: 14.5px;
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink-700);
}
.audience.dark ul li { color: rgba(255,255,255,.78); }
.audience ul li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0; margin-top: 8px;
}
.audience.dark ul li::before { background: var(--green); }
.audience .cta { margin-top: auto; }
.faq { background: var(--bg-soft); }
.faq-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: flex-start; }
@media (max-width: 880px) { .faq-wrap { grid-template-columns: 1fr; gap: 32px; } }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item.open { border-color: #D9E0EE; box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-weight: 600; font-size: 16px;
  color: var(--ink);
  transition: background .15s ease;
}
.faq-q:hover { background: var(--bg-soft); }
.faq-q .toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, background .2s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q .toggle { transform: rotate(45deg); background: var(--ink); color: white; }
.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 22px 22px; color: var(--ink-500); font-size: 14.5px; line-height: 1.6; }
.cta-final { padding: 120px 0; position: relative; overflow: hidden; }
.cta-card {
  background: var(--ink);
  border-radius: 28px;
  padding: 64px;
  color: white;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px;
  align-items: center;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ""; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,.25), transparent 60%);
}
.cta-card::after {
  content: ""; position: absolute; left: -50px; bottom: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,99,245,.25), transparent 60%);
}
@media (max-width: 880px) { .cta-card { grid-template-columns: 1fr; padding: 40px; } }
.cta-card h2 { color: white; font-size: clamp(28px, 3.5vw, 44px); position: relative; z-index: 1; }
.cta-card p { color: rgba(255,255,255,.7); position: relative; z-index: 1; margin-top: 16px; }
.cta-card .form-wrap { position: relative; z-index: 1; }
.form-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  padding: 28px;
  border-radius: 18px;
  display: flex; flex-direction: column; gap: 14px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.form-row input, .form-row select, .form-row textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 12px 14px;
  color: white;
  font-family: inherit; font-size: 14.5px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.form-row select option { background: #1a2640; color: white; }
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(255,255,255,.3); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--green); background: rgba(255,255,255,.08);
}
.form-row.error input, .form-row.error select { border-color: #E26161; }
.form-row .err { color: #FF9E9E; font-size: 11.5px; font-family: 'JetBrains Mono', monospace; margin-top: 2px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .form-grid { grid-template-columns: 1fr; } }
.form-submit {
  height: 50px;
  background: var(--green);
  color: #06200E;
  font-weight: 700;
  border-radius: 100px;
  font-size: 15px;
  margin-top: 6px;
  transition: background .15s ease, transform .15s ease;
}
.form-submit:hover { background: #34D472; }
.form-success {
  text-align: center; padding: 40px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.form-success .check {
  width: 56px; height: 56px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: #06200E;
}
.form-success h4 { color: white; font-family: 'Sora', sans-serif; font-size: 20px; margin: 0; }
.form-success p { color: rgba(255,255,255,.7); font-size: 14px; }
.footer {
  background: #060A14;
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 120px; width: auto; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: 14px; max-width: 320px; margin-top: 16px; }
.footer h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 0 0 16px; font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(255,255,255,.7); font-size: 14px; transition: color .15s ease; }
.footer ul a:hover { color: white; }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12.5px; color: rgba(255,255,255,.4);
}
.footer-logo { height: 36px; filter: brightness(0) invert(1); margin-bottom: 0; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

  /* ── Legal Modals ─────────────────────────────────── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(11,18,32,.7);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity .25s ease;
  }
  .modal-overlay.visible { opacity: 1; pointer-events: all; }
  .modal-box {
    background: white;
    border-radius: 20px;
    max-width: 720px; width: 100%;
    max-height: 80vh;
    display: flex; flex-direction: column;
    box-shadow: 0 40px 80px rgba(11,18,32,.3);
    transform: translateY(20px);
    transition: transform .25s ease;
  }
  .modal-overlay.visible .modal-box { transform: translateY(0); }
  .modal-header {
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--line-2);
    display: flex; align-items: center; justify-content: space-between;
  }
  .modal-header h3 { font-size: 22px; }
  .modal-close {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--bg-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--ink-500);
    transition: background .15s;
  }
  .modal-close:hover { background: var(--line); }
  .modal-body {
    padding: 24px 32px 32px;
    overflow-y: auto;
    flex: 1;
  }
  .modal-body h4 { font-size: 16px; color: var(--ink); margin: 20px 0 8px; }
  .modal-body h4:first-child { margin-top: 0; }
  .modal-body p, .modal-body li { font-size: 14px; color: var(--ink-500); line-height: 1.65; margin: 0 0 8px; }
  .modal-body ul { padding-left: 20px; margin: 8px 0; }
  .modal-body .mono-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; color: var(--ink-300);
    text-transform: uppercase; letter-spacing: .1em;
    margin-bottom: 16px;
  }
