/* ==========================================================================
   ZENYTE HOLDINGS — Design System & Styles
   "Where Main Street Meets Wall Street"
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ---------- Custom Properties ---------- */
:root {
  /* Colors — Institutional Trust + Main Street Warmth */
  --navy-950: #060E1A;
  --navy-900: #0B1D32;
  --navy-800: #122A45;
  --navy-700: #1B3A5C;
  --navy-600: #264D73;

  --gold-500: #C8956C;
  --gold-400: #D4A97E;
  --gold-300: #E0BD94;
  --gold-200: #EBCFAB;
  --gold-100: #F5E6D2;
  --gold-50:  #FAF3EB;

  --slate-900: #1A1A2E;
  --slate-700: #374151;
  --slate-500: #6B7280;
  --slate-400: #9CA3AF;
  --slate-300: #D1D5DB;
  --slate-200: #E5E7EB;
  --slate-100: #F3F4F6;

  --white: #FFFFFF;
  --off-white: #F8F6F3;
  --warm-bg: #FAF9F7;

  --green-700: #15803D;
  --green-500: #22C55E;
  --red-500: #EF4444;

  /* Typography */
  --font-heading: 'Playfair Display', 'Cardo', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Type Scale (fluid) */
  --text-display: clamp(2.75rem, 5.5vw, 4.5rem);
  --text-h1: clamp(2.25rem, 4vw, 3.5rem);
  --text-h2: clamp(1.75rem, 3vw, 2.75rem);
  --text-h3: clamp(1.35rem, 2.2vw, 1.75rem);
  --text-h4: clamp(1.125rem, 1.5vw, 1.35rem);
  --text-body: 1.125rem;
  --text-body-sm: 1rem;
  --text-small: 0.875rem;
  --text-xs: 0.75rem;

  /* Spacing (8px grid) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-wide: 1400px;
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-padding: clamp(1.25rem, 4vw, 3rem);

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 40px rgba(200,149,108,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base Typography ---------- */
body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--slate-900);
  background-color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--slate-900);
}

.display { font-size: var(--text-display); letter-spacing: -0.02em; line-height: 1.1; }
h1, .h1 { font-size: var(--text-h1); }
h2, .h2 { font-size: var(--text-h2); }
h3, .h3 { font-size: var(--text-h3); }
h4, .h4 { font-size: var(--text-h4); font-weight: 600; }

p { max-width: 65ch; }
p + p { margin-top: var(--sp-4); }

.text-gold { color: var(--gold-500); }
.text-navy { color: var(--navy-900); }
.text-slate { color: var(--slate-500); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-underline-gold { text-decoration: underline; text-decoration-color: var(--gold-500); text-underline-offset: 4px; text-decoration-thickness: 2px; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.container--narrow { max-width: var(--max-width-narrow); }
.container--wide { max-width: var(--max-width-wide); }

section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--sp-4);
}

.section-heading {
  margin-bottom: var(--sp-6);
}

.section-subheading {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  color: var(--slate-500);
  max-width: 55ch;
  line-height: 1.7;
}

.section--dark {
  background-color: var(--navy-900);
  color: var(--slate-200);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}
.section--dark .section-subheading {
  color: var(--slate-400);
}
.section--dark .section-label {
  color: var(--gold-400);
}

.section--light {
  background-color: var(--off-white);
}

.section--warm {
  background-color: var(--gold-50);
}

.section--no-top-pad {
  padding-top: 0;
}

.section-subheading--centered {
  margin: 0 auto;
  text-align: center;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: var(--sp-5) 0;
}

.nav--scrolled {
  background: rgba(11, 29, 50, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--sp-3) 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav__logo span {
  color: var(--gold-400);
  font-weight: 400;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav__link {
  font-size: var(--text-small);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  position: relative;
}

.nav__link:hover {
  color: var(--white);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--navy-900);
  background: var(--gold-400);
  padding: var(--sp-2) var(--sp-6);
  border-radius: 100px;
  transition: var(--transition);
}

.nav__cta:hover {
  background: var(--gold-300);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav__toggle--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle--active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Active nav link */
.nav__link--active {
  color: var(--white);
}

.nav__link--active::after {
  width: 100%;
}

/* ---------- Nav Dropdowns ---------- */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-small);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  background: none;
  border: none;
  font-family: var(--font-body);
  padding: 0;
}

