/* ===========================================================
   The Genesis Challenge — Claude-inspired landing page
   =========================================================== */

:root {
  --bg: #F0EEE6;
  --bg-2: #F5F3EC;
  --card: #FAF9F5;
  --ink: #1F1E1A;
  --ink-2: #2C2B26;
  --muted: #6E6B62;
  --line: #E3DFD2;
  --line-2: #D9D4C3;
  --accent: #C8633A;
  --accent-soft: #E8B27A;
  --black: #16140F;
  --black-hover: #2A2620;
  --footer-bg: #16140F;
  --footer-ink: #ECE7D7;
  --footer-muted: #8A8475;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
section[id] { scroll-margin-top: 92px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 11px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border .15s ease, transform .05s ease;
  white-space: nowrap;
}
.btn-dark {
  background: var(--black);
  color: #F7F4EA;
  border-color: var(--black);
}
.btn-dark:hover { background: var(--black-hover); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: rgba(0,0,0,0.04); }
.btn-google {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line-2);
  width: 100%;
  padding: 12px 18px;
  font-weight: 500;
}
.btn-google:hover { background: #fafafa; }
.btn-block { width: 100%; padding: 13px 22px; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 36px 18px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand-mark { width: 26px; height: 26px; flex-shrink: 0; }
.brand-name {
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
/* Larger wordmark for the top nav (fully non-italic) */
.nav .brand-mark { width: 34px; height: 34px; }
.nav .brand-name {
  font-size: 30px;
  font-style: normal;
  letter-spacing: -0.02em;
  font-weight: 500;
}
/* "was" and "good" pop in the brand accent color */
.brand-name .brand-accent {
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: 38px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-links a:hover { color: var(--accent); }
.caret {
  font-size: 11px;
  color: var(--muted);
  transform: rotate(90deg);
  display: inline-block;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============ HERO ============ */
.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 36px 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
  min-height: 560px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-top: 12px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border: 1px solid rgba(200, 99, 58, 0.25);
  border-radius: 999px;
  background: rgba(200, 99, 58, 0.06);
  margin-bottom: 22px;
}
.dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(200, 99, 58, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 99, 58, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(200, 99, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 99, 58, 0); }
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
  max-width: 560px;
}
.display .hi {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}
.display .hi::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.04em;
  height: 0.18em;
  background: rgba(200, 99, 58, 0.18);
  border-radius: 999px;
  z-index: -1;
}
.subhead em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.subhead {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 520px;
}

.signup-card {
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 4px;
  color: var(--muted);
  font-size: 13px;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 12px;
  outline: none;
}
.input:focus { border-color: var(--accent); }
.fineprint {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  line-height: 1.55;
  margin: 14px 6px 4px;
}
.fineprint a { text-decoration: underline; }

/* ============ HERO APP MOCKUP ============ */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.app-mockup {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(27, 24, 18, 0.18), 0 10px 25px -10px rgba(27, 24, 18, 0.08);
  font-family: "Inter", system-ui, sans-serif;
}
.browser-chrome {
  background: #F3F1EC;
  border-bottom: 1px solid #E5E2D9;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.browser-dots { display: flex; gap: 6px; }
.chrome-dot { width: 11px; height: 11px; border-radius: 999px; display: inline-block; }
.chrome-red { background: #FF5F57; }
.chrome-yellow { background: #FEBC2E; }
.chrome-green { background: #28C840; }
.browser-url {
  flex: 1;
  background: #fff;
  border: 1px solid #E5E2D9;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  color: #6E6B62;
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 280px;
  margin: 0 auto;
}
.mock-app {
  background: #FBFAF6;
  padding: 0;
}
.mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid #EFEBDD;
  font-size: 11px;
}
.mock-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #2C2B26;
}
.mock-brand-mark {
  width: 16px;
  height: 16px;
  background: #6B4423;
  border-radius: 999px;
  position: relative;
}
.mock-brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: #C89862;
}
.mock-nav-links {
  display: flex;
  gap: 20px;
  color: #6E6B62;
  font-size: 11px;
}
.mock-cart {
  font-size: 11px;
  color: #2C2B26;
  font-weight: 500;
  background: #FBFAF6;
  border: 1px solid #E5E2D9;
  padding: 5px 10px;
  border-radius: 999px;
}
.mock-hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 22px;
  padding: 28px 22px 20px;
  align-items: center;
}
.mock-hero-left { min-width: 0; }
.mock-eyebrow {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6B4423;
  font-weight: 600;
  margin-bottom: 10px;
}
.mock-headline {
  font-family: "Newsreader", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.02;
  color: #1F1E1A;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.mock-sub {
  font-size: 10px;
  color: #6E6B62;
  line-height: 1.55;
  margin-bottom: 14px;
}
.mock-cta-row { display: flex; gap: 8px; }
.mock-cta {
  background: #1F1E1A;
  color: #FBFAF6;
  font-size: 10px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
}
.mock-cta-ghost {
  background: transparent;
  color: #1F1E1A;
  font-size: 10px;
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid #D9D4C3;
  border-radius: 999px;
}
.mock-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-product {
  width: 130px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-bag {
  width: 98px;
  height: 150px;
  background: linear-gradient(160deg, #3D2A18 0%, #5C3E20 50%, #2E1E10 100%);
  border-radius: 8px 8px 4px 4px;
  position: relative;
  box-shadow: 0 14px 28px -12px rgba(0,0,0,0.35);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #E8CFA4;
  text-align: center;
}
.mock-bag::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 12px;
  right: 12px;
  height: 6px;
  background: #2E1E10;
  border-radius: 2px 2px 0 0;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.05);
}
.mock-bag-label {
  background: rgba(232, 207, 164, 0.08);
  border: 1px solid rgba(232, 207, 164, 0.25);
  border-radius: 4px;
  padding: 10px 6px;
}
.mock-bag-top {
  font-size: 7px;
  letter-spacing: 0.12em;
  opacity: 0.8;
  margin-bottom: 6px;
}
.mock-bag-big {
  font-family: "Newsreader", serif;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 1px;
  color: #E8CFA4;
}
.mock-bag-mid {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 10px;
  line-height: 1;
  opacity: 0.9;
  margin-bottom: 8px;
}
.mock-bag-bot {
  font-size: 6px;
  letter-spacing: 0.1em;
  opacity: 0.65;
  text-transform: uppercase;
}
.mock-features {
  display: flex;
  justify-content: space-around;
  padding: 14px 22px 22px;
  border-top: 1px solid #EFEBDD;
  gap: 12px;
}
.mock-feat {
  font-size: 10px;
  color: #2C2B26;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-feat-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #C8633A;
}
.mockup-caption {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
}

/* ============ SECTION TITLES ============ */
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 42px);
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 14px;
  color: var(--ink);
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto 44px;
}

