/* ==========================================================================
   Club E — Consolidated Stylesheet
   Version: 3.0.0
   Brand: #81B4B1 (teal) + white + black
   Fonts: DM Serif Display (headings), Inter (body), JetBrains Mono (metrics)
   Framework: 9-Stage Entrepreneurial Journey

   Single source of truth. Zero !important. Zero attribute selectors.
   ========================================================================== */


/* ==========================================================================
   0. CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* --- Teal Scale --- */
  --teal-50:  #EDF5F4;
  --teal-100: #D6E9E8;
  --teal-200: #B8D8D6;
  --teal-300: #A8CCC9;
  --teal-400: #93C2BF;
  --teal-500: #81B4B1;
  --teal-600: #6DA19E;
  --teal-700: #5E9390;
  --teal-800: #4A7573;
  --teal-900: #3D706E;

  /* --- Neutral Scale --- */
  --neutral-50:  #F7F9F9;
  --neutral-100: #EDF2F1;
  --neutral-200: #E2E8F0;
  --neutral-300: #CBD5E0;
  --neutral-400: #A0AEC0;
  --neutral-500: #718096;
  --neutral-600: #4A5568;
  --neutral-700: #2D3748;
  --neutral-800: #1A202C;
  --neutral-900: #1A1A1A;

  /* --- Semantic Aliases --- */
  --bg-primary:    #FFFFFF;
  --bg-secondary:  var(--neutral-50);
  --bg-tertiary:   var(--neutral-100);
  --text-primary:  var(--neutral-900);
  --text-secondary: var(--neutral-600);
  --text-muted:    var(--neutral-500);
  --border-color:  var(--neutral-200);
  --border-strong: var(--neutral-300);

  --color-primary:       var(--teal-500);
  --color-primary-hover: var(--teal-600);
  --color-primary-active: var(--teal-700);
  --color-surface:       var(--bg-primary);
  --color-surface-alt:   var(--bg-secondary);
  --color-on-primary:    #FFFFFF;

  /* --- Status --- */
  --color-success:    #059669;
  --color-success-bg: #D1FAE5;
  --color-warning:    #D97706;
  --color-warning-bg: #FEF3C7;
  --color-error:      #DC2626;
  --color-error-bg:   #FEE2E2;
  --color-info:       #2563EB;
  --color-info-bg:    #DBEAFE;

  /* --- Journey Phase Tints --- */
  --phase-creation-bg:      var(--teal-50);
  --phase-creation-accent:  var(--teal-500);
  --phase-creation-border:  var(--teal-300);
  --phase-optimization-bg:     #F0F4F1;
  --phase-optimization-accent: var(--teal-600);
  --phase-optimization-border: #B5C9BE;
  --phase-legacy-bg:       #E8F0EE;
  --phase-legacy-accent:   var(--teal-800);
  --phase-legacy-border:   #8FADA7;

  /* --- Stage Badge Opacity Scale --- */
  --stage-1-bg: rgba(129, 180, 177, 0.12);
  --stage-2-bg: rgba(129, 180, 177, 0.20);
  --stage-3-bg: rgba(129, 180, 177, 0.30);
  --stage-4-bg: rgba(129, 180, 177, 0.40);
  --stage-5-bg: rgba(129, 180, 177, 0.52);
  --stage-6-bg: rgba(129, 180, 177, 0.64);
  --stage-7-bg: rgba(129, 180, 177, 0.76);
  --stage-8-bg: rgba(129, 180, 177, 0.88);
  --stage-9-bg: rgba(129, 180, 177, 1.0);
  --stage-text-light: var(--neutral-900);
  --stage-text-dark:  #FFFFFF;

  /* --- Typography --- */
  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  --leading-tight:   1.2;
  --leading-snug:    1.375;
  --leading-normal:  1.5;
  --leading-relaxed: 1.625;
  --leading-loose:   1.75;

  --weight-normal:   400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;

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

  /* --- Layout --- */
  --container-sm:  640px;
  --container-md:  768px;
  --container-lg:  1024px;
  --container-xl:  1200px;
  --container-2xl: 1400px;

  /* --- Border Radius --- */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);

  /* --- Transitions --- */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-theme: 300ms ease;
}


