/* ═══════════════════════════════════════════════════════════════════════════
   DIYNAMICA // OFFICIAL WEBSITE STYLESHEET (2026)
   Exact Styling from: index_bozza_ENG_V9.html & diynamica-onesheet_v5.html
   Aesthetic: Clean Modern Porcelain White, Dark Slate Navy & Technical Lime
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --lime: #527c00; /* Deep readable lime for text and primary icons */
  --lime-neon: #84cc16; /* Bright neon lime for lines, badges, and accents */
  --lime-light: rgba(132, 204, 22, 0.12);
  --lime-subtle: rgba(132, 204, 22, 0.06);

  --bg: #fafafa; /* Modern porcelain white background */
  --bg2: #ffffff; /* Pure white for cards */
  --bg3: #f1f5f9; /* Light slate for technical panels */

  --border: rgba(132, 204, 22, 0.25);
  --border-soft: rgba(15, 23, 42, 0.08);

  --text: #0f172a; /* Slate 900 primary text */
  --muted: #64748b; /* Slate 500 secondary text */
  --dim: #94a3b8;

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
  background: var(--bg);
}

/* ─── BACKGROUND NOISE & RINGS (EXACT PRESENTATION STYLE) ─── */
#grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

#scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8999;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.012) 0px,
    rgba(0, 0, 0, 0.012) 1px,
    transparent 1px,
    transparent 4px
  );
}

.concentric-ring {
  position: fixed;
  border-radius: 50%;
  border: 1px solid rgba(132, 204, 22, 0.07);
  pointer-events: none;
  z-index: 0;
}

.ring-1 { width: 550px; height: 550px; top: 15%; right: -100px; }
.ring-2 { width: 800px; height: 800px; top: 10%; right: -220px; }
.ring-3 { width: 1100px; height: 1100px; top: 5%; right: -360px; }

/* ─── TYPOGRAPHY & UTILS ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.lime { color: var(--lime); }
.lime-neon { color: var(--lime-neon); }
.lime-text { color: var(--lime); font-weight: 600; }
.text-lime { color: var(--lime); }
.text-lime-light { color: #84cc16 !important; }

.label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 6px;
}

.lime-line {
  width: 40px;
  height: 2px;
  background: var(--lime-neon);
  border-radius: 2px;
}

.lime-line.long { width: 80px; }
.center-line { margin: 14px auto 0; }

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.text-center { text-align: center; }

/* Corner Marks */
.corner-mark {
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0.25;
  pointer-events: none;
}
.corner-mark.tl { top: 20px; left: 20px; border-top: 1.5px solid var(--lime-neon); border-left: 1.5px solid var(--lime-neon); }
.corner-mark.tr { top: 20px; right: 20px; border-top: 1.5px solid var(--lime-neon); border-right: 1.5px solid var(--lime-neon); }
.corner-mark.bl { bottom: 20px; left: 20px; border-bottom: 1.5px solid var(--lime-neon); border-left: 1.5px solid var(--lime-neon); }
.corner-mark.br { bottom: 20px; right: 20px; border-bottom: 1.5px solid var(--lime-neon); border-right: 1.5px solid var(--lime-neon); }


/* ─── SITE HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 24px;
  gap: 20px;
}

.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.header-center {
  display: none;
}

@media (min-width: 992px) {
  .header-center {
    display: block;
  }
}

.stage-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--muted);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.stage-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime-neon);
  box-shadow: 0 0 8px var(--lime-neon);
}

.stage-pill strong {
  color: var(--lime);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 22px;
}

@media (min-width: 1100px) {
  .site-nav {
    display: flex;
  }
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--lime);
}

.btn-pitch-deck {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(132, 204, 22, 0.08);
  border: 1px solid rgba(82, 124, 0, 0.3);
  color: var(--lime);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-pitch-deck:hover {
  background: var(--lime-neon);
  color: #fff;
  border-color: var(--lime-neon);
  box-shadow: 0 4px 14px rgba(132, 204, 22, 0.3);
}

.mobile-toggle {
  background: none;
  border: 1px solid var(--border-soft);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (min-width: 1100px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-drawer {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-bottom: 1px solid var(--border-soft);
  padding: 20px 24px;
  gap: 14px;
}

.mobile-drawer.open {
  display: flex;
}

.mobile-nav-link {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-cta {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}


/* ─── SECTION 1: HERO (COVER) ─── */
.hero-section {
  position: relative;
  padding: 60px 0 80px;
  background: radial-gradient(ellipse 120% 80% at 50% 40%, rgba(132, 204, 22, 0.06) 0%, var(--bg) 70%);
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.15fr 1fr;
  }
}

