/* ================================
   SPACE TO SCALE AI - LANDING PAGE
   Gradient Flow Architecture
   ================================ */

/* ================================
   RESET & BASE STYLES
   ================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors - ORIGINAL VIBRANT PALETTE */
  --teal-dark: #0D9488;
  --teal-mid: #14B8A6;
  --teal-light: #2DD4BF;

  --green-dark: #10B981;
  --green-mid: #34D399;
  --green-light: #6EE7B7;

  --gold-dark: #D97706;
  --gold-mid: #F59E0B;
  --gold-light: #FBBF24;

  --amber-muted: #C2A15A;
  --amber-light: #E5C77E;

  /* Neutrals */
  --charcoal: #0F1514;
  --white: #F6F4EF;
  --slate: #94A3B8;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 160px;
  --container-max: 1200px;

  /* Animation */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--charcoal);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================
   NAVIGATION
   ================================ */

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 21, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s var(--ease-smooth);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s var(--ease-smooth);
}

.nav-link:hover {
  opacity: 1;
}

.nav-cta {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 6px;
  transition: all 0.2s var(--ease-smooth);
}

.nav-cta:hover {
  background: rgba(20, 184, 166, 0.25);
  border-color: rgba(20, 184, 166, 0.5);
}

/* ================================
   GRADIENT DIVIDERS
   ================================ */

.gradient-divider {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.teal-to-green {
  background: linear-gradient(180deg,
    rgba(13, 148, 136, 0.8) 0%,
    rgba(20, 184, 166, 0.6) 20%,
    rgba(16, 185, 129, 0.6) 80%,
    rgba(52, 211, 153, 0.8) 100%);
}

.green-to-gold {
  background: linear-gradient(180deg,
    rgba(16, 185, 129, 0.8) 0%,
    rgba(52, 211, 153, 0.6) 20%,
    rgba(217, 119, 6, 0.6) 80%,
    rgba(251, 191, 36, 0.8) 100%);
}

/* Animated sweep effect on dividers */
.gradient-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 100%);
  animation: sweep 4s ease-in-out infinite;
}

@keyframes sweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ================================
   LAYOUT SYSTEMS
   ================================ */

/* Wide container for split layouts */
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Split Layout - Asymmetric 40/60 */
.layout-split .split-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 80px;
  align-items: start;
}

.split-left {
  position: sticky;
  top: 120px;
}

.split-right {
  padding-top: 40px;
}

/* Offset Layout - Content pushed right */
.layout-offset .container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: 120px;
}

/* Centered Layout - Traditional centered */
.layout-centered .container {
  max-width: 920px;
  margin: 0 auto;
}

/* ================================
   GLOBAL GRADIENT SIMPLIFICATION
   ================================ */

/* Override ALL section gradients to be subtle */
.section-gradient [class*="gradient-band"] {
  opacity: 0.10 !important;
  transform: none !important;
}

/* ================================
   SECTION ACCENT SHAPES
   ================================ */

.section-shape-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.section-shape {
  position: absolute;
  border-radius: 35%;
  backdrop-filter: blur(50px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  will-change: transform;
}

/* Approach section shape */
.approach-shape {
  width: 350px;
  height: 350px;
  top: 10%;
  right: -100px;
  background: linear-gradient(135deg,
    rgba(16, 185, 129, 0.1) 0%,
    rgba(52, 211, 153, 0.06) 50%,
    rgba(251, 191, 36, 0.04) 100%);
  box-shadow:
    0 30px 80px rgba(16, 185, 129, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: float-accent-1 16s ease-in-out infinite;
}

/* Credibility section shapes */
.credibility-shape-1 {
  width: 280px;
  height: 280px;
  top: 15%;
  left: -80px;
  background: linear-gradient(135deg,
    rgba(251, 191, 36, 0.12) 0%,
    rgba(245, 158, 11, 0.08) 50%,
    rgba(52, 211, 153, 0.04) 100%);
  box-shadow:
    0 25px 70px rgba(251, 191, 36, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: float-accent-2 14s ease-in-out infinite;
}

.credibility-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: 5%;
  background: linear-gradient(135deg,
    rgba(245, 158, 11, 0.1) 0%,
    rgba(194, 161, 90, 0.06) 100%);
  box-shadow:
    0 20px 60px rgba(245, 158, 11, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: float-accent-3 18s ease-in-out infinite;
}

/* How section shape */
.how-shape {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg,
    rgba(251, 191, 36, 0.08) 0%,
    rgba(229, 199, 126, 0.05) 50%,
    rgba(245, 158, 11, 0.03) 100%);
  box-shadow:
    0 35px 90px rgba(251, 191, 36, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: float-accent-center 20s ease-in-out infinite;
}

/* Accent shape animations */
@keyframes float-accent-1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate(-40px, 50px) rotate(8deg) scale(1.08);
  }
  66% {
    transform: translate(30px, -40px) rotate(-5deg) scale(0.95);
  }
}

@keyframes float-accent-2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  40% {
    transform: translate(50px, -60px) rotate(-10deg) scale(1.1);
  }
  70% {
    transform: translate(-35px, 45px) rotate(7deg) scale(0.92);
  }
}

@keyframes float-accent-3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  35% {
    transform: translate(-45px, 55px) rotate(12deg) scale(1.06);
  }
  68% {
    transform: translate(40px, -50px) rotate(-8deg) scale(0.96);
  }
}

@keyframes float-accent-center {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(-50%, -50%) translate(30px, -30px) rotate(5deg) scale(1.05);
  }
  50% {
    transform: translate(-50%, -50%) translate(-25px, 35px) rotate(-3deg) scale(0.98);
  }
  75% {
    transform: translate(-50%, -50%) translate(35px, 25px) rotate(7deg) scale(1.04);
  }
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 48px;
}

