:root {
  /* PRIMARY (Indigo) */
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-soft: #eef2ff;
  --primary-tint: #e0e7ff;

  /* ACCENT (Cyan) */
  --accent: #06b6d4;
  --accent-soft: #ecfeff;

  /* SUCCESS / WARM */
  --success: #10b981;
  --warm: #f59e0b;

  /* NEUTRALS (Slate scale) */
  --bg: #ffffff;
  --bg-2: #f8fafc;
  --bg-3: #f1f5f9;
  --card: #ffffff;
  --card-2: #f8fafc;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --text: #0f172a;
  --subtext: #475569;
  --muted: #94a3b8;

  /* SHADOWS */
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.06);
  --shadow-md: 0 4px 6px -1px rgba(15,23,42,0.05), 0 10px 15px -3px rgba(15,23,42,0.08);
  --shadow-lg: 0 10px 25px -5px rgba(15,23,42,0.08), 0 20px 40px -10px rgba(15,23,42,0.12);
  --shadow-xl: 0 25px 50px -12px rgba(15,23,42,0.18);
  --ring-primary: 0 0 0 4px rgba(79,70,229,0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); font-family: 'Nunito', sans-serif; color: var(--text); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.6; overflow-x: hidden; }

h1, h2, h3, h4, h5, h6,
.sec-title, .cta-title, .form-title, .faq-cta-title, .ownership-title,
.legal-title, .legal-h2, .legal-h3, .nf-title,
.feat-title, .how-title, .ind-card-title, .price-amount,
.price-name, .testi-name, .form-label, .footer-col-title,
.faq-q-text, .nav-logo, .footer-logo {
  padding-bottom: 0.12em;
  overflow: visible;
}

a { color: inherit; }

/* ────────────────────────────────────────────────────────────────────────
   NAV
   ──────────────────────────────────────────────────────────────────────── */
.nav { background: rgba(255,255,255,0.85); backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--border); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 68px; position: sticky; top: 0; z-index: 100; }
.nav-logo { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--primary); line-height: 1.3; letter-spacing: -0.01em; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 13px; font-weight: 700; color: var(--subtext); cursor: pointer; text-decoration: none; transition: color 0.15s; line-height: 1.4; }
.nav-link:hover { color: var(--primary); }
.nav-ctas { display: flex; align-items: center; gap: 10px; }
.btn-ghost { background: transparent; border: 1.5px solid var(--border); border-radius: 10px; padding: 9px 18px; font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 800; color: var(--subtext); cursor: pointer; transition: all 0.15s; line-height: 1.4; }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-primary { background: var(--primary); border: none; border-radius: 10px; padding: 9px 18px; font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 800; color: #fff; cursor: pointer; transition: all 0.15s; line-height: 1.4; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-hover); box-shadow: var(--shadow-md); transform: translateY(-1px); }

/* ────────────────────────────────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────────────────────────────────── */
.hero { padding: 110px 40px 96px; text-align: center; position: relative; overflow: hidden; background: var(--bg); }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(79,70,229,0.08), transparent 70%), radial-gradient(circle 400px at 85% 20%, rgba(6,182,212,0.06), transparent 70%), radial-gradient(circle 300px at 15% 50%, rgba(79,70,229,0.05), transparent 70%); pointer-events: none; z-index: 0; }
.hero > * { position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--primary-soft); border: 1px solid var(--primary-tint); border-radius: 99px; padding: 6px 14px; font-size: 11px; font-weight: 800; color: var(--primary); margin-bottom: 28px; letter-spacing: 0.06em; line-height: 1.4; text-transform: uppercase; }
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
h1 { font-family: 'Nunito', sans-serif; font-size: 60px; font-weight: 900; line-height: 1.1; color: var(--text); margin-bottom: 26px; letter-spacing: -0.025em; }
h1 span { background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 18px; color: var(--subtext); font-weight: 500; max-width: 620px; margin: 0 auto 40px; line-height: 1.7; }
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 64px; flex-wrap: wrap; }
.btn-lg { border-radius: 12px; padding: 15px 30px; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 800; cursor: pointer; transition: all 0.2s; line-height: 1.4; }
.btn-lg-primary { background: var(--primary); border: none; color: #fff; box-shadow: var(--shadow-md), var(--ring-primary); }
.btn-lg-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg), 0 0 0 4px rgba(79,70,229,0.15); }
.btn-lg-outline { background: var(--bg); border: 1.5px solid var(--border-strong); color: var(--text); }
.btn-lg-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 920px; margin: 0 auto 44px; background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 30px 24px; box-shadow: var(--shadow-md); }
.hero-stat { padding: 8px 16px; border-right: 1px solid var(--border); text-align: center; }
.hero-stat:last-child { border-right: none; }
.hero-stat-val { font-family: 'Nunito', sans-serif; font-size: 30px; font-weight: 900; color: var(--text); line-height: 1.15; letter-spacing: -0.02em; }
.hero-stat-val span { color: var(--primary); }
.hero-stat-lbl { font-size: 11px; font-weight: 700; color: var(--subtext); margin-top: 6px; line-height: 1.45; }
.hero-stat-src { font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 400; color: var(--muted); margin-top: 6px; line-height: 1.4; }
.platform-strip-label { text-align: center; font-size: 11px; font-weight: 800; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; line-height: 1.5; }
.platform-strip { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.plat-pill { background: var(--bg); border: 1px solid var(--border); border-radius: 99px; padding: 7px 14px; font-size: 11px; font-weight: 700; display: flex; align-items: center; gap: 7px; color: var(--subtext); line-height: 1.4; box-shadow: var(--shadow-sm); transition: all 0.15s; }
.plat-pill:hover { border-color: var(--border-strong); color: var(--text); transform: translateY(-1px); }
.pp-dot { width: 7px; height: 7px; border-radius: 50%; }

/* ────────────────────────────────────────────────────────────────────────
   TRUST STRIP
   ──────────────────────────────────────────────────────────────────────── */
.trust-strip { padding: 24px 40px; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--subtext); line-height: 1.4; }
.trust-item i { font-size: 16px; color: var(--primary); }