.hero-logo-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero-logo {
  width: clamp(240px, 30vw, 380px);
  height: auto;
}

.hero-headline {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-top: 8px;
}

.motto-badge {
  font-family: var(--font-heading);
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
  background: rgba(132, 204, 22, 0.12);
  border: 1px solid rgba(82, 124, 0, 0.25);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
}

.hero-subline {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime-neon);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(132, 204, 22, 0.35);
  transition: all var(--transition);
}

.btn-primary:hover {
  background: #72b510;
  box-shadow: 0 6px 22px rgba(132, 204, 22, 0.5);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg2);
  border: 1px solid var(--border-soft);
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-1px);
}

/* Featured Bike Card */
.bike-card {
  background: var(--bg2);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.bike-hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.bike-card:hover .bike-hero-img {
  transform: scale(1.02);
}

.bike-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
  font-family: var(--font-heading);
  font-size: 11px;
}

.b-tag {
  color: var(--lime);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.b-ratio {
  color: var(--muted);
  font-weight: 600;
}


/* ─── COMMON SECTION STYLING ─── */
.section {
  padding: 80px 0;
  position: relative;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading .title {
  font-size: clamp(26px, 3.2vw, 40px);
  margin-top: 6px;
}

.section-heading .subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 720px;
  margin: 10px auto 0;
  line-height: 1.6;
}


/* ─── SECTION 2: THE TL;DR (OVERVIEW GRID) ─── */
.tldr-section {
  background: var(--bg);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.overview-card {
  background: var(--bg2);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 32px 26px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.015);
  transition: all var(--transition);
}

.overview-card:hover {
  border-color: var(--lime-neon);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.ov-num {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--lime);
  margin-bottom: 12px;
}

.ov-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.ov-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}


/* ─── SECTION 3: PROBLEM VS SOLUTION ─── */
.problem-solution-section {
  background: var(--bg3);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.split-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 900px) {
  .split-comparison {
    grid-template-columns: 1fr 1fr;
  }
}

.comp-column {
  background: var(--bg2);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 36px 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.015);
}

.comp-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}

.comp-badge {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}

.badge-problem {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.badge-solution {
  background: rgba(132, 204, 22, 0.12);
  color: var(--lime);
  border: 1px solid rgba(82, 124, 0, 0.25);
}

.comp-title {
  font-size: 21px;
  font-weight: 700;
}

.comp-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.comp-item:last-child {
  margin-bottom: 0;
}

.c-num {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  background: var(--bg3);
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 3px;
}

.c-text p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}


/* ─── SECTION 4: 4-STEP GUIDED PROCESS ─── */
.process-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

.p-tab {
  background: var(--bg2);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
}

.p-tab:hover {
  border-color: var(--lime-neon);
  background: #ffffff;
}

.p-tab.active {
  border-color: var(--lime-neon);
  background: var(--bg2);
  box-shadow: 0 4px 14px rgba(132, 204, 22, 0.18);
}

.p-num {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--lime);
}

.p-meta strong {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.p-meta span {
  font-size: 11px;
  color: var(--muted);
}

/* Process Box */
.process-box {
  background: var(--bg2);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 36px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.02);
}

.p-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 992px) {
  .p-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.p-badge {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--lime);
  background: var(--lime-light);
  border: 1px solid rgba(82, 124, 0, 0.2);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

.p-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}

.p-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.p-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.bullet-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
}

.p-confidential-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg3);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 12.5px;
  color: var(--muted);
}

.p-confidential-note strong {
  color: var(--text);
}

.p-img-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--bg3);
  max-height: 380px;
}

.p-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.p-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.05em;
}


/* ─── SECTION 5: DAKAR UNFAIR ADVANTAGE (EXACT S4_NEW STYLE) ─── */
.dakar-section {
  background: #0f172a; /* Slate 900 dark pane identical to slide s4_new in presentation */
  color: #ffffff;
  padding: 70px 0;
}

.dakar-card {
  width: 100%;
}

.dakar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .dakar-grid {
    grid-template-columns: 1.15fr 1fr;
  }
}

.dakar-text-pane {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dakar-heading {
  font-size: clamp(26px, 3.2vw, 42px);
  color: #ffffff;
  line-height: 1.15;
}

.dakar-p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.65;
}