/* Gradient Background - 4 planes with shimmer */
.gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gradient-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%);
  animation: shimmer 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes shimmer {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.gradient-band {
  position: absolute;
  width: 180%;
  height: 140%;
  will-change: transform;
}

/* Primary plane - Subtle teal wash */
.gradient-band-1 {
  background: linear-gradient(135deg,
    var(--teal-dark) 0%,
    var(--teal-mid) 50%,
    var(--green-mid) 100%);
  opacity: 0.15;
  top: -20%;
  left: -40%;
  transform: rotate(125deg);
}

/* Secondary plane - Accent glow */
.gradient-band-2 {
  background: radial-gradient(circle at 30% 50%,
    var(--teal-mid) 0%,
    var(--green-mid) 40%,
    transparent 70%);
  opacity: 0.12;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
}

/* Hide bands 3 & 4 - too much visual noise */
.gradient-band-3,
.gradient-band-4 {
  display: none;
}

/* 3D Floating Shapes - RESTORED */
.shapes-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.shape-3d {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 30%;
  background: linear-gradient(135deg,
    rgba(20, 184, 166, 0.15) 0%,
    rgba(52, 211, 153, 0.1) 50%,
    rgba(251, 191, 36, 0.08) 100%);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 60px rgba(20, 184, 166, 0.2),
    0 8px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.shape-3d-1 {
  top: 15%;
  right: 10%;
  animation: float-1 12s ease-in-out infinite;
  transform: rotate(15deg);
}

.shape-3d-2 {
  top: 60%;
  left: 8%;
  width: 180px;
  height: 180px;
  animation: float-2 10s ease-in-out infinite;
  transform: rotate(-25deg);
  background: linear-gradient(135deg,
    rgba(52, 211, 153, 0.15) 0%,
    rgba(251, 191, 36, 0.12) 50%,
    rgba(20, 184, 166, 0.08) 100%);
}

.shape-3d-3 {
  bottom: 20%;
  right: 15%;
  width: 160px;
  height: 160px;
  animation: float-3 14s ease-in-out infinite;
  transform: rotate(35deg);
  background: linear-gradient(135deg,
    rgba(251, 191, 36, 0.18) 0%,
    rgba(245, 158, 11, 0.12) 50%,
    rgba(52, 211, 153, 0.08) 100%);
}

@keyframes float-1 {
  0%, 100% {
    transform: translate(0, 0) rotate(15deg) scale(1);
  }
  25% {
    transform: translate(60px, -80px) rotate(25deg) scale(1.12);
  }
  50% {
    transform: translate(-50px, -100px) rotate(8deg) scale(0.92);
  }
  75% {
    transform: translate(70px, -60px) rotate(30deg) scale(1.15);
  }
}

@keyframes float-2 {
  0%, 100% {
    transform: translate(0, 0) rotate(-25deg) scale(1);
  }
  30% {
    transform: translate(-70px, 90px) rotate(-35deg) scale(1.14);
  }
  60% {
    transform: translate(55px, 120px) rotate(-18deg) scale(0.88);
  }
  80% {
    transform: translate(-60px, 80px) rotate(-40deg) scale(1.1);
  }
}

@keyframes float-3 {
  0%, 100% {
    transform: translate(0, 0) rotate(35deg) scale(1);
  }
  35% {
    transform: translate(80px, 100px) rotate(48deg) scale(1.16);
  }
  65% {
    transform: translate(-65px, 110px) rotate(22deg) scale(0.90);
  }
  85% {
    transform: translate(75px, 90px) rotate(50deg) scale(1.13);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  text-align: center;
  animation: fadeInUp 0.8s var(--ease-smooth) forwards;
  opacity: 0;
}

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

.hero-headline {
  font-size: 80px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 40px;
  letter-spacing: -0.03em;
  color: var(--white);
}

.hero-subhead {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 64px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Tagline - RESTORED */
.hero-tagline {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--white);
  opacity: 0.75;
  margin-bottom: 48px;
  text-transform: none;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s var(--ease-smooth);
  cursor: pointer;
  border: 1px solid transparent;
}

.cta-primary {
  background: var(--teal-mid);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 40px rgba(20, 184, 166, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.cta-primary:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
  box-shadow:
    0 0 60px rgba(45, 212, 191, 0.6),
    0 6px 16px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-arrow {
  transition: transform 0.25s var(--ease-smooth);
}

.cta-primary:hover .cta-arrow {
  transform: translateX(3px);
}

/* Scroll Indicator - RESTORED */
.scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.6;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  opacity: 0.6;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ================================
   PROBLEM AGITATION SECTION
   ================================ */

.problem-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--section-padding) 48px;
}

/* Teal Gradient Zone - 2 planes */
.section-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Subtle teal wash */
.teal-zone .gradient-band-teal-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 40%,
    var(--teal-mid) 0%,
    var(--teal-dark) 50%,
    transparent 80%);
  opacity: 0.15;
  top: 0;
  left: 0;
  transform: none;
}

/* Subtle accent glow */
.teal-zone .gradient-band-teal-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 60%,
    var(--green-mid) 0%,
    transparent 60%);
  opacity: 0.08;
  top: 0;
  left: 0;
  transform: none;
}

/* 3D Background Shape - RESTORED */
.problem-shape-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-shape {
  width: 600px;
  height: 600px;
  border-radius: 40%;
  background: linear-gradient(135deg,
    rgba(20, 184, 166, 0.12) 0%,
    rgba(16, 185, 129, 0.08) 50%,
    rgba(251, 191, 36, 0.05) 100%);
  backdrop-filter: blur(60px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 80px rgba(20, 184, 166, 0.15),
    0 12px 24px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: float-problem 25s ease-in-out infinite;
}

@keyframes float-problem {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(40px, -50px) rotate(5deg) scale(1.05);
  }
  50% {
    transform: translate(-30px, -70px) rotate(-3deg) scale(0.98);
  }
  75% {
    transform: translate(50px, -40px) rotate(7deg) scale(1.06);
  }
}

/* Content */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.problem-content {
  position: relative;
  z-index: 10;
  max-width: 860px;
  margin: 0 auto;
}

.problem-intro {
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth);
}

.problem-intro.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.problem-headline {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 32px;
  background: linear-gradient(135deg, var(--white) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

/* Supporting line under headline */
.problem-supporting {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.8;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.problem-stat {
  font-size: 16px;
  font-weight: 500;
  color: var(--amber-light);
  text-align: center;
  margin-top: 24px;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════
   PROBLEM SECTION - 10/10 REDESIGN
   ═══════════════════════════════════════════════════════ */

/* The Question */
.problem-question {
  margin-bottom: 60px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.2s;
}

.problem-question.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.question-text {
  font-size: 36px;
  font-weight: 600;
  color: var(--teal-light);
  margin: 0;
}

/* Root Causes - 3-column icon grid */
.root-causes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 100px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.3s;
}

.root-causes.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.cause-item {
  text-align: center;
  transition: transform 0.3s var(--ease-smooth);
}

.cause-item:hover {
  transform: translateY(-4px);
}

/* Geometric Icons */
.cause-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Icon 1: Fragmented data - scattered circles */
.cause-icon-1 .icon-shape {
  width: 100%;
  height: 100%;
  position: relative;
}

.cause-icon-1 .icon-shape::before,
.cause-icon-1 .icon-shape::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--teal-light);
  opacity: 0.6;
}

.cause-icon-1 .icon-shape::before {
  width: 24px;
  height: 24px;
  top: 10px;
  left: 15px;
}

.cause-icon-1 .icon-shape::after {
  width: 18px;
  height: 18px;
  bottom: 15px;
  right: 20px;
}

.cause-icon-1::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--teal-light);
  opacity: 0.6;
  top: 50%;
  right: 10px;
}

/* Icon 2: Disconnected workflow - broken path */
.cause-icon-2 .icon-shape {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg,
    var(--teal-light) 0%,
    var(--teal-light) 40%,
    transparent 40%,
    transparent 60%,
    var(--teal-light) 60%,
    var(--teal-light) 100%);
  position: relative;
}

.cause-icon-2 .icon-shape::before,
.cause-icon-2 .icon-shape::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
}

.cause-icon-2 .icon-shape::before {
  left: 0;
  top: -3px;
}

.cause-icon-2 .icon-shape::after {
  right: 0;
  top: -3px;
}

/* Icon 3: Misaligned standards - offset lines */
.cause-icon-3 .icon-shape {
  width: 50px;
  height: 50px;
  position: relative;
}

.cause-icon-3 .icon-shape::before,
.cause-icon-3 .icon-shape::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--teal-light);
  opacity: 0.7;
}

.cause-icon-3 .icon-shape::before {
  top: 10px;
  left: -5px;
}

.cause-icon-3 .icon-shape::after {
  bottom: 10px;
  right: -5px;
}

.cause-icon-3::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background: var(--teal-light);
  opacity: 0.7;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Icon 4: Ungoverned chaos - expanding circles */
.cause-icon-4 .icon-shape {
  width: 100%;
  height: 100%;
  position: relative;
}

.cause-icon-4 .icon-shape::before,
.cause-icon-4 .icon-shape::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid var(--teal-light);
}

.cause-icon-4 .icon-shape::before {
  width: 30px;
  height: 30px;
  opacity: 0.8;
}

.cause-icon-4 .icon-shape::after {
  width: 50px;
  height: 50px;
  opacity: 0.4;
}

.cause-icon-4::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--teal-light);
  opacity: 0.2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cause-label {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.cause-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  opacity: 0.7;
  margin: 0;
}

/* Consequences - Two-column split */
.consequences {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto 120px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.4s;
}

.consequences.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.consequence-divider {
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(20, 184, 166, 0.3) 20%,
    rgba(20, 184, 166, 0.3) 80%,
    transparent 100%);
}

.consequence-column {
  padding-top: 8px;
}

