:root {
  --bg: #0b1220;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.58);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

  --accent: #7dd3fc;
  --accent-2: #a78bfa;
  --accent-3: #34d399;
  --glow: rgba(125, 211, 252, 0.22);
  --glow-2: rgba(167, 139, 250, 0.22);

  --radius: 16px;
  --radius-sm: 12px;
  --container: 1120px;

  --focus: 0 0 0 3px rgba(125, 211, 252, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 18% 8%, rgba(167, 139, 250, 0.20), transparent 58%),
    radial-gradient(1100px 650px at 86% 18%, rgba(125, 211, 252, 0.18), transparent 58%),
    radial-gradient(1000px 680px at 55% 96%, rgba(52, 211, 153, 0.10), transparent 62%),
    radial-gradient(800px 520px at 55% 55%, rgba(255, 255, 255, 0.04), transparent 60%),
    linear-gradient(180deg, #070b14 0%, #0b1220 38%, #070a12 100%);
  line-height: 1.55;
}

.section {
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      900px 420px at 15% 0%,
      rgba(125, 211, 252, 0.05),
      transparent 55%
    ),
    radial-gradient(
      720px 420px at 85% 100%,
      rgba(167, 139, 250, 0.045),
      transparent 55%
    );
  opacity: 0.55;
}

.section > .container {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  transform: translateY(-140%);
  transition: transform 140ms ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: var(--focus);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  --section-pad: 72px;
  padding: var(--section-pad) 0;
}

.section--hero {
  --section-pad: 80px;
  padding-bottom: 88px;
}

.section--flow {
  --section-pad: 64px;
}

.section--learn {
  --section-pad: 72px;
}

.section--how {
  --section-pad: 64px;
}

.section--pricing {
  --section-pad: 72px;
  padding-bottom: 48px;
}

.section-muted {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.025),
    rgba(255, 255, 255, 0.008)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.section-muted::before {
  opacity: 0.7;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  max-width: 640px;
}

.section-bridge {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
  max-width: 52ch;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.25;
}

