/* ============================================
   GREEN GAINS FITNESS — Design System
   Premium dark theme with emerald green accents
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Backgrounds */
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-tertiary: #1A1A1A;
  --bg-card: rgba(17, 17, 17, 0.7);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  /* Accent Colors */
  --accent: #10B981;
  --accent-glow: #34D399;
  --accent-dark: #059669;
  --accent-bg: rgba(16, 185, 129, 0.08);
  --accent-border: rgba(16, 185, 129, 0.2);

  /* Text */
  --text-primary: #F5F5F5;
  --text-secondary: #A3A3A3;
  --text-muted: #8A8A8A; /* WCAG AA: ~5.5:1 on near-black (was #525252 ≈ 2.4:1) */
  --text-accent: #10B981;

  /* Premium accents */
  --gold: #D4A847;
  --red-warn: #EF4444;
  --red-bg: rgba(239, 68, 68, 0.08);

  /* Spacing */
  --section-pad: 88px;
  --container-max: 1200px;
  --container-narrow: 800px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-med: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.15);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  /* NOTE: no `scroll-behavior: smooth` here — it fights Lenis and causes
     a "stick then lurch" between sections. Lenis owns smooth scrolling. */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Belt-and-suspenders: stop any stray element from causing horizontal
     scroll/offset on mobile (clip, not hidden, to stay Lenis-safe). */
  overflow-x: clip;
}

/* ---- Lenis smooth-scroll guards (official) ---- */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  /* `clip` prevents horizontal overflow (from the hero orbs) WITHOUT turning
     <body> into a scroll container, which would make Lenis stutter. */
  overflow-x: clip;
}

::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-glow);
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Sora', 'Inter', sans-serif;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.15;
}

h1 {
  font-size: clamp(40px, 5.5vw, 76px);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(22px, 2.5vw, 28px);
}

h4 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
}

p {
  max-width: 680px;
}

.label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

.highlight {
  color: var(--accent);
}

.gold {
  color: var(--gold);
}

/* ---- Layout ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

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

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

.section-header .label {
  margin-bottom: 16px;
  display: block;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  margin: 0 auto;
  font-size: 18px;
  color: var(--text-secondary);
}

/* ---- Glassmorphism Card ---- */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: all var(--transition-med);
}

.glass-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 18px 40px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-med);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
}

.btn--primary:hover {
  background: var(--accent-glow);
  color: var(--bg-primary);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn--primary:hover::after {
  opacity: 1;
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.btn--large {
  padding: 22px 52px;
  font-size: 17px;
}

/* ---- Scroll Progress Bar ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1100;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-glow));
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
  transition: width 0.1s linear;
}

/* ---- Fixed Top Navbar ---- */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition-med), border-color var(--transition-med),
              backdrop-filter var(--transition-med), box-shadow var(--transition-med);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.topnav.scrolled {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.topnav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topnav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.topnav-brand:hover {
  color: var(--text-primary);
}

.topnav-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  color: var(--accent);
}

.topnav-mark i {
  width: 20px;
  height: 20px;
}

.topnav-items {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--text-secondary);
  background: transparent;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.nav-item:hover, .nav-item.active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.nav-item.active {
  color: var(--accent);
}

.nav-item i {
  width: 21px;
  height: 21px;
}

/* Hover tooltip reveal (now drops below, since the bar is at the top) */
.nav-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: var(--bg-tertiary);
  color: var(--text-primary);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-item:hover .nav-tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.nav-apply {
  padding: 12px 26px;
  font-size: 14px;
}

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  min-height: 100dvh; /* avoids mobile URL-bar jump (100vh) */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 var(--section-pad);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    var(--bg-primary) 100%
  );
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb--1 {
  width: 500px;
  height: 500px;
  background: var(--accent-dark);
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: 20%;
  left: -5%;
  animation-delay: -4s;
  opacity: 0.15;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content .label {
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero-content h1 {
  margin-bottom: 28px;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-trust-item {
  text-align: center;
}

.hero-trust-item .number {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-trust-item .desc {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-indicator .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Pattern Interrupt Section ---- */
.pattern-interrupt {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.pattern-interrupt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.interrupt-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--text-primary);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 64px;
  line-height: 1.3;
  font-weight: 400;
  font-style: italic;
}

.interrupt-quote em {
  color: var(--accent);
  font-style: italic;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-med);
}

.stat-card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-glow);
}

.stat-number {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-suffix {
  font-size: 36px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

/* ---- System / Pillars Section ---- */
.system-section {
  position: relative;
  overflow: hidden; /* clip the 800px decorative glow so it can't overflow on mobile */
}

.system-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16,185,129,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.pillar-card {
  text-align: center;
  padding: 48px 24px 40px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.pillar-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}

.pillar-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.pillar-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 auto;
}

.system-tagline {
  text-align: center;
  max-width: 760px;
  margin: 56px auto 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--text-secondary);
  font-style: italic;
}

/* ---- Performance Baseline Section ---- */
.baseline-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.baseline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.baseline-step {
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--bg-primary);
}