/* ────────────────────────────────────────────────────────────────────────
   SECTIONS
   ──────────────────────────────────────────────────────────────────────── */
.sec { padding: 100px 40px; position: relative; overflow: hidden; }
.sec-alt { background: var(--bg-2); }
.sec-label { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; color: var(--primary); text-transform: uppercase; margin-bottom: 14px; text-align: center; line-height: 1.5; }
.sec-title { font-family: 'Nunito', sans-serif; font-size: 42px; font-weight: 900; color: var(--text); text-align: center; margin-bottom: 18px; letter-spacing: -0.02em; line-height: 1.2; }
.sec-sub { font-size: 16px; color: var(--subtext); text-align: center; max-width: 580px; margin: 0 auto 64px; line-height: 1.7; font-weight: 500; }
.sec > * { position: relative; z-index: 1; }

/* Decorative background patterns (added via .bg-* classes on sections) */
.bg-dots::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(15,23,42,0.06) 1px, transparent 1px); background-size: 24px 24px; opacity: 0.6; pointer-events: none; z-index: 0; }
.bg-grid::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(15,23,42,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(15,23,42,0.04) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; z-index: 0; }
.bg-blob-tl::after { content: ''; position: absolute; top: -120px; left: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(79,70,229,0.08), transparent 70%); pointer-events: none; z-index: 0; }
.bg-blob-br::after { content: ''; position: absolute; bottom: -120px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(6,182,212,0.08), transparent 70%); pointer-events: none; z-index: 0; }

/* Floating shapes layer (parallax targets) */
.float-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.float-shape { position: absolute; border-radius: 50%; filter: blur(40px); will-change: transform; }
.fs-1 { width: 280px; height: 280px; background: rgba(79,70,229,0.10); top: 10%; left: -80px; }
.fs-2 { width: 320px; height: 320px; background: rgba(6,182,212,0.10); top: 50%; right: -120px; }
.fs-3 { width: 200px; height: 200px; background: rgba(245,158,11,0.07); bottom: 15%; left: 30%; }

/* ────────────────────────────────────────────────────────────────────────
   HOW IT WORKS
   ──────────────────────────────────────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1080px; margin: 0 auto; }
.how-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 32px 30px; transition: all 0.25s ease; box-shadow: var(--shadow-sm); }
.how-card:hover { border-color: var(--primary-tint); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.how-num { font-family: 'DM Mono', monospace; font-size: 12px; font-weight: 500; color: var(--muted); margin-bottom: 18px; line-height: 1.4; letter-spacing: 0.06em; }
.how-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.hi-primary { background: var(--primary-soft); color: var(--primary); }
.hi-accent { background: var(--accent-soft); color: var(--accent); }
.hi-warm { background: #fffbeb; color: var(--warm); }
.hi-success { background: #ecfdf5; color: var(--success); }
.hi-purple { background: #faf5ff; color: #9333ea; }
.hi-pink { background: #fdf2f8; color: #db2777; }
.hi-rose { background: #fff1f2; color: #e11d48; }
.how-title { font-size: 17px; font-weight: 900; color: var(--text); margin-bottom: 10px; line-height: 1.4; letter-spacing: -0.01em; }
.how-desc { font-size: 14px; color: var(--subtext); font-weight: 500; line-height: 1.7; }

/* ────────────────────────────────────────────────────────────────────────
   INDUSTRIES
   ──────────────────────────────────────────────────────────────────────── */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1080px; margin: 0 auto; }