/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}


/* ==========================================================================
   2. HEADER & FOOTER
   ========================================================================== */

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--teal-500);
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  border-radius: 6px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--neutral-800);
}

.site-header__nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-header__nav a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--neutral-600);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.site-header__nav a:hover,
.site-header__nav .active a {
  color: var(--teal-500);
}

.site-header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}

.site-header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-700);
  position: absolute;
  left: 0;
  transition: 0.2s;
}

.site-header__toggle span:nth-child(1) { top: 0; }
.site-header__toggle span:nth-child(2) { top: 9px; }
.site-header__toggle span:nth-child(3) { top: 18px; }

/* --- Footer --- */
.site-footer {
  background: var(--neutral-800);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 24px 24px;
}

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

.site-footer__brand .logo-mark {
  background: rgba(129, 180, 177, 0.2);
}

.site-footer__brand .logo-text {
  color: #fff;
}

.site-footer__tagline {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-2);
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: var(--space-4);
}

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

.site-footer a {
  font-size: 0.8125rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.site-footer a:hover {
  color: var(--teal-500);
}

.site-footer__bottom {
  max-width: 960px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}


/* ==========================================================================
   3. KEYFRAME ANIMATIONS
   ========================================================================== */

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

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

@keyframes clube-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes clube-fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes clube-counter-glow {
  0%, 100% { text-shadow: 0 0 10px rgba(129, 180, 177, 0.3); }
  50% { text-shadow: 0 0 25px rgba(129, 180, 177, 0.6), 0 0 50px rgba(129, 180, 177, 0.2); }
}


/* ==========================================================================
   4. LAYOUT — SECTIONS & CONTAINERS
   ========================================================================== */

.section {
  padding: 80px 24px;
}

.section--compact {
  padding: 56px 24px;
}

.section--spacious {
  padding: 60px 24px;
}

.section--white {
  background: var(--bg-primary);
}

.section--light {
  background: var(--neutral-50);
}

.section--teal-light {
  background: var(--teal-50);
}

.section--dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1A202C 0%, #2D3748 50%, #1A202C 100%);
}