.baseline-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.baseline-step p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 280px;
}

.step-connector {
  position: absolute;
  top: 72px;
  right: -16px;
  color: var(--accent);
  z-index: 2;
  display: flex;
  align-items: center;
}

/* ---- Cost of Inaction Section ---- */
.cost-section {
  position: relative;
}

.cost-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.cost-problem {
  padding: 48px;
  background: var(--red-bg);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius-md);
}

.cost-problem h3 {
  color: var(--red-warn);
  margin-bottom: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
}

.cost-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(239, 68, 68, 0.1);
}

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

.cost-item .cost-icon {
  color: var(--red-warn);
  flex-shrink: 0;
  margin-top: 2px;
}

.cost-item .cost-amount {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--red-warn);
  margin-bottom: 4px;
}

.cost-item .cost-desc {
  font-size: 14px;
  color: var(--text-muted);
}

.cost-solution {
  padding: 48px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
}

.cost-solution h3 {
  color: var(--accent);
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
}

.cost-solution .price {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.cost-solution .price-context {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 100%;
}

.cost-includes {
  list-style: none;
}

.cost-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.cost-includes li i {
  color: var(--accent);
  flex-shrink: 0;
}

/* ---- Qualification Gate Section ---- */
.qualify-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.qualify-card {
  padding: 48px;
  border-radius: var(--radius-md);
}

.qualify-card--yes {
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
}

.qualify-card--no {
  background: var(--bg-glass);
  border: 1px solid var(--border);
}

.qualify-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.qualify-card--yes h3 {
  color: var(--accent);
}

.qualify-card--no h3 {
  color: var(--text-muted);
}

.qualify-list {
  list-style: none;
}

.qualify-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.qualify-list li:last-child {
  border-bottom: none;
}

.qualify-list li i {
  flex-shrink: 0;
  margin-top: 3px;
}

.qualify-card--yes .qualify-list li i {
  color: var(--accent);
}

.qualify-card--no .qualify-list li i {
  color: var(--text-muted);
}

.qualify-footer {
  text-align: center;
  margin-top: 48px;
}

.qualify-footer p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0 auto;
}

/* ---- Proof / Social Proof Section ---- */
.proof-section {
  position: relative;
}

.proof-stats-bar {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 48px 0;
  margin-bottom: 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-glass);
}

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

.proof-stat .number {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.proof-stat .desc {
  font-size: 14px;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.testimonial-card {
  position: relative;
  padding: 48px 36px 40px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-med);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.testimonial-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  color: var(--accent);
  opacity: 0.12;
}

.testimonial-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin-bottom: 22px;
  padding: 3px;
  background: linear-gradient(135deg, var(--accent-glow), var(--accent-dark));
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.18);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-secondary);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  max-width: 100%;
}

.testimonial-attr {
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--text-primary);
}

.testimonial-author {
  margin-top: auto;
}

.author-info .name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 16px;
}

.author-info .role {
  font-size: 13px;
  color: var(--text-muted);
}

.press-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.press-bar span {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 18px;
  color: var(--text-muted);
  opacity: 0.5;
  font-weight: 600;
  letter-spacing: 1px;
  transition: opacity var(--transition-fast);
}

.press-bar span:hover {
  opacity: 0.8;
}