.ind-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 24px 18px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; transition: all 0.2s; cursor: pointer; box-shadow: var(--shadow-sm); font-family: inherit; }
.ind-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.ind-card:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.ind-card.is-active { border-color: var(--primary); background: var(--primary-soft); transform: translateY(-2px); box-shadow: var(--shadow-md), var(--ring-primary); }
.ind-card i { font-size: 28px; color: var(--primary); }
.ind-card-title { font-size: 13px; font-weight: 900; color: var(--text); line-height: 1.4; }
.ind-card-sub { font-size: 11px; font-weight: 700; color: var(--muted); line-height: 1.4; }
.ind-more { background: var(--bg-2); border: 1.5px dashed var(--border-strong); }
.ind-more i, .ind-more .ind-card-title { color: var(--subtext); }
.ind-detail { max-width: 1080px; margin: 24px auto 0; padding: 22px 26px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; min-height: 96px; display: flex; align-items: center; box-shadow: var(--shadow-sm); transition: border-color 0.2s, box-shadow 0.2s; }
.ind-detail.has-selection { border-color: var(--primary-tint); box-shadow: var(--shadow-md), var(--ring-primary); }
.ind-detail-default { font-size: 13px; color: var(--muted); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.ind-detail-default i { font-size: 16px; }
.ind-detail-title { font-size: 15px; font-weight: 900; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.ind-detail-text { font-size: 13.5px; color: var(--subtext); font-weight: 500; line-height: 1.6; }

/* ────────────────────────────────────────────────────────────────────────
   FEATURES
   ──────────────────────────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 920px; margin: 0 auto; }
.feat-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 26px 28px; display: flex; gap: 18px; align-items: flex-start; transition: all 0.25s ease; box-shadow: var(--shadow-sm); }
.feat-card:hover { border-color: var(--primary-tint); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feat-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 21px; flex-shrink: 0; }
.feat-title { font-size: 15px; font-weight: 900; color: var(--text); margin-bottom: 8px; line-height: 1.4; letter-spacing: -0.01em; }
.feat-desc { font-size: 13px; color: var(--subtext); font-weight: 500; line-height: 1.7; }

/* ────────────────────────────────────────────────────────────────────────
   OWNERSHIP CALLOUT
   ──────────────────────────────────────────────────────────────────────── */
.ownership-callout { max-width: 920px; margin: 44px auto 0; background: linear-gradient(135deg, var(--primary-soft) 0%, var(--accent-soft) 100%); border: 1px solid var(--primary-tint); border-radius: 18px; padding: 28px 30px; display: flex; gap: 22px; align-items: flex-start; box-shadow: var(--shadow-sm); }
.ownership-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.ownership-content { flex: 1; }
.ownership-title { font-family: 'Nunito', sans-serif; font-size: 18px; font-weight: 900; color: var(--text); margin-bottom: 8px; line-height: 1.45; letter-spacing: -0.01em; }
.ownership-text { font-size: 14px; color: var(--subtext); font-weight: 500; line-height: 1.75; }

/* ────────────────────────────────────────────────────────────────────────
   COMPARE
   ──────────────────────────────────────────────────────────────────────── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 980px; margin: 0 auto; position: relative; }
.compare-vs { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 48px; height: 48px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 12px; color: var(--subtext); letter-spacing: 0.06em; z-index: 2; box-shadow: var(--shadow-sm); }
.compare-col { border-radius: 18px; padding: 28px 28px; box-shadow: var(--shadow-sm); }
.compare-them { background: var(--bg-2); border: 1px solid var(--border); }
.compare-us { background: linear-gradient(180deg, var(--primary-soft) 0%, var(--card) 100%); border: 1.5px solid var(--primary-tint); box-shadow: var(--shadow-md), var(--ring-primary); }
.compare-head { font-family: 'Nunito', sans-serif; font-size: 17px; font-weight: 900; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--border); line-height: 1.4; letter-spacing: -0.01em; }
.compare-them .compare-head { color: var(--subtext); }
.compare-us .compare-head { color: var(--text); border-bottom-color: var(--primary-tint); }
.compare-us .compare-head span { color: var(--primary); }
.compare-row { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; font-weight: 600; line-height: 1.65; padding: 9px 0; }
.compare-them .compare-row { color: var(--muted); }
.compare-them .compare-row i { color: #ef4444; font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.compare-us .compare-row { color: var(--text); }
.compare-us .compare-row i { color: var(--primary); font-size: 16px; flex-shrink: 0; margin-top: 2px; }

/* ────────────────────────────────────────────────────────────────────────
   PRICING
   ──────────────────────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto 18px; }
.price-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 34px 30px; position: relative; transition: all 0.25s; box-shadow: var(--shadow-sm); }
.price-card:hover { border-color: var(--primary-tint); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 1.5px solid var(--primary); background: linear-gradient(180deg, var(--primary-soft) 0%, var(--bg) 50%); box-shadow: var(--shadow-lg), var(--ring-primary); }
.price-card.featured:hover { transform: translateY(-4px); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: 10px; font-weight: 800; padding: 6px 16px; border-radius: 99px; white-space: nowrap; letter-spacing: 0.08em; line-height: 1.4; box-shadow: var(--shadow-sm); text-transform: uppercase; }
.price-name { font-size: 12px; font-weight: 900; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; line-height: 1.4; }
.price-amount { font-family: 'Nunito', sans-serif; font-size: 44px; font-weight: 900; color: var(--text); letter-spacing: -0.025em; line-height: 1.15; }
.price-amount sup { font-size: 20px; vertical-align: top; margin-top: 10px; display: inline-block; color: var(--subtext); }
.price-amount-period { font-size: 18px; font-weight: 800; color: var(--muted); margin-left: 4px; letter-spacing: 0; vertical-align: baseline; }
.price-setup { font-size: 12px; color: var(--subtext); font-weight: 700; margin-top: 14px; margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--border); line-height: 1.5; }
.price-setup span { color: var(--text); font-weight: 800; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pf { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.6; }
.pf i { font-size: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.pf.dim { color: var(--muted); }
.pf.dim i { color: var(--muted); }
.btn-plan { width: 100%; border-radius: 12px; padding: 13px 0; font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 800; cursor: pointer; transition: all 0.15s; line-height: 1.4; }
.btn-plan-primary { background: var(--primary); border: none; color: #fff; box-shadow: var(--shadow-sm); }
.btn-plan-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-plan-outline { background: var(--bg); border: 1.5px solid var(--border-strong); color: var(--text); }
.btn-plan-outline:hover { border-color: var(--primary); color: var(--primary); }
.price-note { text-align: center; font-size: 11px; color: var(--muted); font-weight: 600; max-width: 980px; margin: 0 auto; line-height: 1.6; }
a.btn-plan { text-decoration: none; text-align: center; display: block; box-sizing: border-box; }
.price-actions { display: flex; flex-direction: column; gap: 10px; }

/* FOUNDING BANNER (light, no amount revealed) */
.founding-banner { max-width: 820px; margin: 0 auto 40px; background: var(--card); border: 1.5px solid var(--primary-tint); border-radius: 18px; padding: 22px 28px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; box-shadow: var(--shadow-md), var(--ring-primary); }
.founding-banner-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.founding-banner-text { flex: 1; min-width: 240px; }
.founding-banner-title { font-size: 12px; font-weight: 900; color: var(--text); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 5px; line-height: 1.45; }
.founding-banner-sub { font-size: 13px; color: var(--subtext); font-weight: 500; line-height: 1.65; }
.founding-banner-spots { font-size: 11px; font-weight: 800; color: var(--primary); background: var(--primary-soft); border: 1px solid var(--primary-tint); border-radius: 99px; padding: 8px 14px; white-space: nowrap; letter-spacing: 0.08em; line-height: 1.4; text-transform: uppercase; }
.founding-banner-spots span { font-family: 'DM Mono', monospace; font-weight: 500; font-size: 13px; margin-right: 4px; color: var(--primary); }

/* ────────────────────────────────────────────────────────────────────────
   TESTIMONIALS
   ──────────────────────────────────────────────────────────────────────── */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1080px; margin: 0 auto; }
.testi { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 28px; transition: all 0.2s; box-shadow: var(--shadow-sm); }
.testi:hover { border-color: var(--primary-tint); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars i { font-size: 14px; color: var(--warm); }
.testi-text { font-size: 14px; color: var(--text); font-weight: 500; line-height: 1.75; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; flex-shrink: 0; line-height: 1; background: var(--primary-soft); color: var(--primary); }
.testi-name { font-size: 13px; font-weight: 900; color: var(--text); line-height: 1.4; }
.testi-co { font-size: 11px; color: var(--muted); font-weight: 700; line-height: 1.4; margin-top: 3px; }
.testi-empty { max-width: 580px; margin: 0 auto; text-align: center; background: var(--bg-2); border: 1.5px dashed var(--border-strong); border-radius: 18px; padding: 60px 30px; }
.testi-empty-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 16px; }
.testi-empty-title { font-family: 'Nunito', sans-serif; font-size: 18px; font-weight: 900; color: var(--text); margin-bottom: 8px; line-height: 1.4; letter-spacing: -0.01em; }
.testi-empty-text { font-size: 13px; color: var(--subtext); font-weight: 500; line-height: 1.7; max-width: 360px; margin: 0 auto; }

/* ────────────────────────────────────────────────────────────────────────
   FAQ
   ──────────────────────────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 320px; gap: 22px; max-width: 1040px; margin: 0 auto; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 16px; transition: all 0.2s; box-shadow: var(--shadow-sm); }
.faq-item:hover { border-color: var(--primary-tint); }
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-md), var(--ring-primary); }
.faq-q { padding: 20px 22px; font-size: 14px; font-weight: 800; color: var(--text); cursor: pointer; display: flex; align-items: center; gap: 14px; line-height: 1.55; }
.faq-q-icon { width: 36px; height: 36px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; background: var(--primary-soft); color: var(--primary); }
.faq-q-text { flex: 1; padding: 4px 0; }
.faq-chevron { font-size: 18px; color: var(--muted); transition: transform 0.25s ease, color 0.2s; flex-shrink: 0; }
.faq-item:hover .faq-chevron { color: var(--primary); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.faq-a-inner { overflow: hidden; }
.faq-a-text { padding: 6px 22px 26px 72px; font-size: 13px; color: var(--subtext); font-weight: 500; line-height: 1.85; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-cta { background: linear-gradient(180deg, var(--primary-soft) 0%, var(--bg) 100%); border: 1px solid var(--primary-tint); border-radius: 18px; padding: 30px 24px; text-align: center; position: sticky; top: 88px; box-shadow: var(--shadow-sm); }
.faq-cta-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 14px; box-shadow: var(--shadow-sm); }
.faq-cta-title { font-family: 'Nunito', sans-serif; font-size: 18px; font-weight: 900; color: var(--text); margin-bottom: 10px; line-height: 1.45; letter-spacing: -0.01em; }
.faq-cta-text { font-size: 12px; color: var(--subtext); font-weight: 500; line-height: 1.7; margin-bottom: 20px; }
.faq-cta .btn-plan { padding: 12px 0; }

/* ────────────────────────────────────────────────────────────────────────
   CTA SECTION
   ──────────────────────────────────────────────────────────────────────── */
.cta-sec { padding: 100px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-inner { background: linear-gradient(135deg, var(--primary) 0%, #6366f1 50%, var(--accent) 100%); border-radius: 24px; padding: 64px 48px; max-width: 760px; margin: 0 auto; position: relative; overflow: hidden; box-shadow: var(--shadow-xl); }
.cta-inner::before { content: ''; position: absolute; top: -40%; right: -20%; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%); pointer-events: none; }
.cta-inner::after { content: ''; position: absolute; bottom: -30%; left: -15%; width: 260px; height: 260px; background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%); pointer-events: none; }
.cta-inner > * { position: relative; z-index: 1; }
.cta-title { font-family: 'Nunito', sans-serif; font-size: 36px; font-weight: 900; color: #fff; margin-bottom: 16px; line-height: 1.25; letter-spacing: -0.02em; }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.9); font-weight: 500; margin-bottom: 36px; line-height: 1.7; }
.cta-inner .btn-lg-primary { background: #fff; color: var(--primary); box-shadow: var(--shadow-md); }
.cta-inner .btn-lg-primary:hover { background: var(--bg-2); color: var(--primary-hover); }

/* ────────────────────────────────────────────────────────────────────────
   FORMS (login, checkout, onboarding)
   ──────────────────────────────────────────────────────────────────────── */
.login-sec { border-bottom: none; }
.login-form { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 36px; max-width: 480px; margin: 0 auto; box-shadow: var(--shadow-md); }
.form-title { font-family: 'Nunito', sans-serif; font-size: 22px; font-weight: 900; color: var(--text); margin-bottom: 8px; line-height: 1.4; letter-spacing: -0.01em; }
.form-sub { font-size: 13px; color: var(--subtext); font-weight: 500; margin-bottom: 28px; line-height: 1.6; }
.form-field { margin-bottom: 18px; }
.form-label { font-size: 11px; font-weight: 800; color: var(--text); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; display: block; line-height: 1.4; }
.form-input { width: 100%; background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 14px; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 600; color: var(--text); outline: none; transition: all 0.15s; line-height: 1.4; }
.form-input:focus { border-color: var(--primary); box-shadow: var(--ring-primary); }
.form-input::placeholder { color: var(--muted); }
.form-btn { width: 100%; background: var(--primary); border: none; border-radius: 10px; padding: 14px 0; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 800; color: #fff; cursor: pointer; margin-top: 6px; transition: all 0.2s; box-shadow: var(--shadow-sm); line-height: 1.4; }
.form-btn:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.form-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-divider { text-align: center; font-size: 11px; color: var(--muted); font-weight: 700; margin: 20px 0 14px; line-height: 1.4; position: relative; }
.form-divider::before, .form-divider::after { content: ''; position: absolute; top: 50%; width: calc(50% - 20px); height: 1px; background: var(--border); }
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }
.form-signup { text-align: center; font-size: 12px; color: var(--subtext); font-weight: 600; margin-top: 16px; line-height: 1.6; }
.form-signup a { color: var(--primary); text-decoration: none; font-weight: 800; cursor: pointer; }
.form-signup a:hover { text-decoration: underline; }
.form-forgot { text-align: center; margin-top: 12px; }
.form-forgot a { font-size: 11px; color: var(--muted); font-weight: 700; cursor: pointer; line-height: 1.5; text-decoration: none; }
.form-forgot a:hover { color: var(--primary); }
.form-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; padding: 11px 14px; border-radius: 10px; font-size: 12px; font-weight: 700; line-height: 1.55; margin-bottom: 14px; display: none; }
.form-error.show { display: block; }
.form-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; padding: 11px 14px; border-radius: 10px; font-size: 12px; font-weight: 700; line-height: 1.55; margin-bottom: 14px; display: none; }
.form-success.show { display: block; }
.auth-tabs { display: flex; gap: 6px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px; padding: 4px; margin-bottom: 24px; }
.auth-tab { flex: 1; padding: 10px 0; font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 800; color: var(--subtext); background: transparent; border: none; border-radius: 8px; cursor: pointer; transition: all 0.15s; line-height: 1.4; }
.auth-tab.active { background: var(--card); color: var(--primary); box-shadow: var(--shadow-sm); }

/* ────────────────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────────────────── */
.footer { background: var(--bg-2); padding: 64px 40px 32px; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 14px; line-height: 1.3; }
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 13px; color: var(--subtext); font-weight: 500; line-height: 1.7; max-width: 260px; margin-bottom: 18px; }
.footer-contact { font-size: 13px; color: var(--subtext); font-weight: 600; line-height: 1.6; }
.footer-contact a { color: var(--primary); text-decoration: none; font-weight: 700; }
.footer-contact a:hover { text-decoration: underline; }
.footer-col-title { font-size: 11px; font-weight: 900; color: var(--text); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; line-height: 1.4; }
.footer-link { display: block; font-size: 13px; color: var(--subtext); font-weight: 600; margin-bottom: 11px; text-decoration: none; cursor: pointer; transition: color 0.15s; line-height: 1.5; }
.footer-link:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.footer-copy { font-size: 12px; color: var(--muted); font-weight: 600; line-height: 1.5; }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ────────────────────────────────────────────────────────────────────────
   SCROLL-TRIGGERED ANIMATIONS
   ──────────────────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.4s ease-out, transform 0.4s ease-out; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-shape { display: none; }
  .hero-eyebrow-dot { animation: none; }
}