.consequence-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--teal-light);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.consequence-title-leaders {
  color: var(--gold-light);
}

.consequence-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.88;
  margin-bottom: 16px;
}

.consequence-text:last-child {
  margin-bottom: 0;
}

.consequence-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.consequence-list li {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.88;
  padding-left: 24px;
  margin-bottom: 12px;
  position: relative;
}

.consequence-list li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0.8;
}

/* Sellers list uses teal bullets */
.consequence-list-sellers li::before {
  background: var(--teal-light);
}

.consequence-list li:last-child {
  margin-bottom: 0;
}

/* The Reframe - VISUAL ANCHOR */
.problem-reframe {
  margin-bottom: 100px;
  text-align: center;
  padding: 100px 0;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.5s;
  background: radial-gradient(ellipse at center,
    rgba(20, 184, 166, 0.08) 0%,
    transparent 70%);
}

.problem-reframe.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Top accent line */
.problem-reframe::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--teal-light) 50%,
    transparent 100%);
  opacity: 0.7;
}

/* Bottom accent line */
.problem-reframe::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--teal-light) 50%,
    transparent 100%);
  opacity: 0.7;
}

.reframe-text {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--teal-light);
  margin: 0 auto;
  max-width: 800px;
  letter-spacing: -0.015em;
}

/* Closing Stakes */
.problem-stakes {
  text-align: center;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.6s;
}

.problem-stakes.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.stakes-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.75;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* ================================
   URGENCY TRANSITION
   ================================ */

.urgency-transition {
  position: relative;
  padding: 120px 48px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(20, 184, 166, 0.06) 0%,
    transparent 70%);
}

.transition-content {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth);
}

.transition-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.transition-setup {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 16px;
}

.transition-emphasis {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--teal-light);
  margin: 0;
  letter-spacing: -0.01em;
}

/* ================================
   YOUR APPROACH SECTION
   ================================ */

.approach-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--section-padding) 48px;
}

/* Subtle green wash */
.transition-zone .gradient-band-approach-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 30%,
    var(--green-mid) 0%,
    var(--teal-mid) 50%,
    transparent 80%);
  opacity: 0.12;
  top: 0;
  left: 0;
  transform: none;
}

.transition-zone .gradient-band-approach-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 70%,
    var(--green-light) 0%,
    transparent 50%);
  opacity: 0.08;
  top: 0;
  left: 0;
  transform: none;
}

/* Content */
.approach-content {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
}

/* Intro Block (Full Width) */
.approach-intro {
  max-width: 800px;
  margin-bottom: 80px;
}

/* Centered Intro Variant */
.approach-intro-centered {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-headline-centered {
  text-align: center;
}

.approach-statement-centered {
  max-width: 760px;
  margin: 0 auto;
}

.approach-statement-centered p {
  text-align: center;
}

/* Visual Divider */
.approach-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.7s var(--ease-smooth) 0.2s;
}

.approach-divider.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.divider-accent {
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-mid), var(--green-mid));
  border-radius: 2px;
}

.section-headline {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 40px;
  letter-spacing: -0.025em;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth);
}

.section-headline.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.approach-statement {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.15s;
}

.approach-statement.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.approach-statement p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.9;
}

.approach-statement em {
  font-style: normal;
  font-weight: 500;
  color: var(--white);
}

/* What Deeper Looks Like */
.approach-deeper {
  max-width: 900px;
  margin: 0 auto;
}

.deeper-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--teal-light);
  margin-bottom: 48px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth);
}

.deeper-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.deeper-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.deeper-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth);
}

.deeper-step.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.deeper-step:nth-child(1) { transition-delay: 0.1s; }
.deeper-step:nth-child(2) { transition-delay: 0.2s; }
.deeper-step:nth-child(3) { transition-delay: 0.3s; }
.deeper-step:nth-child(4) { transition-delay: 0.4s; }

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-light);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.step-description {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.85;
}

.step-description strong {
  color: var(--teal-light);
  font-weight: 600;
}

/* Our Point of View */
.approach-pov {
  max-width: 900px;
  margin: 0 auto;
}

.pov-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--teal-light);
  margin-bottom: 32px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth);
}

.pov-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.pov-intro {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.9;
  text-align: center;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth);
}

.pov-intro.animate-in {
  opacity: 0.9;
  transform: translateY(0);
}

.pov-framework {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin: 56px 0 64px;
  position: relative;
}

.pov-item {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease-smooth);
  padding-top: 32px;
}

.pov-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.pov-item:nth-child(1) {
  transition-delay: 0.1s;
}

.pov-item:nth-child(2) {
  transition-delay: 0.2s;
  padding-top: 48px; /* Staggered height */
}

.pov-item:nth-child(3) {
  transition-delay: 0.3s;
  padding-top: 64px; /* Staggered height */
}

/* Accent indicator above label */
.pov-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--teal-light);
  opacity: 0.5;
  transition: all 0.4s var(--ease-smooth);
}

.pov-item:nth-child(2)::before {
  background: var(--green-mid);
}

.pov-item:nth-child(3)::before {
  background: var(--gold-mid);
}

.pov-item:hover::before {
  width: 60px;
  opacity: 0.8;
}

.pov-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-light);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s var(--ease-smooth);
}

.pov-item:nth-child(2) .pov-label {
  color: var(--green-mid);
}

.pov-item:nth-child(3) .pov-label {
  color: var(--gold-mid);
}

.pov-item:hover .pov-label {
  color: var(--white);
}

.pov-description {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--white);
  opacity: 0.85;
}

.approach-close {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.9;
  text-align: center;
  margin-top: 56px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.4s;
}

.approach-close.animate-in {
  opacity: 0.9;
  transform: translateY(0);
}

.principle {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth);
}

.principle.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.principle:nth-child(1) {
  transition-delay: 0.2s;
}

.principle:nth-child(2) {
  transition-delay: 0.3s;
}

.principle:nth-child(3) {
  transition-delay: 0.4s;
}

.principle:nth-child(4) {
  transition-delay: 0.5s;
}

/* Principle Icon - Geometric accent */
.principle-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  background: linear-gradient(135deg,
    rgba(20, 184, 166, 0.15) 0%,
    rgba(13, 148, 136, 0.08) 100%);
  border: 1.5px solid rgba(20, 184, 166, 0.3);
  border-radius: 12px;
  transform: rotate(45deg);
  position: relative;
}

.principle-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: var(--teal-light);
  opacity: 0.6;
}

/* Icon 2 - Teal to Green transition */
.principle-icon-2 {
  background: linear-gradient(135deg,
    rgba(16, 185, 129, 0.15) 0%,
    rgba(52, 211, 153, 0.08) 100%);
  border-color: rgba(16, 185, 129, 0.3);
}

.principle-icon-2::after {
  background: var(--green-light);
}

/* Icon 3 - Green to Gold transition */
.principle-icon-3 {
  background: linear-gradient(135deg,
    rgba(52, 211, 153, 0.15) 0%,
    rgba(251, 191, 36, 0.08) 100%);
  border-color: rgba(52, 211, 153, 0.3);
}

.principle-icon-3::after {
  background: var(--green-light);
}

/* Icon 4 - Gold */
.principle-icon-4 {
  background: linear-gradient(135deg,
    rgba(251, 191, 36, 0.15) 0%,
    rgba(245, 158, 11, 0.08) 100%);
  border-color: rgba(251, 191, 36, 0.3);
}

.principle-icon-4::after {
  background: var(--gold-light);
}

.principle-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 12px;
}

.principle-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--white);
  opacity: 0.85;
}

/* ================================
   CREDIBILITY SECTION
   ================================ */

.credibility-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--section-padding) 48px;
}

/* Subtle gold accent */
.credibility-zone .gradient-band-credibility-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 60% 40%,
    var(--gold-mid) 0%,
    var(--green-mid) 40%,
    transparent 70%);
  opacity: 0.12;
  top: 0;
  left: 0;
  transform: none;
}