/* Dark section grid overlay */
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(129, 180, 177, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 180, 177, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Dark section glow orb */
.section--dark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(129, 180, 177, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Subtle border between consecutive same-background sections */
.section--white + .section--white {
  border-top: 1px solid var(--neutral-200);
}

.section--light + .section--light {
  border-top: 1px solid var(--neutral-200);
}

/* Section headers */
.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section__header--compact {
  margin-bottom: var(--space-6);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--neutral-800);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.section__title--sm {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
}

.section__title--light {
  color: #fff;
}

/* Underline accent on section titles inside headers */
.section__header .section__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #81B4B1, #6DA19E);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section--dark .section__title::after,
.cta-section .section__title::after {
  background: linear-gradient(90deg, #81B4B1, #A8CCC9);
  opacity: 0.6;
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--neutral-600);
  max-width: var(--container-sm);
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

.section__subtitle--light {
  color: rgba(255, 255, 255, 0.75);
}

/* Dark section text overrides */
.section--dark .section__title {
  color: #fff;
}

.section--dark .section__subtitle,
.section--dark p {
  color: rgba(255, 255, 255, 0.75);
}

/* Containers */
.grid-section {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: content-box;
}

.grid-section--narrow {
  max-width: 960px;
}

.grid-section--sm {
  max-width: 700px;
}

.grid-section--md {
  max-width: 860px;
}

.grid-section--lg {
  max-width: 1060px;
}


/* ==========================================================================
   5. CSS GRID LAYOUTS
   ========================================================================== */

.grid {
  display: grid;
  gap: var(--space-5);
}

.grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

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

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

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

.grid--5 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.grid--2-centered {
  grid-template-columns: repeat(2, 1fr);
  max-width: var(--container-sm);
  margin: var(--space-5) auto 0;
}

.grid--gap-sm {
  gap: 16px;
}

.grid--gap-md {
  gap: 20px;
}

.grid--gap-lg {
  gap: 24px;
}

/* Stack layout (vertical list) */
.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */

.clube-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(129, 180, 177, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(129, 180, 177, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 80%, rgba(109, 161, 158, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #F7F9F9 0%, #EDF5F4 100%);
}

/* Dot grid texture */
.clube-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(129, 180, 177, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* Floating geometric accent */
.clube-hero::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 180, 177, 0.10) 0%, rgba(129, 180, 177, 0.03) 50%, transparent 70%);
  animation: clube-float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.clube-hero > * {
  position: relative;
  z-index: 1;
}

.clube-hero__inner {
  max-width: var(--container-sm);
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-6);
}

.clube-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--neutral-800);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1A202C 0%, #2D3748 50%, #4A7573 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.clube-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--neutral-600);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-10);
  max-width: var(--container-sm);
  margin-left: auto;
  margin-right: auto;
}

.clube-hero__subtitle:last-child {
  margin-bottom: 0;
}

.clube-hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Sub-page hero variant (shorter, less dramatic) */
.clube-hero--sub {
  padding: 88px 24px 52px;
}

.clube-hero--sub .clube-hero__inner {
  max-width: 700px;
}

.clube-hero--sub .clube-hero__actions {
  margin-top: var(--space-8);
}


/* ==========================================================================
   7. SVG SECTION DIVIDERS
   ========================================================================== */

.section-divider {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  line-height: 0;
}

.section-divider--wave {
  margin-top: -1px;
}

.section-divider--diagonal {
  margin-top: -1px;
}

.section-divider--flip {
  transform: scaleY(-1);
}

.divider-wrap {
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  margin-top: -1px;
  margin-bottom: -1px;
}

.divider-wrap--hero {
  background: #EDF5F4;
}

.divider-wrap--dark {
  background: #1A202C;
}

.divider-wrap svg {
  display: block;
  width: 100%;
  height: auto;
}


/* ==========================================================================
   8. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: 0.9375rem;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast),
    border-color var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

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

/* Primary */
.btn--primary {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
  color: #fff;
  box-shadow:
    0 2px 8px rgba(129, 180, 177, 0.30),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--teal-400) 0%, var(--teal-600) 100%);
  box-shadow:
    0 4px 14px rgba(129, 180, 177, 0.40),
    0 2px 4px rgba(0, 0, 0, 0.10);
  transform: translateY(-1px);
}

.btn--primary:active {
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-700) 100%);
  box-shadow: 0 1px 4px rgba(129, 180, 177, 0.20);
  transform: translateY(0);
}

/* Secondary */
.btn--secondary {
  background: transparent;
  color: var(--teal-500);
  border-color: var(--teal-500);
}

.btn--secondary:hover {
  background: rgba(129, 180, 177, 0.08);
  border-color: var(--teal-600);
  color: var(--teal-600);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(129, 180, 177, 0.15);
}

.btn--secondary:active {
  background: rgba(129, 180, 177, 0.15);
  transform: translateY(0);
}

/* Size variants */
.btn--lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.8125rem;
}

/* Full width */
.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Rounded pill shape */
.btn--pill {
  border-radius: 20px;
}

/* On-dark variants */
.btn--on-dark.btn--primary {
  box-shadow:
    0 2px 10px rgba(129, 180, 177, 0.40),
    0 0 20px rgba(129, 180, 177, 0.10);
}

.btn--on-dark.btn--primary:hover {
  box-shadow:
    0 4px 20px rgba(129, 180, 177, 0.50),
    0 0 30px rgba(129, 180, 177, 0.15);
}

.btn--on-dark.btn--secondary {
  color: var(--teal-400);
  border-color: var(--teal-400);
}

.btn--on-dark.btn--secondary:hover {
  background: rgba(129, 180, 177, 0.12);
  color: var(--teal-300);
  border-color: var(--teal-300);
}


/* ==========================================================================
   9. CARDS
   ========================================================================== */