/* ────────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 72px 22px 64px; }
  h1 { font-size: 38px; }
  .hero-sub { font-size: 15px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px 0; padding: 22px 16px; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .hero-stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 8px; }
  .sec { padding: 68px 22px; }
  .sec-title { font-size: 30px; }
  .how-grid, .features-grid, .pricing-grid, .testimonials, .compare-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-vs { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-cta { position: static; }
  .faq-a-text { padding-left: 22px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cta-inner { padding: 44px 26px; }
  .cta-title { font-size: 28px; }
  .ownership-callout { flex-direction: column; gap: 14px; padding: 24px; }
  .founding-banner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px 22px; }
  .founding-banner-spots { align-self: stretch; text-align: center; }
}

/* ────────────────────────────────────────────────────────────────────────
   STANDALONE PAGE BACK-LINK
   ──────────────────────────────────────────────────────────────────────── */
.page-back-link-wrap { max-width: 480px; margin: 0 auto 18px; }
.page-back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800; color: var(--primary); text-decoration: none; line-height: 1.5; transition: color 0.15s; }
.page-back-link:hover { color: var(--primary-hover); }

/* ────────────────────────────────────────────────────────────────────────
   CHECKOUT PAGE
   ──────────────────────────────────────────────────────────────────────── */
.checkout-sec { padding-top: 84px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; max-width: 980px; margin: 0 auto; align-items: start; }
.order-summary { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 30px; position: sticky; top: 92px; box-shadow: var(--shadow-sm); }
.order-summary-title { font-family: 'Nunito', sans-serif; font-size: 17px; font-weight: 900; color: var(--text); margin-bottom: 20px; line-height: 1.4; letter-spacing: -0.01em; }
.order-field { margin-bottom: 20px; }
.order-plan-select { width: 100%; background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px; padding: 13px 14px; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 800; color: var(--text); cursor: pointer; outline: none; transition: all 0.15s; appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; margin-top: 6px; }
.order-plan-select:focus { border-color: var(--primary); box-shadow: var(--ring-primary); }
.order-plan-name { font-size: 12px; font-weight: 800; color: var(--text); letter-spacing: 0.04em; text-transform: uppercase; padding: 12px 14px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 16px; line-height: 1.5; }
.order-founding-tag { display: flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--primary-soft) 0%, var(--accent-soft) 100%); color: var(--primary); border: 1px solid var(--primary-tint); border-radius: 12px; padding: 10px 14px; font-size: 12px; font-weight: 800; letter-spacing: 0.04em; line-height: 1.5; margin-bottom: 16px; }
.order-founding-tag i { font-size: 16px; }
.order-founding-tag-spots { margin-left: auto; font-family: 'DM Mono', monospace; font-weight: 500; font-size: 11px; color: var(--primary); }
.order-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.order-row:last-of-type { border-bottom: none; }
.order-row-label { font-size: 13px; color: var(--subtext); font-weight: 600; line-height: 1.55; flex: 1; }
.order-row-sub { display: block; font-size: 11px; color: var(--muted); font-weight: 600; margin-top: 4px; line-height: 1.4; }
.order-row-value { font-size: 14px; color: var(--text); font-weight: 900; text-align: right; line-height: 1.4; white-space: nowrap; display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.order-row-value-strike { font-size: 12px; color: var(--muted); font-weight: 600; text-decoration: line-through; }
.order-row-value-discounted { color: var(--primary); }
.order-row-period { font-size: 11px; color: var(--muted); font-weight: 600; margin-left: 2px; }
.order-divider { height: 1px; background: var(--border); margin: 8px 0; }
.order-total { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0 6px; font-size: 13px; font-weight: 900; color: var(--text); letter-spacing: 0.04em; text-transform: uppercase; }
.order-total-amount { font-family: 'Nunito', sans-serif; font-size: 28px; font-weight: 900; color: var(--text); line-height: 1.25; letter-spacing: -0.02em; }
.order-note { font-size: 12px; color: var(--subtext); font-weight: 500; line-height: 1.7; margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.checkout-form { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px; box-shadow: var(--shadow-sm); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-2 .form-field { margin-bottom: 16px; }
.form-trust { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.form-trust-item { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--muted); line-height: 1.4; }
.form-trust-item i { font-size: 14px; color: var(--primary); }

/* ────────────────────────────────────────────────────────────────────────
   BOOK-A-CALL
   ──────────────────────────────────────────────────────────────────────── */
.calendly-placeholder { max-width: 800px; margin: 0 auto 40px; background: var(--card); border: 1.5px dashed var(--border-strong); border-radius: 20px; padding: 90px 32px; text-align: center; min-height: 480px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; box-shadow: var(--shadow-sm); }
.calendly-placeholder-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 28px; }
.calendly-placeholder-title { font-family: 'Nunito', sans-serif; font-size: 17px; font-weight: 800; color: var(--text); line-height: 1.45; }
.calendly-placeholder-text { font-size: 13px; color: var(--subtext); font-weight: 500; max-width: 380px; line-height: 1.7; }
.email-fallback { max-width: 580px; margin: 0 auto 56px; text-align: center; padding: 24px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 16px; }
.email-fallback-title { font-size: 13px; font-weight: 800; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.email-fallback-link { font-size: 16px; font-weight: 800; color: var(--primary); text-decoration: none; line-height: 1.4; letter-spacing: -0.01em; }
.email-fallback-link:hover { text-decoration: underline; }
.call-expectations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 880px; margin: 0 auto; }
.call-expect-item { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 26px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: all 0.2s; }
.call-expect-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--primary-tint); }
.call-expect-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 14px; }
.call-expect-title { font-size: 15px; font-weight: 900; color: var(--text); line-height: 1.4; margin-bottom: 8px; letter-spacing: -0.01em; }
.call-expect-text { font-size: 13px; color: var(--subtext); font-weight: 500; line-height: 1.7; }