.nav__dropdown-trigger:hover {
  color: var(--white);
}

.nav__dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: var(--transition);
}

.nav__dropdown-trigger:hover::after {
  width: 100%;
}

.nav__dropdown-trigger--active {
  color: var(--white);
}

.nav__dropdown-trigger--active::after {
  width: 100%;
}

.nav__dropdown-arrow {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav__dropdown.is-open .nav__dropdown-arrow {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--sp-3) 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--navy-800);
}

.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: flex;
  flex-direction: column;
  padding: var(--sp-3) var(--sp-6);
  transition: background 0.15s ease;
}

.nav__dropdown-link:hover {
  background: rgba(255,255,255,0.05);
}

.nav__dropdown-link-title {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.nav__dropdown-link-desc {
  font-size: var(--text-xs);
  color: var(--slate-400);
  line-height: 1.4;
  margin-top: 2px;
}

.nav__dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: var(--sp-2) 0;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-950);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,149,108,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(38,77,115,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(200,149,108,0.2) 0%, transparent 50%);
}

/* Subtle grid pattern */
.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--sp-8);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid rgba(200,149,108,0.25);
  border-radius: 100px;
  background: rgba(200,149,108,0.06);
}

.hero__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__heading {
  font-size: var(--text-display);
  color: var(--white);
  margin-bottom: var(--sp-6);
  letter-spacing: -0.02em;
}

.hero__heading em {
  font-style: normal;
  color: var(--gold-400);
}

.hero__heading--investor {
  font-size: var(--text-h1);
  margin-bottom: var(--sp-4);
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-8);
}

.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--slate-400);
  line-height: 1.8;
  margin-bottom: var(--sp-10);
  max-width: 580px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-body-sm);
  border-radius: 100px;
  transition: var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--gold-500);
  color: var(--navy-950);
  padding: var(--sp-4) var(--sp-8);
  box-shadow: 0 4px 20px rgba(200,149,108,0.3);
}

.btn--primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,149,108,0.4);
}

.btn--secondary {
  color: var(--slate-400);
  padding: var(--sp-4) var(--sp-2);
}

.btn--secondary:hover {
  color: var(--white);
}

.btn--secondary .btn__arrow {
  transition: var(--transition);
}

.btn--secondary:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--outline {
  border: 1.5px solid var(--gold-500);
  color: var(--gold-500);
  padding: var(--sp-3) var(--sp-6);
}

.btn--outline:hover {
  background: var(--gold-500);
  color: var(--navy-950);
}

.btn--dark {
  background: var(--navy-900);
  color: var(--white);
  padding: var(--sp-4) var(--sp-8);
}

.btn--dark:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
}

/* Hero short variant (sub-pages) */
.hero--short {
  min-height: auto;
  padding-top: 140px;
  padding-bottom: var(--section-padding);
}

/* Hero Split Layout (text left, visual right) */
.hero--split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-12);
}

.hero--split .hero__content {
  max-width: none;
}

.hero--split .hero__sub {
  max-width: none;
}

/* Hero Pyramid Visual (SVG) */
.hero-pyramid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pyramid__svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}

@media (max-width: 900px) {
  .hero--split .container {
    grid-template-columns: 1fr;
  }
  .hero-pyramid {
    justify-content: center;
    margin-top: var(--sp-8);
  }
  .hero-pyramid__svg {
    max-width: 400px;
  }
}

/* Hero Stats Bar */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(6,14,26,0.6);
  backdrop-filter: blur(20px);
}

.hero__stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero__stat {
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  position: relative;
}

.hero__stat + .hero__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1.2;
}