.dakar-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 12px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.d-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.d-val {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--lime-neon);
}

.d-lbl {
  font-size: 11px;
  color: #94a3b8;
}

.dakar-quote {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--lime-neon);
  border-radius: 4px;
  padding: 14px 18px;
}

.dakar-quote p {
  font-size: 13.5px;
  font-style: italic;
  color: #f1f5f9;
  line-height: 1.5;
  margin-bottom: 6px;
}

.quote-by {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--lime-neon);
  font-weight: 600;
}

.dakar-img-pane {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-height: 420px;
}

.dakar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ─── SECTION 6: 6:1 LOGISTICS ─── */
.logistics-box {
  background: var(--bg2);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.015);
}

.log-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 992px) {
  .log-grid {
    grid-template-columns: 1.15fr 1fr;
  }
}

.log-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.log-img {
  width: 100%;
  height: auto;
  display: block;
}

.log-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.log-kpis {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kpi-card {
  background: var(--bg3);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 18px 20px;
  transition: border-color var(--transition);
}

.kpi-card:hover {
  border-color: var(--border);
}

.kpi-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 4px;
}

.kpi-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.kpi-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}


/* ─── SECTION 7: BUSINESS MODEL TRIAD ─── */
.business-section {
  background: var(--bg);
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.rev-card {
  background: var(--bg2);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 30px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.015);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.rev-card:hover {
  border-color: var(--lime-neon);
  transform: translateY(-2px);
}

.featured-rev {
  border-color: var(--border);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(132, 204, 22, 0.08);
}

.rev-pill {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  background: var(--bg3);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}

.lime-pill {
  color: var(--lime);
  background: var(--lime-light);
}

.rev-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.rev-summary {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.rev-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}

.rev-list li {
  font-size: 12.5px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.rev-list li::before {
  content: '·';
  color: var(--lime-neon);
  font-size: 18px;
  font-weight: bold;
}

.rev-footer-tag {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--lime);
  cursor: pointer;
}

.rev-footer-tag:hover {
  text-decoration: underline;
}

/* Market Banner */
.market-banner {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.mb-left {
  max-width: 760px;
}

.mb-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.mb-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}


/* ─── SECTION 8: FOUNDING BOARD (TYPOGRAPHIC CARDS - NO PHOTOS) ─── */
.team-section {
  background: var(--bg3);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--bg2);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.015);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.team-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.tc-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.tc-avatar-badge {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(132, 204, 22, 0.12);
  border: 1px solid rgba(82, 124, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--lime);
  flex-shrink: 0;
}

.tc-role {
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.tc-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.tc-specialty {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: 12px;
  display: block;
}

.tc-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}


/* ─── SECTION 9: PRE-SEED ASK ─── */
.ask-section {
  background: var(--bg);
  padding: 60px 0 80px;
}

.ask-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px 32px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 6px 24px rgba(132, 204, 22, 0.08);
}

.ask-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--lime);
  margin: 8px 0 10px;
}

.ask-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.ask-milestones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.ms-pill {
  background: var(--bg3);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.ms-pill strong {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.ms-pill span {
  font-size: 12px;
  color: var(--muted);
}


/* ─── SITE FOOTER ─── */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 70px 0 0;
  border-top: 1px solid var(--border-soft);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-motto {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime-neon);
  margin-top: 10px;
}

.footer-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  margin-top: 10px;
  max-width: 320px;
}

.footer-head {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--lime-neon);
}

.footer-contacts a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-contacts a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 12px;
  color: #64748b;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}


/* ─── MODAL DIALOG ─── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.open {
  display: flex;
  animation: fadeIn 0.25s ease-out forwards;
}

.modal-window {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding: 36px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid var(--border-soft);
  color: var(--muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.modal-close:hover {
  border-color: #dc2626;
  color: #dc2626;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 6px;
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13.5px;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: #ffffff;
}

.form-checkbox {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 22px;
  font-size: 12px;
  color: var(--muted);
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--lime);
}

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

.modal-success {
  text-align: center;
  padding: 16px 0;
}

.success-icon {
  font-size: 44px;
  margin-bottom: 12px;
}

.success-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.success-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 20px;
}

.token-box {
  background: var(--bg3);
  border: 1px dashed var(--lime);
  border-radius: 6px;
  padding: 14px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.token-label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.token-code {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
}

.success-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════════════════════════════
   PARALLAX & SCROLL ANIMATIONS LAYER (ADDED)
   Non-destructive additions to the original stylesheet
   ═══════════════════════════════════════════════════════════════════ */