/* ────────────────────────────────────────────────────────────────────────
   ONBOARDING
   ──────────────────────────────────────────────────────────────────────── */
.onboarding-sec .sec-sub { margin-bottom: 36px; }
.onboarding-progress { max-width: 760px; margin: 0 auto 10px; height: 8px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 99px; overflow: hidden; }
.onboarding-progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); border-radius: 99px; transition: width 0.3s ease; }
.onboarding-progress-meta { max-width: 760px; margin: 0 auto 32px; text-align: right; font-size: 11px; color: var(--muted); font-weight: 800; letter-spacing: 0.04em; line-height: 1.5; }
.onboarding-form { max-width: 760px; margin: 0 auto; }
.onboarding-section { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 30px 30px 26px; margin-bottom: 18px; transition: border-color 0.2s; box-shadow: var(--shadow-sm); }
.onboarding-section:hover { border-color: var(--primary-tint); }
.onboarding-section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.onboarding-section-num { width: 42px; height: 42px; border-radius: 12px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; font-family: 'DM Mono', monospace; font-size: 14px; font-weight: 500; flex-shrink: 0; }
.onboarding-section-eyebrow { font-size: 10px; font-weight: 800; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.4; margin-bottom: 3px; }
.onboarding-section-title { font-family: 'Nunito', sans-serif; font-size: 18px; font-weight: 900; color: var(--text); line-height: 1.4; letter-spacing: -0.01em; }
.onboarding-question { margin-bottom: 20px; }
.onboarding-question:last-child { margin-bottom: 4px; }
.onboarding-question .form-label { display: block; margin-bottom: 8px; }
.onboarding-hint { font-size: 11px; color: var(--muted); font-weight: 600; margin-top: 6px; line-height: 1.6; }
.onboarding-textarea { min-height: 88px; resize: vertical; padding-top: 12px; }
.onboarding-radio-group { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.onboarding-radio { background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 18px; font-size: 13px; font-weight: 800; color: var(--subtext); cursor: pointer; transition: all 0.15s; flex: 1; min-width: 130px; text-align: center; line-height: 1.4; }
.onboarding-radio input { display: none; }
.onboarding-radio:hover { border-color: var(--primary-tint); color: var(--text); }
.onboarding-radio:has(input:checked) { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); }
.onboarding-file { display: block; width: 100%; background: var(--bg-2); border: 1.5px dashed var(--border-strong); border-radius: 12px; padding: 28px 20px; text-align: center; cursor: pointer; transition: all 0.15s; margin-top: 4px; }
.onboarding-file:hover { border-color: var(--primary); background: var(--primary-soft); }
.onboarding-file-icon { font-size: 28px; color: var(--primary); margin-bottom: 8px; line-height: 1; }
.onboarding-file-text { font-size: 13px; font-weight: 800; color: var(--text); line-height: 1.5; }
.onboarding-file-sub { font-size: 11px; color: var(--muted); font-weight: 600; margin-top: 4px; line-height: 1.4; }
.onboarding-submit { padding: 16px 0; font-size: 14px; margin-top: 12px; }
.onboarding-foot { font-size: 12px; color: var(--subtext); font-weight: 500; line-height: 1.7; text-align: center; margin-top: 16px; }
.onboarding-foot a { color: var(--primary); font-weight: 700; text-decoration: none; }
.onboarding-foot a:hover { text-decoration: underline; }