.hero__stat-label {
  font-size: var(--text-small);
  color: var(--slate-400);
  margin-top: var(--sp-1);
}

/* ---------- Problem Section ---------- */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-12);
}

.problem__card {
  padding: var(--sp-8);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.problem__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.problem__card-number {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: 700;
  color: var(--gold-100);
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-6);
  line-height: 1;
}

.problem__card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  font-size: 1.5rem;
}

.problem__card h3 {
  margin-bottom: var(--sp-3);
  font-size: var(--text-h4);
}

.problem__card p {
  color: var(--slate-500);
  font-size: var(--text-body-sm);
  line-height: 1.7;
}

.problem__closing {
  text-align: center;
  margin-top: var(--sp-16);
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--slate-700);
}

.problem__closing em {
  font-style: normal;
  color: var(--gold-500);
}

/* ---------- Three Doors ---------- */
.doors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.door {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.door::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: var(--transition-slow);
  transform-origin: left;
}

.door:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,149,108,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.door:hover::before {
  transform: scaleX(1);
}

.door__letter {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: 700;
  color: rgba(200,149,108,0.15);
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-6);
  line-height: 1;
}

.door__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--sp-6);
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid rgba(200,149,108,0.25);
  border-radius: 100px;
}

.door h3 {
  font-size: var(--text-h3);
  margin-bottom: var(--sp-3);
}

.door__multiple {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: var(--sp-4);
}

.door__desc {
  color: var(--slate-400);
  font-size: var(--text-body-sm);
  margin-bottom: var(--sp-6);
  line-height: 1.7;
}

.door__details {
  list-style: none;
  padding: 0;
}

.door__details li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-small);
  color: var(--slate-300);
  padding: var(--sp-2) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.door__details li .check {
  color: var(--gold-400);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- Process / How It Works ---------- */
.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-12);
  position: relative;
}

/* Connecting line */
.process__timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-200), var(--gold-500), var(--gold-200));
  z-index: 0;
}

.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process__step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--gold-500);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.process__step:hover .process__step-number {
  background: var(--gold-500);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.process__step h3 {
  font-size: var(--text-h4);
  margin-bottom: var(--sp-3);
}

.process__step p {
  font-size: var(--text-body-sm);
  color: var(--slate-500);
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- Difference / Comparison ---------- */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  margin-top: var(--sp-12);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.comparison__col {
  padding: var(--sp-8);
  border-radius: var(--radius-lg);
}

.comparison__col--old {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.comparison__col--new {
  background: rgba(200,149,108,0.08);
  border: 1px solid rgba(200,149,108,0.2);
  box-shadow: var(--shadow-glow);
}

.comparison__header {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comparison__col--old .comparison__header { color: var(--slate-400); }
.comparison__col--new .comparison__header { color: var(--gold-400); }

.comparison__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  font-size: var(--text-body-sm);
  color: var(--slate-300);
  line-height: 1.6;
}

.comparison__icon--bad { color: var(--red-500); flex-shrink: 0; }
.comparison__icon--good { color: var(--green-500); flex-shrink: 0; }

.comparison__insight {
  text-align: center;
  margin-top: var(--sp-12);
  padding: var(--sp-8);
  border: 1px solid rgba(200,149,108,0.2);
  border-radius: var(--radius-lg);
  background: var(--navy-900);
}

.comparison__insight p {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  color: var(--slate-200);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.6;
}

.comparison__insight em {
  font-style: normal;
  color: var(--gold-400);
}

/* ---------- Stats / By The Numbers ---------- */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-12);
}

.stat-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-4);
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}

.stat-card__label {
  font-size: var(--text-body-sm);
  color: var(--slate-500);
}

.stat-card__sublabel {
  font-size: var(--text-small);
  color: var(--slate-400);
  margin-top: var(--sp-1);
}

/* ---------- Refinery Visual ---------- */
.refinery {
  margin-top: var(--sp-12);
}

