/* ============================================
   Balance Your Wheel of Life — Landing Page
   ============================================ */

:root {
  /* ── Base (80%) — trust, focus, premium feel ── */
  --color-bg: #0d1117;
  --color-bg-alt: #141b24;
  --color-surface: #1a2332;
  --color-surface-raised: #212d3d;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.14);

  /* ── Text ── */
  --color-text: #e8ecf0;
  --color-text-muted: #8b97a8;

  /* ── Gold — conversion only (~5%): Register, price, key emphasis ── */
  --color-cta: #c9a227;
  --color-cta-hover: #dbb43a;
  --color-cta-on: #0d1117;
  --color-cta-glow: rgba(201, 162, 39, 0.28);
  --color-cta-subtle: rgba(201, 162, 39, 0.1);
  --color-cta-border: rgba(201, 162, 39, 0.32);

  /* ── Teal — growth, balance, trust (~15%) ── */
  --color-accent: #2a8475;
  --color-accent-hover: #34a090;
  --color-accent-light: #4ec4b1;
  --color-accent-glow: rgba(42, 132, 117, 0.22);
  --color-accent-subtle: rgba(42, 132, 117, 0.12);
  --color-accent-border: rgba(42, 132, 117, 0.28);

  --color-warm-surface: #d9d4c9;
  --color-primary: var(--color-cta);
  --color-primary-hover: var(--color-cta-hover);

  --color-hero-gradient: linear-gradient(135deg, #141b24 0%, #0d1117 45%, #121820 100%);
  --font-heading: "Montserrat", "Noto Sans Devanagari", sans-serif;
  --font-body: "Open Sans", "Noto Sans Devanagari", sans-serif;
  --font-emphasis: "Kalam", "Noto Sans Devanagari", cursive;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-cta: 0 8px 28px var(--color-cta-glow);
  --shadow-accent: 0 8px 28px var(--color-accent-glow);
  --transition: 0.25s ease;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 520px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(13, 17, 23, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 0.75rem;
}

.logo-block {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

.logo-tag {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }

  .logo {
    font-size: 1rem;
  }

  .logo-tag {
    font-size: 0.7rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--color-cta);
  color: var(--color-cta-on);
  border-color: var(--color-cta);
}

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

.btn:focus {
  outline: none;
}

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

.btn:active {
  transform: none;
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border-strong);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-light);
  background: var(--color-accent-subtle);
}

.btn-dark {
  background: var(--color-bg-alt);
  color: var(--color-text);
  border-color: var(--color-border-strong);
}

.btn-dark:hover {
  background: var(--color-surface);
  border-color: var(--color-accent-border);
  color: var(--color-accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

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

.btn-accent:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-height) + 2.5rem) 0 3rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-hero-gradient);
  pointer-events: none;
  overflow: hidden;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, var(--color-cta-subtle) 0%, transparent 70%);
  z-index: 1;
}

/* Decorative wheel vector art */
.wheel-art {
  display: block;
  user-select: none;
  pointer-events: none;
}

.wheel-art--hero {
  position: absolute;
  width: min(520px, 70vw);
  opacity: 0.14;
}

.wheel-art--hero-left {
  top: 8%;
  left: -12%;
  animation: wheelDriftLeft 50s linear infinite;
}

.wheel-art--hero-right {
  bottom: -8%;
  right: -10%;
  width: min(420px, 55vw);
  opacity: 0.1;
  animation: wheelDriftRight 65s linear infinite reverse;
}

@keyframes wheelDriftLeft {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes wheelDriftRight {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.wheel-art--cta {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(360px, 80vw);
  transform: translate(-50%, -50%);
  opacity: 0.07;
  animation: wheelDriftLeft 70s linear infinite;
}

.wheel-art--footer {
  width: 40px;
  margin: 0 auto 1rem;
  opacity: 0.75;
}

.hero-inner {
  width: 100%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    align-items: center;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content > p {
  color: var(--color-text-muted);
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
  line-height: 1.65;
}

.hero-tagline {
  font-weight: 600;
  color: var(--color-text) !important;
  font-size: 1rem;
  margin: 1.25rem 0 1.75rem !important;
  padding-left: 1rem;
  border-left: 3px solid var(--color-accent);
}

.hero-cta,
.section-cta,
.register-card-action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
}

.hero-cta .btn,
.section-cta .btn,
.register-card-cta,
.offer-cta {
  width: 100%;
}

.section-cta {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 640px) {
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-cta);
  background: var(--color-cta-subtle);
  border: 1px solid var(--color-cta-border);
  border-radius: 100px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.text-accent,
.emphasis {
  color: var(--color-cta);
  font-family: var(--font-emphasis);
  font-weight: 700;
}

.hero-lead {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  color: var(--color-text);
}

.price-amount {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-cta);
}

.stat {
  text-align: center;
  padding: 1rem 0.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent-light);
  margin-bottom: 0.25rem;
}

