/* ── Design Tokens ───────────────────────────────────────────────────────── */
:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --radius-sm: 0.375rem; --radius-md: 0.625rem;
  --radius-lg: 1rem; --radius-xl: 1.5rem; --radius-full: 9999px;
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --content: 1140px;
}

:root, [data-theme="dark"] {
  --color-bg:        #080e1d;
  --color-surface:   #0d1528;
  --color-surface-2: #111d36;
  --color-border:    #1e2f52;
  --color-border-2:  #243660;
  --color-text:      #e8eef8;
  --color-text-muted:#8a9bbf;
  --color-text-faint:#4a5a7a;
  --color-gold:      #f5c542;
  --color-gold-dim:  #c9983a;
  --color-gold-glow: rgba(245,197,66,0.14);
  --color-accent:    #3a7bd5;
  --color-green:     #22c55e;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.65);
  --shadow-gold: 0 0 36px rgba(245,197,66,0.12);
}

[data-theme="light"] {
  --color-bg:        #f5f7fb;
  --color-surface:   #ffffff;
  --color-surface-2: #eef1f8;
  --color-border:    #d4dbe8;
  --color-border-2:  #c2ccdd;
  --color-text:      #0e1829;
  --color-text-muted:#4a5a7a;
  --color-text-faint:#8a9bbf;
  --color-gold:      #c98a00;
  --color-gold-dim:  #a87200;
  --color-gold-glow: rgba(201,138,0,0.1);
  --color-accent:    #2563b0;
  --color-green:     #16a34a;
  --shadow-sm: 0 1px 3px rgba(14,24,41,0.08);
  --shadow-md: 0 4px 16px rgba(14,24,41,0.1);
  --shadow-lg: 0 16px 48px rgba(14,24,41,0.12);
  --shadow-gold: 0 0 36px rgba(201,138,0,0.08);
}

/* ── Base ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 80px; }
body { font-family: 'Inter', -apple-system, sans-serif; font-size: var(--text-base); color: var(--color-text); background: var(--color-bg); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.15; }
p { text-wrap: pretty; }
code { font-family: monospace; font-size: 0.9em; background: rgba(255,255,255,0.08); padding: 0.15em 0.45em; border-radius: 4px; }
[data-theme="light"] code { background: rgba(0,0,0,0.07); }

.container { max-width: var(--content); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(8,14,29,0.88); backdrop-filter: blur(18px) saturate(150%); border-bottom: 1px solid var(--color-border); transition: background var(--transition); }
[data-theme="light"] .nav { background: rgba(245,247,251,0.92); }
.nav.scrolled { background: rgba(8,14,29,0.97); box-shadow: var(--shadow-md); }
[data-theme="light"] .nav.scrolled { background: rgba(245,247,251,0.99); }
.nav-inner { max-width: var(--content); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); height: 72px; display: flex; align-items: center; gap: 2rem; }
.logo { display: flex; align-items: center; color: var(--color-gold); flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav-links a { font-size: var(--text-sm); font-weight: 500; color: var(--color-text-muted); padding: 0.4rem 0.75rem; border-radius: var(--radius-md); transition: color var(--transition), background var(--transition); }
.nav-links a:hover { color: var(--color-text); background: rgba(255,255,255,0.06); }
[data-theme="light"] .nav-links a:hover { background: rgba(0,0,0,0.05); }
.theme-toggle { width: 36px; height: 36px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--color-text-muted); flex-shrink: 0; transition: color var(--transition), background var(--transition); }
.theme-toggle:hover { color: var(--color-text); background: rgba(255,255,255,0.08); }
.nav-mobile-toggle { display: none; width: 36px; height: 36px; align-items: center; justify-content: center; color: var(--color-text-muted); border-radius: var(--radius-md); }
.nav-drawer { display: none; flex-direction: column; gap: 0.5rem; padding: 1rem clamp(1.5rem, 5vw, 4rem) 1.5rem; border-top: 1px solid var(--color-border); }
.nav-drawer a { font-size: var(--text-sm); font-weight: 500; color: var(--color-text-muted); padding: 0.5rem 0; }
.nav-drawer.open { display: flex; }
@media (max-width: 900px) { .nav-links { display: none; } .nav-mobile-toggle { display: flex; margin-left: auto; } }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: var(--text-sm); border-radius: var(--radius-full); padding: 0.75rem 1.5rem; transition: all var(--transition); cursor: pointer; border: 2px solid transparent; white-space: nowrap; }
.btn-lg { padding: 1rem 2rem; font-size: var(--text-base); }
.btn-sm { padding: 0.5rem 1rem; font-size: var(--text-xs); }
.btn-gold { background: var(--color-gold); color: #0a0e1a; border-color: var(--color-gold); box-shadow: 0 0 24px var(--color-gold-glow); }
.btn-gold:hover { background: #ffd04a; border-color: #ffd04a; box-shadow: 0 0 36px rgba(245,197,66,0.3); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,0.07); color: var(--color-text); border-color: var(--color-border); }
.btn-ghost:hover { background: rgba(255,255,255,0.13); transform: translateY(-1px); }
[data-theme="light"] .btn-ghost { background: rgba(0,0,0,0.04); }
.btn-outline-white { background: transparent; color: var(--color-text); border-color: rgba(255,255,255,0.22); }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.5); transform: translateY(-1px); }
[data-theme="light"] .btn-outline-white { border-color: var(--color-border); }

/* ── Badge pill ──────────────────────────────────────────────────────────── */
.badge-pill { display: inline-flex; align-items: center; gap: 0.5rem; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.25rem 1rem; border-radius: var(--radius-full); border: 1px solid; }
.badge-pill--gold { background: rgba(245,197,66,0.1); color: var(--color-gold); border-color: rgba(245,197,66,0.28); }
.badge-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: pulse-badge 2s infinite; }
@keyframes pulse-badge { 0%,100%{opacity:1}50%{opacity:.35} }