/* ============ STATS BAR ============ */
.stats {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 36px 30px;
}
.stats-inner {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stats-three { grid-template-columns: repeat(3, 1fr); }
.stat {
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 4px 8px;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.01em;
}

/* ============ MISSION ============ */
.mission {
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 36px 40px;
  text-align: center;
}
.mission-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 18px;
  font-weight: 600;
}
.mission-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 22px;
}
.mission-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto;
}
.mission-image {
  max-width: 920px;
  margin: 44px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  aspect-ratio: 16 / 8.4;
}
.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============ ABOUT / NAME STORY ============ */
.about {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 36px 50px;
}
.about-inner {
  background: linear-gradient(180deg, #FBFAF6 0%, #F5F0E4 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-inner::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,99,58,0.10) 0%, rgba(200,99,58,0) 70%);
  pointer-events: none;
}
.about-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 16px;
  position: relative;
}
.about-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 36px;
  position: relative;
}
.about-headline em {
  font-style: italic;
  color: var(--accent);
}
.about-verse {
  max-width: 700px;
  margin: 0 auto 36px;
  padding: 26px 32px;
  border-left: 3px solid var(--accent);
  text-align: left;
  position: relative;
  background: rgba(255,255,255,0.5);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.about-verse blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.about-verse figcaption {
  margin-top: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
}
.about-body {
  max-width: 700px;
  margin: 0 auto 44px;
  text-align: left;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  position: relative;
}
.about-body p { margin: 0 0 18px; }
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { color: var(--ink); }
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
  text-align: left;
  position: relative;
}
.about-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 22px 24px;
}
.about-card-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 10px;
}
.about-card-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.about-card-text strong { color: var(--ink); }