.stat--cta .stat-value {
  color: var(--color-cta);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

/* Wheel Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-visual {
    justify-content: flex-end;
    padding-right: 0.5rem;
  }

  .hero-content {
    padding-left: 0.5rem;
  }
}

.wheel-interactive {
  position: relative;
  width: min(440px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.wheel-stage {
  position: relative;
  width: min(420px, 92vw);
  height: min(420px, 92vw);
  margin: 0 auto;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
}

.wheel-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform-origin: center center;
  will-change: transform;
}

.wheel-ring--spin {
  animation: wheelSpin 24s linear infinite;
  filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.12));
  z-index: 0;
}

.wheel-interactive.is-paused .wheel-ring--spin {
  animation-play-state: paused;
}

.wheel-interactive.is-detail-open .wheel-ring--spin {
  filter: drop-shadow(0 0 28px rgba(201, 162, 39, 0.35));
}

@keyframes wheelSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .wheel-ring--spin,
  .wheel-art--hero,
  .wheel-art--cta {
    animation: none;
  }
}

.wheel-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.wheel-hitmap {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  pointer-events: all;
}

#wheelSvg {
  pointer-events: none;
}

.wheel-slice-color {
  stroke: rgba(30, 40, 55, 0.12);
  stroke-width: 1;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.wheel-slice-color.is-active {
  filter: brightness(1.04) saturate(0.85);
}

.wheel-interactive.is-detail-open .wheel-slice-color:not(.is-active) {
  opacity: 0.5;
}

.wheel-slice-hit {
  fill: transparent;
  stroke: none;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.wheel-slice-hit:focus,
.wheel-slice-hit:focus-visible {
  outline: none;
}

.wheel-label {
  fill: #1e2836;
  font-family: var(--font-body);
  font-size: 5.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  pointer-events: none;
  text-anchor: middle;
  dominant-baseline: middle;
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28%;
  height: 28%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border-radius: 50%;
  border: 2px solid var(--color-cta);
  z-index: 4;
  cursor: default;
  pointer-events: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 0 0 5px rgba(13, 17, 23, 0.95);
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.wheel-interactive.is-detail-open .wheel-center {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(13, 17, 23, 0.95), 0 0 16px var(--color-accent-glow);
}

.wheel-center span {
  font-family: var(--font-heading);
  font-size: clamp(0.7rem, 2.5vw, 0.85rem);
  font-weight: 700;
  color: var(--color-cta);
  text-align: center;
  pointer-events: none;
}

.pillar-panel {
  width: 100%;
  margin-top: 1rem;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-lg);
  text-align: center;
  animation: panelIn 0.25s ease;
}

.pillar-panel[hidden] {
  display: none;
}

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

.pillar-panel-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.pillar-panel-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.pillar-panel-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Sections */
.section {
  padding: 5rem 0;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 0.85rem auto 0;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  border-radius: 2px;
  opacity: 0.85;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.section-closing {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-closing.accent {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.section-closing.accent .emphasis {
  color: var(--color-cta);
}

.section-intro {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 280px;
  margin: 0 auto;
  padding: 0.25rem 0;
}

.section-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.45;
}

.section-divider-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  opacity: 0.65;
  filter: drop-shadow(0 0 8px var(--color-accent-glow));
}

.section-divider--wheel:hover .section-divider-icon {
  opacity: 1;
  transform: rotate(72deg);
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.section-divider--wheel .section-divider-icon {
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.subsection-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 2.5rem 0 1.5rem;
  color: var(--color-text);
}

/* Challenge Cards */
.challenge-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .challenge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .challenge-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.challenge-card {
  padding: 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}

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

.challenge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.45;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.challenge-card h3 {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.challenge-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Framework */
.framework-intro {
  max-width: 640px;
  margin: 0 auto 1rem;
  text-align: center;
}

.framework-intro p {
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.framework-highlight {
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  color: var(--color-text) !important;
  margin-top: 1.5rem !important;
  line-height: 1.5;
  padding: 1rem 1.25rem;
  background: var(--color-accent-subtle);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Check Lists */
.check-list {
  max-width: 680px;
  margin: 0 auto;
}

.check-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(-45deg);
}

.check-list.two-col {
  display: grid;
  max-width: 800px;
}

@media (min-width: 640px) {
  .check-list.two-col {
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
  }
}

.highlight-box {
  max-width: 680px;
  margin: 2.5rem auto 0;
  padding: 2rem;
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.highlight-box p + p {
  margin-top: 1rem;
  color: var(--color-text-muted);
}

/* Pillars */
.pillars-intro {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: -0.75rem auto 0;
}

.pillars-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .pillars-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.75rem;
  }

  .pillar-card:nth-child(1) { grid-column: 1 / 3; }
  .pillar-card:nth-child(2) { grid-column: 3 / 5; }
  .pillar-card:nth-child(3) { grid-column: 5 / 7; }
  .pillar-card:nth-child(4) { grid-column: 2 / 4; }
  .pillar-card:nth-child(5) { grid-column: 4 / 6; }
}

.pillar-card {
  position: relative;
  padding: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color var(--transition),
    box-shadow 0.35s ease;
  overflow: hidden;
  cursor: default;
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--pillar-color) 70%, transparent),
    transparent 50%,
    color-mix(in srgb, var(--pillar-color) 30%, transparent)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 2;
}

.pillar-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: color-mix(in srgb, var(--pillar-color) 45%, transparent);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 40px color-mix(in srgb, var(--pillar-color) 18%, transparent);
}

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

.pillar-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.pillar-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 20, 25, 0.92) 0%,
    rgba(15, 20, 25, 0.55) 45%,
    rgba(15, 20, 25, 0.15) 100%
  );
  transition: background 0.35s ease;
  pointer-events: none;
}