.credibility-zone .gradient-band-credibility-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%,
    var(--gold-light) 0%,
    transparent 50%);
  opacity: 0.08;
  top: 0;
  left: 0;
  transform: none;
}

/* Content */
.credibility-content {
  position: relative;
  z-index: 10;
  max-width: 1080px;
  margin: 0 auto;
}

/* Credibility Layout */
.credibility-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

/* Photo Placeholder */
.credibility-photo-wrapper {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.1s;
}

.credibility-photo-wrapper.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.photo-placeholder {
  width: 280px;
  height: 280px;
  border-radius: 12px;
  background: linear-gradient(135deg,
    rgba(20, 184, 166, 0.08) 0%,
    rgba(16, 185, 129, 0.08) 50%,
    rgba(245, 158, 11, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 40px rgba(20, 184, 166, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Optional: Add a subtle icon or text inside placeholder */
.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 40%,
    rgba(20, 184, 166, 0.15) 0%,
    transparent 60%);
}

/* If user adds an image, style it */
.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Founder Photo */
.founder-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 0 40px rgba(20, 184, 166, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  background: transparent;
}

.founder-photo:hover {
  box-shadow:
    0 0 50px rgba(20, 184, 166, 0.3),
    0 12px 32px rgba(0, 0, 0, 0.4);
  transform: scale(1.02);
}

/* Story Content */
.credibility-story {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.2s;
}

.credibility-story.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.story-paragraph {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 24px;
}

.story-paragraph:last-child {
  margin-bottom: 0;
}

.story-paragraph strong {
  color: var(--teal-light);
  font-weight: 600;
  font-size: 20px;
}

.story-paragraph em {
  color: var(--green-light);
  font-style: italic;
}

/* Founder Attribution */
.founder-attribution {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.founder-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-light);
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.founder-linkedin:hover {
  color: var(--teal);
}

.founder-linkedin svg {
  transition: transform 0.3s ease;
}

.founder-linkedin:hover svg {
  transform: scale(1.1);
}

.results-divider {
  max-width: 860px;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.35s;
}

.results-divider.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.divider-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber-light);
  background: var(--charcoal);
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.results-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(229, 199, 126, 0.3) 50%,
    transparent 100%);
  z-index: 1;
}

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 96px;
}

.result-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth);
}

.result-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.result-item:nth-child(1) {
  transition-delay: 0.15s;
}

.result-item:nth-child(2) {
  transition-delay: 0.25s;
}

.result-item:nth-child(3) {
  transition-delay: 0.35s;
}

.result-metric {
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.result-description {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.85;
}

.credibility-statement {
  max-width: 860px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.45s;
}

.credibility-statement.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.credibility-statement p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.9;
}

/* ================================
   PROOF FIRST SECTION
   ================================ */

.proof-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 48px;
}

/* Proof Zone Gradient - Green to Gold transition */
.proof-zone .gradient-band-proof-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 40% 50%,
    var(--green-mid) 0%,
    var(--gold-dark) 50%,
    transparent 80%);
  opacity: 0.12;
  top: 0;
  left: 0;
}

.proof-zone .gradient-band-proof-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 60% 50%,
    var(--gold-mid) 0%,
    transparent 60%);
  opacity: 0.08;
  top: 0;
  left: 0;
}

/* Content */
.proof-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.proof-statement {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.15s;
}

.proof-statement.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.proof-statement p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.88;
  margin-bottom: 24px;
}

.proof-statement p:last-child {
  margin-bottom: 0;
}

.proof-emphasis {
  font-size: 24px !important;
  font-weight: 600 !important;
  color: var(--gold-light) !important;
  opacity: 1 !important;
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.proof-close {
  font-size: 22px !important;
  font-weight: 500 !important;
  color: var(--teal-light) !important;
  opacity: 1 !important;
  margin-top: 32px !important;
}

/* ================================
   HOW IT WORKS SECTION
   ================================ */

.how-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--section-padding) 48px;
}

/* Gold Dominant Zone - 2 planes */
.gold-zone .gradient-band-gold-1 {
  position: absolute;
  width: 180%;
  height: 140%;
  background: linear-gradient(120deg,
    var(--gold-dark) 0%,
    var(--gold-mid) 50%,
    var(--gold-light) 100%);
  opacity: 0.85;
  top: -20%;
  left: -40%;
  transform: rotate(125deg);
}

.gold-zone .gradient-band-gold-2 {
  position: absolute;
  width: 180%;
  height: 140%;
  background: linear-gradient(120deg,
    var(--amber-muted) 0%,
    var(--amber-light) 40%,
    var(--gold-light) 80%,
    var(--gold-mid) 100%);
  opacity: 0.7;
  top: -15%;
  left: -35%;
  transform: rotate(125deg);
}

/* Content */
.how-content {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
}

/* Horizontal Timeline */
.pilot-timeline-horizontal {
  position: relative;
  margin: 80px 0;
  padding: 60px 0;
}

/* Timeline Track */
.timeline-track {
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  z-index: 1;
}

.timeline-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    rgba(245, 158, 11, 0.2) 0%,
    rgba(245, 158, 11, 0.4) 50%,
    rgba(245, 158, 11, 0.2) 100%);
}

.timeline-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(245, 158, 11, 0.8) 50%,
    transparent 100%);
  animation: pulse-flow 3s ease-in-out infinite;
}

@keyframes pulse-flow {
  0% {
    left: 0%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Timeline Nodes */
.timeline-nodes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth);
}

.timeline-node.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.timeline-node:nth-child(1) { transition-delay: 0.1s; }
.timeline-node:nth-child(2) { transition-delay: 0.2s; }
.timeline-node:nth-child(3) { transition-delay: 0.3s; }
.timeline-node:nth-child(4) { transition-delay: 0.4s; }

/* Node Circle */
.node-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  border: 2px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  transition: all 0.4s var(--ease-smooth);
}

.node-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.timeline-node:hover .node-circle {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.5);
  transform: scale(1.08);
}

.timeline-node:hover .node-circle::before {
  opacity: 1;
}

.node-number {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-light);
}

/* Node Content */
.node-content {
  text-align: center;
}

.node-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.node-description {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  opacity: 0.7;
}


/* Timeline Note */
.pilot-timeline-note {
  max-width: 700px;
  margin: 0 auto;
  padding: 28px 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.6s;
}

.pilot-timeline-note.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.pilot-timeline-note p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.8;
  margin: 0;
}

/* Old Pilot Steps (remove) */
.pilot-steps {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-bottom: 80px;
}

.pilot-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth);
}

.pilot-step.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.pilot-step:nth-child(1) { transition-delay: 0.1s; }
.pilot-step:nth-child(2) { transition-delay: 0.2s; }
.pilot-step:nth-child(3) { transition-delay: 0.3s; }
.pilot-step:nth-child(4) { transition-delay: 0.4s; }

.pilot-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-light);
}

.pilot-step-info {
  flex: 1;
}

.pilot-step-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 16px;
}

.pilot-step-description {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.85;
  margin-bottom: 12px;
}

.pilot-step-description:last-child {
  margin-bottom: 0;
}

/* Timeline Note */
.pilot-timeline {
  padding: 32px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.5s;
}

.pilot-timeline.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.timeline-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.timeline-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.8;
}

.phase-output strong {
  font-weight: 600;
  opacity: 1;
}

/* ================================
   AI AGENTS SECTION - HORIZONTAL SPOTLIGHT
   ================================ */

.agents-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 48px;
}

/* Agents Zone - Gold to Balanced Transition */
.agents-zone .gradient-band-agents-1 {
  position: absolute;
  width: 180%;
  height: 140%;
  background: linear-gradient(135deg,
    var(--gold-mid) 0%,
    var(--gold-light) 30%,
    var(--amber-light) 60%,
    var(--green-mid) 100%);
  opacity: 0.75;
  top: -20%;
  left: -40%;
  transform: rotate(125deg);
}