.refinery__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.refinery__node {
  padding: var(--sp-5) var(--sp-6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 160px;
  transition: var(--transition);
}

.refinery__node:hover {
  background: rgba(200,149,108,0.1);
  border-color: rgba(200,149,108,0.25);
}

.refinery__node-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--sp-2);
}

.refinery__node-text {
  font-size: var(--text-small);
  color: var(--slate-300);
}

.refinery__arrow {
  font-size: 1.5rem;
  color: var(--gold-500);
  flex-shrink: 0;
}

.refinery__quote {
  text-align: center;
  margin-top: var(--sp-12);
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--slate-300);
  font-style: italic;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.refinery__quote em {
  font-style: normal;
  color: var(--gold-400);
}

/* ---------- Values ---------- */
.values__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.value-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-4);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.value-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  font-size: 1.5rem;
}

.value-card h3 {
  font-size: var(--text-h4);
  margin-bottom: var(--sp-3);
}

.value-card p {
  font-size: var(--text-small);
  color: var(--slate-500);
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- Final CTA ---------- */
.cta-section {
  text-align: center;
  padding: var(--section-padding) 0;
}

.cta-section h2 {
  margin-bottom: var(--sp-6);
}

.cta-section .section-subheading {
  margin: 0 auto var(--sp-10);
  text-align: center;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.cta-section__note {
  margin-top: var(--sp-8);
  font-size: var(--text-small);
  color: var(--slate-400);
}

.cta-section__disclaimer {
  margin: var(--sp-4) auto 0;
  max-width: 70ch;
  font-size: var(--text-xs);
  color: var(--slate-500);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-950);
  color: var(--slate-400);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand p {
  font-size: var(--text-body-sm);
  line-height: 1.7;
  color: var(--slate-500);
  margin-top: var(--sp-4);
  max-width: 320px;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
}

.footer__col a {
  display: block;
  font-size: var(--text-small);
  color: var(--slate-500);
  padding: var(--sp-2) 0;
  transition: var(--transition);
}

.footer__col a:hover {
  color: var(--gold-400);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-8);
  font-size: var(--text-xs);
  color: var(--slate-500);
}

.footer__legal {
  display: flex;
  gap: var(--sp-6);
}

.footer__legal a:hover {
  color: var(--gold-400);
}

/* ---------- FAQ ---------- */
.faq__list {
  margin-top: var(--sp-12);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.faq__item {
  padding: var(--sp-8);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
}

.faq__item h3 {
  font-size: var(--text-h4);
  margin-bottom: var(--sp-3);
}

.faq__item p {
  font-size: var(--text-body-sm);
  color: var(--slate-500);
  line-height: 1.7;
}

/* ---------- Notices / Legal ---------- */
.notice-card {
  margin-top: var(--sp-8);
  padding: var(--sp-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-200);
  background: var(--gold-50);
}

.notice-card__title {
  margin-bottom: var(--sp-3);
  color: var(--navy-900);
}

.notice-card__list {
  list-style: disc;
  padding-left: 1.25rem;
  display: grid;
  gap: var(--sp-2);
}

.notice-card__list li {
  color: var(--slate-700);
  font-size: var(--text-body-sm);
  line-height: 1.6;
}

.legal__meta {
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-8);
  font-size: var(--text-small);
  color: var(--slate-500);
}

.legal__content {
  max-width: 860px;
  margin: 0 auto;
}

.legal__content h2 {
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}

.legal__content p {
  color: var(--slate-700);
}

.legal__content a {
  color: var(--gold-500);
}

.legal__content a:hover {
  color: var(--gold-400);
}

.legal__content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: var(--sp-3) 0 var(--sp-5);
  display: grid;
  gap: var(--sp-2);
}

.legal__content li {
  color: var(--slate-700);
  font-size: var(--text-body-sm);
  line-height: 1.6;
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1001;
  background: transparent;
}

.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transition: width 0.1s linear;
}