.pillar-card:hover .pillar-card-image::after {
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--pillar-color) 35%, rgba(15, 20, 25, 0.95)) 0%,
    rgba(15, 20, 25, 0.6) 50%,
    rgba(15, 20, 25, 0.2) 100%
  );
}

.pillar-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.pillar-card:hover .pillar-card-image img {
  transform: scale(1.08);
  filter: brightness(1.06) saturate(1.12);
}

.pillar-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.35rem;
  pointer-events: none;
}

.pillar-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.pillar-card-hook {
  font-size: 0.85rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--pillar-color) 30%, #fff);
  opacity: 0.9;
  transform: translateY(4px);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.pillar-card:hover .pillar-card-hook {
  transform: translateY(0);
  opacity: 1;
}

.pillar-card-body {
  position: relative;
  padding: 1.15rem 1.35rem 1.35rem;
  border-top: 1px solid var(--color-border);
}

.pillar-card-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.35rem;
  width: 2.5rem;
  height: 3px;
  background: var(--pillar-color);
  border-radius: 0 0 3px 3px;
  transition: width 0.35s ease;
}

.pillar-card:hover .pillar-card-body::before {
  width: 4rem;
}

.pillar-card-body p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.pillar-card:hover .pillar-card-body p {
  color: var(--color-text);
}

.pillar-card.reveal:nth-child(1) { transition-delay: 0s; }
.pillar-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.pillar-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.pillar-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.pillar-card.reveal:nth-child(5) { transition-delay: 0.32s; }

/* Vision */
.vision-list {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.vision-list li {
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  font-weight: 500;
}

/* Journey Accordion */
#journey {
  background: var(--color-warm-surface);
}

#journey .section-title {
  color: #2a3342;
}

#journey .section-subtitle {
  color: #5c6778;
}

#journey .journey-week-trigger {
  color: #fff;
}