/* ── Section shared ──────────────────────────────────────────────────────── */
.section { padding: clamp(4rem, 8vw, 6rem) 0; }
.section--dark { background: var(--color-surface); }
.section-label { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-gold); margin-bottom: 0.75rem; }
.section-headline { font-size: var(--text-2xl); font-weight: 800; color: var(--color-text); margin-bottom: 1rem; letter-spacing: -0.02em; }
.section-sub { font-size: var(--text-base); color: var(--color-text-muted); max-width: 640px; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.gold-text { color: var(--color-gold); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { min-height: 100svh; display: flex; align-items: center; padding: calc(72px + 2.5rem) 0 4rem; position: relative; overflow: hidden; }
.hero-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(58,123,213,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(58,123,213,0.04) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%); }
.hero-glow { position: absolute; top: 30%; left: 30%; transform: translate(-50%,-50%); width: 700px; height: 500px; border-radius: 50%; background: radial-gradient(ellipse, rgba(245,197,66,0.07) 0%, transparent 65%); pointer-events: none; }
.hero-layout { display: grid; grid-template-columns: 1fr auto; gap: clamp(2rem, 5vw, 5rem); align-items: center; position: relative; z-index: 1; }
@media (max-width: 900px) { .hero-layout { grid-template-columns: 1fr; } }
.hero-copy { display: flex; flex-direction: column; gap: 1.25rem; }
.hero-headline { font-size: var(--text-3xl); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; }
.hero-sub { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 520px; line-height: 1.6; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-stats { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.hero-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-stat-value { font-size: var(--text-xl); font-weight: 800; letter-spacing: -0.02em; color: var(--color-gold); }
.hero-stat-label { font-size: var(--text-xs); color: var(--color-text-muted); max-width: 140px; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--color-border); }

/* Phone mockup with real screenshot */
.hero-phone-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; flex-shrink: 0; }
@media (max-width: 900px) { .hero-phone-wrap { display: none; } }
.phone-device { width: 240px; background: #0a0f1f; border-radius: 36px; border: 2px solid #1e2f52; box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05), var(--shadow-gold); position: relative; overflow: hidden; }
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 90px; height: 18px; background: #0a0f1f; border-radius: 0 0 12px 12px; z-index: 10; }
.phone-screen-img { padding: 20px 0 8px; overflow: hidden; border-radius: 34px; }
.phone-img { width: 100%; display: block; transition: opacity 0.35s ease; }
.phone-home-indicator { width: 60px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; margin: 6px auto 12px; }
.phone-switcher { display: flex; gap: 0.5rem; }
.phone-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-border); border: none; cursor: pointer; transition: background var(--transition), transform var(--transition); }
.phone-dot.active { background: var(--color-gold); transform: scale(1.2); }