/* ---------- The Spread ---------- */
.spread {
  margin-top: var(--sp-12);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.spread__chart {
  padding: var(--sp-10);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}

.spread__bar-group {
  margin-bottom: var(--sp-8);
}

.spread__bar-group:last-of-type {
  margin-bottom: var(--sp-10);
}

.spread__label {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--slate-300);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.02em;
}

.spread__bar-track {
  height: 48px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.spread__bar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: var(--sp-4);
  border-radius: var(--radius-sm);
  width: 0%;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.spread__bar--pe {
  background: linear-gradient(90deg, #EF4444, #DC2626);
}

.spread__bar--pension {
  background: linear-gradient(90deg, var(--green-500), var(--green-700));
}

.spread__bar--animated .spread__bar--pe {
  width: 100%;
}

.spread__bar--animated .spread__bar--pension {
  width: 25%;
}

.spread__bar-value {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.spread__bar-note {
  font-size: var(--text-xs);
  color: var(--slate-500);
  margin-top: var(--sp-2);
}

.spread__margin {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
  border-top: 1px dashed rgba(200,149,108,0.3);
}

.spread__margin-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.spread__margin-label {
  text-align: center;
  flex-shrink: 0;
}

.spread__margin-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1.2;
}

.spread__margin-text {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.spread__insight {
  text-align: center;
  margin-top: var(--sp-10);
  padding: var(--sp-8);
  border: 1px solid rgba(200,149,108,0.2);
  border-radius: var(--radius-lg);
  background: rgba(200,149,108,0.04);
}

.spread__insight p {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  color: var(--white);
  max-width: 55ch;
  margin: 0 auto;
  line-height: 1.6;
}

.spread__insight em {
  font-style: normal;
  color: var(--gold-400);
}

/* ---------- Audience Router ---------- */
.router__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-12);
}

.router__card {
  display: flex;
  flex-direction: column;
  padding: var(--sp-10) var(--sp-8);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.router__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.router__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.router__card:hover::before {
  transform: scaleX(1);
}

.router__card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  color: var(--gold-500);
  transition: var(--transition);
}

.router__card:hover .router__card-icon {
  background: var(--gold-500);
  color: var(--white);
}

.router__card-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--sp-3);
}

.router__card h3 {
  font-size: var(--text-h3);
  margin-bottom: var(--sp-3);
  color: var(--slate-900);
}

.router__card p {
  font-size: var(--text-body-sm);
  color: var(--slate-500);
  line-height: 1.7;
  flex: 1;
}

.router__card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--gold-500);
  transition: var(--transition);
}

.router__card:hover .router__card-cta {
  color: var(--navy-900);
}

.router__card-cta svg {
  transition: var(--transition);
}

.router__card:hover .router__card-cta svg {
  transform: translateX(4px);
}

/* ---------- Ecosystem Diagram ---------- */
.ecosystem {
  margin-top: var(--sp-12);
}

.ecosystem__diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.ecosystem__parent {
  text-align: center;
  padding: var(--sp-6) var(--sp-10);
  background: rgba(200,149,108,0.12);
  border: 2px solid rgba(200,149,108,0.3);
  border-radius: var(--radius-lg);
  position: relative;
}

.ecosystem__parent-label {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--gold-400);
}

.ecosystem__parent-sub {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-top: var(--sp-1);
}

.ecosystem__connectors {
  display: flex;
  justify-content: center;
  gap: clamp(80px, 15vw, 200px);
  height: 40px;
  position: relative;
}

.ecosystem__connector {
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold-500), rgba(200,149,108,0.3));
}

.ecosystem__subs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  width: 100%;
}

.ecosystem__sub {
  padding: var(--sp-8) var(--sp-6);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ecosystem__sub:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,149,108,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.ecosystem__sub-number {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: 700;
  color: rgba(200,149,108,0.1);
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-6);
  line-height: 1;
}

.ecosystem__sub-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(200,149,108,0.1);
  border: 1px solid rgba(200,149,108,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--gold-400);
}

.ecosystem__sub h3 {
  font-size: var(--text-h4);
  margin-bottom: var(--sp-2);
}

