/* Art direction: Impact validation/trust layer - Warm, professional, trustworthy
   Palette: Terracotta (#E8724A) primary, gold (#C9A020) secondary, cream/warm paper backgrounds
   Typography: Nunito 800 (display headings) + Source Sans 3 (body) - rounded warmth + clean readability
   Density: Spacious - generous whitespace, editorial landing page feel */

:root {
  /* Typography */
  --font-display: 'Nunito', 'Segoe UI', sans-serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', 'Helvetica Neue', sans-serif;

  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --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;
  --space-32: 8rem;

  /* Melon Color Palette - Light Mode */
  --color-bg:             #FDF8F0;
  --color-surface:        #F5EFE3;
  --color-surface-2:      #FDF8F0;
  --color-surface-offset: #f0ede8;
  --color-surface-offset-2: #eae7e2;
  --color-surface-dynamic: #e4e1dc;
  --color-divider:        #dcd9d3;
  --color-border:         #d4d1ca;

  /* Text */
  --color-text:           #111111;
  --color-text-muted:     #4b5563;
  --color-text-faint:     #9ca3af;
  --color-text-inverse:   #FDF8F0;

  /* Primary - Melon Terracotta */
  --color-primary:        #E8724A;
  --color-primary-hover:  #D4633D;
  --color-primary-active: #BF5432;
  --color-primary-highlight: #fdf0eb;

  /* Secondary - Gold */
  --color-gold:           #C9A020;
  --color-gold-hover:     #b38e1a;
  --color-gold-active:    #9d7c15;

  /* Status Colors */
  --color-success:        #437a22;
  --color-error:          #dc3545;
  --color-warning:        #C9A020;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows (warm-tinted) */
  --shadow-sm: 0 1px 2px oklch(0.2 0.02 60 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.02 60 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.02 60 / 0.12);
  --shadow-xl: 0 20px 48px oklch(0.2 0.02 60 / 0.16);

  /* Content Widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-text);
}

h1 {
  font-size: var(--text-2xl);
  letter-spacing: 0.05em;
}

h2 {
  font-size: var(--text-xl);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h3 {
  font-size: var(--text-lg);
  letter-spacing: 0.05em;
}

p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

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

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

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

section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

/* =========================================
   TOP BANNER / TICKER
   ========================================= */

.top-banner {
  background: var(--color-surface);
  overflow: hidden;
  padding: var(--space-2) 0;
  position: relative;
  border-bottom: 1px solid var(--color-surface-offset);
}

.top-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
  width: max-content;
}

.top-banner__text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.top-banner__divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  opacity: 0.35;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   HEADER / NAV
   ========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from #FDF8F0 l c h / 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-4) 0;
  transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header--scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color var(--transition-interactive);
}

.nav__links a:hover {
  color: var(--color-primary);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--color-primary);
  color: #fff !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: background var(--transition-interactive),
              transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.nav__cta:hover {
  background: var(--color-primary-hover);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav__cta:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-bg);
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
    gap: var(--space-3);
  }

  .nav__links--open {
    display: flex;
  }

  .nav__cta--mobile {
    display: inline-flex;
  }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-interactive),
              color var(--transition-interactive),
              transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--primary:active {
  background: var(--color-primary-active);
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

.btn--secondary:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

.btn--secondary:active {
  transform: translateY(0);
}

.btn--large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

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

.card {
  background: var(--color-surface-2);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-6);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  box-shadow: var(--shadow-sm);
}

.card--elevated {
  box-shadow: var(--shadow-md);
}

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

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(232, 114, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero__text h1 {
  font-size: var(--text-3xl);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.hero__text .subline {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 52ch;
  line-height: 1.6;
}

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

.hero__mark {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__mark svg {
  display: inline-block;
}

@media (max-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__mark {
    order: -1;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: var(--space-8);
  }
}

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

.section--alt {
  background: var(--color-surface);
}

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

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

.section-header p {
  margin-inline: auto;
  max-width: 60ch;
}

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

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

.aaa-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
}

.aaa-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
  color: var(--color-primary);
}

.aaa-card p {
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}

.aaa-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.aaa-card li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  position: relative;
}