.card {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  border: 1px solid var(--border-color);
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base),
    border-color var(--transition-base);
}

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

.card--surface {
  background: var(--bg-secondary);
}

.card--accent {
  border-left: 3px solid var(--teal-500);
}

.card--accent-dark {
  border-left: 3px solid var(--teal-600);
}

.card--lift:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

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

.card--horizontal {
  padding: 0;
  overflow: hidden;
}

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

.card--no-hover:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

/* Card sub-elements */
.card__eyebrow {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: var(--space-3);
}

.card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--neutral-800);
  margin-bottom: var(--space-3);
}

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

.card__title--xs {
  font-size: 0.9375rem;
  line-height: 1.3;
}

.card__title--featured {
  font-size: 1.0625rem;
  line-height: 1.3;
}

.card__body {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: var(--leading-relaxed);
}

.card__body--sm {
  font-size: 0.8125rem;
  line-height: 1.6;
}

.card__icon {
  width: 40px;
  height: 40px;
  background: rgba(129, 180, 177, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  font-size: var(--text-xl);
}

.card__icon--lg {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  font-size: var(--text-2xl);
}

.card__icon--inline {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.card__link {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: 0.8125rem;
  color: var(--teal-500);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.card__link:hover {
  color: var(--teal-700);
}

/* Testimonial card */
.card--testimonial {
  text-align: left;
  position: relative;
}

.card--testimonial::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: rgba(129, 180, 177, 0.12);
  pointer-events: none;
}

.card__quote {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--neutral-700);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.card__attribution {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--neutral-500);
  position: relative;
  padding-top: 12px;
}

.card__attribution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--teal-500);
  border-radius: 1px;
}

/* Equal-height cards in grids */
.grid > .card {
  display: flex;
  flex-direction: column;
}

.grid > .card .card__body {
  flex: 1;
}

.grid > .card .card__link {
  margin-top: auto;
  padding-top: 12px;
  display: inline-block;
}


/* ==========================================================================
   10. HORIZONTAL CARDS (podcast episodes, events)
   ========================================================================== */

.hcard {
  display: flex;
  gap: 0;
}

.hcard__panel {
  width: 140px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 16px;
}

.hcard__panel--narrow {
  width: 100px;
  min-height: 130px;
  padding: 12px;
}

.hcard__panel-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hcard__panel-label--sans {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
}

.hcard__panel-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: var(--weight-medium);
  color: #fff;
  line-height: 1;
}

.hcard__panel-number--sm {
  font-size: 2.25rem;
}

.hcard__panel-day {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
}

.hcard__panel-badge {
  display: inline-block;
  margin-top: var(--space-2);
  font-size: 0.6875rem;
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
}

.hcard__content {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hcard__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hcard__badges {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap;
}


/* ==========================================================================
   11. INSIGHT CARDS (filterable grid cards)
   ========================================================================== */

.insight-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.insight-card__image {
  background: var(--teal-50);
  height: 140px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.insight-card__image-icon {
  font-size: 2rem;
  opacity: 0.25;
}

.insight-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.6875rem;
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  background: #fff;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.insight-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.insight-card__footer {
  margin-top: auto;
  padding-top: var(--space-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* ==========================================================================
   12. FILTER PILLS & CONTROLS
   ========================================================================== */

.filter-pill {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: var(--weight-medium);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--neutral-200);
  background: #fff;
  color: var(--neutral-600);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-pill:hover {
  border-color: var(--teal-400);
  color: var(--teal-600);
}

.filter-pill--active {
  background: var(--teal-500);
  border-color: var(--teal-500);
  color: #fff;
}

.filter-pill--active:hover {
  background: var(--teal-600);
  border-color: var(--teal-600);
  color: #fff;
}

.insights-select {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: var(--weight-medium);
  padding: 6px 28px 6px 12px;
  border-radius: 6px;
  border: 1.5px solid var(--neutral-200);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 8px center;
  color: var(--neutral-600);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--transition-fast);
}

.insights-select:hover,
.insights-select:focus {
  border-color: var(--teal-400);
  outline: none;
}

.insights-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
}

.insights-controls__filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.insights-controls__filters-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 4px;
}