/* ============ MEET CHALLENGE ============ */
.meet {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 36px 60px;
}
.video-frame {
  max-width: 980px;
  margin: 0 auto;
  height: 460px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-thumb {
  position: relative;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.video-thumb:hover { transform: translateY(-2px); box-shadow: 0 30px 70px -40px rgba(27,24,18,0.35); }
.video-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.video-thumb:hover .video-thumb-img { transform: scale(1.04); }
.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,30,26,0.85) 0%, rgba(31,30,26,0.55) 50%, rgba(31,30,26,0.3) 100%);
}
.video-thumb-content {
  position: relative;
  z-index: 1;
  padding: 56px 60px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  color: #FBFAF6;
}
.video-thumb-eyebrow {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-soft);
  font-weight: 600;
  background: rgba(200,99,58,0.18);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  border: 1px solid rgba(200,99,58,0.35);
}
.video-thumb-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 0 0 26px;
  max-width: 680px;
}
.video-thumb-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.video-thumb-by-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245,233,215,0.6);
  font-weight: 600;
  margin-bottom: 2px;
}
.video-thumb-by-name {
  font-size: 14px;
  color: #FBFAF6;
  font-weight: 500;
}
.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
}
.play-btn:hover { background: var(--bg-2); }
.play-btn-lg {
  width: 64px;
  height: 64px;
  border: none;
  background: #FBFAF6;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
}
.play-btn-lg svg { width: 26px; height: 26px; }