#journey .journey-week-panel-inner p {
  color: #fff;
}

.journey-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
  margin: 2.5rem auto 0;
}

.journey-week {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  border-left: 4px solid var(--week-color, var(--color-accent));
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.journey-week.is-open {
  border-color: color-mix(in srgb, var(--week-color) 40%, transparent);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--week-color) 15%, transparent);
}

.journey-week-trigger {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}

.journey-week-trigger:hover {
  background: color-mix(in srgb, var(--week-color) 8%, transparent);
}

.journey-week-badge {
  flex-shrink: 0;
  min-width: 72px;
  padding: 0.4rem 0.85rem;
  background: var(--week-color);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 100px;
}

.journey-week-title {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

.journey-week-chevron {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--week-color);
  border-bottom: 2px solid var(--week-color);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 0.25rem;
}

.journey-week.is-open .journey-week-chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.journey-week-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.journey-week.is-open .journey-week-panel {
  grid-template-rows: 1fr;
}

.journey-week-panel-inner {
  overflow: hidden;
}

.journey-week-panel-inner p {
  padding: 0 1.25rem 1.25rem;
  margin-left: calc(72px + 1rem);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  border-left: 2px solid color-mix(in srgb, var(--week-color) 50%, transparent);
  padding-left: 1rem;
}

@media (max-width: 767px) {
  .journey-week-trigger {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
  }

  .journey-week-title {
    font-size: 0.92rem;
    line-height: 1.35;
    min-width: 0;
  }

  .journey-week-badge {
    min-width: 64px;
    padding: 0.35rem 0.65rem;
    font-size: 0.68rem;
  }

  .journey-week-panel-inner p {
    margin-left: 0;
    padding: 0 1rem 1rem;
    font-size: 0.88rem;
  }

  .journey-accordion {
    margin-top: 1.75rem;
    gap: 0.5rem;
  }
}

.journey-week--finish .journey-week-badge {
  min-width: 96px;
}

/* Gain List */
.gain-list {
  max-width: 720px;
  margin: 2rem auto 0;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .gain-list {
    grid-template-columns: 1fr 1fr;
  }

  .gain-list li:last-child {
    grid-column: 1 / -1;
  }
}

.gain-list li {
  position: relative;
  padding: 1rem 1rem 1rem 2.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.gain-list li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 1.15rem;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(-45deg);
}

/* Compare Table */
.compare-table {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 2.5rem auto 0;
}

@media (min-width: 640px) {
  .compare-table {
    grid-template-columns: 1fr 1fr;
  }
}

.compare-col {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.compare-other {
  background: linear-gradient(160deg, var(--color-accent-subtle), rgba(26, 35, 50, 0.6));
  border-color: var(--color-accent-border);
}

.compare-other h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-accent-light);
  margin-bottom: 1.25rem;
  text-align: center;
}

.compare-other li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.75rem;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--color-border);
}

.compare-other li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(-45deg);
}

.compare-ours {
  background: var(--color-warm-surface);
  border-color: rgba(13, 17, 23, 0.14);
}

.compare-ours h3 {
  font-size: 1rem;
  color: #3a4049;
  margin-bottom: 1.25rem;
  text-align: center;
}

.compare-ours li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.5rem;
  color: #454d58;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(13, 17, 23, 0.1);
}

.compare-ours li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 2px;
  background: #6b7280;
  opacity: 0.75;
}

/* Mentor */
.mentor-card {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 2.5rem auto 0;
  padding: 2.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

@media (min-width: 640px) {
  .mentor-card {
    grid-template-columns: auto 1fr;
    align-items: start;
  }
}

.mentor-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-shrink: 0;
}

.mentor-avatar span {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.mentor-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .mentor-info h3 {
    text-align: left;
  }
}

.mentor-role {
  color: var(--color-accent-light);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

@media (min-width: 640px) {
  .mentor-role {
    text-align: left;
  }
}

.mentor-bio {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.mentor-quote {
  font-style: italic;
  font-weight: 500;
  margin: 1.25rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--color-accent);
}

.mentor-stat .stat-value {
  color: var(--color-accent-light);
}

.mentor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

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

.mentor-stat .stat-value {
  font-size: 1.25rem;
}

.outcomes-closing {
  text-align: center;
  font-weight: 600;
  margin: 2rem 0 0.5rem;
}

/* Benefits */
.benefits-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-card {
  padding: 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.benefit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent-light);
}