.ecosystem__sub-role {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--sp-4);
}

.ecosystem__sub-desc {
  font-size: var(--text-small);
  color: var(--slate-400);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.ecosystem__sub-flow {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold-400);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ecosystem__flow-arrow {
  font-size: 1rem;
}

.ecosystem__sub-flow--final {
  color: var(--green-500);
}

/* Ecosystem flow summary */
.ecosystem__flow-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
  padding: var(--sp-6);
  background: rgba(200,149,108,0.06);
  border: 1px solid rgba(200,149,108,0.15);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.ecosystem__flow-step {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-small);
  color: var(--slate-300);
}

.ecosystem__flow-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  flex-shrink: 0;
}

.ecosystem__flow-divider {
  color: var(--gold-500);
  font-size: 1.25rem;
}

/* ---------- Specialties Grid ---------- */
.specialties__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-12);
}

.specialty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-3);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
}

.specialty:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.specialty__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  transition: var(--transition);
}

.specialty:hover .specialty__icon {
  background: var(--gold-500);
  color: var(--white);
}

.specialty span {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--slate-700);
}

/* ---------- Sven Demo ---------- */
.sven-demo__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.sven-demo__text .section-subheading {
  color: var(--slate-400);
  margin-bottom: var(--sp-8);
}

.sven-demo__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.sven-demo__feature {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-body-sm);
  color: var(--slate-300);
}

.sven-demo__chat {
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.sven-demo__chat-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.sven-demo__chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: 700;
}

.sven-demo__chat-name {
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--white);
}

.sven-demo__chat-status {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--green-500);
}

.sven-demo__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  animation: pulse 2s ease-in-out infinite;
}

.sven-demo__messages {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-height: 380px;
  overflow-y: auto;
}

.sven-demo__msg {
  max-width: 85%;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-md);
  font-size: var(--text-small);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.sven-demo__msg--visible {
  opacity: 1;
  transform: translateY(0);
}

.sven-demo__msg--user {
  align-self: flex-end;
  background: var(--gold-500);
  color: var(--navy-950);
  border-bottom-right-radius: 4px;
}

.sven-demo__msg--user p {
  font-weight: 500;
}

.sven-demo__msg--sven {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  color: var(--slate-200);
  border-bottom-left-radius: 4px;
}

.sven-demo__msg--sven strong {
  color: var(--gold-400);
}

.sven-demo__input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--slate-500);
  font-size: var(--text-small);
}

.sven-demo__input svg {
  color: var(--gold-500);
}

/* ---------- CTA Multi-Audience Grid ---------- */
.cta-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-8);
}

.cta-section__path {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.cta-section__path h3 {
  font-size: var(--text-h4);
  margin-bottom: var(--sp-3);
}

.cta-section__path p {
  font-size: var(--text-small);
  color: var(--slate-400);
  margin: 0 auto var(--sp-6);
  max-width: 280px;
  line-height: 1.6;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.reveal--scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--scale.reveal--visible {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  padding: var(--sp-8) 0;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(200,149,108,0.15);
}

.trust-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-10);
  flex-wrap: wrap;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.02em;
}

.trust-strip__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold-500);
}

.trust-strip__divider {
  width: 1px;
  height: 24px;
  background: rgba(200,149,108,0.25);
}

/* ---------- Buyer Pyramid ---------- */
.pyramid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-12);
}

.pyramid__layer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--sp-8) var(--sp-6);
  position: relative;
  transition: border-color var(--transition);
}

.pyramid__layer:hover {
  border-color: rgba(200,149,108,0.3);
}

.pyramid__layer-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-500);
  background: rgba(200,149,108,0.1);
  padding: var(--sp-1) var(--sp-3);
  border-radius: 4px;
  margin-bottom: var(--sp-4);
}