.agents-zone .gradient-band-agents-2 {
  position: absolute;
  width: 160%;
  height: 120%;
  background: radial-gradient(ellipse at 60% 50%,
    var(--gold-dark) 0%,
    var(--amber-muted) 40%,
    transparent 70%);
  opacity: 0.5;
  top: -10%;
  left: -30%;
}

/* Content */
.agents-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.agents-intro {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto 80px auto;
}

/* Horizontal Showcase Container */
.agents-showcase {
  width: 100%;
  opacity: 1;
  transform: translateY(0);
}

/* Showcase Track - Horizontal Layout */
.showcase-track {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  padding: 40px 0;
  animation: slide-left-right 8s ease-in-out infinite;
}

@keyframes slide-left-right {
  0%, 100% {
    transform: translateX(60px) scale(0.95);
  }
  50% {
    transform: translateX(-60px) scale(0.95);
  }
}

/* Individual Agent Spotlight */
.agent-spotlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s var(--ease-smooth);
}

/* Avatar Area - Container for glow, ring, and frame */
.spotlight-avatar-area {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Spotlight Glow - Behind Avatar */
.spotlight-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(245, 158, 11, 0.3) 0%,
    rgba(245, 158, 11, 0.1) 40%,
    transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.6;
  transition: all 0.5s var(--ease-smooth);
}

/* Staggered Pulse Animation for Glow */
.agent-spotlight:nth-child(1) .spotlight-glow { animation: spotlight-pulse 4s ease-in-out infinite 0s; }
.agent-spotlight:nth-child(2) .spotlight-glow { animation: spotlight-pulse 4s ease-in-out infinite 0.8s; }
.agent-spotlight:nth-child(3) .spotlight-glow { animation: spotlight-pulse 4s ease-in-out infinite 1.6s; }
.agent-spotlight:nth-child(4) .spotlight-glow { animation: spotlight-pulse 4s ease-in-out infinite 2.4s; }
.agent-spotlight:nth-child(5) .spotlight-glow { animation: spotlight-pulse 4s ease-in-out infinite 3.2s; }

@keyframes spotlight-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

/* Spotlight Ring - Animated Border */
.spotlight-ring {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 2px solid rgba(245, 158, 11, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.5s var(--ease-smooth);
}

/* Spotlight Frame - Avatar Container */
.spotlight-frame {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 3;
  border: 3px solid rgba(245, 158, 11, 0.4);
  box-shadow:
    0 0 30px rgba(245, 158, 11, 0.2),
    inset 0 0 20px rgba(0, 0, 0, 0.3);
  transition: all 0.5s var(--ease-smooth);
}

/* Avatar Image */
.spotlight-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s var(--ease-smooth);
}

/* Spotlight Name */
.spotlight-name {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.85;
  white-space: nowrap;
  transition: all 0.4s var(--ease-smooth);
}

/* ================================
   AGENT SPOTLIGHT HOVER STATES
   ================================ */

.agent-spotlight:hover .spotlight-glow {
  transform: translate(-50%, -50%) scale(1.3);
  opacity: 1;
  background: radial-gradient(circle,
    rgba(245, 158, 11, 0.5) 0%,
    rgba(245, 158, 11, 0.2) 40%,
    transparent 70%);
}

.agent-spotlight:hover .spotlight-ring {
  width: 190px;
  height: 190px;
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.agent-spotlight:hover .spotlight-frame {
  transform: scale(1.08);
  border-color: rgba(245, 158, 11, 0.7);
  box-shadow:
    0 0 50px rgba(245, 158, 11, 0.4),
    0 0 100px rgba(245, 158, 11, 0.2),
    inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.agent-spotlight:hover .spotlight-name {
  color: var(--gold-light);
  opacity: 1;
  transform: translateY(4px);
}

/* ================================
   AGENT MODAL - GLASS PANEL
   ================================ */

/* Modal Overlay */
.agent-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 15, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.agent-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Panel */
.agent-modal-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 560px;
  padding: 48px;
  background: linear-gradient(145deg,
    rgba(25, 25, 30, 0.95) 0%,
    rgba(18, 18, 22, 0.98) 100%);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 24px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(245, 158, 11, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-smooth);
}

.agent-modal-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Modal Close Button */
.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.close-line {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

.close-line:first-child {
  transform: rotate(45deg);
}

.close-line:last-child {
  transform: rotate(-45deg);
}

/* Modal Avatar Container */
.modal-avatar-container {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
}

.modal-avatar-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(245, 158, 11, 0.4) 0%,
    rgba(245, 158, 11, 0.1) 50%,
    transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.modal-avatar {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.3);
  z-index: 2;
}

/* Modal Title */
.modal-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
  line-height: 1.2;
}

/* Modal Description */
.modal-desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.85;
  margin-bottom: 32px;
}

/* Modal Details */
.modal-detail {
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 2px solid rgba(245, 158, 11, 0.3);
}

.modal-detail:last-child {
  margin-bottom: 0;
}

.detail-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  margin-bottom: 8px;
}

.detail-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.8;
  margin: 0;
}

/* ================================
   RESPONSIVE - AGENTS SHOWCASE
   ================================ */

@media (max-width: 1100px) {
  .showcase-track {
    gap: 32px;
  }

  .spotlight-frame {
    width: 130px;
    height: 130px;
  }

  .spotlight-glow {
    width: 170px;
    height: 170px;
  }

  .spotlight-ring {
    width: 150px;
    height: 150px;
  }

  .agent-spotlight:hover .spotlight-ring {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 900px) {
  .showcase-track {
    flex-wrap: wrap;
    gap: 40px 32px;
    max-width: 500px;
    margin: 0 auto;
  }

  .agent-spotlight {
    width: calc(33.333% - 24px);
  }

  .spotlight-frame {
    width: 110px;
    height: 110px;
  }

  .spotlight-glow {
    width: 150px;
    height: 150px;
  }

  .spotlight-ring {
    width: 130px;
    height: 130px;
  }

  .spotlight-name {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .agents-section {
    padding: 80px 24px;
  }

  .showcase-track {
    flex-wrap: wrap;
    gap: 48px 24px;
    max-width: 350px;
  }

  .agent-spotlight {
    width: calc(50% - 12px);
  }

  .spotlight-frame {
    width: 100px;
    height: 100px;
  }

  .spotlight-glow {
    width: 140px;
    height: 140px;
  }

  .spotlight-ring {
    width: 120px;
    height: 120px;
  }

  .agent-modal-panel {
    padding: 32px 24px;
    max-width: 95%;
  }

  .modal-title {
    font-size: 24px;
  }

  .modal-avatar-container {
    width: 80px;
    height: 80px;
  }

  .modal-avatar {
    width: 80px;
    height: 80px;
  }

  .modal-avatar-glow {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .showcase-track {
    max-width: 280px;
  }

  .spotlight-frame {
    width: 90px;
    height: 90px;
  }

  .spotlight-name {
    font-size: 12px;
  }
}

/* ================================
   WHAT YOU GET SECTION
   ================================ */

.deliverables-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--section-padding) 48px;
}

/* Balanced Gradient Zone - 2 planes */
.balanced-zone .gradient-band-balanced-1 {
  position: absolute;
  width: 180%;
  height: 140%;
  background: linear-gradient(120deg,
    var(--teal-mid) 0%,
    var(--green-mid) 35%,
    var(--gold-mid) 70%,
    var(--gold-light) 100%);
  opacity: 0.85;
  top: -20%;
  left: -40%;
  transform: rotate(125deg);
}

.balanced-zone .gradient-band-balanced-2 {
  position: absolute;
  width: 180%;
  height: 140%;
  background: linear-gradient(120deg,
    var(--green-dark) 0%,
    var(--teal-light) 30%,
    var(--green-light) 60%,
    var(--amber-light) 100%);
  opacity: 0.7;
  top: -15%;
  left: -35%;
  transform: rotate(125deg);
}

/* Content */
.deliverables-content {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Intro */
.deliverables-intro {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.85;
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.15s;
}

.deliverables-intro.animate-in {
  opacity: 0.85;
  transform: translateY(0);
}

/* Deliverables Grid - 2x2 */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

/* Deliverable Card */
.deliverable-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-smooth);
}