/* ────────────────────────────────────────────────────────────────────────
   ABOUT PAGE
   ──────────────────────────────────────────────────────────────────────── */
.about-hero { padding: 88px 40px 56px; text-align: center; max-width: 800px; margin: 0 auto; }
.about-mission { max-width: 760px; margin: 0 auto; background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-md); }
.about-mission-quote { font-family: 'Nunito', sans-serif; font-size: 22px; font-weight: 800; color: var(--text); line-height: 1.5; letter-spacing: -0.01em; margin-bottom: 14px; }
.about-mission-text { font-size: 15px; color: var(--subtext); font-weight: 500; line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 880px; margin: 0 auto; }
.value-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 28px 28px; box-shadow: var(--shadow-sm); transition: all 0.2s; }
.value-card:hover { border-color: var(--primary-tint); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.value-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.value-title { font-family: 'Nunito', sans-serif; font-size: 17px; font-weight: 900; color: var(--text); margin-bottom: 8px; line-height: 1.4; letter-spacing: -0.01em; }
.value-text { font-size: 13px; color: var(--subtext); font-weight: 500; line-height: 1.75; }
.story-content { max-width: 760px; margin: 0 auto; font-size: 15px; color: var(--subtext); font-weight: 500; line-height: 1.85; }
.story-content p { margin-bottom: 18px; }
.story-content p:last-child { margin-bottom: 0; }
.about-contact { max-width: 580px; margin: 0 auto; text-align: center; background: linear-gradient(135deg, var(--primary-soft) 0%, var(--accent-soft) 100%); border: 1px solid var(--primary-tint); border-radius: 20px; padding: 40px 32px; }
.about-contact-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 16px; box-shadow: var(--shadow-sm); }
.about-contact-title { font-family: 'Nunito', sans-serif; font-size: 20px; font-weight: 900; color: var(--text); margin-bottom: 8px; line-height: 1.4; letter-spacing: -0.01em; }
.about-contact-text { font-size: 14px; color: var(--subtext); font-weight: 500; line-height: 1.7; margin-bottom: 18px; }
.about-contact-email { font-size: 18px; font-weight: 900; color: var(--primary); text-decoration: none; line-height: 1.4; letter-spacing: -0.01em; }
.about-contact-email:hover { text-decoration: underline; }