/* ---- Founder Story Section ---- */
.founder-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.founder-image-wrap {
  position: relative;
}

.founder-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--border);
}

.founder-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.6) 100%);
}

.founder-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
  z-index: -1;
}

.founder-content .label {
  margin-bottom: 20px;
  display: block;
}

.founder-content h2 {
  margin-bottom: 32px;
}

.founder-content p {
  margin-bottom: 20px;
  font-size: 16px;
}

.founder-content p:last-of-type {
  margin-bottom: 36px;
}

.founder-signature {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  color: var(--text-primary);
  font-style: italic;
}

/* ---- Concierge Stack Section ---- */
.concierge-section {
  position: relative;
}

.concierge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.concierge-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-med);
}

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

.concierge-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.concierge-card h4 {
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.concierge-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.concierge-value {
  text-align: center;
  padding: clamp(28px, 6vw, 48px);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.concierge-value .total-value {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(18px, 5vw, 28px);
  color: var(--text-muted);
  margin-bottom: 8px;
  text-decoration: line-through;
  overflow-wrap: break-word;
}

.concierge-value .your-investment {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(28px, 7vw, 52px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  overflow-wrap: break-word;
}

.concierge-value p {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0 auto;
}

/* ---- FAQ Section ---- */
.faq-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-med), background var(--transition-med);
}

.faq-item.open {
  border-color: var(--accent-border);
  background: var(--accent-bg);
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--accent);
  transition: transform var(--transition-med);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-med);
}

.faq-answer p {
  padding: 0 28px 28px;
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 100%;
}

/* ---- Final CTA Section ---- */
.final-cta {
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta h2 {
  margin-bottom: 20px;
}

.final-cta .subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 44px;
}

.final-cta .btn {
  margin-bottom: 32px;
}

.cta-scarcity {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-scarcity i {
  color: var(--gold);
}

.cta-guarantee {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-guarantee i {
  color: var(--accent);
}

/* ---- Footer ---- */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
}

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

/* ---- Section Dividers ---- */
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 0 auto;
}



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

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

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

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

  .founder-image-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

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

  .founder-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 52px;
  }

  .topnav-inner {
    padding: 12px 16px;
    gap: 12px;
  }
  .topnav-name {
    display: none;
  }
  .topnav-items {
    gap: 2px;
  }
  .nav-item {
    width: 44px;
    height: 44px;
  }
  .nav-item i {
    width: 19px;
    height: 19px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-trust {
    flex-direction: column;
    gap: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pillars-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  .step-connector {
    display: none;
  }

  .cost-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .proof-stats-bar {
    flex-direction: column;
    gap: 32px;
  }

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

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

  .press-bar {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 8px;
  }

  .glass-card {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 40px;
  }

  /* On tiny screens, keep the bar clean: brand + Apply only */
  .topnav-items {
    display: none;
  }

  .testimonial-card {
    padding: 44px 28px 36px;
  }

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

  .cost-problem,
  .cost-solution,
  .qualify-card {
    padding: 32px;
  }

  .stat-number {
    font-size: 44px;
  }

  .btn--large {
    padding: 18px 36px;
    font-size: 15px;
  }
}

/* ---- Utility Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   SCROLL REVEAL (IntersectionObserver-driven; replaces AOS)
   Compositor-only transitions — no scroll-time layout cost
   ============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-aos="fade-down"]  { transform: translateY(-24px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }

[data-aos].in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================
   UX / ACCESSIBILITY PASS
   ============================================ */

/* Skip-to-content link — visible only on keyboard focus */
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 2000;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--bg-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 16px;
  color: var(--bg-primary);
}

/* Visible focus ring for keyboard users (does not affect mouse clicks) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-item:focus-visible,
.faq-question:focus-visible,
.topnav-brand:focus-visible {
  outline: 2px solid var(--accent-glow);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Faster taps + press feedback (Touch & Interaction) */
.btn,
.nav-item,
.faq-question,
a {
  touch-action: manipulation;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.nav-item:active {
  transform: scale(0.94);
}

/* Respect reduced-motion globally: neutralize decorative motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .hero-orb,
  .scroll-indicator,
  .dock-container {
    animation: none !important;
  }
}