.insights-controls__sort {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.insights-results-count {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  margin-bottom: 16px;
}

.insights-empty {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--neutral-500);
}

.insights-empty--visible {
  display: block;
}

/* Simple filter row for podcast/events */
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

/* Browse-by pills (stage pills, topic pills) */
.pill-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.pill-row--topics {
  gap: 10px;
}


/* ==========================================================================
   13. STAGE DOTS & BADGES
   ========================================================================== */

.stage-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  font-weight: var(--weight-semibold);
}

.stage-dot--sm {
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  line-height: 18px;
  vertical-align: middle;
  margin-right: 4px;
}

.stage-dot--md {
  width: 28px;
  height: 28px;
  font-size: var(--text-xs);
  margin-bottom: 6px;
}

.stage-badge {
  font-size: 0.6875rem;
  font-family: var(--font-body);
  padding: 1px 6px;
  border-radius: 10px;
}

.stage-label {
  font-size: 0.6875rem;
  color: var(--neutral-500);
}

.stage-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--space-2);
}

/* Event/card type badge */
.type-badge {
  font-size: 0.6875rem;
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  background: rgba(129, 180, 177, 0.15);
  color: var(--teal-800);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

/* Stage badge inside pills */
.stage-badge--pill {
  font-size: 0.6875rem;
  font-family: var(--font-body);
  padding: 2px 8px;
  border-radius: 10px;
}

/* Icon block */
.icon-block {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
}

.icon-block--lg {
  font-size: 2.5rem;
  margin-bottom: var(--space-2);
}

.icon-block--sm {
  font-size: var(--text-xl);
  margin-bottom: 6px;
}


/* ==========================================================================
   14. STAGE BAR (hero 9-dot navigation)
   ========================================================================== */

.stage-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding: 16px 0;
}

/* Connector line */
.stage-bar::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(129, 180, 177, 0.12),
    rgba(129, 180, 177, 0.50),
    rgba(129, 180, 177, 1.0)
  );
  z-index: 0;
  border-radius: 1px;
}

.stage-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 4px;
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}

.stage-bar__item:hover {
  transform: translateY(-4px);
}

.stage-bar__dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.stage-bar__item:hover .stage-bar__dot {
  transform: scale(1.15);
  box-shadow: 0 0 0 4px rgba(129, 180, 177, 0.2), 0 4px 12px rgba(129, 180, 177, 0.3);
}

.stage-bar__label {
  font-size: 0.6875rem;
  color: var(--neutral-500);
  font-family: var(--font-body);
  transition: color var(--transition-fast);
}

.stage-bar__item:hover .stage-bar__label {
  color: var(--teal-600);
}


/* ==========================================================================
   15. JOURNEY TIMELINE
   ========================================================================== */

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

.journey__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.journey__phase {
  margin-bottom: var(--space-8);
}

.journey__phase:last-child {
  margin-bottom: 0;
}

.journey__phase-label {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.journey__phase-tag {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey__phase-tag--creation  { color: var(--teal-500); }
.journey__phase-tag--optimize  { color: var(--teal-600); }
.journey__phase-tag--legacy    { color: var(--teal-800); }

.journey__phase-name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--neutral-800);
}

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

/* Horizontal connector line */
.journey__stages::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-200) 0%, var(--teal-400) 50%, var(--teal-200) 100%);
  z-index: 0;
  border-radius: 1px;
}

/* Phase-specific connector colors */
.journey__phase--creation .journey__stages::before {
  background: linear-gradient(90deg, rgba(129,180,177,0.20), rgba(129,180,177,0.40), rgba(129,180,177,0.20));
}

.journey__phase--optimize .journey__stages::before {
  background: linear-gradient(90deg, rgba(109,161,158,0.25), rgba(109,161,158,0.50), rgba(109,161,158,0.25));
}

.journey__phase--legacy .journey__stages::before {
  background: linear-gradient(90deg, rgba(74,117,115,0.30), rgba(74,117,115,0.55), rgba(74,117,115,0.30));
}