.aaa-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.4;
}

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

/* Affordability Banner */
.affordability-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #D4633D 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  color: #fff;
  text-align: center;
}

.affordability-banner h3 {
  color: #fff;
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  letter-spacing: 0.06em;
}

.affordability-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-inline: auto;
  max-width: 56ch;
  font-size: var(--text-base);
}

/* =========================================
   MELON DISPLAY
   ========================================= */

.display-section {
  background: var(--color-bg);
}

.display-section .section-header h2 {
  color: var(--color-text);
}

.display-section .section-header p {
  color: var(--color-text-muted);
}

.melon-display {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: var(--space-10) var(--space-10);
  box-shadow: 0 4px 24px rgba(232, 114, 74, 0.08),
              0 12px 48px rgba(232, 114, 74, 0.06);
  border: 1px solid rgba(232, 114, 74, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

/* Left column: branding + description + counters */
.display-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.display-left__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
}

.display-left__branding {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.display-left__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.1;
}

.display-left__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.display-left__status {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  white-space: nowrap;
  flex-shrink: 0;
}

.display-left__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

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

.display-left__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-base);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
}

.display-left__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 44ch;
}

/* Counter row at bottom of display */
.display-counters {
  display: flex;
  align-items: stretch;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-surface-offset);
}

.display-counter {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.display-counter__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-faint);
  font-weight: 600;
}

.display-counter__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--color-text);
  font-variant-numeric: tabular-nums lining-nums;
  line-height: 1.2;
}

.display-counter__divider {
  width: 1px;
  height: auto;
  align-self: stretch;
  background: var(--color-surface-offset);
  flex-shrink: 0;
}

/* Progress bars under counters */
.display-counter__bar-track {
  height: 6px;
  background: var(--color-surface-offset);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: var(--space-2);
}

.display-counter__bar-fill {
  height: 100%;
  width: 0;
  border-radius: var(--radius-full);
  transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.display-counter__bar-fill--gold {
  background: linear-gradient(90deg, #C9A020, #dbb530);
}

.display-counter__bar-fill--coral {
  background: linear-gradient(90deg, #F09060, #E8724A);
}

.display-counter__bar-fill--red {
  background: linear-gradient(90deg, #BF5432, #C9A020);
}

/* Right column: Big Donut gauge */
.display-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.donut-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
}

.donut-svg {
  width: 100%;
  height: 100%;
}

.donut-segment {
  transition: stroke-dashoffset 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  pointer-events: none;
  width: 140px;
}

.donut-center__label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-faint);
  font-weight: 600;
}

.donut-center__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-text);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums lining-nums;
  line-height: 1.2;
}

.donut-center__sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  color: var(--color-text-faint);
  line-height: 1.3;
}

.donut-center__org {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-top: 2px;
}

/* Responsive: stack on mobile */
@media (max-width: 700px) {
  .melon-display {
    grid-template-columns: 1fr;
    padding: var(--space-6);
    border-radius: 20px;
  }

  .display-right {
    order: -1;
  }

  .donut-wrapper {
    width: 220px;
    height: 220px;
  }

  .display-counters {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .display-counter__divider {
    width: 100%;
    height: 1px;
  }
}

/* =========================================
   HOW IT WORKS - JOURNEY TIMELINE
   ========================================= */

.journey {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  /* Vertical line through the steps */
  padding-left: 40px;
}

.journey::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-divider);
}

/* --- Branch card (MEL Design - Step 0) --- */
.journey__branch {
  position: relative;
  margin-bottom: var(--space-10);
  padding-left: var(--space-6);
}

.journey__branch-line {
  position: absolute;
  left: -21px;
  top: 24px;
  width: 28px;
  height: 2px;
  background: var(--color-gold);
}

.journey__branch-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: -5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 2px solid var(--color-bg);
}

.journey__branch-card {
  background: var(--color-surface-2);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  box-shadow: var(--shadow-sm);
}

.journey__branch-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.journey__branch-badge svg {
  display: inline-block;
  width: 14px;
  height: 14px;
  stroke: #fff;
}

.journey__branch-card h3 {
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.journey__branch-intro {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-4);
}

