/* ═══════════════════════════════════════════════
   FIRSTPATH — STYLE.CSS
   Palette: #FFFFFF white · #FF6B00 orange · #111111 black
   Aesthetic: Neumorphism + Glassmorphism + Dot grid
═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --white:        #FFFFFF;
  --off-white:    #F5F4F1;
  --surface:      #EFEFEC;
  --orange:       #FF6B00;
  --orange-light: #FF8C33;
  --orange-pale:  #FFF0E6;
  --orange-muted: rgba(255, 107, 0, 0.12);
  --black:        #111111;
  --black-soft:   #1C1C1E;
  --ink:          #2D2D2D;
  --ink-2:        #555555;
  --ink-3:        #888888;
  --border:       rgba(0, 0, 0, 0.08);

  /* Neo shadows (light surface) */
  --neo-bg:       #EFEFEC;
  --neo-shadow-d: rgba(180, 178, 172, 0.75);
  --neo-shadow-l: rgba(255, 255, 255, 0.95);

  /* Glass */
  --glass-bg:     rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.75);
  --glass-blur:   blur(18px);

  /* Type */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --section-pad:  96px;
  --inner-max:    1120px;
  --inner-pad:    clamp(20px, 5vw, 64px);

  /* Radius */
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-pill:50px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img, svg { display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── DOT CANVAS (background) ── */
#dot-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── AMBIENT ORBS ── */
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.18;
}
.orb-1 {
  width: 500px; height: 500px;
  background: var(--orange);
  top: -150px; left: -100px;
  animation: orb-drift 18s ease-in-out infinite alternate;
}
.orb-2 {
  width: 350px; height: 350px;
  background: var(--orange);
  bottom: 200px; right: -80px;
  animation: orb-drift 24s ease-in-out infinite alternate-reverse;
}
@keyframes orb-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(40px, 30px); }
}

/* ── NEUMORPHISM BASE ── */
.neo {
  background: var(--neo-bg);
  box-shadow:
    6px 6px 14px var(--neo-shadow-d),
    -6px -6px 14px var(--neo-shadow-l);
  border-radius: var(--r-lg);
}

.neo-inset {
  box-shadow:
    inset 4px 4px 10px var(--neo-shadow-d),
    inset -4px -4px 10px var(--neo-shadow-l);
}

/* ── GLASSMORPHISM BASE ── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
}

/* ── Z-STACK ── */
.nav, section, .stats-bar, .footer, .hero { position: relative; z-index: 2; }

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 var(--inner-pad);
  background: rgba(239, 239, 236, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

.nav-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark {
  display: block;
  flex-shrink: 0;
}

.nav-logo-mark-img {
  height: 32px;
  width: auto;
  display: block;
  flex-shrink: 0;
  border-radius: 8px;
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.3px;
  line-height: 1;
}

[data-theme="dark"] .nav-logo-text {
  color: #F0F0F0;
}

/* Logo image */
.nav-logo-img {
  height: 30px;
  width: auto;
  display: block;
  border-radius: 6px;
}

/* Dark mode: wrap in white pill so colours stay intact */
[data-theme="dark"] .nav-logo-img {
  background: #ffffff;
  padding: 3px 8px;
  height: 30px;
}

/* Footer logo always sits on dark bg — always needs white pill */
.footer-logo-img {
  background: #ffffff;
  padding: 3px 8px;
  height: 26px;
  border-radius: 6px;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--neo-bg);
  box-shadow: 3px 3px 8px var(--neo-shadow-d), -3px -3px 8px var(--neo-shadow-l);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark.small { width: 24px; height: 24px; border-radius: 7px; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--orange); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--r-pill);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.btn-nav {
  padding: 10px 22px;
  background: var(--black);
  color: var(--white);
  margin-left: auto;
}
.btn-nav:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.btn-primary {
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.35);
}
.btn-primary:hover {
  background: var(--orange-light);
  box-shadow: 0 6px 28px rgba(255, 107, 0, 0.45);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-full { width: 100%; justify-content: center; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--inner-pad) 60px;
}

.hero-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Copy */
.hero-copy { max-width: 520px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-muted);
  border: 1px solid rgba(255, 107, 0, 0.25);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
}
.badge-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.5); }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--black);
  margin-bottom: 20px;
}
.h1-accent {
  font-style: normal;
  color: var(--orange);
}
.h1-dim {
  color: var(--ink-3);
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 430px;
}

/* Hero form */
.hero-form { margin-bottom: 28px; }
.form-field {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--neo-bg);
  box-shadow: 6px 6px 14px var(--neo-shadow-d), -6px -6px 14px var(--neo-shadow-l);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 22px;
}
.form-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  min-width: 0;
}
.form-input::placeholder { color: var(--ink-3); }