/* ── Live bar ────────────────────────────────────────────────────────────── */
.live-bar { background: var(--color-surface); border-bottom: 1px solid var(--color-border); padding: 0.6rem 0; }
.live-bar-inner { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; font-size: var(--text-xs); color: var(--color-text-muted); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-green); flex-shrink: 0; box-shadow: 0 0 6px var(--color-green); animation: pulse-badge 2s infinite; }
.live-text a { color: var(--color-gold); transition: opacity var(--transition); }
.live-text a:hover { opacity: 0.8; }
.live-sep { color: var(--color-text-faint); }

/* ── Problem grid ────────────────────────────────────────────────────────── */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.problem-card { background: rgba(255,255,255,0.02); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: 2rem; }
[data-theme="light"] .problem-card { background: var(--color-surface-2); }
.problem-card--highlight { border-color: var(--color-gold); background: rgba(245,197,66,0.04); box-shadow: var(--shadow-gold); }
.problem-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.problem-card h3 { font-size: var(--text-lg); font-weight: 700; margin-bottom: 0.75rem; }
.problem-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; }

/* Opportunity stats row */
.opportunity-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.opp-stat { background: rgba(255,255,255,0.02); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1.5rem 1.25rem; text-align: center; }
[data-theme="light"] .opp-stat { background: var(--color-surface-2); }
.opp-stat-num { font-size: var(--text-xl); font-weight: 800; color: var(--color-gold); letter-spacing: -0.02em; }
.opp-stat-lbl { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: 0.3rem; }

/* ── Feature Showcase ────────────────────────────────────────────────────── */
.feature-showcase { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.feature-showcase-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
@media (max-width: 820px) { .feature-showcase-inner { grid-template-columns: 1fr; } .feature-showcase--right .feature-showcase-phones { order: -1; } }
.feature-showcase-label { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-gold); margin-bottom: 0.75rem; }
.feature-showcase-copy h3 { font-size: var(--text-xl); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1rem; line-height: 1.2; }
.feature-showcase-copy p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.feature-list li { font-size: var(--text-sm); color: var(--color-text-muted); padding-left: 1.4rem; position: relative; }
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--color-green); font-weight: 700; font-size: 0.8em; top: 0.1em; }

/* Dual phone stack */
.feature-showcase-phones { position: relative; display: flex; justify-content: center; align-items: flex-start; height: clamp(440px, 55vw, 580px); }
.showcase-phone { width: clamp(150px, 20vw, 210px); border-radius: 28px; overflow: hidden; border: 2px solid var(--color-border); box-shadow: var(--shadow-lg); position: absolute; transition: transform 0.3s ease; }
.showcase-phone img { display: block; width: 100%; }
.showcase-phone--front { top: 0; left: 50%; transform: translateX(-60%); z-index: 2; }
.showcase-phone--back { top: 32px; left: 50%; transform: translateX(5%); z-index: 1; filter: brightness(0.75); border-color: rgba(30,47,82,0.6); }
.feature-showcase-phones:hover .showcase-phone--back { filter: brightness(0.9); transform: translateX(8%) rotate(2deg); }
.feature-showcase-phones:hover .showcase-phone--front { transform: translateX(-65%) rotate(-2deg); }

/* Mini feature grid */
.features-mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.mini-feature { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: 1.75rem; transition: transform var(--transition), box-shadow var(--transition); }
.mini-feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.mini-feature-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.mini-feature h4 { font-size: var(--text-base); font-weight: 700; margin-bottom: 0.5rem; }
.mini-feature p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; }