.pyramid__layer h3 {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.pyramid__layer p {
  color: var(--slate-400);
  font-size: var(--text-body-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.pyramid__paths {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.pyramid__path-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-small);
  color: var(--slate-300);
}

.pyramid__path-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}

.pyramid__bridge {
  margin-top: var(--sp-8);
  text-align: center;
}

.pyramid__bridge-card {
  display: inline-block;
  background: rgba(200,149,108,0.08);
  border: 1px solid rgba(200,149,108,0.2);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-8);
}

.pyramid__bridge-card h4 {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  color: var(--gold-400);
  margin-bottom: var(--sp-2);
}

.pyramid__bridge-card p {
  color: var(--slate-400);
  font-size: var(--text-small);
}

/* ---------- Portfolio Paths Snapshot ---------- */
.paths-snapshot__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.path-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.path-card:hover {
  border-color: var(--gold-300);
  box-shadow: var(--shadow-md);
}

.path-card__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--sp-1) var(--sp-3);
  border-radius: 4px;
  margin-bottom: var(--sp-3);
}

.path-card__tag--l1 {
  color: var(--green-700);
  background: rgba(21,128,61,0.1);
}

.path-card__tag--l2 {
  color: var(--gold-500);
  background: rgba(200,149,108,0.1);
}

.path-card__tag--l3 {
  color: var(--navy-700);
  background: rgba(27,58,92,0.1);
}

.path-card__tag--bridge {
  color: var(--slate-500);
  background: rgba(107,114,128,0.1);
}

.path-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  color: var(--navy-900);
  margin-bottom: var(--sp-2);
}

.path-card p {
  font-size: var(--text-small);
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
}

.path-card__dd {
  font-size: var(--text-xs);
  color: var(--slate-500);
  font-weight: 600;
}

/* Dark variant for use on dark sections */
.path-card--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.path-card--dark:hover {
  border-color: rgba(200,149,108,0.3);
}

.path-card--dark h3 {
  color: var(--white);
}

.path-card--dark p {
  color: var(--slate-400);
}

.path-card--dark .path-card__dd {
  color: var(--slate-400);
}

/* ---------- DD Snapshot ---------- */
.dd-snapshot__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-12);
}

.dd-level {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  transition: border-color var(--transition);
}

.dd-level:hover {
  border-color: rgba(200,149,108,0.3);
}

.dd-level__number {
  font-family: var(--font-heading);
  font-size: var(--text-display);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.dd-level h3 {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.dd-level p {
  font-size: var(--text-small);
  color: var(--slate-400);
  line-height: 1.7;
}

.dd-level__count {
  display: inline-block;
  font-size: var(--text-small);
  font-weight: 700;
  color: var(--gold-500);
  margin-top: var(--sp-4);
}

/* Light variant for DD levels */
.dd-level--light {
  background: var(--white);
  border-color: var(--slate-200);
}

.dd-level--light:hover {
  border-color: var(--gold-300);
}

.dd-level--light h3 {
  color: var(--navy-900);
}

.dd-level--light p {
  color: var(--slate-500);
}

/* ---------- No-Waiver Callout ---------- */
.no-waiver {
  background: rgba(200,149,108,0.08);
  border: 1px solid rgba(200,149,108,0.2);
  border-radius: var(--radius-md);
  padding: var(--sp-6) var(--sp-8);
  text-align: center;
  margin-top: var(--sp-10);
}

.no-waiver p {
  font-size: var(--text-body-sm);
  color: var(--slate-300);
  line-height: 1.7;
}

.no-waiver em {
  color: var(--gold-400);
  font-style: italic;
}

/* Light variant */
.no-waiver--light {
  background: var(--gold-50);
  border-color: var(--gold-200);
}

.no-waiver--light p {
  color: var(--navy-900);
}

.no-waiver--light em {
  color: var(--gold-500);
}

/* ---------- Factory Stations (How It Works page) ---------- */
.factory__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
  counter-reset: station;
}

.factory__station {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.factory__station:hover {
  border-color: var(--gold-300);
  box-shadow: var(--shadow-md);
}

.factory__station-number {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 700;
  color: rgba(200,149,108,0.15);
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-6);
  line-height: 1;
}

.factory__station h3 {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  color: var(--navy-900);
  margin-bottom: var(--sp-3);
}

.factory__station p {
  font-size: var(--text-small);
  color: var(--slate-500);
  line-height: 1.7;
}

/* ---------- Gate Logic Card ---------- */
.gate-logic {
  background: var(--navy-900);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  margin-top: var(--sp-12);
}

.gate-logic h3 {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--white);
  margin-bottom: var(--sp-6);
}