.benefit-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.benefit-wide {
  grid-column: 1 / -1;
  text-align: center;
  background: var(--color-accent-subtle);
  border-color: var(--color-accent-border);
}

/* Outcomes */
.outcomes-list {
  max-width: 720px;
  margin: 2rem auto 0;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .outcomes-list {
    grid-template-columns: 1fr 1fr;
  }
}

.outcomes-list li {
  padding: 1rem 1rem 1rem 2.25rem;
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.outcomes-list li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 1.25rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* Enrollment Bonus Offer */
#bonus-offer {
  text-align: center;
}

.offer-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  background: var(--color-cta-subtle);
  border: 1px solid var(--color-cta-border);
  border-radius: 100px;
  color: var(--color-cta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-card {
  max-width: 720px;
  margin: 2.5rem auto 0;
  padding: 2rem 1.75rem;
  text-align: center;
  background: linear-gradient(165deg, var(--color-surface-raised) 0%, var(--color-surface) 100%);
  border: 1px solid var(--color-cta-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), var(--shadow-cta);
}

.offer-value {
  margin-bottom: 1.75rem;
  padding: 1.25rem 1rem;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--color-cta-border);
  border-radius: var(--radius);
}

.offer-value-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.offer-value-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-cta);
  line-height: 1.1;
}

.offer-value-free {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent-light);
}

.offer-courses {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  text-align: left;
}

.offer-courses li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
}

.offer-courses li:last-child {
  border-bottom: none;
}

.offer-course-name {
  flex: 1 1 200px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}

.offer-course-worth {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.offer-note {
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.offer-cta {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-cta);
}

@media (min-width: 640px) {
  .offer-card {
    padding: 2.25rem 2.5rem;
  }
}

/* Pricing */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  padding: 2.5rem;
  text-align: center;
  background: var(--color-surface);
  border: 2px solid var(--color-cta-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), 0 0 0 1px var(--color-cta-subtle);
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.pricing-amount {
  margin-bottom: 1.5rem;
}

.pricing-amount .price-amount {
  display: block;
  font-size: 2.75rem;
  color: var(--color-cta);
  font-family: var(--font-heading);
  font-weight: 700;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(-45deg);
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, rgba(42, 132, 117, 0.08) 55%, var(--color-bg) 100%);
  padding: 5rem 0 6rem;
}

.final-cta > .container {
  position: relative;
  z-index: 1;
}

.register-card {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 1.5rem 1.75rem;
  text-align: center;
  background: linear-gradient(165deg, var(--color-surface-raised) 0%, var(--color-surface) 100%);
  border: 1px solid var(--color-cta-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), var(--shadow-cta), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
}

.register-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.register-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-cta), var(--color-accent));
}

.register-card-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.8rem;
  background: var(--color-cta-subtle);
  border: 1px solid var(--color-cta-border);
  border-radius: 100px;
  color: var(--color-cta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.register-card-copy {
  max-width: 520px;
}

.register-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.3;
  margin-bottom: 0.45rem;
}

.register-card-lead {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 auto;
}

.register-card-lead .emphasis {
  color: var(--color-text);
  font-weight: 600;
}

.register-card-action {
  align-items: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.register-card-price {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.1rem);
  font-weight: 700;
  color: var(--color-cta);
  line-height: 1;
  text-align: center;
}

.register-card-cta {
  width: 100%;
  box-shadow: var(--shadow-cta);
  font-size: 0.88rem;
  line-height: 1.35;
  padding: 0.8rem 1.1rem;
}

.register-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--color-cta-glow);
}

.register-card-urgency {
  margin: 0.85rem auto 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-accent-light);
  font-size: 0.82rem;
  line-height: 1.45;
  max-width: 480px;
}

/* Forms */
.register-form {
  max-width: 560px;
  margin: 2rem auto 0;
  text-align: left;
}

.form-row {
  display: grid;
  gap: 0;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-subtle);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e05c5c;
}

