:root {
  --bg: #0a0c0f;
  --bg2: #0e1115;
  --bg3: #13171d;
  --teal: #00d4aa;
  --teal-dim: rgba(0,212,170,0.12);
  --teal-border: rgba(0,212,170,0.25);
  --orange: #ff6a3d;
  --text: #f0f0f0;
  --text2: #a0aec0;
  --text3: #6b7a8d;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --font-head: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: rgba(10,12,15,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding-inline: max(40px, calc((100% - 1200px) / 2)); display: flex; align-items: center; justify-content: space-between; height: 160px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 128px; object-fit: contain; display: block; }
.nav-logo-fallback { display: flex; align-items: center; gap: 8px; }
.nav-logo-icon { width: 32px; height: 32px; background: var(--teal); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 16px; color: #0a0c0f; }
.nav-logo-text { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--text); }
.nav-logo-text span { color: var(--teal); }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-link { padding: 6px 14px; font-size: 14px; color: var(--text2); border-radius: 6px; cursor: pointer; border: none; background: none; font-family: var(--font-body); transition: all 0.2s; text-decoration: none; display: block; }
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--bg3); }
.nav-cta { background: var(--teal); color: #0a0c0f; border: none; padding: 8px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: opacity 0.2s; text-decoration: none; display: inline-block; }
.nav-cta:hover { opacity: 0.9; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 6px 8px; font-family: var(--font-body); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero { padding: 100px 40px 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 70%); pointer-events: none; }
.badge { display: inline-flex; align-items: center; gap: 6px; background: var(--teal-dim); color: var(--teal); font-size: 12px; font-weight: 500; padding: 5px 14px; border-radius: 20px; margin-bottom: 28px; border: 1px solid var(--teal-border); letter-spacing: 0.3px; }
.hero h1 { font-family: var(--font-head); font-size: 52px; font-weight: 700; line-height: 1.1; margin-bottom: 10px; letter-spacing: -1px; }
.hero h1 .accent { color: var(--teal); }
.hero-sub { font-family: var(--font-head); font-size: 22px; font-weight: 400; color: var(--teal); margin-bottom: 20px; letter-spacing: 0.5px; }
.hero p { font-size: 17px; color: var(--text2); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--teal); color: #0a0c0f; border: none; padding: 14px 32px; border-radius: var(--radius); font-size: 15px; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: opacity 0.2s; text-decoration: none; display: inline-block; }
.btn-primary:hover { opacity: 0.9; }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--border2); padding: 14px 32px; border-radius: var(--radius); font-size: 15px; cursor: pointer; font-family: var(--font-body); transition: all 0.2s; text-decoration: none; display: inline-block; }
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }

/* STATS BAR */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); margin: 0 auto; max-width: 1120px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.stat { background: var(--bg2); padding: 24px 16px; text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--teal); }
.stat-label { font-size: 13px; color: var(--text3); margin-top: 4px; line-height: 1.4; }