.gate-logic__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.gate-logic__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-small);
  color: var(--slate-300);
  line-height: 1.6;
}

.gate-logic__item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- DD Table (Framework page) ---------- */
.dd-mapping {
  margin-top: var(--sp-12);
}

.dd-mapping__table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-small);
}

.dd-mapping__table th {
  text-align: left;
  font-weight: 700;
  color: var(--navy-900);
  padding: var(--sp-4);
  border-bottom: 2px solid var(--navy-900);
  font-family: var(--font-body);
}

.dd-mapping__table td {
  padding: var(--sp-4);
  border-bottom: 1px solid var(--slate-200);
  color: var(--slate-700);
  vertical-align: top;
}

.dd-mapping__table tr:last-child td {
  border-bottom: none;
}

.dd-mapping__table tr:hover td {
  background: var(--gold-50);
}

/* ---------- Section Link ---------- */
.section-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--gold-500);
  margin-top: var(--sp-8);
  transition: color var(--transition);
}

.section-link:hover {
  color: var(--gold-400);
}

.section-link svg {
  transition: transform var(--transition);
}

.section-link:hover svg {
  transform: translateX(4px);
}

/* Dark section link */
.section-link--light {
  color: var(--gold-500);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .doors__grid,
  .problem__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .router__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .pyramid__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .dd-snapshot__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .factory__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .gate-logic__items {
    grid-template-columns: 1fr;
  }

  .ecosystem__subs {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .ecosystem__connectors {
    display: none;
  }

  .specialties__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .process__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-10);
  }

  .process__timeline::before {
    display: none;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sven-demo__layout {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .cta-section__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}

@media (max-width: 768px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px var(--sp-8) var(--sp-8);
    gap: var(--sp-4);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }

  .nav__links--open {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

  /* Mobile dropdown styles */
  .nav__dropdown-trigger {
    font-size: var(--text-body-sm);
    color: rgba(255,255,255,0.75);
    padding: 0;
    width: 100%;
    text-align: left;
  }

  .nav__dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: none;
    border-radius: 0;
    padding: 0 0 var(--sp-2) var(--sp-4);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    border-left: 2px solid rgba(200,149,108,0.3);
    margin-top: var(--sp-2);
  }

  .nav__dropdown-menu::before {
    display: none;
  }

  .nav__dropdown.is-open .nav__dropdown-menu {
    display: block;
    transform: none;
  }

  .nav__dropdown-link {
    padding: var(--sp-2) var(--sp-4);
  }

  .nav__dropdown-link-desc {
    display: none;
  }

  .hero__heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__stats-inner {
    grid-template-columns: 1fr;
  }

  .hero__stat + .hero__stat::before {
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
  }

  .trust-strip__inner {
    flex-direction: column;
    gap: var(--sp-4);
  }

  .trust-strip__divider {
    display: none;
  }

  .paths-snapshot__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .dd-mapping__table {
    font-size: var(--text-xs);
  }

  .dd-mapping__table th,
  .dd-mapping__table td {
    padding: var(--sp-3) var(--sp-2);
  }

  .specialties__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process__timeline {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .ecosystem__flow-summary {
    flex-direction: column;
    gap: var(--sp-3);
  }

  .ecosystem__flow-divider {
    transform: rotate(90deg);
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--sp-4);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .specialties__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spread__chart {
    padding: var(--sp-6);
  }

  .door {
    padding: var(--sp-6) var(--sp-5);
  }
}