.journey__branch-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.journey__branch-card li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  position: relative;
  line-height: 1.5;
}

.journey__branch-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.5;
}

/* --- Journey steps (1, 2) --- */
.journey__step {
  position: relative;
  padding-left: var(--space-6);
  padding-bottom: var(--space-10);
}

.journey__step:last-child {
  padding-bottom: 0;
}

.journey__marker {
  position: absolute;
  left: -31px;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #D4633D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px var(--color-bg), var(--shadow-md);
  z-index: 1;
}

.journey__marker-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-base);
  color: #fff;
  line-height: 1;
}

.journey__connector {
  position: absolute;
  left: -10px;
  top: 42px;
  bottom: 0;
  width: 2px;
  /* No extra connector needed; the main timeline line handles this */
  display: none;
}

.journey__body {
  padding-top: var(--space-1);
}

.journey__tag {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--space-2);
}

.journey__body h3 {
  font-size: var(--text-xl);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.journey__lead {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  font-weight: 400;
  max-width: 56ch;
}

.journey__body ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.journey__body li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  position: relative;
  line-height: 1.5;
}

.journey__body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.4;
}

@media (max-width: 768px) {
  .journey {
    padding-left: 32px;
  }

  .journey::before {
    left: 15px;
  }

  .journey__marker {
    left: -25px;
    width: 34px;
    height: 34px;
  }

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

  .journey__branch {
    padding-left: var(--space-4);
  }

  .journey__branch-line {
    left: -17px;
    width: 22px;
  }

  .journey__branch-card {
    padding: var(--space-4) var(--space-5);
  }
}

/* =========================================
   WHAT YOU GET EVERY QUARTER - CLEAN LIST
   ========================================= */

.quarterly-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--color-surface-2);
  border-radius: var(--radius-xl);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.quarterly-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-surface-offset);
  transition: background var(--transition-interactive);
}

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

.quarterly-item:hover {
  background: var(--color-surface-offset);
}

.quarterly-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.quarterly-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quarterly-item__text h3 {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.quarterly-item__text p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .quarterly-item {
    padding: var(--space-4);
    gap: var(--space-3);
  }
}

/* =========================================
   TURN YOUR IMPACT - EDITORIAL LAYOUT
   ========================================= */

.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.editorial__lead {
  position: sticky;
  top: calc(var(--space-16) + var(--space-8));
}

.editorial__lead h2 {
  margin-bottom: var(--space-4);
}

.editorial__lead p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 48ch;
}

.editorial__benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.editorial__benefit {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.editorial__benefit-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--color-primary);
  opacity: 0.18;
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}

.editorial__benefit h3 {
  font-size: var(--text-base);
  color: var(--color-text);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-1);
}

.editorial__benefit p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

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

  .editorial__lead {
    position: static;
    text-align: center;
  }

  .editorial__lead p {
    margin-inline: auto;
  }

  .editorial__benefit-num {
    font-size: var(--text-xl);
    min-width: 36px;
  }
}

/* =========================================
   WHO SEES THE DIFFERENCE - COMPACT STRIP
   ========================================= */

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

.who-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-2);
}

.who-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.who-item h3 {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: 0.02em;
  text-transform: none;
}

.who-item p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 28ch;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .who-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .who-strip {
    grid-template-columns: 1fr;
  }
}

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

.cta-section {
  background: var(--color-surface);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: var(--space-4);
}

.cta-section .cta-text {
  margin-inline: auto;
  max-width: 52ch;
  margin-bottom: var(--space-8);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.cta-email {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.cta-email a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.cta-email a:hover {
  text-decoration: underline;
}

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

.site-footer {
  background: var(--color-surface);
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-divider);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.footer-content p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer-content a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.footer-content a:hover {
  color: var(--color-primary);
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */

/* Reveal: visible by default, JS adds .js-reveal-init to hide them */
.reveal {
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal-init .reveal {
  opacity: 0;
}

.js-reveal-init .reveal--visible {
  opacity: 1;
}

/* Stagger children */
.reveal-stagger > .reveal {
  transition-delay: calc(var(--stagger-index, 0) * 80ms);
}