/* ── How it works ────────────────────────────────────────────────────────── */
.steps-flow { display: flex; align-items: flex-start; gap: 1.25rem; flex-wrap: wrap; }
.step { flex: 1; min-width: 180px; display: flex; flex-direction: column; gap: 1rem; }
.step-num { font-size: var(--text-2xl); font-weight: 900; color: var(--color-gold); opacity: 0.22; letter-spacing: -0.04em; line-height: 1; }
.step-body h3 { font-size: var(--text-base); font-weight: 700; margin-bottom: 0.5rem; }
.step-body p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; }
.step-arrow { font-size: var(--text-xl); color: var(--color-gold); opacity: 0.28; margin-top: 2rem; flex-shrink: 0; }
@media (max-width: 700px) { .step-arrow { display: none; } }

/* ── Revenue grid ────────────────────────────────────────────────────────── */
.revenue-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.revenue-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: 1.75rem; transition: transform var(--transition), box-shadow var(--transition); }
.revenue-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.revenue-num { width: 34px; height: 34px; border-radius: var(--radius-md); background: rgba(245,197,66,0.1); color: var(--color-gold); font-weight: 800; font-size: var(--text-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.revenue-card h3 { font-size: var(--text-base); font-weight: 700; margin-bottom: 0.5rem; }
.revenue-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; margin-bottom: 0.75rem; }
.revenue-example { font-size: var(--text-xs); font-weight: 600; color: var(--color-gold); background: rgba(245,197,66,0.07); padding: 0.375rem 0.75rem; border-radius: var(--radius-md); display: inline-block; }

/* ── Market bars ─────────────────────────────────────────────────────────── */
.market-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
@media (max-width: 700px) { .market-grid { grid-template-columns: 1fr; } }
.market-bars { display: flex; flex-direction: column; gap: 1.5rem; }
.market-bar-item { display: flex; flex-direction: column; gap: 0.5rem; }
.market-bar-label { display: flex; flex-direction: column; gap: 0.2rem; }
.market-bar-label strong { font-size: var(--text-base); font-weight: 700; }
.market-bar-label span { font-size: var(--text-xs); color: var(--color-text-muted); }
.market-bar-track { height: 10px; background: var(--color-border); border-radius: var(--radius-full); overflow: hidden; }
.market-bar-fill { height: 100%; border-radius: var(--radius-full); transition: width 1s ease; }
.market-tailwinds-wrap h4 { font-size: var(--text-base); font-weight: 700; margin-bottom: 1rem; }
.tailwinds-list { display: flex; flex-direction: column; gap: 0.75rem; }
.tailwind { display: flex; gap: 0.75rem; font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.5; background: rgba(255,255,255,0.02); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 0.75rem; }
[data-theme="light"] .tailwind { background: rgba(0,0,0,0.02); }
.tailwind em { font-style: normal; color: var(--color-text-faint); font-size: 0.9em; }

/* ── Compare table ───────────────────────────────────────────────────────── */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius-xl); border: 1px solid var(--color-border); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 600px; font-size: var(--text-sm); }
.compare-table th { background: var(--color-surface); padding: 1rem 1.25rem; font-weight: 700; text-align: center; color: var(--color-text-muted); border-bottom: 1px solid var(--color-border); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.06em; }
.compare-table th:first-child { text-align: left; }
.compare-table th.compare-us { color: var(--color-gold); }
.compare-table td { padding: 0.75rem 1.25rem; border-bottom: 1px solid var(--color-border); text-align: center; font-size: var(--text-sm); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table td.compare-us { background: rgba(245,197,66,0.04); font-weight: 700; }
.compare-table td.yes { color: #4ade80; }
.compare-table td.no  { color: var(--color-text-faint); }
.compare-table td.partial { color: #fb923c; }

/* ── Traction ────────────────────────────────────────────────────────────── */
.traction-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 700px) { .traction-grid { grid-template-columns: 1fr; } }
.traction-col-header { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.4rem 0.85rem; border-radius: var(--radius-full); display: inline-block; margin-bottom: 1.25rem; }
.traction-col-header--done { background: rgba(34,197,94,0.1); color: var(--color-green); border: 1px solid rgba(34,197,94,0.2); }
.traction-col-header--raising { background: rgba(245,197,66,0.1); color: var(--color-gold); border: 1px solid rgba(245,197,66,0.2); }
.traction-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.5rem; }
.traction-list li { font-size: var(--text-sm); color: var(--color-text-muted); padding-left: 1.5rem; position: relative; line-height: 1.55; }
.traction-list li::before { content: '✓'; position: absolute; left: 0; color: var(--color-green); font-weight: 700; font-size: 0.85em; top: 0.1em; }
.traction-list--raising li::before { content: '—'; color: var(--color-text-faint); }
.traction-demo-cta { background: rgba(245,197,66,0.06); border: 1px solid rgba(245,197,66,0.2); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.traction-demo-cta p { font-size: var(--text-sm); font-weight: 600; color: var(--color-text); }
.traction-demo-creds { font-size: var(--text-xs) !important; font-weight: 400 !important; color: var(--color-text-muted) !important; }

/* ── Roadmap ─────────────────────────────────────────────────────────────── */
.roadmap-timeline { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 2.5rem; }
.roadmap-timeline::before { content: ''; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--color-gold), var(--color-accent), var(--color-border)); }
.roadmap-item { position: relative; padding-bottom: 2.5rem; }
.roadmap-item:last-child { padding-bottom: 0; }
.roadmap-dot { position: absolute; left: calc(-2.5rem + 0.25rem); top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--color-border); border: 3px solid var(--color-bg); }
.roadmap-item--done .roadmap-dot { background: var(--color-gold); }
.roadmap-item--current .roadmap-dot { background: var(--color-accent); box-shadow: 0 0 0 4px rgba(58,123,213,0.2); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{box-shadow:0 0 0 4px rgba(58,123,213,0.2)}50%{box-shadow:0 0 0 8px rgba(58,123,213,0.05)} }
.roadmap-phase { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-gold); margin-bottom: 0.5rem; }
.roadmap-item--current .roadmap-phase { color: #60a5fa; }
.roadmap-item--done .roadmap-phase { color: var(--color-text-faint); }
.roadmap-content h3 { font-size: var(--text-lg); font-weight: 700; margin-bottom: 0.75rem; }
.roadmap-content ul { padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.roadmap-content li { font-size: var(--text-sm); color: var(--color-text-muted); }
.roadmap-item--done .roadmap-content { opacity: 0.55; }

/* ── Team ────────────────────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 700px; }
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; } }
.team-card--founder { display: flex; gap: 1.5rem; align-items: flex-start; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: 2rem; }
@media (max-width: 500px) { .team-card--founder { flex-direction: column; } }
.team-avatar { width: 64px; height: 64px; flex-shrink: 0; border-radius: 50%; background: linear-gradient(135deg, var(--color-accent) 0%, #1e40af 100%); display: flex; align-items: center; justify-content: center; font-size: var(--text-xl); font-weight: 800; color: white; border: 2px solid var(--color-gold); box-shadow: 0 0 16px rgba(245,197,66,0.08); }
.team-info h3 { font-size: var(--text-lg); font-weight: 800; margin-bottom: 0.25rem; }
.team-title { font-size: var(--text-sm); color: var(--color-gold); font-weight: 600; margin-bottom: 0.75rem; }
.team-info p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; margin-bottom: 1rem; }
.team-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.team-tag { font-size: var(--text-xs); font-weight: 600; padding: 0.25rem 0.75rem; border-radius: var(--radius-full); background: rgba(58,123,213,0.1); color: #60a5fa; border: 1px solid rgba(58,123,213,0.2); }
.team-hiring { display: flex; }
.hiring-card { flex: 1; background: var(--color-surface); border: 2px dashed var(--color-border); border-radius: var(--radius-xl); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.hiring-icon { width: 38px; height: 38px; border-radius: var(--radius-md); background: rgba(245,197,66,0.1); color: var(--color-gold); font-size: var(--text-lg); font-weight: 800; display: flex; align-items: center; justify-content: center; }
.hiring-card h3 { font-size: var(--text-base); font-weight: 700; }
.hiring-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.hiring-list li { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.5; }
.hiring-list strong { color: var(--color-text); }

/* ── Funds chart ─────────────────────────────────────────────────────────── */
.funds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: end; max-width: 700px; }
@media (max-width: 700px) { .funds-grid { grid-template-columns: repeat(3, 1fr); } }
.fund-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.fund-bar-wrap { width: 100%; height: 130px; display: flex; align-items: flex-end; }
.fund-bar { width: 100%; border-radius: var(--radius-md) var(--radius-md) 0 0; height: var(--h, 60%); background: linear-gradient(to top, var(--color-gold), rgba(245,197,66,0.45)); }
.fund-bar--2 { background: linear-gradient(to top, var(--color-accent), rgba(58,123,213,0.45)); }
.fund-bar--3 { background: linear-gradient(to top, #22c55e, rgba(34,197,94,0.45)); }
.fund-bar--4 { background: linear-gradient(to top, #a78bfa, rgba(167,139,250,0.45)); }
.fund-pct { font-size: var(--text-xl); font-weight: 900; color: var(--color-text); }
.fund-label { font-size: var(--text-sm); font-weight: 700; text-align: center; }
.fund-detail { font-size: var(--text-xs); color: var(--color-text-muted); text-align: center; line-height: 1.4; }

/* ── CTA ─────────────────────────────────────────────────────────────────── */
.section--cta { background: linear-gradient(135deg, #08112b 0%, #0d1c3d 60%, #0a1525 100%); position: relative; overflow: hidden; text-align: center; padding: clamp(5rem, 10vw, 7rem) 0; }
.cta-container { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; position: relative; z-index: 1; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 400px; border-radius: 50%; background: radial-gradient(ellipse, rgba(245,197,66,0.07) 0%, transparent 65%); pointer-events: none; }
.cta-headline { font-size: var(--text-2xl); font-weight: 800; letter-spacing: -0.02em; max-width: 680px; }
.cta-sub { font-size: var(--text-base); color: var(--color-text-muted); max-width: 540px; line-height: 1.7; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-email { font-size: var(--text-sm); color: var(--color-text-faint); }
.cta-email a { color: var(--color-gold); transition: opacity var(--transition); }
.cta-email a:hover { opacity: 0.8; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: var(--color-surface); border-top: 1px solid var(--color-border); padding: 2.5rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
.footer-logo { color: var(--color-gold); opacity: 0.65; transition: opacity var(--transition); }
.footer-logo:hover { opacity: 1; }
.footer-copy { font-size: var(--text-xs); color: var(--color-text-faint); }
.footer-copy a { color: var(--color-text-muted); transition: color var(--transition); }
.footer-copy a:hover { color: var(--color-gold); }
.footer-disclaimer { font-size: var(--text-xs); color: var(--color-text-faint); max-width: 540px; line-height: 1.5; text-align: center; }

/* ── Scroll reveal ───────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Solution section ────────────────────────────────────────────────────── */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.solution-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.solution-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.solution-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-gold);
  opacity: 0.2;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}
.solution-item h3 { font-size: var(--text-base); font-weight: 700; margin-bottom: 0.6rem; }
.solution-item p  { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; }

/* ── Why Now section ─────────────────────────────────────────────────────── */
.why-now-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.why-now-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}
[data-theme="light"] .why-now-card { background: var(--color-surface-2); }
.why-now-card:hover { border-color: var(--color-border-2); transform: translateY(-2px); }
.why-now-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.why-now-card h3 { font-size: var(--text-base); font-weight: 700; margin-bottom: 0.5rem; }
.why-now-card p  { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; }

/* ── Team photo avatar ───────────────────────────────────────────────────── */
.team-avatar--photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 16px rgba(245,197,66,0.12);
}
