@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,700&family=Figtree:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* Colors */
  --color-espresso: #1C1815;
  --color-espresso-90: #2E2520;
  --color-espresso-80: #3D3330;
  --color-gold: #C8A96E;
  --color-gold-light: #D9BE8A;
  --color-gold-dark: #A8893E;
  --color-cream: #F7F2EA;
  --color-cream-dark: #EDE8DF;
  --color-white: #FFFFFF;
  --color-ink: #2C2825;
  --color-muted: #8A7F77;
  --color-error: #DC2626;
  --color-success: #16A34A;

  /* Semantic */
  --color-bg-dark: var(--color-espresso);
  --color-bg-light: var(--color-cream);
  --color-text-on-dark: var(--color-white);
  --color-text-on-light: var(--color-ink);
  --color-cta: var(--color-gold);
  --color-cta-hover: var(--color-gold-light);
  --color-border-dark: var(--color-espresso-80);
  --color-border-light: var(--color-cream-dark);
  --color-bg-card-dark: var(--color-espresso-90);
  --color-bg-card-light: var(--color-white);
  --color-text-muted-dark: rgba(255, 255, 255, 0.6);
  --color-text-muted-light: var(--color-muted);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Figtree', system-ui, sans-serif;

  --text-display: clamp(40px, 7vw, 64px);
  --text-h1: clamp(32px, 5vw, 48px);
  --text-h2: clamp(26px, 4vw, 36px);
  --text-h3: clamp(22px, 3vw, 28px);
  --text-h4: 22px;
  --text-lg: 20px;
  --text-base: 17px;
  --text-sm: 15px;
  --text-xs: 13px;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 24px;
  --section-pad-lg: 96px;
  --section-pad-md: 72px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 100px;

  /* Z-Index */
  --z-base: 0;
  --z-dropdown: 10;
  --z-sticky: 20;
  --z-overlay: 40;
  --z-modal: 100;
  --z-toast: 1000;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}

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

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-ink);
  background: var(--color-espresso);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
}

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

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

.section-dark > * {
  position: relative;
  z-index: 1;
}

.section-light {
  background: var(--color-bg-light);
  color: var(--color-text-on-light);
}

.section-pad {
  padding-block: var(--section-pad-lg);
}

.section-pad-md {
  padding-block: var(--section-pad-md);
}

@media (max-width: 768px) {
  .section-pad {
    padding-block: 64px;
  }
  .section-pad-md {
    padding-block: 48px;
  }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

h1, .h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: 1.1;
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.15;
}

h3, .h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: 1.2;
}

h4, .h4 {
  font-family: var(--font-body);
  font-size: var(--text-h4);
  font-weight: 600;
  line-height: 1.3;
}

.text-lg {
  font-size: var(--text-lg);
  line-height: 1.6;
}

.text-sm {
  font-size: var(--text-sm);
}

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

.text-muted-dark {
  color: var(--color-text-muted-dark);
}

.text-muted-light {
  color: var(--color-text-muted-light);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base), transform var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-espresso);
}

.btn-primary:hover {
  background: var(--color-gold-light);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-espresso);
}

.btn-ghost {
  background: transparent;
  color: var(--color-gold);
  padding: 8px 0;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition-base);
}

.btn-ghost:hover {
  text-decoration-color: var(--color-gold);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

/* ============================================================
   BADGE
   ============================================================ */

.badge {
  display: inline-block;
  background: rgba(200, 169, 110, 0.15);
  color: var(--color-gold);
  border: 1px solid rgba(200, 169, 110, 0.3);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.badge-available {
  background: rgba(22, 163, 74, 0.12);
  color: #4ade80;
  border-color: rgba(22, 163, 74, 0.25);
}

.badge-soon {
  background: rgba(200, 169, 110, 0.1);
  color: var(--color-muted);
  border-color: rgba(200, 169, 110, 0.2);
}

/* ============================================================
   CARDS
   ============================================================ */

.card-dark {
  background: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: var(--space-8);
}

.card-light {
  background: var(--color-bg-card-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  box-shadow: 0 2px 12px rgba(28, 24, 21, 0.06);
}

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

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: transparent;
  transition: background var(--transition-slow), border-color var(--transition-slow);
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: var(--color-espresso);
  border-bottom-color: var(--color-espresso-80);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-gold);
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  transition: color var(--transition-base);
}

.nav-logo:hover {
  color: var(--color-gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold);
}

.nav-cta {
  margin-left: var(--space-4);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-white);
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-espresso);
  z-index: var(--z-overlay);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
}

.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.nav-mobile-close:hover {
  opacity: 1;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color var(--transition-base);
  text-align: center;
}

.nav-mobile a:hover {
  color: var(--color-gold);
}