.form-msg {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  min-height: 20px;
  padding-left: 4px;
}
.form-msg.success { color: #2e7d32; }
.form-msg.error   { color: #c62828; }

/* Proof */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-avatars { display: flex; }
.proof-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-left: -8px;
  border: 2.5px solid var(--off-white);
}
.proof-av:first-child { margin-left: 0; }
.av-1 { background: var(--orange-pale); color: var(--orange); }
.av-2 { background: #e8f5e9; color: #2e7d32; }
.av-3 { background: #e3f2fd; color: #1565c0; }
.av-4 { background: var(--neo-bg); color: var(--ink-2); box-shadow: 2px 2px 5px var(--neo-shadow-d), -2px -2px 5px var(--neo-shadow-l); }

.proof-text { font-size: 13px; color: var(--ink-2); font-weight: 500; }
.proof-text strong { color: var(--orange); }

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
  height: 460px;
}

.vis-card {
  position: absolute;
  padding: 18px 20px;
  transition: transform 0.4s var(--ease);
}
.vis-card:hover { transform: translateY(-4px) !important; }

/* float animations */
@keyframes float-a {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-13px); }
}
.float-a { animation: float-a 5s ease-in-out infinite; }
.float-b { animation: float-b 6.5s ease-in-out infinite; }
.float-c { animation: float-c 4.5s ease-in-out infinite; }

/* card: main job list */
.card-main {
  top: 0; left: 0;
  width: 290px;
  z-index: 3;
}
.vc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.vc-dot { width: 8px; height: 8px; border-radius: 50%; }
.vc-dot.green { background: #4caf50; }
.vc-label { font-size: 12px; font-weight: 700; color: var(--ink); flex: 1; }
.vc-badge.verified {
  font-size: 10px; font-weight: 700;
  background: #e8f5e9; color: #2e7d32;
  padding: 3px 8px; border-radius: var(--r-pill);
}
.vc-company-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.vc-company-row:last-child { border-bottom: none; }
.vc-co-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  color: var(--ink); flex-shrink: 0;
}
.vc-co-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.vc-co-role { font-size: 10px; color: var(--ink-3); margin-top: 1px; line-height: 1.3; }
.vc-tag {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: var(--r-pill);
}
.tag-h1b { background: var(--orange-pale); color: var(--orange); border: 1px solid rgba(255,107,0,0.2); }
.tag-opt { background: #e8f5e9; color: #2e7d32; border: 1px solid rgba(76,175,80,0.25); }
.tag-cpt { background: #e3f2fd; color: #1565c0; border: 1px solid rgba(21,101,192,0.2); }

/* card: OPT tracker */
.card-opt {
  right: 0; top: 60px;
  width: 200px;
  z-index: 4;
}
.neo-label { font-size: 10px; font-weight: 700; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.neo-big { font-size: 30px; font-weight: 800; color: var(--black); letter-spacing: -1.5px; line-height: 1; }
.neo-unit { font-size: 14px; font-weight: 400; color: var(--ink-3); }
.neo-track {
  height: 5px;
  background: rgba(0,0,0,0.08);
  border-radius: var(--r-pill);
  margin: 12px 0 6px;
  overflow: hidden;
}
.neo-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: var(--r-pill);
}
.neo-sublabel {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.neo-alert {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-pale);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--r-sm);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
}

/* card: stats pill */
.card-stats {
  bottom: 60px; right: 20px;
  width: 180px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 18px;
  z-index: 3;
}
.stat-pill { flex: 1; text-align: center; }
.pill-num {
  display: block;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: var(--black);
  letter-spacing: -0.8px;
}
.pill-num.orange { color: var(--orange); }
.pill-lbl { font-size: 10px; color: var(--ink-3); font-weight: 500; margin-top: 2px; display: block; }
.pill-divider {
  width: 1px; align-self: stretch;
  background: rgba(0,0,0,0.08);
  margin: 0 4px;
}

/* Accent shapes */
.vis-accent { position: absolute; pointer-events: none; }
.accent-ring {
  bottom: 20px; left: 40px;
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 107, 0, 0.3);
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.accent-dot-lg {
  bottom: 100px; left: 10px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.3;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--ink-3));
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%       { transform: scaleY(1.3); opacity: 0.8; }
}

