/* ── DESIGN TOKENS ── */
:root {
  --ink: #0a0a0f;
  --ivory: #f5f2eb;
  --cream: #faf8f3;
  --accent: #e8531a;
  --accent-light: rgba(232, 83, 26, 0.12);
  --accent-mid: rgba(232, 83, 26, 0.25);
  --muted: #6b6760;
  --border: rgba(10, 10, 15, 0.1);
  --border-strong: rgba(10, 10, 15, 0.15);
  --white: #ffffff;
  --nav-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  /* overflow-x: clip avoids clipping position:fixed elements (Safari bug with hidden) */
  overflow-x: clip;
  /* Prevent layout shift from scrollbar appearing */
  scrollbar-gutter: stable;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── ACCESSIBILITY: skip navigation ── */
.skip-nav {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
}
.skip-nav:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 0 0 0.5rem 0;
  outline: none;
}

/* ── ACCESSIBILITY: focus styles ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── NAV ── */
nav {
  position: fixed;
  /* top: 0; */
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--nav-h);
  padding: 0 5%;
  background: rgba(250, 248, 243, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.logo-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo-text span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--ink);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition:
    filter 0.2s,
    transform 0.15s;
}
.nav-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 0.5rem;
  padding: 0.45rem 0.55rem;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.15s;
  line-height: 0;
}
.nav-toggle:hover {
  background: var(--border);
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  background: var(--ink);
  color: #fff;
  padding: calc(var(--nav-h) + 4rem) 5% 5rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 80% 50%,
    rgba(232, 83, 26, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
  will-change: transform; /* isolate compositing layer */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease both;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    filter 0.2s,
    transform 0.2s;
  box-shadow: 0 4px 20px rgba(232, 83, 26, 0.4);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-accent:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
/* Small variant for strip CTAs */
.btn-accent--sm {
  font-size: 0.85rem;
  padding: 0.65rem 1.4rem;
  box-shadow: none;
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.9rem 1.8rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 2rem;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.hero-bullet::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Hero right panel */
.hero-right {
  position: relative;
  z-index: 1;
  animation: fadeLeft 0.8s 0.3s ease both;
}
.hero-earlybird {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.eb-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.4rem;
}
.eb-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.eb-main {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
}
.eb-strike {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.cd-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.6rem;
  padding: 0.6rem 0.4rem;
  text-align: center;
}
.cd-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-label {
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.2rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.hs-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}
.hs-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}
.hs-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.2rem;
}

/* ── STRIP CTA ── */
.strip-cta {
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 5%;
  gap: 2rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-strong);
}
.strip-cta p {
  font-size: 0.95rem;
  color: var(--muted);
}
.strip-cta strong {
  color: var(--ink);
  font-weight: 600;
}

/* ── SECTION UTILITIES ── */
section {
  padding: 6rem 5%;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 0.75rem;
  font-weight: 300;
}
/* Centred section header wrapper */
.section-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ── WHY ── */
.why {
  background: var(--white);
}
.why-header {
  max-width: 680px;
  margin-bottom: 3.5rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--cream);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}
.why-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── WHO ── */
.who {
  background: var(--cream);
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.2s;
}
.who-card:hover {
  transform: translateY(-3px);
}
.who-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}
.badge-rec {
  background: var(--accent-light);
  color: var(--accent);
}
.badge-new {
  background: rgba(26, 62, 232, 0.1);
  color: #1a3ee8;
}
.badge-early {
  background: rgba(45, 138, 78, 0.1);
  color: #2d8a4e;
}
.who-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.who-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}
.who-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CURRICULUM ── */
.curriculum {
  background: var(--white);
}
.curr-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 2rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.curr-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Week navigation dots */
.week-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  /* Hide scrollbar visually but keep function */
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
.week-dots::-webkit-scrollbar {
  height: 3px;
}
.week-dots::-webkit-scrollbar-track {
  background: transparent;
}
.week-dots::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 2px;
}
.wd {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  user-select: none;
}
.wd.active,
.wd:hover {
  background: var(--accent);
}
.wd-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  min-width: 12px;
  max-width: 36px;
  flex-shrink: 0;
}