.nav-mobile .btn-primary {
  margin-top: var(--space-4);
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

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

.hero {
  min-height: 100svh;
  background: var(--color-espresso);
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--color-espresso));
  pointer-events: none;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-athlete.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--section-pad-lg);
  max-width: 960px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.75;
  margin-bottom: var(--space-10);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6.5vw, 76px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-10);
}

.hero-headline-gold {
  display: block;
  font-style: italic;
  color: var(--color-gold);
}

.hero-subline {
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: var(--space-12);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-content {
    padding-block: 72px 80px;
    text-align: center;
  }

  .hero-subline {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    gap: var(--space-4);
  }

  .hero-actions .btn {
    width: 100%;
  }
}

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

.problem-intro {
  font-size: var(--text-lg);
  color: var(--color-ink);
  max-width: 620px;
  margin-bottom: var(--space-12);
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.quote-card {
  position: relative;
}

.quote-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-ink);
  margin-bottom: var(--space-4);
}

.quote-card blockquote::before {
  content: '\201E';
  font-size: 48px;
  color: var(--color-gold-dark);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-2);
  font-style: normal;
}


@media (max-width: 768px) {
  .quotes-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FOUNDER SECTION
   ============================================================ */

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: center;
}

.founder-image-wrap {
  aspect-ratio: 3 / 4;
  background: var(--color-espresso-90);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-espresso-80);
}

.founder-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.85) contrast(1.15);
}

.founder-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: var(--text-sm);
  text-align: center;
  padding: var(--space-8);
  letter-spacing: 0.05em;
}

.founder-eyebrow {
  margin-bottom: var(--space-4);
}

.founder-headline {
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.founder-body {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-8);
  line-height: 1.75;
}

.founder-body p + p {
  margin-top: var(--space-4);
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-base);
  line-height: 1.5;
}

.trust-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--color-gold);
}

@media (max-width: 1024px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .founder-image-wrap {
    max-width: 360px;
    aspect-ratio: 1 / 1;
  }
}

/* ============================================================
   FRAMEWORK SECTION
   ============================================================ */

.framework-intro {
  font-size: var(--text-lg);
  color: var(--color-ink);
  max-width: 680px;
  margin-bottom: var(--space-12);
  line-height: 1.65;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.pillar-card {
  padding: var(--space-8);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-4);
  opacity: 0.5;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-3);
}

.pillar-body {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: 1.65;
}

.framework-bridge {
  font-size: var(--text-lg);
  color: var(--color-muted);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border-light);
  max-width: 560px;
}

@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card-header {
  margin-bottom: var(--space-6);
}

.product-badge {
  margin-bottom: var(--space-4);
}

.product-title {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.product-subline {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-base);
  line-height: 1.6;
}

.product-benefits {
  flex: 1;
  margin-bottom: var(--space-8);
}

.product-benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-espresso-80);
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.product-benefit:first-child {
  border-top: 1px solid var(--color-espresso-80);
}

.benefit-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  margin-top: 8px;
}

.product-footer {
  margin-top: auto;
}

.product-price {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.product-price-compare {
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin-bottom: var(--space-6);
}

.product-trust {
  font-size: var(--text-xs);
  color: var(--color-muted);
  margin-top: var(--space-4);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SOCIAL PROOF SECTION
   ============================================================ */

.social-proof-intro {
  font-size: var(--text-lg);
  color: var(--color-ink);
  max-width: 640px;
  margin-bottom: var(--space-10);
  line-height: 1.65;
}

.testimonials-placeholder {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-16) var(--space-8);
  text-align: center;
}

.testimonials-placeholder p {
  color: var(--color-muted);
  font-size: var(--text-base);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.65;
}

.testimonials-placeholder .placeholder-icon {
  width: 40px;
  height: 40px;
  margin-inline: auto;
  margin-bottom: var(--space-5);
  opacity: 0.25;
  display: block;
  color: var(--color-ink);
}

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

.final-cta {
  background: var(--color-espresso-90);
}

.final-cta-inner {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.final-cta-eyebrow {
  margin-bottom: var(--space-4);
}

.final-cta-headline {
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.final-cta-subline {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-lg);
  line-height: 1.6;
  margin-bottom: var(--space-10);
}

/* Newsletter Form */
.newsletter-form {
  width: 100%;
}

.newsletter-form label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-2);
  text-align: left;
}

.form-row {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.form-row input[type="email"] {
  flex: 1;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-ink);
  background: var(--color-cream);
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  outline: none;
  transition: border-color var(--transition-base);
  min-width: 0;
}

.form-row input[type="email"]::placeholder {
  color: var(--color-muted);
}

.form-row input[type="email"]:focus {
  border-color: var(--color-gold);
  outline: 2px solid rgba(200, 169, 110, 0.25);
  outline-offset: 0;
}

.form-row .btn {
  flex-shrink: 0;
}