.journey__stage {
  position: relative;
  z-index: 1;
  text-decoration: none;
  display: block;
  padding: var(--space-4);
  background: #fff;
  border-radius: var(--radius-md);
  border-left: 3px solid transparent;
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base),
    border-color var(--transition-base);
}

.journey__stage:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.journey__phase--creation .journey__stage { border-left-color: rgba(129,180,177,0.30); }
.journey__phase--optimize .journey__stage { border-left-color: rgba(109,161,158,0.40); }
.journey__phase--legacy .journey__stage   { border-left-color: rgba(74,117,115,0.50); }

.journey__stage-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
  position: relative;
}

.journey__stage-number::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
}

.journey__stage:hover .journey__stage-number::after {
  border-color: var(--teal-300);
}

.journey__stage-number--1 { background: var(--stage-1-bg); color: var(--stage-text-light); }
.journey__stage-number--2 { background: var(--stage-2-bg); color: var(--stage-text-light); }
.journey__stage-number--3 { background: var(--stage-3-bg); color: var(--stage-text-light); }
.journey__stage-number--4 { background: var(--stage-4-bg); color: var(--stage-text-light); }
.journey__stage-number--5 { background: var(--stage-5-bg); color: var(--stage-text-light); }
.journey__stage-number--6 { background: var(--stage-6-bg); color: var(--stage-text-dark); }
.journey__stage-number--7 { background: var(--stage-7-bg); color: var(--stage-text-dark); }
.journey__stage-number--8 { background: var(--stage-8-bg); color: var(--stage-text-dark); }
.journey__stage-number--9 { background: var(--stage-9-bg); color: var(--stage-text-dark); }

.journey__stage-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: var(--neutral-800);
  margin-bottom: 3px;
}

.journey__stage-desc {
  font-size: var(--text-xs);
  color: var(--neutral-500);
  line-height: 1.4;
  display: block;
}


/* ==========================================================================
   16. STATS BAR
   ========================================================================== */

.stats-bar {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stats-bar .grid--4 {
  text-align: center;
  gap: var(--space-8);
}

.stat__number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: var(--weight-medium);
  color: var(--teal-500);
  display: block;
  position: relative;
  z-index: 1;
}

.stat__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.section--dark .stat__number {
  color: var(--teal-400);
  text-shadow: 0 0 12px rgba(129, 180, 177, 0.3);
  animation: clube-counter-glow 3s ease-in-out infinite;
}


/* ==========================================================================
   17. PILLAR CARDS
   ========================================================================== */

.pillar {
  text-align: center;
  padding: var(--space-6);
  border-radius: var(--radius-md);
  transition: background var(--transition-base), transform var(--transition-base);
}

.pillar:hover {
  background: var(--neutral-50);
  transform: translateY(-4px);
}

.pillar__icon {
  width: 56px;
  height: 56px;
  background: rgba(129, 180, 177, 0.15);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-size: var(--text-2xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pillar:hover .pillar__icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 4px 12px rgba(129, 180, 177, 0.2);
}

.pillar__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--neutral-800);
  margin-bottom: var(--space-2);
}

.pillar__desc {
  font-size: var(--text-sm);
  color: var(--neutral-500);
  line-height: var(--leading-normal);
}


/* ==========================================================================
   18. CTA SECTION
   ========================================================================== */

.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1A202C 0%, #2D3748 100%);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(129, 180, 177, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(129, 180, 177, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

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

.cta-section__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-section__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .section__title {
  color: #fff;
}

.cta-section .section__subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
}


/* ==========================================================================
   19. RESOURCE CATEGORY CARDS (tall header cards)
   ========================================================================== */

.resource-card {
  overflow: hidden;
}

.resource-card__header {
  padding: 32px 24px;
  text-align: center;
}

.resource-card__header-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--space-2);
}

.resource-card__header-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: #fff;
  margin: 0;
}

.resource-card__body {
  padding: 24px;
}

.resource-card__list {
  font-size: 0.8125rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 16px;
  list-style: disc;
}