.deliverable-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(52, 211, 153, 0.2);
  transform: translateY(-4px);
}

.deliverable-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.deliverable-card:nth-child(1) { transition-delay: 0.1s; }
.deliverable-card:nth-child(2) { transition-delay: 0.2s; }
.deliverable-card:nth-child(3) { transition-delay: 0.3s; }
.deliverable-card:nth-child(4) { transition-delay: 0.4s; }

/* Deliverable Icon Container */
.deliverable-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Icon 1: Context Pack - Stacked Layers */
.icon-layers {
  position: relative;
  width: 48px;
  height: 48px;
}

.icon-layer {
  position: absolute;
  width: 36px;
  height: 24px;
  border-radius: 4px;
  border: 2px solid;
  left: 50%;
  transform: translateX(-50%);
}

.icon-layer.layer-1 {
  bottom: 0;
  border-color: rgba(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 0.08);
}

.icon-layer.layer-2 {
  bottom: 8px;
  border-color: rgba(52, 211, 153, 0.5);
  background: rgba(52, 211, 153, 0.12);
}

.icon-layer.layer-3 {
  bottom: 16px;
  border-color: rgba(52, 211, 153, 0.8);
  background: rgba(52, 211, 153, 0.18);
}

.deliverable-card:hover .icon-layer.layer-3 {
  background: rgba(52, 211, 153, 0.25);
}

/* Icon 2: Workflow - Connected Nodes */
.icon-workflow {
  display: flex;
  align-items: center;
  gap: 6px;
}

.workflow-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.3);
  border: 2px solid rgba(20, 184, 166, 0.6);
}

.workflow-node.node-2 {
  width: 16px;
  height: 16px;
  background: rgba(20, 184, 166, 0.5);
  border-color: rgba(20, 184, 166, 0.8);
}

.workflow-line {
  width: 12px;
  height: 2px;
  background: rgba(20, 184, 166, 0.4);
}

.deliverable-card:hover .workflow-node.node-2 {
  background: rgba(20, 184, 166, 0.7);
  box-shadow: 0 0 12px rgba(20, 184, 166, 0.4);
}

/* Icon 3: Patterns - Bar Chart */
.icon-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 40px;
  position: relative;
}

.chart-bar {
  width: 10px;
  background: rgba(245, 158, 11, 0.4);
  border-radius: 2px 2px 0 0;
}

.chart-bar.bar-1 { height: 16px; }
.chart-bar.bar-2 { height: 28px; }
.chart-bar.bar-3 { height: 40px; background: rgba(245, 158, 11, 0.7); }

.chart-peak {
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s var(--ease-smooth);
}

.deliverable-card:hover .chart-peak {
  opacity: 1;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* Icon 4: Readout - Document */
.icon-doc {
  width: 32px;
  height: 40px;
  background: rgba(52, 211, 153, 0.1);
  border: 2px solid rgba(52, 211, 153, 0.4);
  border-radius: 4px;
  position: relative;
  padding: 8px 6px;
}

.doc-line {
  height: 2px;
  background: rgba(52, 211, 153, 0.4);
  border-radius: 1px;
  margin-bottom: 4px;
}

.doc-line-1 { width: 100%; }
.doc-line-2 { width: 70%; }

.doc-check {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 10px;
  height: 6px;
  border-left: 2px solid rgba(52, 211, 153, 0.8);
  border-bottom: 2px solid rgba(52, 211, 153, 0.8);
  transform: rotate(-45deg);
}

.deliverable-card:hover .icon-doc {
  border-color: rgba(52, 211, 153, 0.6);
  background: rgba(52, 211, 153, 0.15);
}

/* Title */
.deliverable-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 12px;
}

/* Description */
.deliverable-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 16px;
}

/* Highlight text */
.deliverable-highlight {
  font-size: 15px;
  font-weight: 500;
  color: var(--teal-light);
  opacity: 0.95;
  margin: 0;
}

/* Conditional text */
.deliverable-conditional {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  opacity: 0.6;
  margin: 0;
}

/* Closing statement */
.deliverables-close {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.75;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.5s;
}

.deliverables-close.animate-in {
  opacity: 0.75;
  transform: translateY(0);
}

/* Responsive - Deliverables Grid */
@media (max-width: 768px) {
  .deliverables-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .deliverable-card {
    padding: 32px 24px;
  }

  .deliverable-title {
    font-size: 18px;
  }

  .deliverable-description {
    font-size: 15px;
  }
}

/* ================================
   WHAT COMES NEXT SECTION
   ================================ */

.next-steps-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--section-padding) 48px;
}

/* Return to Teal Zone - 2 planes */
.teal-return-zone .gradient-band-teal-return-1 {
  position: absolute;
  width: 180%;
  height: 140%;
  background: linear-gradient(120deg,
    var(--teal-dark) 0%,
    var(--teal-mid) 50%,
    var(--teal-light) 100%);
  opacity: 0.85;
  top: -20%;
  left: -40%;
  transform: rotate(125deg);
}

.teal-return-zone .gradient-band-teal-return-2 {
  position: absolute;
  width: 180%;
  height: 140%;
  background: linear-gradient(120deg,
    var(--teal-mid) 0%,
    var(--green-dark) 40%,
    var(--teal-light) 100%);
  opacity: 0.7;
  top: -15%;
  left: -35%;
  transform: rotate(125deg);
}

/* Content */
.next-steps-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Intro Text */
.next-steps-intro {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-smooth) 0.1s;
}

.next-steps-intro.animate-in {
  opacity: 0.9;
  transform: translateY(0);
}

/* Phases Container */
.next-steps-phases {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  max-width: 600px;
  margin: 0 auto 56px auto;
}

/* Individual Phase */
.next-phase {
  display: flex;
  gap: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-smooth);
}

.next-phase.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.next-phase:nth-child(1) { transition-delay: 0.15s; }
.next-phase:nth-child(2) { transition-delay: 0.25s; }
.next-phase:nth-child(3) { transition-delay: 0.35s; }

/* Phase Marker - Vertical Timeline */
.phase-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 6px;
}

.phase-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal-light);
  border: 3px solid rgba(94, 234, 212, 0.3);
  box-shadow: 0 0 12px rgba(94, 234, 212, 0.4);
  flex-shrink: 0;
}

.phase-line {
  width: 2px;
  flex: 1;
  min-height: 60px;
  background: linear-gradient(to bottom,
    rgba(94, 234, 212, 0.4) 0%,
    rgba(94, 234, 212, 0.1) 100%);
  margin-top: 8px;
}

/* Phase Content */
.phase-content {
  padding-bottom: 40px;
}

.next-phase:last-child .phase-content {
  padding-bottom: 0;
}

.phase-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 12px;
}

.phase-description {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.85;
  margin: 0;
}

/* Security Note */
.next-steps-security {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.6;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-smooth) 0.45s;
}

.next-steps-security.animate-in {
  opacity: 0.6;
  transform: translateY(0);
}

/* Responsive - What Comes Next */
@media (max-width: 768px) {
  .next-steps-content {
    max-width: 100%;
  }

  .next-steps-intro {
    font-size: 18px;
    margin-bottom: 48px;
  }

  .next-steps-phases {
    max-width: 100%;
  }

  .next-phase {
    gap: 20px;
  }

  .phase-title {
    font-size: 20px;
  }

  .phase-description {
    font-size: 16px;
  }

  .phase-content {
    padding-bottom: 32px;
  }

  .phase-line {
    min-height: 48px;
  }

  .next-steps-security {
    font-size: 14px;
  }
}