.form-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  padding: 1rem 1.5rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 200;
  transition: transform 0.35s ease;
  max-width: calc(100% - 2rem);
  text-align: center;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.nav-cta {
  display: none;
}

.logo-block {
  min-width: 0;
  flex: 1 1 auto;
  position: relative;
  z-index: 2;
}

.logo {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Navigation — drawer on mobile/tablet, centered bar on desktop */
.nav {
  display: none;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 115;
  background: rgba(8, 11, 16, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.nav-drawer-title,
.nav-links,
.nav-drawer-footer {
  display: none;
}

@media (max-width: 1023px) {
  .header-register {
    display: none;
  }

  body.nav-open .site-header {
    z-index: 125;
  }

  .nav-backdrop {
    display: block;
  }

  .nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: min(300px, 88vw);
    height: calc(100dvh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    padding:
      1rem
      max(1rem, env(safe-area-inset-right))
      max(1.25rem, env(safe-area-inset-bottom))
      1.25rem;
    background: linear-gradient(180deg, var(--color-surface-raised) 0%, var(--color-bg) 100%);
    border-left: 1px solid var(--color-cta-border);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
    z-index: 120;
    overflow: hidden;
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.38s ease;
  }

  .nav-open .nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-drawer-title {
    display: block;
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-cta);
    margin-bottom: 0.85rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border-strong) transparent;
  }

  .nav-links::-webkit-scrollbar {
    width: 4px;
  }

  .nav-links::-webkit-scrollbar-thumb {
    background: var(--color-border-strong);
    border-radius: 100px;
  }

  .nav-links a {
    display: block;
    padding: 0.8rem 0.9rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition:
      background var(--transition),
      border-color var(--transition),
      color var(--transition);
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: var(--color-accent-subtle);
    border-color: var(--color-accent-border);
    color: var(--color-accent-light);
  }

  .nav-drawer-footer {
    display: block;
    flex-shrink: 0;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--color-border);
  }

  .nav .nav-cta {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    padding: 0.9rem 1.15rem;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.35;
    box-shadow: none;
  }

  .nav .nav-cta:hover {
    box-shadow: var(--shadow);
  }
}

@media (min-width: 1024px) {
  .nav-cta {
    display: none !important;
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 50%;
    width: max-content;
    max-width: min(720px, calc(100vw - 26rem));
    height: var(--header-height);
    padding: 0 0.5rem;
    transform: translateX(-50%);
    visibility: visible;
    pointer-events: none;
    z-index: 99;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }

  .nav-drawer-title,
  .nav-drawer-footer {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 1.15rem;
    overflow: visible;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.35rem 0;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-muted);
    border: none;
    border-radius: 0;
    white-space: nowrap;
    transition: color var(--transition);
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: none;
    border-color: transparent;
    color: var(--color-accent-light);
  }
}

