/* ============================================================
   SXT STYLES — GLOBAL STYLES
   Dark theme · Mobile-first · No framework
   Fonts: Orbitron (display) · Inter (body) · JetBrains Mono (UI)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500;600;700&display=swap');

:root {
  --bg:       #050608;
  --dark:     #0d0f12;
  --card:     #111318;
  --border:   rgba(255,255,255,.08);
  --purple:   #8b5cf6;
  --violet:   #7c3aed;
  --gold:     #f59e0b;
  --green:    #10b981;
  --muted:    rgba(255,255,255,.45);
  --dim:      rgba(255,255,255,.7);
  --white:    #ffffff;
  --font-display: 'Orbitron', monospace;
  --font-body:    'Inter', sans-serif;
  --font-ui:      'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg); color: var(--white);
  font-family: var(--font-body); font-weight: 400;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1.2rem;
  background: rgba(5,6,8,.9);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .3s; min-height: 56px;
}
.nav.scrolled { background: rgba(5,6,8,.99); }
.nav-logo {
  font-family: var(--font-display); font-size: .82rem; font-weight: 900;
  letter-spacing: .1em; color: var(--white); text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
}
.nav-logo span { color: var(--purple); }
.nav-links { display: none; gap: 1.6rem; list-style: none; }
.nav-links a {
  font-family: var(--font-ui); font-size: .75rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all .25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none; position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
  background: rgba(5,6,8,.98); z-index: 999; flex-direction: column;
  padding: 2rem 1.5rem; gap: .4rem; overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-ui); font-size: 1rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  padding: .9rem 0; border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .btn-primary { text-align: center; margin-top: 1rem; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  font-family: var(--font-ui); font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .7rem 1.8rem; background: var(--purple); color: var(--white);
  border: none; cursor: pointer; text-decoration: none; display: inline-block;
  -webkit-clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px));
  clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px));
  transition: all .22s; white-space: nowrap;
}
.btn-primary:hover { background: var(--gold); color: #000; transform: translateY(-2px); }
.btn-secondary {
  font-family: var(--font-ui); font-weight: 600; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .7rem 1.8rem; background: transparent;
  color: var(--dim); border: 1px solid rgba(255,255,255,.2);
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: all .22s; white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--purple); color: var(--purple); }
.btn-ghost {
  font-family: var(--font-ui); font-size: .75rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 2px;
  transition: color .15s, border-color .15s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }
.btn-row { display: flex; gap: .9rem; flex-wrap: wrap; align-items: center; margin-top: 1.8rem; }
.nav-cta { padding: .4rem 1.1rem !important; font-size: .68rem !important; display: none; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 7rem 1.4rem 4rem; position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(139,92,246,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-glow {
  position: absolute; top: 30%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(139,92,246,.15) 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero-kicker {
  font-family: var(--font-ui); font-size: .6rem; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: .7rem;
}
.kicker-line { display: block; width: 28px; height: 1px; background: var(--purple); flex-shrink: 0; }
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 7rem); font-weight: 800;
  line-height: .96; letter-spacing: -.03em; margin-bottom: 1.6rem;
}
.hero h1 em { font-style: normal; color: var(--purple); }
.hero-sub {
  font-size: 1rem; font-weight: 300; color: var(--dim);
  line-height: 1.8; max-width: 520px; letter-spacing: .01em;
}
.hero-badge-wrap {
  position: relative; z-index: 2; margin-top: 3.5rem;
  display: flex; flex-direction: column; gap: 1rem; align-self: flex-start;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(139,92,246,.1); border: 1px solid rgba(139,92,246,.3);
  padding: .45rem 1rem; font-family: var(--font-ui);
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--purple);
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-metrics { display: flex; align-items: center; gap: 1.2rem; }
.hm-item { display: flex; flex-direction: column; gap: .2rem; }
.hm-n { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); }
.hm-l { font-family: var(--font-ui); font-size: .55rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.hm-sep { width: 1px; height: 36px; background: var(--border); }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(3, 1fr);
  overflow-x: auto;
}
.stat-item {
  padding: 1.6rem 1.4rem; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: .3rem;
}
.stat-item:last-child { border-right: none; }
.stat-n { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.stat-l { font-family: var(--font-ui); font-size: .55rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 5rem 1.4rem; border-top: 1px solid var(--border); }
.section-alt { background: var(--dark); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.kicker {
  font-family: var(--font-ui); font-size: .58rem; font-weight: 400;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.6rem;
  display: flex; align-items: center; gap: .6rem;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800;
  letter-spacing: -.025em; line-height: 1.02; margin-bottom: 1.2rem;
}
h2 em { font-style: normal; color: var(--purple); font-weight: 300; }
.lead { font-size: 1rem; font-weight: 300; color: var(--dim); line-height: 1.75; max-width: 620px; margin-bottom: 3rem; }

/* ── FEATURE GRID ────────────────────────────────────────── */
.feature-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  margin-top: 2rem;
}
.feature-card {
  background: var(--dark); padding: 2rem;
  display: grid; grid-template-columns: 2.5rem 1fr auto auto;
  gap: 1.4rem; align-items: start; cursor: pointer;
  text-decoration: none; color: inherit; transition: background .15s;
}
.feature-card:hover { background: rgba(139,92,246,.06); }
.fc-wide { grid-column: 1 / -1; }
.fc-dark { background: var(--bg); cursor: default; }
.fc-index {
  font-family: var(--font-ui); font-size: .58rem; color: var(--muted);
  letter-spacing: .08em; padding-top: .2rem;
}
.fc-content { display: flex; flex-direction: column; gap: .5rem; }
.fc-tag {
  font-family: var(--font-ui); font-size: .55rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--purple); display: inline-block;
}
.feature-card h3 { font-size: 1rem; font-weight: 600; letter-spacing: -.01em; }
.feature-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.fc-stat { font-family: var(--font-ui); font-size: .6rem; color: var(--purple); white-space: nowrap; padding-top: .2rem; }
.fc-arrow { font-size: .75rem; color: var(--muted); transition: transform .2s, color .15s; }
.feature-card:hover .fc-arrow { transform: translateX(4px); color: var(--white); }