/* Accordion */
.curr-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}
.curr-item {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.curr-item:last-child {
  border-bottom: none;
}
.curr-item.open {
  background: var(--cream);
}

/* Button reset + accordion header styles */
.curr-head {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-align: left;
  width: 100%;
  /* Layout */
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  transition: background 0.15s;
  position: relative;
}
.curr-head:hover {
  background: var(--ivory);
}
.curr-item.open .curr-head {
  background: var(--cream);
}

.curr-week-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 58px;
  padding-top: 0.15rem;
  flex-shrink: 0;
}
.curr-head-text {
  flex: 1;
}
.curr-head-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.curr-head-sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}
.curr-chevron {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.2rem;
  flex-shrink: 0;
  transition: transform 0.25s;
  margin-left: 0.5rem;
}
.curr-item.open .curr-chevron {
  transform: rotate(180deg);
}

/* Accordion body */
.curr-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.curr-item.open .curr-body {
  max-height: 1400px;
}
.curr-body-inner {
  padding: 0 1.5rem 2rem 5rem;
}

.curr-learn-label,
.curr-tools-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.curr-learn-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.curr-learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.55;
}
.curr-learn-list li::before {
  content: "•";
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1.3;
  flex-shrink: 0;
}
.curr-tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
.tool-chip-dark {
  background: var(--ink);
  color: #fff;
  border-radius: 2rem;
  padding: 0.3rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.curr-deliverable {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--ink);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
}
.curr-deliverable-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.curr-deliverable-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.2rem;
}
.curr-deliverable-text {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
}

/* Graduation callout */
.grad-callout {
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}
.gc-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.grad-callout h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.grad-callout p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── TOOLS SECTION ── */
.tools {
  background: var(--ink);
}
.tools-title {
  color: #fff;
}
.tools-sub {
  color: rgba(255, 255, 255, 0.45);
}
.tools .section-label {
  color: rgba(232, 83, 26, 0.9);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  overflow: hidden;
}
.tool-cell {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s;
}
.tool-cell:hover {
  background: rgba(255, 255, 255, 0.08);
}
.tool-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.tool-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}
.tool-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── INSTRUCTORS ── */
.instructors {
  background: var(--cream);
}
.inst-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.inst-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.inst-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.09);
}
.inst-photo {
  height: 260px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
/* Shared image style for all instructor/founder photos */
.inst-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.inst-img--top {
  object-position: center top;
}
.inst-accent-bar {
  height: 3px;
  background: var(--accent);
}
.inst-body {
  padding: 1.4rem;
}
.inst-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.inst-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.inst-exp {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--white);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testi-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  transition: transform 0.2s;
}
.testi-card:hover {
  transform: translateY(-3px);
}
.testi-card::before {
  content: '"';
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  pointer-events: none;
}
.stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testi-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1rem;
}
.testi-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.testi-role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── FOUNDER ── */
.founder {
  background: var(--cream);
}
.founder-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
.founder-photo {
  aspect-ratio: 3 / 4;
  background: var(--ink);
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.founder-initials {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: -0.5rem;
  position: relative;
  z-index: 1;
}
.founder-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.fstat-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}
.fstat-label {
  font-size: 0.78rem;
  color: var(--muted);
}
.founder-content .section-title {
  margin-bottom: 1.25rem;
}
.founder-content p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 300;
}
.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.founder-link:hover {
  opacity: 0.8;
}