/* ── Responsive: mobile & tablet ── */
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }

  .header-inner {
    padding: 0.5rem 0;
  }

  .logo {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .logo-tag {
    display: none;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    padding: 0 0.25rem;
    overflow-wrap: anywhere;
  }

  .final-cta {
    padding: 3rem 0 3.5rem;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 1.25rem) 0 2rem;
    align-items: flex-start;
  }

  .hero-bg {
    overflow: hidden;
  }

  .wheel-art--hero-left {
    width: min(280px, 75vw);
    left: -28%;
    opacity: 0.1;
  }

  .wheel-art--hero-right {
    width: min(220px, 60vw);
    right: -22%;
    opacity: 0.08;
  }

  .hero-grid {
    gap: 1.75rem;
  }

  .hero-content {
    text-align: left;
  }

  .badge {
    display: block;
    font-size: 0.65rem;
    padding: 0.4rem 0.7rem;
    line-height: 1.45;
    white-space: normal;
    text-align: center;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 6.2vw, 1.85rem);
    line-height: 1.3;
  }

  .hero-content > p,
  .hero-lead {
    font-size: 0.9rem;
  }

  .hero-tagline {
    font-size: 0.9rem !important;
    margin: 0.85rem 0 1.15rem !important;
    padding-left: 0.75rem;
  }

  .hero-cta,
  .section-cta,
  .register-card-action,
  .offer-cta-wrap {
    max-width: 100%;
    gap: 0.65rem;
  }

  .hero-cta .btn,
  .section-cta .btn,
  .register-card-cta,
  .offer-cta {
    width: 100%;
    white-space: normal;
    text-align: center;
    min-height: 48px;
    line-height: 1.35;
  }

  .hero-visual {
    width: 100%;
  }

  .stats-bar {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    gap: 0.55rem;
  }

  .stat {
    padding: 0.75rem 0.35rem;
  }

  .stat-value {
    font-size: 0.95rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .wheel-interactive {
    width: 100%;
    max-width: 100%;
  }

  .wheel-stage {
    width: min(300px, 86vw);
    height: min(300px, 86vw);
  }

  .pillar-panel {
    padding: 1rem;
    margin-top: 0.65rem;
  }

  .pillar-panel-title {
    font-size: 1.05rem;
  }

  .pillar-panel-desc {
    font-size: 0.86rem;
  }

  .pillar-card-body {
    padding: 1rem 1.1rem 1.15rem;
  }

  .challenge-card,
  .benefit-card,
  .compare-col,
  .mentor-card,
  .pricing-card,
  .offer-card,
  .register-card {
    padding: 1.25rem 1rem;
  }

  .challenge-card h3 {
    font-size: 0.9rem;
  }

  .subsection-title {
    font-size: 1.1rem;
    margin: 1.75rem 0 1rem;
  }

  .mentor-card {
    gap: 1.25rem;
    padding: 1.5rem 1rem;
  }

  .mentor-info h3 {
    font-size: 1.25rem;
  }

  .mentor-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .mentor-stat {
    padding: 0.65rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
  }

  .compare-col h3 {
    font-size: 0.95rem;
  }

  .compare-other li,
  .compare-ours li {
    font-size: 0.88rem;
  }

  #journey {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  #journey .section-subtitle {
    font-size: 0.9rem;
    padding: 0 0.25rem;
  }

  .offer-card {
    margin-top: 1.75rem;
    padding: 1.35rem 1rem;
  }

  .offer-value-amount {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }

  .offer-courses li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0.75rem 0;
  }

  .offer-course-name {
    font-size: 0.88rem;
  }

  .offer-cta-wrap {
    margin-top: 0.25rem;
  }

  .register-card {
    padding: 1.15rem 0.9rem;
  }

  .register-card-title {
    font-size: 1.1rem;
  }

  .register-card-price {
    font-size: 1.65rem;
  }

  .section-subtitle {
    font-size: 0.92rem;
    margin-bottom: 1.35rem;
    padding: 0 0.25rem;
  }

  .framework-highlight {
    font-size: 0.95rem !important;
    padding: 0.8rem 0.9rem;
  }

  .highlight-box {
    padding: 1.2rem;
  }

  .gain-list li {
    font-size: 0.88rem;
    padding: 0.9rem 0.9rem 0.9rem 2rem;
  }

  .site-footer {
    padding: 2.25rem 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .logo-tag {
    font-size: 0.62rem;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 1.75rem) 0 2.75rem;
  }

  .hero-grid {
    gap: 2.25rem;
  }

  .wheel-stage {
    width: min(360px, 65vw);
    height: min(360px, 65vw);
  }

  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .hero-cta .btn {
    flex: 1 1 calc(50% - 0.375rem);
    min-width: 0;
  }

  .section-cta,
  .register-card-action,
  .offer-cta-wrap {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding: 3.75rem 0;
  }

  .mentor-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .mentor-stat .stat-value {
    font-size: 1.05rem;
  }

  .offer-card {
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 1023px) {
  .btn {
    white-space: normal;
  }

  .btn-lg {
    padding: 0.9rem 1.25rem;
    font-size: 0.92rem;
  }

  .section-intro,
  .pillars-intro,
  .framework-intro {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .section-closing {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 1rem;
  }

  .check-list li {
    font-size: 0.9rem;
    padding-left: 1.75rem;
  }

  .vision-list li {
    font-size: 0.9rem;
  }
}

@media (hover: none) {
  .challenge-card:hover,
  .pillar-card:hover,
  .register-card-cta:hover {
    transform: none;
  }

  .pillar-card:hover .pillar-card-image img {
    transform: none;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