/* ============ WHO IT'S FOR ============ */
.who {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 36px 30px;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.who-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.who-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.who-card:hover .who-image img { transform: scale(1.03); }
.who-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.who-icon {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 10px;
}
.who-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.who-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ============ MODULES ============ */
.modules {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 36px 40px;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.module-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.module-card-money {
  background: linear-gradient(160deg, #FBF3EB 0%, #F8E7D6 100%);
  border-color: rgba(200,99,58,0.35);
  box-shadow: 0 8px 24px -16px rgba(200,99,58,0.25);
}
.module-card-money .module-num { color: var(--accent); font-weight: 600; }
.module-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.module-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.module-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ============ COURSE PREVIEW SLIDESHOW ============ */
.course-preview {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 36px 50px;
  text-align: center;
}
.slideshow {
  position: relative;
  margin-top: 36px;
}
.slideshow-track {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  height: 720px;
}
.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .55s ease, transform .55s ease;
}
.slide-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.slide-frame {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px -50px rgba(27,24,18,0.35);
}
.slide-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: linear-gradient(180deg, #FBFAF6 0%, #F4F2EB 100%);
  border-bottom: 1px solid var(--line);
}
.slide-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  display: inline-block;
}
.slide-dot-r { background: #ED6A5E; }
.slide-dot-y { background: #F5BF4F; }
.slide-dot-g { background: #62C554; }
.slide-url {
  margin-left: 16px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11.5px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  padding: 5px 16px;
  border-radius: 999px;
  flex: 1;
  text-align: center;
  max-width: 460px;
  margin-right: auto;
}
.slide-frame img {
  width: 100%;
  display: block;
  background: var(--bg);
}
.slide figcaption {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 640px;
  text-align: center;
}
.slide figcaption strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.012em;
  margin: 6px 0 6px;
}
.slide-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  background: rgba(200,99,58,0.1);
  padding: 5px 14px;
  border-radius: 999px;
}
.slideshow-arrow {
  position: absolute;
  top: 280px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px -12px rgba(27,24,18,0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  z-index: 5;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.slideshow-arrow:hover {
  background: var(--bg-2);
  border-color: var(--accent);
  color: var(--accent);
}
.slideshow-arrow-prev { left: -8px; }
.slideshow-arrow-next { right: -8px; }
.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  position: absolute;
  bottom: -28px;
  left: 0;
  right: 0;
}
.slideshow-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--line-2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .15s ease, transform .15s ease;
}
.slideshow-dot:hover { background: var(--ink-2); }
.slideshow-dot-active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ============ INSTRUCTORS ============ */
.instructors {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 36px 60px;
  text-align: center;
}
.instructors .mission-eyebrow { margin-bottom: 16px; }
.instructors .section-title { max-width: 860px; margin-left: auto; margin-right: auto; }
.instructor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 44px;
  text-align: left;
}
.instructor-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
}
.instructor-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.instructor-photo-will {
  background: linear-gradient(160deg, #2C2B26 0%, #4A3E2E 100%);
}
.instructor-photo-dawson {
  background: linear-gradient(160deg, #C8633A 0%, #A04E2B 100%);
}
.instructor-initials {
  font-family: var(--serif);
  font-size: 40px;
  color: #F5E9D7;
  font-weight: 500;
  letter-spacing: 0.02em;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.instructor-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-weight: 500;
  margin-bottom: 4px;
}
.instructor-title {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}
.instructor-bio {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 16px;
}
.instructor-bio a {
  color: var(--accent);
  text-decoration: underline;
}
.instructor-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.instructor-tags li {
  font-size: 11px;
  color: var(--ink-2);
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.resume-strip {
  margin-top: 48px;
  padding: 22px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
  font-size: 13px;
}
.resume-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-right: 6px;
}
.resume-item {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
}
.resume-dot { color: var(--line-2); }

/* ============ FEATURED PROJECTS ============ */
.projects {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 36px 60px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.project-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-2);
  box-shadow: 0 10px 24px -16px rgba(27,24,18,0.15);
}
.project-thumb {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.project-thumb img {
  max-width: 58%;
  max-height: 78%;
  border-radius: 22%;
  box-shadow: 0 18px 36px -16px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.project-thumb-shot {
  padding: 0;
}
.project-thumb-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}
.project-thumb-1 { background: linear-gradient(160deg, #2C2B26 0%, #3D342A 100%); }
.project-thumb-2 { background: linear-gradient(160deg, #F5E9D7 0%, #E8D4B0 100%); }
.project-thumb-3 { background: linear-gradient(160deg, #1F1E1A 0%, #2E2B24 100%); }
.project-thumb-4 { background: linear-gradient(160deg, #C8633A 0%, #A04E2B 100%); }
.project-thumb-5 { background: linear-gradient(160deg, #FBFAF6 0%, #F0EEE6 100%); border: 1px solid var(--line); }
.project-thumb-more { background: var(--bg-2); border: 1px dashed var(--line-2); }

.project-preview {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.pp-header {
  font-family: var(--serif);
  font-size: 18px;
  color: #FBFAF6;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.project-thumb-2 .pp-header { color: #2C2B26; }
.pp-line {
  height: 6px;
  background: rgba(255,255,255,0.22);
  border-radius: 3px;
  width: 100%;
}
.pp-line-accent { background: rgba(232, 178, 122, 0.75); width: 60%; }
.pp-line-short { width: 50%; }
.project-thumb-2 .pp-line { background: rgba(44, 43, 38, 0.18); }
.project-thumb-5 .pp-line { background: rgba(200, 99, 58, 0.35); }

.pp-textarea {
  background: rgba(44,43,38,0.08);
  border: 1px solid rgba(44,43,38,0.15);
  border-radius: 6px;
  height: 50px;
  margin: 8px 0;
}
.pp-chip-row { display: flex; gap: 6px; }
.pp-chip {
  height: 14px;
  width: 40px;
  background: rgba(200,99,58,0.35);
  border-radius: 999px;
}
.pp-nav { display: flex; gap: 6px; margin-bottom: 8px; }
.pp-dot { width: 6px; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.5); }
.pp-hero-title {
  height: 18px;
  width: 70%;
  background: #E8B27A;
  border-radius: 3px;
  margin-bottom: 8px;
}
.pp-map {
  height: 60px;
  background:
    radial-gradient(circle at 30% 50%, rgba(255,255,255,0.3) 0%, transparent 25%),
    radial-gradient(circle at 70% 40%, rgba(255,255,255,0.25) 0%, transparent 20%),
    linear-gradient(135deg, rgba(255,255,255,0.08) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.08) 75%, transparent 75%);
  background-size: 100% 100%, 100% 100%, 14px 14px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.pp-big {
  font-family: var(--serif);
  font-size: 68px;
  line-height: 1;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 6px;
}
.project-more-plus {
  font-size: 54px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1;
}
.project-meta { padding: 0 4px; }
.project-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  font-weight: 500;
}
.project-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============ PRICING ============ */
.pricing {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 36px 40px;
}
.plan-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
  margin: -20px auto 36px;
}
.toggle-btn {
  background: transparent;
  border: none;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  padding: 8px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
}
.toggle-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-featured {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(200, 99, 58, 0.08);
}
.plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-badge-vip {
  background: var(--ink);
  color: var(--accent-soft);
}
.plan-icon {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 22px;
}
.plan-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.plan-tag {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 18px;
}
.plan-price {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--muted);
}
.plan-price strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 36px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-right: 6px;
}
.plan-price-unit {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}
[data-panel][hidden] { display: none !important; }
.plan-sub {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 22px;
  line-height: 1.5;
}
.plan-features-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin: 22px 0 12px;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.plan-features li {
  font-size: 13px;
  color: var(--ink-2);
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.5;
}
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
}
.pricing-fineprint {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 32px auto 0;
  max-width: 760px;
}

/* ============ FAQ ============ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 36px 100px;
}
.faq-list { margin-top: 24px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.plus {
  color: var(--muted);
  font-size: 22px;
  font-weight: 300;
  transition: transform .2s;
}
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-item p {
  margin: 14px 0 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--footer-bg);
  color: var(--footer-ink);
  padding: 72px 36px 56px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
}
.brand-light .brand-name { color: var(--footer-ink); }
.footer-tag {
  margin: 16px 0 22px;
  color: var(--footer-muted);
  font-size: 13.5px;
  font-family: var(--serif);
  font-style: italic;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}
.footer-social a {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 13px;
  color: var(--footer-ink);
}
.footer-social a:hover { background: rgba(255,255,255,0.12); }
.footer-copy {
  font-size: 12px;
  color: var(--footer-muted);
  margin: 0;
  line-height: 1.6;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--footer-ink);
  margin: 0 0 16px;
  text-transform: none;
  letter-spacing: 0;
}
.footer-col a {
  display: block;
  font-size: 12.5px;
  color: var(--footer-muted);
  padding: 4px 0;
}
.footer-col a:hover { color: var(--footer-ink); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { align-items: flex-start; }
  .app-mockup { max-width: 640px; margin: 0 auto; }
  .who-grid, .module-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats-three { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stats-three .stat:nth-child(2) { border-right: 1px solid var(--line); }
  .instructor-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .slideshow-track { height: 620px; }
  .slideshow-arrow { top: 220px; }
  .about-cards { grid-template-columns: 1fr; }
  .about-inner { padding: 48px 32px; }
}
@media (max-width: 600px) {
  .nav-inner { padding: 16px 18px; gap: 12px; }
  .nav-actions .btn-ghost { display: none; }
  .nav-actions .btn-dark { padding: 9px 16px; font-size: 13px; }
  .brand-name { font-size: 16px; }
  .brand-mark { width: 18px; height: 18px; }
  .nav .brand-name { font-size: 22px; }
  .nav .brand-mark { width: 24px; height: 24px; }
  .hero, .meet, .who, .modules, .pricing, .faq { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 24px; padding-bottom: 50px; }
  .display { font-size: 38px; }
  .who-grid, .module-grid, .projects-grid { grid-template-columns: 1fr; }
  .instructor-card { grid-template-columns: 80px 1fr; padding: 22px; gap: 18px; }
  .instructor-photo { width: 80px; height: 80px; }
  .instructor-initials { font-size: 28px; }
  .footer { padding: 56px 20px; }
  .footer-cols { grid-template-columns: 1fr; }
  .video-frame { height: 240px; }
  .mock-headline { font-size: 22px; }
  .mock-hero { grid-template-columns: 1.2fr 1fr; gap: 12px; padding: 20px 14px 14px; }
  .mock-nav-links { display: none; }
  .mock-bag { width: 80px; height: 120px; }
  .mock-bag-big { font-size: 12px; }
  .mock-features { padding: 12px; gap: 8px; }
  .mock-feat { font-size: 8px; }
  .faq-item summary { font-size: 16px; }
  .section-title { font-size: 28px; }
  .stats-inner { grid-template-columns: 1fr 1fr; padding: 24px 16px; gap: 18px; }
  .stat-num { font-size: 28px; }
  .mission { padding: 50px 20px 20px; }
  .mission-headline { font-size: 24px; }
  .about { padding: 50px 20px 30px; }
  .about-inner { padding: 40px 22px; }
  .about-headline { font-size: 26px; }
  .about-cards { grid-template-columns: 1fr; }
  .course-preview { padding: 50px 20px 30px; }
  .slideshow-track { height: 480px; }
  .slideshow-arrow { top: 150px; width: 40px; height: 40px; }
  .slideshow-arrow-prev { left: 4px; }
  .slideshow-arrow-next { right: 4px; }
  .slide figcaption strong { font-size: 18px; }
}