/* Membership tier card */
.tier-card__header {
  padding: 24px 20px;
  text-align: center;
  border-bottom: 1px solid var(--neutral-200);
}

.tier-card__header--popular {
  padding-top: 36px;
}

.tier-card__tier-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.tier-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--neutral-800);
  margin-bottom: 4px;
}

.tier-card__desc {
  font-size: 0.8125rem;
  color: var(--neutral-500);
}

.tier-card__body {
  padding: 20px;
}

.tier-card__features {
  font-size: 0.8125rem;
  color: var(--neutral-600);
  line-height: 2;
  padding-left: 0;
  list-style: none;
}

.tier-card__note {
  font-size: var(--text-xs);
  color: var(--neutral-500);
  font-style: italic;
  margin-top: 12px;
  margin-bottom: 16px;
}

/* "Most Popular" ribbon */
.tier-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--teal-500);
  color: #fff;
  text-align: center;
  font-size: 0.6875rem;
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.05em;
  padding: 4px 0;
  text-transform: uppercase;
}

/* Popular tier border */
.card--popular {
  border: 2px solid var(--teal-500);
  position: relative;
}

/* Pricing note */
.pricing-note {
  text-align: center;
  margin-top: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--text-sm);
  color: var(--neutral-500);
  line-height: 1.6;
}

/* Download card (horizontal with icon) */
.download-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}


/* ==========================================================================
   20. SUBSCRIBE PLATFORM BUTTONS
   ========================================================================== */

.subscribe-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.subscribe-row .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.subscribe-icon {
  font-size: var(--text-lg);
}


/* ==========================================================================
   21. SCROLL FADE-IN ANIMATIONS
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }
.fade-in--delay-4 { transition-delay: 0.4s; }
.fade-in--delay-5 { transition-delay: 0.5s; }

.fade-in--left {
  opacity: 0;
  transform: translateX(-24px);
}

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

.fade-in--right {
  opacity: 0;
  transform: translateX(24px);
}

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

.fade-in--scale {
  opacity: 0;
  transform: scale(0.95);
}

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


/* ==========================================================================
   22. UTILITY CLASSES
   ========================================================================== */

.text-center   { text-align: center; }
.text-muted    { color: var(--neutral-400); }
.text-sm       { font-size: var(--text-sm); }
.text-xs       { font-size: var(--text-xs); }
.text-mono     { font-family: var(--font-mono); }
.text-success  { font-weight: var(--weight-semibold); color: var(--color-success); }
.text-dark     { font-weight: var(--weight-semibold); color: var(--neutral-700); }
.mt-auto       { margin-top: auto; }
.mt-4          { margin-top: var(--space-4); }
.mt-8          { margin-top: var(--space-8); }
.mb-0          { margin-bottom: 0; }
.mb-4          { margin-bottom: var(--space-4); }
.mb-6          { margin-bottom: var(--space-6); }
.mb-8          { margin-bottom: var(--space-8); }
.ml-auto       { margin-left: auto; }


/* ==========================================================================
   23. ACCESSIBILITY & FOCUS
   ========================================================================== */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}


/* ==========================================================================
   24. RESPONSIVE — 480px
   ========================================================================== */