.section-intro {
  color: var(--muted);
  max-width: 70ch;
  margin: 0;
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11, 18, 32, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header[data-elevated="true"] {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 24px rgba(125, 211, 252, 0.14);
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-nav > a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 10px;
}
.site-nav > a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.site-nav > a:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.95), rgba(167, 139, 250, 0.95));
  color: rgba(10, 14, 24, 0.92);
}
.btn-primary:hover {
  filter: brightness(1.03);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-full {
  width: 100%;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.nav-toggle-bars {
  width: 18px;
  height: 2px;
  position: relative;
  display: inline-block;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 5px 0 rgba(255, 255, 255, 0.85),
    0 10px 0 rgba(255, 255, 255, 0.85);
}

.hero {
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.hero-headline {
  font-size: clamp(2.1rem, 3.6vw, 3.05rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.hero-program {
  margin: 10px 0 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px 0;
  color: var(--muted);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.subhead {
  margin: 12px 0 0 0;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 38ch;
  line-height: 1.45;
}

.hero-meta {
  margin-top: 16px;
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.hero-meta__title {
  margin: 0 0 8px 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.hero-meta__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-meta__rows {
  margin-top: 12px;
}

.row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.row:first-child {
  border-top: 0;
  padding-top: 0;
}

.row-k {
  color: var(--muted-2);
  font-weight: 650;
  font-size: 0.85rem;
}

.row-v {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-values {
  list-style: none;
  margin: 22px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 52ch;
}

.hero-values li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.45;
}

.hero-values__mark {
  width: 6px;
  height: 6px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.12);
}

.hero-chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 56ch;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.chip:nth-child(1) {
  border-color: rgba(125, 211, 252, 0.22);
  background: rgba(125, 211, 252, 0.07);
}
.chip:nth-child(2) {
  border-color: rgba(167, 139, 250, 0.22);
  background: rgba(167, 139, 250, 0.06);
}
.chip:nth-child(3) {
  border-color: rgba(52, 211, 153, 0.18);
  background: rgba(52, 211, 153, 0.06);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-aside {
  position: relative;
}

.hero-visual {
  height: 230px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: radial-gradient(
      500px 260px at 25% 35%,
      rgba(125, 211, 252, 0.20),
      transparent 62%
    ),
    radial-gradient(
      520px 280px at 75% 40%,
      rgba(167, 139, 250, 0.18),
      transparent 62%
    ),
    radial-gradient(
      500px 280px at 55% 80%,
      rgba(52, 211, 153, 0.10),
      transparent 64%
    ),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
  overflow: hidden;
  position: relative;
}

.orb {
  position: absolute;
  border-radius: 999px;
  opacity: 0.9;
  mix-blend-mode: screen;
}
.orb--a {
  width: 220px;
  height: 220px;
  left: -50px;
  top: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(125, 211, 252, 0.9), rgba(125, 211, 252, 0.0) 70%);
}
.orb--b {
  width: 260px;
  height: 260px;
  right: -70px;
  top: -70px;
  background: radial-gradient(circle at 35% 35%, rgba(167, 139, 250, 0.85), rgba(167, 139, 250, 0.0) 70%);
}
.orb--c {
  width: 180px;
  height: 180px;
  right: 60px;
  bottom: -60px;
  background: radial-gradient(circle at 35% 35%, rgba(52, 211, 153, 0.55), rgba(52, 211, 153, 0.0) 70%);
}
.orb--d {
  width: 140px;
  height: 140px;
  left: 90px;
  top: -40px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.0) 70%);
  opacity: 0.55;
}

.gridlines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 45%, rgba(0,0,0,0.9), transparent 70%);
  opacity: 0.25;
}

.hero-aside-card {
  border-radius: var(--radius);
  padding: 20px 20px 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.hero-aside__title {
  margin: 0 0 14px 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.hero-aside__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-aside__list li {
  padding-left: 14px;
  border-left: 2px solid rgba(125, 211, 252, 0.35);
}

.hero-aside__hint {
  margin: 14px 0 0 0;
  color: var(--muted-2);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero-support-strip {
  margin: 22px auto 0 auto;
  width: min(var(--container), calc(100% - 40px));
  text-align: center;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.01em;
}

.hero-support-strip::before {
  content: "";
  display: block;
  height: 1px;
  width: min(680px, 92%);
  margin: 0 auto 14px auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.16),
    transparent
  );
  opacity: 0.7;
}

.highlights {
  list-style: none;
  padding: 0;
  margin: 22px 0 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.highlights li {
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.hl-value {
  display: block;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hl-label {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 2px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.card-grid--why {
  gap: 12px;
}

.card--compact {
  padding: 16px 16px 17px;
}

.card--compact h3 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.card--compact p {
  margin: 8px 0 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.095);
  padding: 18px;
}

.card--glow {
  position: relative;
  overflow: hidden;
}

.card--glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(
      420px 220px at 15% 0%,
      rgba(125, 211, 252, 0.12),
      transparent 55%
    ),
    radial-gradient(
      420px 220px at 85% 100%,
      rgba(167, 139, 250, 0.10),
      transparent 55%
    );
  opacity: 0.75;
  pointer-events: none;
}

.card--glow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.card--glow > * {
  position: relative;
  z-index: 1;
}

.micro {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.70);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card p {
  margin: 10px 0 0 0;
  color: var(--muted);
}

.card-program {
  grid-column: span 6;
  padding: 16px 16px 17px;
}

.week-body {
  margin-top: 10px;
}

.label {
  margin: 0 0 6px 0;
  color: var(--muted-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.week-cols {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
}

.week-col {
  padding: 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.week-col .bullets {
  margin-top: 8px;
}

@media (min-width: 981px) {
  .program-grid .card-program:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 560px;
    margin-inline: auto;
  }
}

.week {
  margin: 0;
  font-weight: 700;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.88);
}

.bullets {
  margin: 12px 0 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li {
  margin: 6px 0;
}

.bullets--tight li {
  margin: 8px 0;
}

.bullets--tight {
  font-size: 0.9rem;
  line-height: 1.45;
}

.outcomes {
  margin-top: 22px;
  border-radius: var(--radius);
  padding: 14px 16px 16px;
  background: rgba(125, 211, 252, 0.06);
  border: 1px solid rgba(125, 211, 252, 0.14);
}

.outcomes--compact {
  margin-top: 20px;
}

.outcomes-title {
  margin: 0 0 10px 0;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.outcomes-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.outcomes-chips li {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 4px 0 0 0;
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.timeline--compact .timeline-item {
  padding: 12px 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.085);
}

.step {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(167, 139, 250, 0.10);
  border: 1px solid rgba(167, 139, 250, 0.22);
  font-weight: 800;
  font-size: 0.9rem;
}

.timeline-body h3 {
  margin: 2px 0 0 0;
  font-size: 0.98rem;
}

.timeline-body p {
  margin: 4px 0 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
  align-items: start;
}

.pricing-card {
  position: sticky;
  top: 86px;
  padding: 18px;
}

.takeaway {
  margin: 10px 0 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.9rem;
  line-height: 1.45;
}

.pricing-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.pricing-label {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-value {
  margin: 8px 0 0 0;
  font-size: 1.95rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pricing-sub {
  margin: 2px 0 0 0;
  color: var(--muted);
  font-weight: 600;
}

.pricing-badge {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.10);
  border: 1px solid rgba(52, 211, 153, 0.20);
  font-weight: 700;
  font-size: 0.9rem;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  margin: 16px 0;
}

.pricing-included-title {
  margin: 0;
  font-weight: 800;
}

.included {
  margin: 12px 0 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.included li {
  margin: 8px 0;
}

.included--tight {
  list-style: none;
  padding-left: 0;
}

.included--tight li {
  margin: 10px 0;
  padding-left: 14px;
  border-left: 2px solid rgba(125, 211, 252, 0.25);
  font-size: 0.9rem;
  line-height: 1.45;
}

.included--tight li:first-child {
  margin-top: 0;
}

.pricing-footnote {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
}

.cta-stack {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.cta-note {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.9rem;
}

.who-card {
  display: grid;
  gap: 14px;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  display: grid;
  gap: 10px;
}

.link-label {
  color: var(--muted);
  font-weight: 600;
  margin-right: 8px;
}

.inline-code {
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.86);
  display: inline-block;
  max-width: 100%;
  overflow-x: auto;
}

.site-footer {
  padding: 26px 0 10px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.footer-brand {
  margin: 0;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

.footer-meta {
  margin: 0;
}

/* Motion language */
[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(6px);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity, filter;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

[data-depth] {
  transform: perspective(1200px) rotateX(16deg) translateY(16px) scale(0.96);
  transform-origin: 50% 0%;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

[data-depth].is-visible {
  transform: perspective(1200px) rotateX(0deg) translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  [data-depth] {
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    position: static;
  }
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card-program {
    grid-column: span 12;
  }
  .week-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .section {
    --section-pad: 56px;
    padding: var(--section-pad) 0;
  }

  .section--hero {
    padding-bottom: 64px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 66px 14px auto 14px;
    border-radius: 18px;
    padding: 14px;
    background: rgba(11, 18, 32, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a {
    padding: 10px 12px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 6px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .highlights {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 200px;
  }
}