/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.stats-bar {
  background: var(--black);
  padding: 0 var(--inner-pad);
}
.stats-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-item {
  flex: 1;
  max-width: 240px;
  text-align: center;
  padding: 28px 20px;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num.is-orange { color: var(--orange); }
.stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   SECTIONS — shared
════════════════════════════════════════ */
.section {
  padding: var(--section-pad) var(--inner-pad);
}
.section-alt {
  background: rgba(255,255,255,0.4);
}

.section-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.problem-card {
  padding: 28px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 22px var(--neo-shadow-d), -10px -10px 22px var(--neo-shadow-l);
}

.pc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pc-icon.orange {
  background: var(--orange-pale);
  color: var(--orange);
  box-shadow: 3px 3px 8px var(--neo-shadow-d), -3px -3px 8px var(--neo-shadow-l);
}

.pc-title {
  font-size: 16px; font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.pc-desc {
  font-size: 14px; line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.pc-stat {
  font-size: 12px; font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.02em;
}

/* Pull quote */
.pull-quote {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px 36px;
  position: relative;
}
.pq-mark {
  font-size: 52px;
  color: var(--orange);
  font-family: Georgia, serif;
  line-height: 0.8;
  margin-bottom: 14px;
  display: block;
  opacity: 0.6;
}
.pq-text {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.pq-attr {
  font-size: 12px;
  color: var(--ink-3);
}
.pq-attr strong { color: var(--orange); }

/* ════════════════════════════════════════
   FEATURES SECTION
════════════════════════════════════════ */
.features-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Big feature card */
.feat-big {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 40px 44px;
  align-items: center;
}

.feat-icon-wrap {
  width: 52px; height: 52px;
  background: var(--neo-bg);
  box-shadow: 5px 5px 12px var(--neo-shadow-d), -5px -5px 12px var(--neo-shadow-l);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feat-icon-wrap.small {
  width: 40px; height: 40px;
  border-radius: 11px;
  margin-bottom: 14px;
}

.feat-title {
  font-size: 20px; font-weight: 700;
  color: var(--black);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.feat-title.small { font-size: 15px; letter-spacing: -0.3px; margin-bottom: 8px; }

.feat-desc {
  font-size: 15px; line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.feat-desc.small { font-size: 13px; margin-bottom: 0; }

.feat-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ftag {
  font-size: 11px; font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--orange-pale);
  color: var(--orange);
  border: 1px solid rgba(255,107,0,0.2);
}

/* Mini data card inside feature */
.feat-mini-card {
  padding: 20px;
  border-radius: var(--r-md);
}
.fmc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.fmc-row:last-of-type { border-bottom: none; }
.fmc-co { font-size: 13px; font-weight: 700; color: var(--ink); flex: 1; }
.fmc-years { font-size: 11px; color: var(--ink-3); }
.fmc-score {
  font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: var(--r-pill);
}
.fmc-score.high { background: #e8f5e9; color: #2e7d32; }
.fmc-score.med  { background: #fff8e1; color: #f57f17; }
.fmc-score.low  { background: #fce4ec; color: #c62828; }

.fmc-legend {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--ink-3);
}
.legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%; flex-shrink: 0;
}
.legend-dot.green  { background: #4caf50; }
.legend-dot.orange { background: var(--orange); }
.legend-dot.red    { background: #e53935; }

/* Small features grid */
.feat-small-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.feat-small {
  padding: 24px 22px;
  transition: transform 0.3s var(--ease);
}
.feat-small:hover { transform: translateY(-3px); }

/* ════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
}

.step {
  text-align: center;
  padding: 8px;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  color: var(--orange);
  margin: 0 auto 20px;
  border-radius: 50%;
}
.step-connector {
  display: none;
}
.step-title {
  font-size: 16px; font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step p, .step-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-2);
}

/* ════════════════════════════════════════
   ABOUT / FOUNDER
════════════════════════════════════════ */
.founder-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  padding: 44px 48px;
  align-items: start;
}

.founder-left { text-align: center; }
.founder-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--orange);
  margin: 0 auto 14px;
}
.founder-name {
  font-size: 16px; font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.founder-title {
  font-size: 12px; color: var(--ink-3);
  margin-bottom: 12px;
}
.founder-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }

.founder-quote {
  font-size: 15px; line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.founder-quote em {
  font-style: italic;
  color: var(--black);
  font-weight: 600;
}
.founder-cta { margin-top: 24px; }

/* ════════════════════════════════════════
   WAITLIST SECTION
════════════════════════════════════════ */
.waitlist-section {
  background: var(--black);
}
.waitlist-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: #1a1a1a;
  box-shadow:
    10px 10px 30px rgba(0,0,0,0.5),
    -4px -4px 20px rgba(255,255,255,0.04);
}

/* Decorative dots inside dark card */
.wl-dot-a, .wl-dot-b {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.wl-dot-a {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
  top: -100px; right: -60px;
}
.wl-dot-b {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
  bottom: -60px; left: 100px;
}

.wl-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 56px 56px;
  align-items: center;
}

.wl-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.wl-sub {
  font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.wl-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wl-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

/* Waitlist form card */
.wl-form-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-lg);
  padding: 32px;
}
.wlf-title {
  font-size: 18px; font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.wlf-sub {
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.wlf-sub span { color: var(--orange); font-weight: 700; }

.wlf-field { margin-bottom: 16px; }
.wlf-label {
  display: block;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  margin-bottom: 7px;
}
.wlf-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.wlf-input::placeholder { color: rgba(255,255,255,0.25); }
.wlf-input:focus {
  border-color: var(--orange);
  background: rgba(255,107,0,0.06);
}
.wlf-select option { background: #1a1a1a; color: var(--white); }

.wlf-msg {
  margin-top: 12px;
  font-size: 13px; font-weight: 600;
  text-align: center;
  min-height: 20px;
}
.wlf-msg.success { color: #4caf50; }
.wlf-msg.error   { color: #ef5350; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--black-soft);
  padding: 40px var(--inner-pad);
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-size: 15px; font-weight: 800;
  color: var(--white) !important;
}
.footer-logo .logo-mark { background: rgba(255,255,255,0.06); box-shadow: none; }
.footer-tagline {
  font-size: 12px; color: rgba(255,255,255,0.35);
  margin-top: 6px;
}
.footer-made { font-size: 12px; color: rgba(255,255,255,0.25); margin-bottom: 4px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-right { display: flex; gap: 20px; }
.footer-link {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--orange); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { height: 340px; }
  .card-main { width: 240px; }
  .card-opt  { right: 0; top: 30px; width: 170px; }
  .card-stats { width: 155px; bottom: 10px; right: 0; }

  .feat-big {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }
  .founder-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }
  .founder-left { display: flex; flex-direction: column; align-items: center; }
  .wl-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(239,239,236,0.96);
    backdrop-filter: blur(20px);
    padding: 16px var(--inner-pad) 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .btn-nav { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  .hero-visual { height: 280px; }
  .card-main { width: 200px; font-size: 12px; padding: 12px 14px; }
  .card-opt  { width: 148px; padding: 12px 14px; }
  .card-stats { width: 140px; }
  .neo-big { font-size: 22px; }

  .problem-grid { grid-template-columns: 1fr; }
  .feat-small-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }

  .stats-inner { flex-direction: column; gap: 0; }
  .stat-divider { width: 60px; height: 1px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-right { justify-content: center; }
}

/* ════════════════════════════════════════
   DARK MODE
════════════════════════════════════════ */
[data-theme="dark"] {
  --white:        #111111;
  --off-white:    #0E0E0E;
  --surface:      #1A1A1A;
  --black:        #F0F0F0;
  --black-soft:   #0A0A0A;
  --ink:          #E2E2E2;
  --ink-2:        #9A9A9A;
  --ink-3:        #888888;   /* bumped up — #5C5C5C was near-invisible on dark bg */
  --border:       rgba(255, 255, 255, 0.07);

  --neo-bg:       #1E1E1E;
  --neo-shadow-d: rgba(0, 0, 0, 0.7);
  --neo-shadow-l: rgba(255, 255, 255, 0.04);

  --glass-bg:     rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.09);

  --orange-pale:  rgba(255, 107, 0, 0.15);
  --orange-muted: rgba(255, 107, 0, 0.10);
}

/* ── DARK MODE: hardcoded light-colour overrides ── */

/* Proof avatars */
[data-theme="dark"] .av-2 { background: rgba(46,125,50,0.25);   color: #81c784; }
[data-theme="dark"] .av-3 { background: rgba(21,101,192,0.25);  color: #64b5f6; }

/* Hero card tags */
[data-theme="dark"] .tag-opt {
  background: rgba(46,125,50,0.2);
  color: #81c784;
  border-color: rgba(76,175,80,0.2);
}
[data-theme="dark"] .tag-cpt {
  background: rgba(21,101,192,0.2);
  color: #64b5f6;
  border-color: rgba(21,101,192,0.2);
}

/* "✓ Live data" badge */
[data-theme="dark"] .vc-badge.verified {
  background: rgba(46,125,50,0.2);
  color: #81c784;
}

/* Sponsorship score chips in feature mini-card */
[data-theme="dark"] .fmc-score.high { background: rgba(46,125,50,0.2);   color: #81c784; }
[data-theme="dark"] .fmc-score.med  { background: rgba(245,127,23,0.2);  color: #ffb74d; }
[data-theme="dark"] .fmc-score.low  { background: rgba(198,40,40,0.2);   color: #ef9a9a; }

/* Form success messages */
[data-theme="dark"] .form-msg.success { color: #81c784; }
[data-theme="dark"] .wlf-msg.success  { color: #81c784; }

/* Nav border when scrolled */
[data-theme="dark"] .nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

/* Section-alt text legibility */
[data-theme="dark"] .section-alt { background: rgba(255,255,255,0.02); }

/* ── HERO FLOATING CARDS — keep company text dark in both modes ── */
[data-theme="dark"] .vc-co-name  { color: #E2E2E2; }
[data-theme="dark"] .vc-co-role  { color: #888888; }
[data-theme="dark"] .vc-label    { color: #E2E2E2; }
[data-theme="dark"] .vc-co-icon  { color: #111111; }
[data-theme="dark"] .vc-dot.green{ background: #4caf50; }

/* ── SECTIONS ALREADY DARK IN LIGHT MODE — pin to original values ── */

/* Stats bar */
[data-theme="dark"] .stats-bar         { background: #111111; }
[data-theme="dark"] .stat-num          { color: #ffffff; }
[data-theme="dark"] .stat-num.is-orange{ color: var(--orange); }

/* Waitlist section */
[data-theme="dark"] .waitlist-section  { background: #111111; }
[data-theme="dark"] .waitlist-card     { background: #1a1a1a; }
[data-theme="dark"] .wl-h2            { color: #ffffff; }
[data-theme="dark"] .wlf-title        { color: #ffffff; }

/* Footer — black-soft stays dark so only text needs pinning */
[data-theme="dark"] .footer-logo       { color: #ffffff !important; }

/* Nav dark */
[data-theme="dark"] .nav {
  background: rgba(14, 14, 14, 0.88);
  border-bottom-color: rgba(255,255,255,0.07);
}
[data-theme="dark"] .nav-link { color: var(--ink-2); }
[data-theme="dark"] .nav-link:hover { color: var(--orange); }
[data-theme="dark"] .btn-nav {
  background: rgba(255,255,255,0.1);
  color: var(--ink);
}
[data-theme="dark"] .btn-nav:hover { background: var(--orange); color: #fff; }

/* Nav mobile open */
[data-theme="dark"] .nav-links.open {
  background: rgba(14,14,14,0.96);
}

/* Hamburger */
[data-theme="dark"] .hamburger span { background: var(--ink); }

/* Section alt bg */
[data-theme="dark"] .section-alt { background: rgba(255,255,255,0.03); }

/* Stats bar — already dark, keep as is */

/* Pull quote on dark */
[data-theme="dark"] .pull-quote {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

/* Waitlist card (inner dark card already works) */
[data-theme="dark"] .waitlist-card { background: #181818; }

/* Footer */
[data-theme="dark"] .footer { background: #0A0A0A; }
[data-theme="dark"] .footer-logo { color: var(--ink) !important; }
[data-theme="dark"] .logo-mark { background: rgba(255,255,255,0.06); box-shadow: none; }

/* Orbs are more subtle in dark */
[data-theme="dark"] .orb { opacity: 0.10; }

/* Dot canvas color override via JS (handled in script) */

/* ── THEME TOGGLE BUTTON ── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--neo-bg);
  box-shadow: 3px 3px 8px var(--neo-shadow-d), -3px -3px 8px var(--neo-shadow-l);
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  flex-shrink: 0;
}
.theme-toggle:hover { color: var(--orange); transform: rotate(20deg); }

/* Show sun in dark mode, moon in light mode */
.icon-moon { display: block; }
.icon-sun  { display: none; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun  { display: block; }

/* ── DISCLAIMER / LEGAL TEXT ── */
.disclaimer-text {
  font-size: 11px;
  line-height: 1.6;
  color: var(--ink-3);
  margin-top: 14px;
}

.vis-disclaimer {
  position: absolute;
  bottom: -28px;
  left: 0;
  right: 0;
  font-size: 10px;
  color: var(--ink-3);
  line-height: 1.5;
  text-align: center;
  padding: 0 4px;
}

.stat-source {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
  font-style: italic;
}

.badge-coming-soon {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #888;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 2px 6px;
  vertical-align: middle;
  margin-left: 6px;
  line-height: 1.4;
}

[data-theme="dark"] .badge-coming-soon {
  color: #888;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}

.wl-urgency {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  line-height: 1.5;
}

.wlf-privacy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

.footer-legal {
  max-width: var(--inner-max);
  margin: 16px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
  margin-bottom: 6px;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