/* ── STEPS ───────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.step { display: flex; gap: 1.6rem; align-items: flex-start; padding: 1.8rem 0; }
.step-num {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 900;
  color: var(--purple); opacity: .5; flex-shrink: 0; line-height: 1;
}
.step-body h4 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.step-body p { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.step-connector { width: 1px; height: 2rem; background: var(--border); margin-left: 1.6rem; }

/* ── MIRROR SPLIT ────────────────────────────────────────── */
.mirror-split { display: flex; flex-direction: column; gap: 3rem; }
.mirror-text { max-width: 560px; }
.spec-list { list-style: none; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0; }
.spec-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: .7rem 0; border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.spec-key { font-family: var(--font-ui); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.spec-val { font-size: .85rem; color: var(--white); text-align: right; }

/* Mirror visual widget */
.mirror-visual { display: flex; justify-content: center; }
.mirror-frame {
  width: 240px; height: 400px; border: 2px solid rgba(139,92,246,.4);
  border-radius: 8px; padding: 8px;
  background: linear-gradient(180deg, rgba(139,92,246,.05) 0%, rgba(5,6,8,1) 100%);
  box-shadow: 0 0 60px rgba(139,92,246,.15), inset 0 0 30px rgba(139,92,246,.04);
}
.mirror-screen { width: 100%; height: 100%; background: rgba(0,0,0,.8); border-radius: 4px; overflow: hidden; }
.mirror-ui { height: 100%; display: flex; flex-direction: column; padding: 1.2rem 1rem; }
.mui-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.mui-logo { font-family: var(--font-display); font-size: .7rem; font-weight: 900; color: var(--purple); letter-spacing: .14em; }
.mui-time { font-family: var(--font-ui); font-size: .65rem; color: var(--muted); }
.mui-body { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
.mui-scan-ring {
  width: 90px; height: 90px; border-radius: 50%;
  border: 1.5px solid rgba(139,92,246,.4);
  box-shadow: 0 0 20px rgba(139,92,246,.2);
  animation: scanpulse 2.5s ease-in-out infinite;
}
@keyframes scanpulse { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.08);opacity:1} }
.mui-label { font-family: var(--font-ui); font-size: .5rem; letter-spacing: .22em; text-transform: uppercase; color: var(--purple); }
.mui-footer { display: flex; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
.mui-stat { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.mui-stat span { font-family: var(--font-ui); font-size: .45rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.mui-stat b { font-family: var(--font-ui); font-size: .65rem; color: var(--white); }

/* ── QUOTE ───────────────────────────────────────────────── */
.quote-center { text-align: center; max-width: 800px; margin: 0 auto; }
.big-quote {
  font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 300;
  line-height: 1.4; letter-spacing: -.02em; color: var(--dim);
  quotes: none; margin-bottom: 1.2rem;
}
.quote-attr { font-family: var(--font-ui); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* ── CTA BAND ────────────────────────────────────────────── */
.section-cta-band { background: rgba(139,92,246,.06); border-top: 1px solid rgba(139,92,246,.2); border-bottom: 1px solid rgba(139,92,246,.2); }
.cta-band-inner { display: flex; flex-direction: column; gap: 2rem; }
.cta-band-inner h2 { margin-bottom: .5rem; }
.cta-band-inner p { font-size: .95rem; color: var(--muted); }

/* ── MIRROR PAGE ─────────────────────────────────────────── */
.page-hero { padding: 8rem 1.4rem 4rem; border-bottom: 1px solid var(--border); }
.page-hero-inner { max-width: 900px; }
.spec-table { width: 100%; margin-top: 2rem; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--border); text-align: left; font-size: .9rem; }
.spec-table th { font-family: var(--font-ui); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); background: var(--dark); }
.spec-table td:last-child { color: var(--white); }
.spec-table td:first-child { font-family: var(--font-ui); font-size: .7rem; letter-spacing: .06em; color: var(--muted); }

/* ── SCANNER PAGE ────────────────────────────────────────── */
.scanner-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.upload-zone {
  border: 2px dashed rgba(139,92,246,.3); background: rgba(139,92,246,.03);
  padding: 3rem 2rem; text-align: center; cursor: pointer; transition: all .2s;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.upload-zone:hover { border-color: var(--purple); background: rgba(139,92,246,.06); }
.upload-icon { font-size: 2.5rem; opacity: .4; }
.upload-zone h3 { font-size: 1rem; font-weight: 600; }
.upload-zone p { font-size: .85rem; color: var(--muted); }
.scan-steps { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.scan-step { display: flex; gap: 1rem; align-items: center; padding: 1rem; background: var(--card); border: 1px solid var(--border); }
.ss-num { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--purple); flex-shrink: 0; width: 2rem; text-align: center; }
.ss-body h4 { font-size: .9rem; font-weight: 600; margin-bottom: .25rem; }
.ss-body p { font-size: .82rem; color: var(--muted); }

/* ── TRY-ON PAGE ─────────────────────────────────────────── */
.tryon-layout { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }
.tryon-canvas { background: var(--card); border: 1px solid var(--border); min-height: 320px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.tryon-canvas-label { font-family: var(--font-ui); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.tryon-controls { display: flex; flex-direction: column; gap: 1rem; }
.garment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; }
.garment-item { background: var(--card); border: 1px solid var(--border); padding: 1rem .8rem; text-align: center; cursor: pointer; transition: all .18s; }
.garment-item:hover, .garment-item.selected { border-color: var(--purple); background: rgba(139,92,246,.06); }
.garment-item span { display: block; font-family: var(--font-ui); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: .4rem; }

/* ── PORTAL PAGE ─────────────────────────────────────────── */
.portal-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
.portal-card { background: var(--card); border: 1px solid var(--border); padding: 1.6rem; display: flex; flex-direction: column; gap: .6rem; text-decoration: none; color: inherit; transition: border-color .18s; }
.portal-card:hover { border-color: var(--purple); }
.pc-tag { font-family: var(--font-ui); font-size: .55rem; letter-spacing: .14em; text-transform: uppercase; color: var(--purple); }
.portal-card h3 { font-size: .95rem; font-weight: 600; }
.portal-card p { font-size: .85rem; color: var(--muted); line-height: 1.5; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem; }
.team-card { background: var(--card); border: 1px solid var(--border); padding: 1.6rem; }
.team-card h4 { font-size: .95rem; font-weight: 600; margin-bottom: .3rem; }
.team-card .role { font-family: var(--font-ui); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--purple); margin-bottom: .5rem; }
.team-card p { font-size: .85rem; color: var(--muted); line-height: 1.55; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; max-width: 560px; margin-top: 2rem; }
.cf-row { display: flex; flex-direction: column; gap: .4rem; }
.cf-row label { font-family: var(--font-ui); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.cf-row input, .cf-row textarea, .cf-row select {
  background: var(--card); border: 1px solid var(--border); color: var(--white);
  padding: .75rem 1rem; font-family: var(--font-body); font-size: .9rem;
  width: 100%; outline: none; transition: border-color .18s;
}
.cf-row input:focus, .cf-row textarea:focus { border-color: var(--purple); }
.cf-row textarea { min-height: 120px; resize: vertical; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding: 3rem 1.4rem 1.5rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand { display: flex; flex-direction: column; gap: .8rem; max-width: 320px; }
.footer-logo { font-family: var(--font-display); font-size: .8rem; font-weight: 900; letter-spacing: .12em; }
.footer-logo span { color: var(--purple); }
.footer-brand p { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.fl-col { display: flex; flex-direction: column; gap: .6rem; }
.fl-head { font-family: var(--font-ui); font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.fl-col a { font-size: .88rem; color: var(--muted); text-decoration: none; transition: color .15s; }
.fl-col a:hover { color: var(--white); }
.footer-bar {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem;
  border-top: 1px solid var(--border); padding-top: 1.2rem;
  font-family: var(--font-ui); font-size: .6rem; letter-spacing: .08em; color: var(--muted);
}

/* ── SECTION MIRROR CTA ─────────────────────────────────── */
.section-mirror { background: var(--dark); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (min-width: 600px) {
  .stats-bar { grid-template-columns: repeat(6, 1fr); }
  .scanner-grid { grid-template-columns: 1fr 1fr; }
  .garment-grid { grid-template-columns: repeat(4, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .portal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .nav { padding: .9rem 2.5rem; }
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .nav-cta { display: inline-block !important; }
  .hero { padding: 7rem 2.5rem 4rem; }
  .hero h1 { max-width: 820px; }
  .section { padding: 7rem 2.5rem; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { padding: 2.4rem; }
  .steps { flex-direction: row; align-items: flex-start; }
  .step { flex-direction: column; gap: .8rem; flex: 1; padding: 0; }
  .step-connector { width: 2rem; height: 1px; background: var(--border); margin-left: 0; margin-top: 1.8rem; flex-shrink: 0; }
  .mirror-split { flex-direction: row; align-items: center; gap: 4rem; }
  .cta-band-inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .footer-inner { flex-direction: row; justify-content: space-between; }
  .tryon-layout { flex-direction: row; }
  .tryon-canvas { flex: 1; min-height: 480px; }
  .tryon-controls { width: 280px; flex-shrink: 0; }
  .portal-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .ea-split { flex-direction: row; align-items: flex-start; }
}

/* ── EARLY ACCESS ─────────────────────────────────────────── */
.section-earlyaccess { background: rgba(139,92,246,.04); border-top: 1px solid rgba(139,92,246,.2); border-bottom: 1px solid rgba(139,92,246,.2); }
.ea-split { display: flex; flex-direction: column; gap: 3rem; }
.ea-text { flex: 1; }
.ea-reasons { list-style: none; padding: 0; margin: 1.6rem 0 0; display: flex; flex-direction: column; gap: .65rem; }
.ea-reasons li { display: flex; gap: .55rem; font-size: .9rem; color: var(--muted); line-height: 1.5; }
.ea-reasons li .ea-arrow { color: var(--purple); flex-shrink: 0; font-style: normal; }
.ea-form-wrap { flex: 1; max-width: 460px; width: 100%; }
.ea-form { background: var(--card); border: 1px solid var(--border); padding: 2rem; display: flex; flex-direction: column; gap: .9rem; }
.ea-count-row { font-family: var(--font-ui); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding-bottom: .6rem; border-bottom: 1px solid var(--border); }
#eaCount { color: var(--purple); font-size: 1rem; font-variant-numeric: tabular-nums; font-family: var(--font-sans); font-weight: 700; }
.ea-submit { width: 100%; text-align: center; margin-top: .2rem; justify-content: center; }
.ea-success { display: none; font-family: var(--font-ui); font-size: .75rem; letter-spacing: .1em; color: #4ade80; text-align: center; padding: .7rem; border: 1px solid rgba(74,222,128,.2); background: rgba(74,222,128,.05); }