/* SECTIONS */
.section { padding: 80px 40px; }
.section-alt { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-label { font-size: 11px; color: var(--teal); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; font-weight: 500; }
.section-title { font-family: var(--font-head); font-size: 32px; font-weight: 700; color: var(--text); margin-bottom: 14px; line-height: 1.2; letter-spacing: -0.5px; }
.section-title .accent { color: var(--teal); }
.section-sub { font-size: 18px; color: var(--text2); max-width: 560px; line-height: 1.7; margin-bottom: 48px; }

/* GRID */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

/* CARDS */
.card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: border-color 0.2s; }
.card:hover { border-color: var(--border2); }
.card-icon { width: 40px; height: 40px; background: var(--teal-dim); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 20px; }
.card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* SCENARIO CARDS */
.scenario-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; border-left: 3px solid var(--teal); }
.scenario-q { font-family: var(--font-head); font-size: 14px; color: var(--text); font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.scenario-a { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* MODULE PILLS */
.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 40px; }
.module-pill { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; display: flex; align-items: center; gap: 10px; transition: border-color 0.2s; }
.module-pill:hover { border-color: var(--teal-border); }
.module-pill span { font-size: 13px; color: var(--text2); }

/* FEATURE ROWS */
.feature-row { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; gap: 24px; margin-bottom: 16px; }
.feature-icon-lg { width: 52px; height: 52px; background: var(--teal-dim); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 24px; border: 1px solid var(--teal-border); }
.feature-body h3 { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.feature-body p { font-size: 15px; color: var(--text2); line-height: 1.65; margin-bottom: 12px; }
.feature-body ul { padding-left: 18px; }
.feature-body ul li { font-size: 13px; color: var(--text3); margin-bottom: 4px; line-height: 1.5; }

/* PRICING */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 580px; margin: 0 auto 24px; }
.price-card { background: var(--bg3); border: 1px solid var(--teal); border-radius: var(--radius-lg); padding: 28px; }
.price-region { font-size: 11px; color: var(--text3); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.price-amount { font-family: var(--font-head); font-size: 32px; font-weight: 700; color: var(--text); }
.price-amount span { font-size: 15px; color: var(--text3); font-weight: 400; font-family: var(--font-body); }
.price-annual { font-size: 12px; color: var(--teal); margin: 8px 0 24px; }
.price-features { list-style: none; }
.price-features li { font-size: 13px; color: var(--text2); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '\2713'; color: var(--teal); font-weight: 600; font-size: 13px; flex-shrink: 0; }
.price-cta { display: block; width: 100%; margin-top: 24px; padding: 12px; background: var(--teal); color: #0a0c0f; border: none; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: opacity 0.2s; text-align: center; text-decoration: none; }
.price-cta:hover { opacity: 0.9; }
.tax-note { font-size: 12px; color: var(--text3); text-align: center; max-width: 580px; margin: 0 auto; }

/* FAQ */
.faq-list { max-width: 620px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-q { font-size: 15px; color: var(--text); font-weight: 500; margin-bottom: 10px; font-family: var(--font-head); }
.faq-a { font-size: 15px; color: var(--text2); line-height: 1.7; }

/* CTA BANNER */
.cta-banner { background: var(--teal); padding: 80px 40px; text-align: center; }
.cta-banner h2 { font-family: var(--font-head); font-size: 32px; font-weight: 700; color: #0a0c0f; margin-bottom: 12px; letter-spacing: -0.5px; }
.cta-banner p { font-size: 16px; color: rgba(10,12,15,0.7); margin-bottom: 32px; }
.btn-dark { background: #0a0c0f; color: var(--teal); border: none; padding: 14px 36px; border-radius: var(--radius); font-size: 15px; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: opacity 0.2s; text-decoration: none; display: inline-block; }
.btn-dark:hover { opacity: 0.85; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; align-items: start; margin-bottom: 64px; }
.about-heading { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 16px; line-height: 1.3; }
.about-body { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 16px; }
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 1px; background: var(--border2); }
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-dot { position: absolute; left: -23px; top: 5px; width: 14px; height: 14px; border-radius: 50%; background: var(--teal); border: 2px solid var(--bg); }
.timeline-item h4 { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.timeline-item p { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* INTRO (centered page intro) */
.page-intro { text-align: center; padding-bottom: 40px; }
.page-intro .section-title { font-size: 40px; }
.page-intro .intro-sub { font-size: 16px; color: var(--text2); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* EARLY ACCESS */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 860px; margin: 0 auto; align-items: start; }
.access-heading { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 14px; line-height: 1.2; }
.access-lede { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 8px; }
.benefit-list { margin-top: 28px; }
.benefit-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.benefit-row:last-child { border-bottom: none; }
.benefit-icon { width: 34px; height: 34px; background: var(--teal-dim); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; margin-top: 1px; border: 1px solid var(--teal-border); }
.benefit-text h4 { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.benefit-text p { font-size: 13px; color: var(--text2); }
.waitlist-form { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.waitlist-form h2 { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.waitlist-form .form-desc { font-size: 13px; color: var(--text2); margin-bottom: 24px; }
.tally-embed { width: 100%; min-height: 520px; border: none; background: transparent; display: block; }
.form-note { font-size: 11px; color: var(--text3); text-align: center; margin-top: 14px; }

/* DISCLAIMER */
.disclaimer { font-size: 11px; color: var(--text3); text-align: center; padding: 20px 40px; border-top: 1px solid var(--border); background: var(--bg2); line-height: 1.6; }

/* FOOTER */
footer { padding: 48px 40px 24px; border-top: 1px solid var(--border); background: var(--bg2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-brand img { height: 28px; object-fit: contain; }
.footer-brand p { font-size: 14px; color: var(--text3); line-height: 1.6; margin-top: 12px; max-width: 260px; }
.footer-tagline { font-size: 11px; color: var(--teal); font-style: italic; margin-top: 8px; }
.footer-col h4 { font-size: 11px; color: var(--text2); font-weight: 600; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; font-size: 14px; color: var(--text3); margin-bottom: 10px; text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 14px; color: var(--text3); }

/* LAYOUT CONTAINER — cap content width on wide monitors */
.section, .hero, .cta-banner, footer { max-width: 1200px; margin-left: auto; margin-right: auto; }

/* Preserve full-bleed backgrounds despite max-width above.
   box-shadow paints the bg across the viewport; clip-path keeps it within the
   element's vertical bounds while allowing horizontal overflow. */
.section-alt, .cta-banner, footer { clip-path: inset(0 -100vmax); }
.section-alt { box-shadow: 0 0 0 100vmax var(--bg2); border-top: none; border-bottom: none; }
.cta-banner { box-shadow: 0 0 0 100vmax var(--teal); }
footer { box-shadow: 0 0 0 100vmax var(--bg2); border-top: none; }

/* RESPONSIVE — tablet */
@media (max-width: 900px) {
  .access-grid { grid-template-columns: 1fr; max-width: 520px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .module-grid { grid-template-columns: repeat(3, 1fr); }
}

/* RESPONSIVE — mobile */
@media (max-width: 768px) {
  nav { padding: 0 20px; position: relative; height: 96px; }
  .nav-logo img { height: 72px; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 4px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link { padding: 12px 14px; font-size: 14px; }
  .nav-links .nav-cta { display: block; text-align: center; margin-top: 10px; padding: 12px; font-size: 14px; }
  .hero { padding: 60px 20px 48px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .hero p { font-size: 15px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); margin: 0 20px; }
  .section { padding: 48px 20px; }
  .section-title { font-size: 26px; }
  .page-intro .section-title { font-size: 30px; }
  .grid-2, .grid-3, .grid-4, .module-grid, .price-grid, .footer-grid { grid-template-columns: 1fr; }
  .feature-row { flex-direction: column; padding: 22px; }
  .cta-banner { padding: 56px 20px; }
  .cta-banner h2 { font-size: 26px; }
  .waitlist-form { padding: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .disclaimer { padding: 20px; }
  footer { padding: 40px 20px 20px; }
}

/* RESPONSIVE — small mobile (375px and under) */
@media (max-width: 420px) {
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 15px; letter-spacing: 0.3px; }
  .hero-btns .btn-primary, .hero-btns .btn-secondary { width: 100%; padding: 14px 20px; }
  .stat-num { font-size: 18px; }
  .stat-label { font-size: 11px; }
  .section-title { font-size: 24px; }
  .page-intro .section-title { font-size: 26px; }
  .access-heading { font-size: 24px; }
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 3px; }