@media (max-width: 480px) {
  .section {
    padding: 40px 16px;
  }

  .section--compact {
    padding: 28px 16px;
  }

  .clube-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .clube-hero__actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-section__actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .stage-bar {
    max-width: 100%;
    justify-content: center;
  }

  .stats-bar .grid--4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .filter-pill {
    padding: 5px 10px;
    font-size: var(--text-xs);
  }

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

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .grid--2-centered {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

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


/* ==========================================================================
   25. RESPONSIVE — 640px
   ========================================================================== */

@media (max-width: 640px) {
  .journey__stages {
    grid-template-columns: 1fr;
    padding-left: 30px;
  }

  .journey__stages::before {
    top: 0;
    bottom: 0;
    left: 12px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .journey__stage {
    position: relative;
  }

  .journey__stage::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-400);
  }

  /* Horizontal cards stack vertically */
  .hcard {
    flex-direction: column;
  }

  .hcard__panel {
    width: 100%;
    min-height: auto;
    flex-direction: row;
    gap: 12px;
    padding: 16px 20px;
    justify-content: flex-start;
  }

  .hcard__panel--narrow {
    width: 100%;
    min-height: auto;
    flex-direction: row;
    gap: 8px;
    padding: 12px 20px;
    justify-content: flex-start;
  }

  .hcard__panel-number {
    font-size: 1.75rem;
  }

  .hcard__panel-number--sm {
    font-size: 1.5rem;
  }

  .hcard__content {
    padding: 16px 20px;
  }

  .hcard__meta {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hcard__badges {
    gap: 6px;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .grid--2-centered {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

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


/* ==========================================================================
   26. RESPONSIVE — 768px
   ========================================================================== */

@media (max-width: 768px) {
  .section {
    padding: 56px 20px;
  }

  .section--compact {
    padding: 36px 20px;
  }

  .section--spacious {
    padding: 44px 20px;
  }

  .section__header {
    margin-bottom: 28px;
  }

  .clube-hero {
    padding: 72px 20px 56px;
  }

  .clube-hero--sub {
    padding: 72px 20px 44px;
  }

  .clube-hero__title {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
  }

  .clube-hero__actions {
    margin-bottom: 32px;
    gap: 12px;
  }

  .grid-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .grid--2-centered {
    max-width: 100%;
    grid-template-columns: 1fr;
  }

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

  .stage-bar {
    gap: 6px;
  }

  .stage-bar__dot {
    width: 34px;
    height: 34px;
    font-size: 0.6875rem;
  }

  .stage-bar__label {
    font-size: 0.5625rem;
  }

  .stage-bar::before {
    display: none;
  }

  .cta-section__inner {
    max-width: 100%;
    padding: 0 4px;
  }

  .insights-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .insights-controls__filters {
    flex-wrap: wrap;
  }

  .insights-controls__sort {
    width: 100%;
  }

  .insights-controls__sort .insights-select {
    flex: 1;
  }

  .clube-hero::after {
    width: 160px;
    height: 160px;
    top: -20px;
    right: -40px;
  }

  /* Mobile nav */
  .site-header__toggle { display: block; }

  .site-header__nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 32px 24px;
  }

  .site-header__nav ul {
    flex-direction: column;
    gap: 24px;
  }

  .site-header__nav a {
    font-size: var(--text-lg);
  }

  .nav-open .site-header__nav { display: block; }
  .nav-open .site-header__toggle span:nth-child(1) { top: 9px; transform: rotate(45deg); }
  .nav-open .site-header__toggle span:nth-child(2) { opacity: 0; }
  .nav-open .site-header__toggle span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

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


/* ==========================================================================
   27. RESPONSIVE — 1024px (tablet)
   ========================================================================== */

@media (min-width: 769px) and (max-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .grid--5 {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }

  .grid--5 > :nth-child(1),
  .grid--5 > :nth-child(2),
  .grid--5 > :nth-child(3) {
    grid-column: span 2;
  }

  .grid--5 > :nth-child(4) {
    grid-column: 2 / span 2;
  }

  .grid--5 > :nth-child(5) {
    grid-column: 4 / span 2;
  }

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

/* 5-column desktop grid */
@media (min-width: 1000px) {
  .grid--5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid--5 > * {
    grid-column: auto;
  }
}

/* Cap auto-fit to 3 columns on large screens */
@media (min-width: 1200px) {
  .grid--auto {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 5-column audience grid on desktop */
@media (min-width: 769px) {
  .grid--5-audience {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
}


/* ==========================================================================
   28. REDUCED MOTION
   ========================================================================== */

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

  *, *::before, *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}


/* ==========================================================================
   29. PRINT
   ========================================================================== */

@media print {
  .clube-hero::before,
  .clube-hero::after,
  .section--dark::before,
  .section--dark::after,
  .cta-section::before,
  .cta-section::after,
  .divider-wrap {
    display: none;
  }

  .section--dark,
  .cta-section {
    background: #2D3748;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}