/* Top scroll progress bar */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--lime), var(--lime-neon));
  box-shadow: 0 0 10px rgba(132, 204, 22, 0.5);
  z-index: 10001;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* Scroll reveal: elements start invisible, animate in when visible */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.sr.visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-delay-1 { transition-delay: 0.1s; }
.sr-delay-2 { transition-delay: 0.2s; }
.sr-delay-3 { transition-delay: 0.3s; }
.sr-delay-4 { transition-delay: 0.4s; }

/* Parallax elements get will-change for GPU compositing */
[data-parallax] {
  will-change: transform;
}


/* ═══════════════════════════════════════════════════════════════════
   INVESTOR STEALTH GATE & ACCESS CONTROL (SOLUTION 1)
   ═══════════════════════════════════════════════════════════════════ */

body.is-locked {
  overflow: hidden !important;
  height: 100vh !important;
}

body.is-locked main,
body.is-locked .site-header,
body.is-locked .site-footer {
  filter: blur(16px);
  pointer-events: none;
  user-select: none;
  transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

main, .site-header, .site-footer {
  transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.investor-gate {
  position: fixed;
  inset: 0;
  z-index: 15000;
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.investor-gate.unlocked {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.investor-gate.hidden {
  display: none !important;
}

.gate-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.09), 0 0 40px rgba(132, 204, 22, 0.08);
  width: 100%;
  max-width: 520px;
  padding: clamp(30px, 5vw, 44px);
  text-align: center;
  position: relative;
  animation: gateCardPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes gateCardPop {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.gate-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.gate-logo {
  height: 28px;
  width: auto;
}

.gate-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--lime);
  background: var(--lime-subtle);
  border: 1px solid var(--border);
  padding: 4px 14px;
  border-radius: 9999px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime-neon);
  box-shadow: 0 0 10px var(--lime-neon);
  animation: pulseNeon 1.8s infinite;
}

@keyframes pulseNeon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.gate-title {
  font-size: clamp(22px, 3.5vw, 26px);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.gate-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 26px;
}

.gate-form {
  margin-bottom: 24px;
}

.gate-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1.5px solid var(--border-soft);
  border-radius: 9999px;
  padding: 4px 6px 4px 18px;
  transition: all var(--transition);
}

.gate-input-wrap:focus-within {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px var(--lime-light);
  background: #ffffff;
}

.gate-input-wrap.shake {
  animation: shakeInput 0.4s ease;
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

@keyframes shakeInput {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

.gate-input-icon {
  font-size: 14px;
  color: var(--muted);
  margin-right: 10px;
}

.gate-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.gate-input-wrap input::placeholder {
  color: var(--dim);
  font-size: 13px;
}

.gate-submit-btn {
  background: var(--text);
  color: #ffffff;
  border: none;
  padding: 10px 22px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition);
}

.gate-submit-btn:hover {
  background: var(--lime);
  transform: translateX(2px);
}

.gate-error-msg {
  font-size: 12px;
  color: #dc2626;
  font-weight: 600;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  animation: fadeIn 0.2s ease;
}

.gate-divider {
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.gate-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-soft);
  z-index: 0;
}

.gate-divider span {
  position: relative;
  z-index: 1;
  background: var(--bg2);
  padding: 0 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--dim);
}

.gate-alt-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.gate-request-btn {
  width: 100%;
  background: var(--lime-subtle);
  border: 1px solid var(--border);
  color: var(--lime);
  padding: 12px 20px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
}

.gate-request-btn:hover {
  background: var(--lime);
  color: #ffffff;
  border-color: var(--lime);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(82, 124, 0, 0.25);
}

.gate-email-link {
  font-size: 12px;
  color: var(--muted);
  transition: color var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gate-email-link:hover {
  color: var(--lime);
}

.gate-footer {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.05em;
}

/* Auth status indicator inside header when unlocked (placed next to Investor Pitch Deck) */
.auth-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(132, 204, 22, 0.08);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--lime);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
  white-space: nowrap;
}

.auth-status-pill:hover {
  background: rgba(239, 68, 68, 0.09);
  border-color: rgba(239, 68, 68, 0.35);
  color: #dc2626;
  transform: translateY(-1px);
}

.auth-lock-hint {
  font-size: 10px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-weight: 500;
  transition: color var(--transition);
}

.auth-status-pill:hover .auth-lock-hint {
  color: #dc2626;
}