.trust-text {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  text-align: left;
}

.trust-text a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-base);
}

.trust-text a:hover {
  color: var(--color-gold);
}

.form-success {
  text-align: center;
  padding: var(--space-8);
}

.form-success[hidden] {
  display: none;
}

.success-headline {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.form-success p:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-base);
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: var(--space-3);
  }

  .form-row .btn {
    width: 100%;
  }

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

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #131110;
  color: rgba(255, 255, 255, 0.55);
  padding-block: var(--space-16);
  border-top: 1px solid var(--color-espresso-80);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.footer-brand-text {
  font-size: var(--text-sm);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--space-5);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .footer-brand {
    grid-column: auto;
  }
}

/* ============================================================
   SECTION HEADER (reusable)
   ============================================================ */

.section-header {
  margin-bottom: var(--space-12);
}

.section-header .eyebrow {
  display: block;
  margin-bottom: var(--space-4);
}

.section-header h2 {
  margin-bottom: 0;
}

.section-header--centered {
  text-align: center;
  margin-inline: auto;
  max-width: 680px;
}

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

.divider-dark {
  border: none;
  border-top: 1px solid var(--color-espresso-80);
  margin: 0;
}

.divider-light {
  border: none;
  border-top: 1px solid var(--color-cream-dark);
  margin: 0;
}

/* ============================================================
   FOCUS STYLES
   ============================================================ */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============================================================
   SKIP LINK
   ============================================================ */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-6);
  background: var(--color-gold);
  color: var(--color-espresso);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: var(--z-toast);
  text-decoration: none;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-4);
}

/* ============================================================
   PULL QUOTE
   ============================================================ */

.pull-quote {
  border-left: 3px solid var(--color-gold-dark);
  padding-left: var(--space-6);
  margin-top: var(--space-10);
  max-width: 680px;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.3;
}

/* ============================================================
   FRAMEWORK CTA
   ============================================================ */

.framework-cta {
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border-light);
}

/* ============================================================
   HERO KIT CARD
   ============================================================ */

.hero-kit-card {
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.hero-kit-top {
  padding: var(--space-8) var(--space-8) var(--space-6);
  border-bottom: 1px solid var(--color-espresso-80);
}

.hero-kit-top .badge {
  margin-bottom: var(--space-3);
  display: inline-block;
}

.hero-kit-label {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--color-white);
}

.hero-kit-benefits {
  list-style: none;
  padding: var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex: 1;
  border-bottom: 1px solid var(--color-espresso-80);
}

.hero-kit-benefits li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.hero-kit-benefits li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-gold);
}

.hero-kit-footer {
  padding: var(--space-6) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.hero-kit-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-kit-amount {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.hero-kit-note {
  font-size: var(--text-xs);
  color: var(--color-muted);
  letter-spacing: 0.02em;
}

/* ============================================================
   FOUNDER EDITORIAL
   ============================================================ */

.founder-editorial {
  max-width: 960px;
}

.founder-editorial-header {
  margin-bottom: var(--space-12);
}

.founder-editorial-header .eyebrow {
  display: block;
  margin-bottom: var(--space-4);
}

.founder-editorial-header h2 {
  color: var(--color-white);
  font-size: var(--text-h1);
  line-height: 1.1;
}

.founder-editorial-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: start;
}

.founder-editorial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-gold);
  border-left: 3px solid var(--color-gold);
  padding-left: var(--space-6);
  position: sticky;
  top: 100px;
}

.founder-editorial-content p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}

.founder-editorial-content .trust-list {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}

@media (max-width: 768px) {
  .founder-editorial-body {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .founder-editorial-quote {
    position: static;
    font-size: 22px;
  }
}

/* ============================================================
   QUALIFIER SECTION
   ============================================================ */

.qualifier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.qualifier-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.qualifier-scenario {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-ink);
  flex: 1;
}

.qualifier-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-4);
}

@media (max-width: 1024px) {
  .qualifier-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .qualifier-grid {
    max-width: 100%;
  }
}

/* ============================================================
   SCROLL MARGIN (Fixed Nav Offset)
   ============================================================ */

#problem,
#gruender,
#framework,
#produkte,
#fuer-dich,
#newsletter {
  scroll-margin-top: 68px;
}

/* ============================================================
   PRODUCT CARD — Primär-Akzent (Starter Kit)
   ============================================================ */

.product-card--featured {
  border-top: 3px solid var(--color-gold);
}

/* ============================================================
   SCROLL FADE-IN
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.fade-in-delay-1 { transition-delay: 80ms; }
.fade-in-delay-2 { transition-delay: 160ms; }
.fade-in-delay-3 { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   HERO SCROLL INDICATOR
   ============================================================ */

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.3);
  font-size: var(--text-xs);
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 768px) {
  .hero-scroll {
    display: none;
  }
}