/* ================================
   FAQ SECTION
   ================================ */

.faq-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--section-padding) 48px;
}

/* Neutral Zone with Gradient Accents - 2 planes */
.neutral-zone .gradient-band-neutral-1 {
  position: absolute;
  width: 180%;
  height: 140%;
  background: linear-gradient(120deg,
    var(--green-dark) 0%,
    var(--teal-mid) 50%,
    var(--green-mid) 100%);
  opacity: 0.75;
  top: -20%;
  left: -40%;
  transform: rotate(125deg);
}

.neutral-zone .gradient-band-neutral-2 {
  position: absolute;
  width: 180%;
  height: 140%;
  background: linear-gradient(120deg,
    var(--teal-dark) 0%,
    var(--green-light) 50%,
    var(--teal-light) 100%);
  opacity: 0.65;
  top: -15%;
  left: -35%;
  transform: rotate(125deg);
}

/* Content */
.faq-content {
  position: relative;
  z-index: 10;
  max-width: 860px;
  margin: 0 auto;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-item:nth-child(2) { transition-delay: 0.15s; }
.faq-item:nth-child(3) { transition-delay: 0.2s; }
.faq-item:nth-child(4) { transition-delay: 0.25s; }
.faq-item:nth-child(5) { transition-delay: 0.3s; }

/* Question Button */
.faq-question-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 32px 0;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s var(--ease-smooth);
}

.faq-question-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
  transition: color 0.3s var(--ease-smooth);
}

.faq-question-btn:hover .faq-question-text {
  color: var(--teal-light);
}

/* Toggle Icon */
.faq-toggle-icon {
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  opacity: 0.6;
  transition: all 0.3s var(--ease-smooth);
  flex-shrink: 0;
  margin-left: 24px;
  line-height: 1;
}

.faq-question-btn:hover .faq-toggle-icon {
  opacity: 1;
  color: var(--teal-light);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

/* Answer Wrapper */
.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
}

.faq-item.active .faq-answer-wrapper {
  max-height: 500px;
}

.faq-answer {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--white);
  opacity: 0.85;
  padding: 0 0 32px 0;
  margin: 0;
}

/* ================================
   FINAL CTA SECTION
   ================================ */

.cta-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--section-padding) 48px;
}

/* Full Gradient Blast - 3 planes */
.full-blast-zone .gradient-band-blast-1 {
  position: absolute;
  width: 180%;
  height: 140%;
  background: linear-gradient(120deg,
    var(--teal-dark) 0%,
    var(--teal-mid) 30%,
    var(--green-mid) 60%,
    var(--gold-mid) 100%);
  opacity: 0.9;
  top: -20%;
  left: -40%;
  transform: rotate(125deg);
}

.full-blast-zone .gradient-band-blast-2 {
  position: absolute;
  width: 180%;
  height: 140%;
  background: linear-gradient(120deg,
    var(--green-dark) 0%,
    var(--green-light) 40%,
    var(--gold-light) 80%,
    var(--amber-light) 100%);
  opacity: 0.8;
  top: -15%;
  left: -35%;
  transform: rotate(125deg);
}

.full-blast-zone .gradient-band-blast-3 {
  position: absolute;
  width: 180%;
  height: 140%;
  background: linear-gradient(120deg,
    var(--teal-light) 0%,
    var(--green-mid) 50%,
    var(--gold-dark) 100%);
  opacity: 0.7;
  top: -10%;
  left: -30%;
  transform: rotate(125deg);
}

/* Content */
.cta-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-headline {
  font-size: 72px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth);
}

.cta-headline.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.cta-subhead {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.15s;
}

.cta-subhead.animate-in {
  opacity: 0.9;
  transform: translateY(0);
}

.cta-capacity {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.85;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.25s;
}

.cta-capacity.animate-in {
  opacity: 0.85;
  transform: translateY(0);
}

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-smooth) 0.35s;
}

