: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;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 5%;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

/* Prevent horizontal overflow globally */
html,
body {
  overflow-x: hidden;
}

/* Fix header/nav overflow */
nav {
  max-width: 100%;
  overflow: hidden;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.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;
}
.logo-text span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-cta {
  background: var(--accent);
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    filter 0.2s,
    transform 0.15s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--ink);
  color: white;
  padding: 8rem 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;
}
.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);
  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.6rem, 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: 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: white;
  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;
}
.btn-accent:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
.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;
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
}
.hero-bullets {
  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;
}

/* Hero Right — countdown + stats */
.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: white;
}
.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: white;
  line-height: 1;
}
.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: white;
}
.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 UTIL ── */
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.9rem, 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;
}

/* ── WHY SECTION ── */
.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 SECTION ── */
.who {
  background: var(--cream);
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.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;
  margin-bottom: 1rem;
}
.who-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.who-link:hover {
  opacity: 0.8;
}

/* ── 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-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.wd {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  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;
}
.wd.active,
.wd:hover {
  background: var(--accent);
}
.wd-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  min-width: 12px;
  max-width: 36px;
}

/* Accordion — matches screenshot style */
.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);
}

/* Closed header row */
.curr-head {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  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);
}

/* Expanded body */
.curr-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.curr-item.open .curr-body {
  max-height: 1200px;
}
.curr-body-inner {
  padding: 0 1.5rem 2rem 5rem;
}

/* AI in Action box */
.ai-action {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--ivory);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(232, 83, 26, 0.15);
}
.ai-action-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
/* .ai-action-inner {
} */
.ai-action-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.ai-action-text {
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 500;
}

/* Learn list */
.curr-learn-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;
}

/* Tools chips */
.curr-tools-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.65rem;
}
.curr-tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
.tool-chip-dark {
  background: var(--ink);
  color: white;
  border-radius: 2rem;
  padding: 0.3rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Weekly deliverable box */
.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-inner {
} */
.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: white;
  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;
}
.grad-callout .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 ── */
.tools {
  background: var(--ink);
}
.tools .section-label {
  color: rgba(232, 83, 26, 0.9);
}
.tools .section-title {
  color: white;
}
.tools .section-sub {
  color: rgba(255, 255, 255, 0.45);
}
.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);
  margin-bottom: 0.1rem;
}
.tool-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: white;
  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(3, 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: 340px; /* increase from 180px */
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden; /* keep this */
}

.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-role {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.9rem;
}
.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: white;
  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;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.founder-photo img:not(.founder-logo-wm) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.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;
}
.founder-logo-wm {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  opacity: 0.12;
}
.founder-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.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;
}

/* ── FAQ ── */
.faq {
  background: var(--white);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 3rem;
  max-width: 720px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  overflow: hidden;
  background: var(--cream);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  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;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s;
}
.faq-a.open {
  max-height: 200px;
  padding: 0.25rem 1.5rem 1.25rem;
}
.faq-a p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── PRICING CTA ── */
.pricing-cta {
  background: var(--ink);
  color: white;
  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-cta .section-title {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.pricing-cta p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 3rem;
}
/* countdown in CTA */
.cta-countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.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: white;
  line-height: 1;
}
.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 */
.price-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.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;
}
.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: white;
  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: white;
  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: 400px;
}
.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;
}
.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: 1rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.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);
}

/* ── 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 ── */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 7rem;
  }
  /* .hero-right {
    display: none;
  } */
  .why-grid,
  .who-grid,
  .inst-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .founder-inner {
    grid-template-columns: 1fr;
  }
  .founder-photo {
    max-width: 320px;
  }
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
  }
  .price-cards {
    flex-direction: column;
    align-items: center;
  }

  .strip-cta {
    justify-content: center;
  }
  .strip-cta p {
    text-align: center;
  }

  .section-label,
  .section-title,
  .section-sub {
    text-align: center;
  }

  .founder-content {
    text-align: center;
  }
  .strip-cta strong {
    color: var(--ink);
    font-weight: 600;
  }
}