/* ────────────────────────────────────────────────────────────────────────
   DARK MODE THEME TOGGLE
   Applied when <html data-theme="dark"> is set. Tokens override the light
   defaults; component-specific fixes follow for surfaces with hardcoded
   light colours (nav, dot-grid bg, form alerts, etc.).
   ──────────────────────────────────────────────────────────────────────── */
[data-theme="dark"] {
  --bg: #0b1220;
  --bg-2: #11192c;
  --bg-3: #1a2238;
  --card: #11192c;
  --card-2: #1a2238;
  --border: #233049;
  --border-strong: #2f3d5c;
  --text: #f1f5f9;
  --subtext: #cbd5e1;
  --muted: #7c8aa3;
  --primary: #6366f1;
  --primary-hover: #818cf8;
  --primary-soft: #1e1b4b;
  --primary-tint: #2d2670;
  --accent: #22d3ee;
  --accent-soft: #0c3a47;
  --success: #34d399;
  --warm: #fbbf24;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.4), 0 10px 15px -3px rgba(0,0,0,0.45);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.5), 0 20px 40px -10px rgba(0,0,0,0.55);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.7);
  --ring-primary: 0 0 0 4px rgba(99,102,241,0.20);
}

[data-theme="dark"] .nav { background: rgba(11,18,32,0.85); }
[data-theme="dark"] .bg-dots::before { background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px); }
[data-theme="dark"] .bg-grid::before { background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); }
[data-theme="dark"] .form-error { background: #2a0f12; border-color: #5a1a22; color: #fca5a5; }
[data-theme="dark"] .form-success { background: #052e1f; border-color: #0a4e34; color: #6ee7b7; }
[data-theme="dark"] .order-plan-select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>"); }
[data-theme="dark"] .plat-pill { background: var(--card); }
[data-theme="dark"] .ind-more { background: var(--bg-3); }
[data-theme="dark"] .compare-them { background: var(--bg-3); }
[data-theme="dark"] .price-card.featured { background: linear-gradient(180deg, var(--primary-soft) 0%, var(--card) 50%); }

/* THEME TOGGLE BUTTON */
.theme-toggle { background: transparent; border: 1.5px solid var(--border); border-radius: 10px; width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; color: var(--subtext); cursor: pointer; transition: all 0.15s; padding: 0; flex-shrink: 0; }
.theme-toggle:hover { border-color: var(--primary); color: var(--primary); }
.theme-toggle i { font-size: 17px; line-height: 1; }
.theme-icon-light { display: inline-block; }
.theme-icon-dark { display: none; }
[data-theme="dark"] .theme-icon-light { display: none; }
[data-theme="dark"] .theme-icon-dark { display: inline-block; }

/* CONTENT ADD-ON (pricing cards + checkout) */
.content-addon { margin: 0 0 22px; padding: 14px 14px 12px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px; }
.content-addon-label { display: block; font-size: 10px; font-weight: 900; color: var(--subtext); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; line-height: 1.4; }
.content-addon-select { width: 100%; font-family: 'Nunito', sans-serif; font-size: 12.5px; font-weight: 700; color: var(--text); background: var(--card); border: 1.5px solid var(--border); border-radius: 10px; padding: 9px 11px; cursor: pointer; appearance: auto; -webkit-appearance: auto; line-height: 1.4; }
.content-addon-select:focus { outline: none; border-color: var(--primary); box-shadow: var(--ring-primary); }
.content-addon-note { margin-top: 8px; font-size: 10.5px; color: var(--muted); font-weight: 600; line-height: 1.55; }
.price-card.featured .content-addon { background: rgba(255,255,255,0.6); }
[data-theme="dark"] .price-card.featured .content-addon { background: rgba(0,0,0,0.18); }

/* Content option list (pricing cards) — radio-card pattern */
.content-options { display: flex; flex-direction: column; gap: 6px; }
.content-option { display: block; cursor: pointer; position: relative; }
.content-option-input { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; }
.content-option-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 11px; background: var(--card); border: 1.5px solid var(--border); border-radius: 10px; transition: border-color 0.15s, background 0.15s, box-shadow 0.15s; }
.content-option:hover .content-option-row { border-color: var(--primary-tint); }
.content-option-input:checked + .content-option-row { border-color: var(--primary); background: var(--primary-soft); box-shadow: var(--ring-primary); }
.content-option-input:focus-visible + .content-option-row { outline: 2px solid var(--primary); outline-offset: 2px; }
.content-option-main { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1; }
.content-option-name { font-size: 12.5px; font-weight: 800; color: var(--text); line-height: 1.35; }
.content-option-meta { font-size: 10.5px; font-weight: 600; color: var(--muted); line-height: 1.4; }
.content-option-price { font-size: 12px; font-weight: 800; color: var(--primary); white-space: nowrap; flex-shrink: 0; font-family: 'DM Mono', monospace; letter-spacing: -0.01em; }
.content-option-price-free, .content-option-price-quoted { color: var(--muted); font-family: 'Nunito', sans-serif; }
.content-option-price-included { color: var(--success); font-family: 'Nunito', sans-serif; font-weight: 900; text-transform: uppercase; font-size: 10.5px; letter-spacing: 0.06em; padding: 4px 9px; border-radius: 99px; background: rgba(16, 185, 129, 0.10); border: 1px solid rgba(16, 185, 129, 0.18); }

/* FAQ — plan tag bubbles inside answers + paragraph spacing */
.faq-a-text p { margin: 0 0 10px; }
.faq-a-text p:last-child { margin-bottom: 0; }
.faq-plan-tag { display: inline-block; font-size: 10.5px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); background: var(--primary-soft); border: 1px solid var(--primary-tint); border-radius: 99px; padding: 3px 9px; margin-right: 8px; vertical-align: 1px; }
.faq-plan-tag-premium { color: #fff; background: var(--primary); border-color: var(--primary); }

/* Onboarding — info tooltips, optional tags, split field row, multi-choice grids */
.ob-tooltip { display: inline-flex; align-items: center; margin-left: 4px; color: var(--muted); cursor: help; position: relative; vertical-align: middle; }
.ob-tooltip:hover, .ob-tooltip:focus { color: var(--primary); outline: none; }
.ob-tooltip i { font-size: 15px; }
.ob-tooltip-text { position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%); background: var(--text); color: var(--bg); padding: 9px 12px; border-radius: 8px; font-size: 11.5px; font-weight: 600; line-height: 1.45; width: 240px; opacity: 0; pointer-events: none; transition: opacity 0.15s; z-index: 10; box-shadow: var(--shadow-md); text-align: left; }
.ob-tooltip:hover .ob-tooltip-text, .ob-tooltip:focus .ob-tooltip-text { opacity: 1; }
@media (max-width: 540px) { .ob-tooltip-text { width: 200px; left: auto; right: 0; transform: none; } }