.cta-action.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.cta-note {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  opacity: 0.7;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
  /* Split layout becomes stacked */
  .layout-split .split-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .split-left {
    position: relative;
    top: 0;
  }

  .split-right {
    padding-top: 0;
  }

  /* Offset layout centers on tablet */
  .layout-offset .container {
    margin-left: auto;
    margin-right: auto;
  }

  /* Hide some accent shapes on smaller screens */
  .credibility-shape-2,
  .approach-shape {
    opacity: 0.4;
  }

  /* Gradient dividers reduce height */
  .gradient-divider {
    height: 120px;
  }

  .hero-headline {
    font-size: 64px;
  }

  .hero-subhead {
    font-size: 20px;
  }

  .pain-point {
    font-size: 23px;
  }

  .section-headline {
    font-size: 52px;
  }

  .approach-statement p {
    font-size: 22px;
  }

  .principle-title {
    font-size: 26px;
  }

  .principle-description {
    font-size: 18px;
  }

  .results-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .result-metric {
    font-size: 64px;
  }

  .result-description {
    font-size: 16px;
  }

  .credibility-statement p {
    font-size: 20px;
  }

  .phase {
    grid-template-columns: 80px 1fr;
    gap: 32px;
  }

  .phase-number {
    font-size: 68px;
  }

  .phase-title {
    font-size: 28px;
  }

  .phase-description {
    font-size: 18px;
  }

  .phase-output {
    font-size: 16px;
  }

  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 56px;
  }

  .deliverable-title {
    font-size: 22px;
  }

  .deliverable-description {
    font-size: 16px;
  }

  .audience-profiles {
    gap: 48px;
    margin-bottom: 80px;
  }

  .profile-title {
    font-size: 24px;
  }

  .profile-description {
    font-size: 18px;
  }

  .not-for {
    padding: 36px;
  }

  .not-for-title {
    font-size: 20px;
  }

  .not-for-description {
    font-size: 17px;
  }

  .faq-list {
    gap: 40px;
  }

  .faq-item {
    padding-bottom: 40px;
  }

  .faq-question {
    font-size: 22px;
  }

  .faq-answer {
    font-size: 17px;
  }

  .cta-headline {
    font-size: 60px;
  }

  .cta-subhead {
    font-size: 22px;
  }

  /* Navigation responsive */
  .nav-container {
    padding: 16px 32px;
  }

  .logo-text {
    font-size: 16px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-link {
    font-size: 14px;
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 100px;
  }

  /* Mobile: hide accent shapes for performance */
  .section-shape {
    display: none;
  }

  /* Gradient dividers minimal on mobile */
  .gradient-divider {
    height: 80px;
  }

  /* Icon size adjustment */
  .principle-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  .principle-icon::after {
    width: 12px;
    height: 12px;
  }

  /* Mobile navigation - simplified */
  .nav-container {
    padding: 14px 24px;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .logo-text {
    font-size: 15px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-link {
    display: none; /* Hide nav links on mobile for cleaner look */
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero,
  .problem-section {
    padding: 0 24px;
  }

  .hero-headline {
    font-size: 48px;
  }

  .hero-subhead {
    font-size: 18px;
    margin-bottom: 48px;
  }

  .cta-button {
    padding: 16px 32px;
    font-size: 16px;
  }

  .problem-section {
    padding: 80px 24px;
  }

  .pain-point {
    font-size: 20px;
    padding-left: 20px;
  }

  .problem-pain {
    margin-bottom: 60px;
  }

  .section-headline {
    font-size: 40px;
    margin-bottom: 48px;
  }

  .approach-statement {
    margin-bottom: 64px;
  }

  .approach-statement p {
    font-size: 20px;
  }

  .approach-principles {
    gap: 48px;
  }

  .principle-title {
    font-size: 24px;
    padding-left: 20px;
  }

  .principle-description {
    font-size: 17px;
    padding-left: 20px;
  }

  .principle-title::before {
    width: 3px;
    height: 20px;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    margin-bottom: 72px;
  }

  .result-metric {
    font-size: 56px;
    margin-bottom: 16px;
  }

  .result-description {
    font-size: 17px;
  }

  .credibility-statement p {
    font-size: 19px;
  }

  .phases-list {
    gap: 56px;
  }

  .phase {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .phase-number {
    font-size: 56px;
  }

  .phase-title {
    font-size: 26px;
  }

  .phase-description {
    font-size: 17px;
  }

  .phase-output {
    font-size: 16px;
    padding-left: 16px;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .deliverable-title {
    font-size: 22px;
  }

  .deliverable-description {
    font-size: 17px;
  }

  .audience-profiles {
    gap: 44px;
    margin-bottom: 64px;
  }

  .profile-title {
    font-size: 22px;
  }

  .profile-description {
    font-size: 17px;
  }

  .not-for {
    padding: 32px;
  }

  .not-for-title {
    font-size: 20px;
  }

  .not-for-description {
    font-size: 17px;
  }

  .faq-list {
    gap: 36px;
  }

  .faq-item {
    padding-bottom: 36px;
  }

  .faq-question {
    font-size: 21px;
  }

  .faq-answer {
    font-size: 17px;
  }

  .cta-headline {
    font-size: 44px;
    margin-bottom: 24px;
  }

  .cta-subhead {
    font-size: 20px;
    margin-bottom: 48px;
  }

  .cta-note {
    font-size: 15px;
  }
}

/* ================================
   COMPREHENSIVE MOBILE RESPONSIVE
   ================================ */

/* Tablet - 1024px */
@media (max-width: 1024px) {
  .nav-container {
    padding: 16px 32px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 14px;
  }

  .hero-content {
    padding: 0 32px;
  }

  .hero-headline {
    font-size: 56px;
  }

  .hero-tagline {
    font-size: 16px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .spotlight-avatar-area {
    width: 180px;
    height: 180px;
  }
}

/* Small Tablet - 768px */
@media (max-width: 768px) {
  /* Hero Section */
  .hero-headline {
    font-size: 42px;
    line-height: 1.15;
  }

  .hero-subhead {
    font-size: 17px;
    padding: 0 16px;
  }

  .hero-tagline {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 40px;
    padding: 0 16px;
  }

  /* POV Section */
  .pov-framework {
    flex-direction: column;
    gap: 32px;
  }

  .pov-item {
    padding: 24px;
  }

  .pov-intro {
    font-size: 18px;
  }

  /* Credibility Section */
  .credibility-layout {
    flex-direction: column;
    gap: 40px;
  }

  .credibility-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  .founder-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: block;
  }

  .credibility-statement p {
    font-size: 18px;
  }

  /* How Section */
  .how-section {
    padding: 80px 24px;
  }

  .phases-container {
    gap: 48px;
  }

  .phase-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .phase-number-container {
    margin: 0 auto;
  }

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

  /* Deliverables Section */
  .deliverables-section {
    padding: 80px 24px;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .deliverable-card {
    padding: 32px 24px;
  }

  /* What Comes Next Section */
  .next-steps-section {
    padding: 80px 24px;
  }

  .next-steps-intro {
    font-size: 17px;
  }

  .phase-title {
    font-size: 20px;
  }

  .phase-description {
    font-size: 16px;
  }

  /* FAQ Section */
  .faq-section {
    padding: 80px 24px;
  }

  .faq-question-text {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 16px;
  }

  /* CTA Section */
  .cta-section {
    padding: 80px 24px;
  }

  .cta-headline {
    font-size: 36px;
  }

  .cta-subhead {
    font-size: 18px;
  }

  /* Agents Modal */
  .agent-modal-panel {
    margin: 16px;
    padding: 28px 20px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-avatar-container {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .modal-avatar {
    width: 70px;
    height: 70px;
  }

  .modal-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .modal-detail {
    margin-bottom: 20px;
  }

  .detail-label {
    font-size: 12px;
  }

  .detail-text {
    font-size: 15px;
  }
}

/* Mobile - 480px */
@media (max-width: 480px) {
  :root {
    --section-padding: 80px;
  }

  .nav-container {
    padding: 12px 16px;
  }

  .logo-text {
    font-size: 14px;
  }

  .nav-cta {
    padding: 6px 12px;
    font-size: 12px;
  }

  .hero {
    padding: 0 16px;
  }

  .hero-headline {
    font-size: 32px;
  }

  .hero-subhead {
    font-size: 15px;
  }

  .hero-tagline {
    font-size: 14px;
  }

  .cta-button {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  .section-headline {
    font-size: 32px;
  }

  /* Agents on small mobile */
  .showcase-track {
    max-width: 100%;
    gap: 32px 16px;
  }

  .agent-spotlight {
    width: calc(50% - 8px);
  }

  .spotlight-avatar-area {
    width: 120px;
    height: 120px;
  }

  .spotlight-frame {
    width: 80px;
    height: 80px;
  }

  .spotlight-glow {
    width: 110px;
    height: 110px;
  }

  .spotlight-ring {
    width: 95px;
    height: 95px;
  }

  .spotlight-name {
    font-size: 11px;
    margin-top: 12px;
  }

  /* POV */
  .pov-item {
    padding: 20px;
  }

  .pov-label {
    font-size: 16px;
  }

  .pov-description {
    font-size: 15px;
  }

  /* Credibility - founder photo */
  .founder-photo {
    width: 180px;
    height: 180px;
  }

  /* Phases */
  .phase-number {
    font-size: 48px;
  }

  .phase-title {
    font-size: 18px;
  }

  /* Next Steps */
  .next-phase {
    gap: 16px;
  }

  .phase-dot {
    width: 12px;
    height: 12px;
  }

  .phase-line {
    min-height: 48px;
  }

  /* Modal */
  .agent-modal-panel {
    margin: 8px;
    padding: 24px 16px;
    border-radius: 16px;
  }

  .modal-close-btn {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }

  .modal-avatar-container {
    width: 60px;
    height: 60px;
  }

  .modal-avatar {
    width: 60px;
    height: 60px;
  }

  .modal-title {
    font-size: 20px;
  }

  .detail-text {
    font-size: 14px;
  }

  /* CTA */
  .cta-headline {
    font-size: 28px;
  }

  .cta-subhead {
    font-size: 16px;
  }
}

/* Extra Small - 360px */
@media (max-width: 360px) {
  .hero-headline {
    font-size: 28px;
  }

  .hero-tagline {
    font-size: 13px;
  }

  .section-headline {
    font-size: 28px;
  }

  .spotlight-frame {
    width: 70px;
    height: 70px;
  }

  .spotlight-name {
    font-size: 10px;
  }

  .cta-headline {
    font-size: 24px;
  }
}

/* ================================
   ACCESSIBILITY
   ================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for keyboard navigation */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .nav-header {
    border-bottom: 2px solid var(--white);
  }

  .cta-button {
    border: 2px solid currentColor;
  }

  .agent-spotlight:focus-visible .spotlight-frame {
    outline: 3px solid var(--white);
    outline-offset: 4px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .agent-spotlight:hover .spotlight-glow,
  .agent-spotlight:hover .spotlight-ring,
  .agent-spotlight:hover .spotlight-frame {
    transform: none;
  }

  .cta-button:hover {
    transform: none;
  }

  /* Larger touch targets */
  .nav-link {
    padding: 12px 8px;
  }

  .faq-question-btn {
    padding: 20px 0;
  }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.site-footer {
  background: var(--charcoal-deep);
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-company {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.footer-info {
  text-align: center;
  flex: 1;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-social:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--teal-light);
}

/* Footer mobile responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-info {
    order: 3;
  }
}