/* ── FAQ ── */
.faq {
  background: var(--white);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  overflow: hidden;
  background: var(--cream);
}
/* Button reset + FAQ question styles */
.faq-q {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: var(--cream);
  font: inherit;
  cursor: pointer;
  text-align: left;
  width: 100%;
  /* Layout */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s;
}
.faq-q:hover {
  background: var(--ivory);
}
.faq-chevron {
  font-size: 0.75rem;
  color: var(--muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s;
}
.faq-a.open {
  max-height: 300px;
  padding: 0.25rem 1.5rem 1.25rem;
}
.faq-a p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-a a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── PRICING CTA ── */
.pricing-cta {
  background: var(--ink);
  color: #fff;
  padding: 7rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 70% at 50% 50%,
    rgba(232, 83, 26, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.pricing-cta .section-label {
  color: rgba(232, 83, 26, 0.8);
  margin-bottom: 0.75rem;
}
.pricing-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  position: relative;
}
.pricing-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 3rem;
  position: relative;
}

/* Countdown */
.cta-countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  position: relative;
}
.cta-cd {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  padding: 0.85rem 1.2rem;
  min-width: 72px;
  text-align: center;
}
.cta-cd-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cta-cd-label {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.25rem;
}

/* Price cards — now anchor elements */
.price-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  position: relative;
}
.price-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  padding: 2rem 2.5rem;
  text-align: left;
  min-width: 220px;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: block;
}
.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.price-card.featured {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(232, 83, 26, 0.4);
}
.pc-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}
.pc-label-feat {
  color: rgba(255, 255, 255, 0.85);
}
.pc-price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pc-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.pc-note-feat {
  color: rgba(255, 255, 255, 0.8);
}

.btn-enroll {
  display: block;
  text-align: center;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition:
    filter 0.2s,
    transform 0.2s;
  box-shadow: 0 4px 20px rgba(232, 83, 26, 0.45);
  margin: 0 auto;
  max-width: 420px;
  position: relative;
}
.btn-enroll:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.pricing-meta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  position: relative;
}
.pm-item {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pm-item strong {
  color: rgba(255, 255, 255, 0.7);
}

/* ── FOOTER ── */
footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 2.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--ink);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-social {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-social:hover {
  opacity: 0.8;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── RESPONSIVE: TABLET (≤960px) ── */
@media (max-width: 960px) {
  /* Nav: hide links, show hamburger */
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(250, 248, 243, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border-strong);
    list-style: none;
    z-index: 199;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    border-bottom: 1px solid var(--border);
  }
  .nav-links a {
    display: block;
    padding: 1rem 5%;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
  }
  .nav-toggle {
    display: flex;
  }

  /* Hero: single column */
  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(var(--nav-h) + 3rem);
  }

  /* Grids: 2 columns on tablet */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .who-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .inst-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Founder: single column */
  .founder-inner {
    grid-template-columns: 1fr;
  }
  .founder-photo {
    max-width: 320px;
    margin: 0 auto;
  }
  .founder-content {
    text-align: center;
  }
  .founder-stats {
    justify-content: center;
  }

  /* Pricing */
  .price-cards {
    flex-direction: column;
    align-items: center;
  }

  /* Strip CTA */
  .strip-cta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Section headers */
  .why-header,
  .instructors .section-label,
  .instructors .section-title {
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── RESPONSIVE: MOBILE (≤640px) ── */
@media (max-width: 640px) {
  section {
    padding: 4rem 1.25rem;
  }
  .hero {
    padding: calc(var(--nav-h) + 2rem) 1.25rem 3rem;
    min-height: unset;
  }
  .pricing-cta {
    padding: 4rem 1.25rem;
  }

  /* Single column grids */
  .why-grid,
  .who-grid,
  .inst-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Nav CTA: smaller on mobile */
  .nav-cta {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
  /* Hide logo text on mobile — icon alone prevents overflow */
  .logo-text {
    display: none;
  }

  /* Hero */
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-accent,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* Accordion body indentation */
  .curr-body-inner {
    padding: 0 1rem 1.5rem 1rem;
  }
  .curr-head {
    gap: 0.75rem;
    padding: 1rem;
  }
  .curr-week-label {
    min-width: 48px;
  }

  /* FAQ */
  .faq-list {
    margin-top: 2rem;
  }

  /* Founder stats */
  .founder-stats {
    gap: 1rem;
  }

  /* Footer */
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem;
  }
  .footer-links {
    justify-content: center;
  }

  /* Pricing meta */
  .pricing-meta {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  /* Strip CTA */
  .strip-cta {
    padding: 1.5rem 1.25rem;
  }
}

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