.ob-optional-tag { display: inline-block; font-size: 9.5px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); background: var(--bg-3); border: 1px solid var(--border); border-radius: 99px; padding: 3px 8px; margin-left: 8px; vertical-align: middle; }

.ob-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 540px) { .ob-field-row { grid-template-columns: 1fr; } }

.ob-choice-grid { display: grid; gap: 8px; margin-bottom: 4px; }
.ob-choice-grid-2 { grid-template-columns: repeat(2, 1fr); }
.ob-choice-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) { .ob-choice-grid-2, .ob-choice-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ob-choice-grid-2, .ob-choice-grid-3 { grid-template-columns: 1fr; } }

.ob-choice { display: block; cursor: pointer; position: relative; }
.ob-choice-input { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; }
.ob-choice-row { display: flex; align-items: center; gap: 10px; padding: 11px 13px; background: var(--card); border: 1.5px solid var(--border); border-radius: 10px; transition: border-color 0.15s, background 0.15s, box-shadow 0.15s; }
.ob-choice:hover .ob-choice-row { border-color: var(--primary-tint); }
.ob-choice-input:checked + .ob-choice-row { border-color: var(--primary); background: var(--primary-soft); box-shadow: var(--ring-primary); }
.ob-choice-input:focus-visible + .ob-choice-row { outline: 2px solid var(--primary); outline-offset: 2px; }
.ob-choice-name { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.4; }
.ob-choice-other .ob-choice-row { border-style: dashed; }
.ob-other-input { margin-top: 10px; }

/* Onboarding — optional further-info accordion */
.onboarding-section-optional { padding: 0; }
.onboarding-section-optional summary { list-style: none; cursor: pointer; user-select: none; }
.onboarding-section-optional summary::-webkit-details-marker { display: none; }
.onboarding-section-optional .onboarding-section-head { width: 100%; }
.onboarding-section-chevron { margin-left: auto; font-size: 18px; color: var(--subtext); transition: transform 0.2s; }
.onboarding-section-optional[open] .onboarding-section-chevron { transform: rotate(180deg); }
.onboarding-section-optional .onboarding-question { margin-top: 18px; }
.onboarding-section-optional .onboarding-section-num { background: var(--bg-3); color: var(--subtext); border: 1.5px dashed var(--border-strong); }
.order-row.order-row-partner { opacity: 0.95; }
.order-row.order-row-partner .order-row-value { color: var(--text); font-weight: 800; }
.order-row-partner-tag { display: inline-block; font-size: 9.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-soft); border-radius: 99px; padding: 3px 8px; margin-left: 8px; vertical-align: middle; line-height: 1.4; }
