/* ====================================================================
   Practical Growth — Website styles
   Brand palette: navy/dusk + beige neutrals, happy peach accent
   ==================================================================== */

:root {
  /* Neutrals */
  --navy: #171D2B;
  --midnight: #212D44;
  --dusk: #314159;
  --off-white: #F4F3F2;
  --beige-1: #EDE9E6;
  --beige-2: #DDD7D3;
  --beige-3: #CCC6C2;
  --beige-4: #BCB5B1;
  --white: #FFFFFF;

  /* Accent — Happy Peach (primary brand accent, matches logo) */
  --peach-1: #F4A98C;
  --peach-2: #E89379;
  --peach-3: #D6735C;

  /* Secondary accents available in system */
  --purple-1: #C7B8FF;
  --purple-2: #A49AE5;
  --purple-3: #7F6ED3;
  --yellow-1: #FFD580;
  --yellow-2: #F4BB56;
  --yellow-3: #E59E2C;
  --green-1: #B4E870;
  --green-2: #9DD357;
  --green-3: #85B24B;
  --aqua-1:  #A5EBEF;
  --aqua-2:  #7CCACE;
  --aqua-3:  #42A8AD;

  /* Active accent (overridable by tweaks) */
  --accent-1: var(--peach-1);
  --accent-2: var(--peach-2);
  --accent-3: var(--peach-3);

  /* Type */
  --font-display: "Inter Display", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius:   14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(23,29,43,0.05), 0 1px 0 rgba(23,29,43,0.02);
  --shadow:    0 6px 18px -8px rgba(23,29,43,0.18), 0 2px 6px -2px rgba(23,29,43,0.06);
  --shadow-lg: 0 24px 48px -18px rgba(23,29,43,0.22), 0 8px 18px -10px rgba(23,29,43,0.10);

  --maxw: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-feature-settings: "ss01", "cv11";
  color: var(--midnight);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--dusk);
  background: var(--beige-1);
  padding: 7px 12px;
  border-radius: 999px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
  font-weight: 700;
}

h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.022em; }
h3 { font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -0.018em; }
h4 { font-size: clamp(18px, 1.5vw, 20px); letter-spacing: -0.012em; font-weight: 700; }

p { margin: 0; }

.lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--dusk);
  text-wrap: pretty;
}

.section-intro {
  max-width: 720px;
}
.section-intro .eyebrow { margin-bottom: 18px; }
.section-intro h2 { margin-bottom: 18px; }
.section-intro .lede { color: var(--dusk); }

/* Marker-style highlight per brand guide:
   soft color bar across descenders to midline */
.mark {
  background: linear-gradient(180deg, transparent 0 52%, var(--accent-1) 52% 92%, transparent 92%);
  padding: 0 0.06em;
  font-style: italic;
  font-weight: 700;
}
.mark-aqua  { background: linear-gradient(180deg, transparent 0 52%, var(--aqua-1) 52% 92%, transparent 92%); padding: 0 0.06em; font-style: italic; font-weight: 700; }
.mark-yellow{ background: linear-gradient(180deg, transparent 0 52%, var(--yellow-1) 52% 92%, transparent 92%); padding: 0 0.06em; font-style: italic; font-weight: 700; }
.mark-green { background: linear-gradient(180deg, transparent 0 52%, var(--green-1) 52% 92%, transparent 92%); padding: 0 0.06em; font-style: italic; font-weight: 700; }
.mark-purple{ background: linear-gradient(180deg, transparent 0 52%, var(--purple-1) 52% 92%, transparent 92%); padding: 0 0.06em; font-style: italic; font-weight: 700; }

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }
section.tight { padding: clamp(56px, 7vw, 88px) 0; }
section.alt-bg { background: var(--off-white); }
section.dark-bg { background: var(--navy); color: var(--beige-1); }
section.dark-bg h2, section.dark-bg h3 { color: var(--off-white); }
section.dark-bg .lede { color: var(--beige-3); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--navy);
  color: var(--off-white);
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--midnight); border-color: var(--midnight); }
.btn-accent {
  background: var(--accent-2);
  color: var(--navy);
  border-color: var(--accent-2);
}
.btn-accent:hover { background: var(--accent-3); border-color: var(--accent-3); color: var(--off-white); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--beige-3);
}
.btn-secondary:hover { border-color: var(--navy); background: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: transparent;
  padding: 14px 8px;
}
.btn-ghost:hover { color: var(--accent-3); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(2px); }

.btn-sm { padding: 9px 14px; font-size: 14px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0; z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--beige-2); }
.site-header .row {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.site-header .logo { height: 30px; }
.site-header nav {
  display: flex; align-items: center; gap: 28px;
}
.site-header nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dusk);
  transition: color .15s ease;
}
.site-header nav a:hover { color: var(--navy); }
.site-header .right { display: flex; align-items: center; gap: 18px; }
.site-header .hamburger { display: none; }

@media (max-width: 920px) {
  .site-header nav { display: none; }
  .site-header .btn-primary { display: none; }
  .site-header .hamburger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 999px;
    background: var(--beige-1); border: none; cursor: pointer;
  }
}

/* ---------- Hero ---------- */

.hero {
  padding-top: clamp(40px, 5vw, 70px);
  padding-bottom: clamp(60px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}
.hero .grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.hero h1 .mark { display: inline-block; }
.hero .lede { margin: 22px 0 32px; max-width: 560px; }
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .trust-line {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--beige-2);
  font-size: 14px;
  color: var(--dusk);
}
.hero .trust-line strong { color: var(--navy); font-weight: 700; }
.hero .trust-line .sep { color: var(--beige-3); }

@media (max-width: 880px) {
  .hero .grid { grid-template-columns: 1fr; }
  .hero .collage { order: -1; }
}

/* Hero collage — fake-platform proof composition */
.collage {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 580px;
  width: 100%;
  margin-left: auto;
}
.collage .tile {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--beige-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.collage .tile.video {
  left: 0; top: 8%;
  width: 70%; aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
}
.collage .tile.review {
  right: 0; top: 0;
  width: 46%;
  padding: 18px;
}
.collage .tile.workbook {
  right: 4%; bottom: 6%;
  width: 56%;
  aspect-ratio: 4/5;
}
.collage .tile.badge {
  left: 6%; bottom: 4%;
  width: 44%;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
}

/* video tile content */
.video-mock {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2a3a5e 0%, #1c2640 60%, #141a2c 100%);
  position: relative;
  display: flex; align-items: flex-end;
  padding: 14px;
  color: var(--off-white);
}
.video-mock::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 35%, rgba(244,169,140,0.22), transparent 45%),
    radial-gradient(circle at 75% 70%, rgba(165,235,239,0.15), transparent 50%);
}
.video-mock .silhouette {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 58%;
  height: 78%;
  background: radial-gradient(ellipse at 50% 30%, rgba(244,169,140,0.25), transparent 55%),
              linear-gradient(180deg, transparent 25%, rgba(33,45,68,0.55) 60%, rgba(23,29,43,0.85) 100%);
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
}
.video-mock .silhouette::before {
  content: "";
  position: absolute;
  top: 24%; left: 50%; transform: translateX(-50%);
  width: 38%; aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(204,198,194,0.55);
}
.video-mock .silhouette::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80%; height: 50%;
  border-radius: 28% 28% 0 0;
  background: linear-gradient(180deg, rgba(204,198,194,0.4), rgba(188,181,177,0.7));
}
.video-mock .play {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.video-mock .play svg { width: 22px; height: 22px; color: var(--navy); }
.video-mock .caption {
  position: relative;
  font-size: 13px; font-weight: 500;
  background: rgba(0,0,0,0.45);
  padding: 6px 10px; border-radius: 6px;
  backdrop-filter: blur(6px);
}
.video-mock .lower-third {
  position: absolute;
  left: 14px; bottom: 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.video-mock .lower-third .name {
  font-size: 13px; font-weight: 600;
  background: var(--off-white); color: var(--navy);
  padding: 3px 9px; border-radius: 4px;
  align-self: flex-start;
}
.video-mock .lower-third .role {
  font-size: 11px; color: var(--off-white);
  background: var(--accent-2);
  padding: 2px 8px; border-radius: 4px;
  align-self: flex-start;
}

/* hero collage video tile — screenshot background */
.tile.video .video-mock {
  background-image: url('assets/screenshot-homepage.png');
  background-size: cover;
  background-position: center top;
}
.tile.video .video-mock::before {
  background: rgba(0, 0, 0, 0.28);
}
.tile.video .video-mock .silhouette { display: none; }

/* review tile */
.tile.review .stars {
  display: flex; gap: 2px; margin-bottom: 8px;
}
.tile.review .stars svg { width: 14px; height: 14px; color: var(--yellow-3); }
.tile.review p { font-size: 14px; color: var(--midnight); line-height: 1.45; margin-bottom: 10px; }
.tile.review .who { font-size: 12px; color: var(--dusk); font-weight: 500; }

/* workbook */
.workbook-mock {
  height: 100%;
  background: var(--off-white);
  padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.workbook-mock .top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--dusk); text-transform: uppercase;
  padding-bottom: 10px; border-bottom: 1px solid var(--beige-2);
}
.workbook-mock h5 {
  margin: 4px 0 6px; font-size: 14px; font-weight: 700; color: var(--navy);
}
.workbook-mock .field {
  background: var(--white);
  border: 1px solid var(--beige-2);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 11px;
  color: var(--beige-4);
}
.workbook-mock .field.tall { min-height: 36px; }
.workbook-mock .check-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--dusk);
}
.workbook-mock .check {
  width: 12px; height: 12px;
  border: 1.5px solid var(--beige-3);
  border-radius: 3px;
  flex-shrink: 0;
}
.workbook-mock .check.on {
  background: var(--accent-2); border-color: var(--accent-2);
  position: relative;
}
.workbook-mock .check.on::after {
  content: ""; position: absolute;
  left: 2px; top: 0px;
  width: 4px; height: 8px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

/* badge tile */
.tile.badge {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--off-white);
}
.tile.badge .num {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 700; line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent-1);
}
.tile.badge .label {
  font-size: 12px; color: var(--beige-3);
  margin-top: 4px;
}

/* ---------- Decorative geometric background motifs ---------- */
.bg-motif {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.bg-motif.arc-1 {
  top: -40px; right: -50px;
  width: 220px; height: 220px;
  border: 36px solid var(--beige-1);
  border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 50%);
}
.bg-motif.dot-grid {
  background-image: radial-gradient(circle, var(--beige-3) 1.2px, transparent 1.5px);
  background-size: 18px 18px;
}
.bg-motif.curve {
  border: 2px solid var(--accent-1);
  border-radius: 50%;
}

/* ensure content sits above motifs */
section .container { position: relative; z-index: 1; }

/* ---------- Stats wall ---------- */

.stats-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--beige-2);
  border-bottom: 1px solid var(--beige-2);
  margin-top: 36px;
}
.stats-wall .stat {
  padding: 32px 24px;
  border-right: 1px solid var(--beige-2);
}
.stats-wall .stat:last-child { border-right: none; }
.stats-wall .num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1;
}
.stats-wall .label {
  margin-top: 10px;
  font-size: 14px;
  color: var(--dusk);
  font-weight: 500;
}
.stats-wall .sub {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--beige-4);
}
@media (max-width: 800px) {
  .stats-wall { grid-template-columns: repeat(2, 1fr); }
  .stats-wall .stat:nth-child(2) { border-right: none; }
  .stats-wall .stat:nth-child(1), .stats-wall .stat:nth-child(2) { border-bottom: 1px solid var(--beige-2); }
}

/* dark variant */
.dark-bg .stats-wall { border-color: rgba(255,255,255,0.08); }
.dark-bg .stats-wall .stat { border-color: rgba(255,255,255,0.08); }
.dark-bg .stats-wall .num { color: var(--off-white); }
.dark-bg .stats-wall .num .accent { color: var(--accent-1); }
.dark-bg .stats-wall .label { color: var(--beige-3); }
.dark-bg .stats-wall .sub { color: var(--beige-4); }

/* ---------- Category grid ---------- */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
@media (max-width: 880px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--beige-2);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--beige-3);
}
.cat-card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--beige-1);
  display: flex; align-items: center; justify-content: center;
  color: var(--midnight);
}
.cat-card .icon-wrap.peach  { background: #FCE3D7; color: var(--peach-3); }
.cat-card .icon-wrap.aqua   { background: #D7F1F2; color: var(--aqua-3); }
.cat-card .icon-wrap.green  { background: #E0F3CD; color: var(--green-3); }
.cat-card .icon-wrap.purple { background: #E6DFFF; color: var(--purple-3); }
.cat-card .icon-wrap.yellow { background: #FFEFCB; color: var(--yellow-3); }
.cat-card .icon-wrap.dusk   { background: #DDE2EB; color: var(--dusk); }

.cat-card h3 { font-size: 22px; }
.cat-card p { color: var(--dusk); font-size: 15px; line-height: 1.55; }
.cat-card .meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--beige-1);
  font-size: 13px; color: var(--midnight); font-weight: 500;
}
.cat-card .meta .arrow { color: var(--accent-3); }

/* ---------- Feature grid (What's Included) ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 1000px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  background: var(--white);
  border: 1px solid var(--beige-2);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.feature .num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--accent-3);
  letter-spacing: 0.04em;
}
.feature h4 { font-size: 17px; }
.feature p { font-size: 14px; color: var(--dusk); line-height: 1.55; }

/* Pull quote */
.pullquote {
  margin: 64px auto 0;
  max-width: 880px;
  text-align: center;
}
.pullquote .q {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.pullquote .src {
  margin-top: 18px;
  color: var(--dusk);
  font-size: 15.5px;
}

/* ---------- Learning Experience (sample video) ---------- */

.experience-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  margin-top: 48px;
  align-items: start;
}
@media (max-width: 920px) { .experience-grid { grid-template-columns: 1fr; } }

.big-video {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--beige-2);
  background: var(--midnight);
}
.big-video .video-mock {
  border-radius: 0;
  background-image: url('https://i.vimeocdn.com/video/2145919661-955fcde9a286fcef7402235664e6b7f62196ab118500e105fbbdbf59117c9c8e-d_1280?region=us');
  background-size: cover;
  background-position: center top;
  cursor: pointer;
}
.big-video .video-mock::before {
  background: rgba(0, 0, 0, 0.3);
}
.big-video .video-mock .silhouette { display: none; }
.big-video .video-mock .play {
  width: 72px; height: 72px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
  transition: transform .15s ease, box-shadow .15s ease;
}
.big-video .video-mock:hover .play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
}
.big-video .timeline {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
}
.big-video .timeline::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 36%;
  background: var(--accent-1);
  border-radius: 2px;
}
.big-video .timeline::after {
  content: "";
  position: absolute; left: 36%; top: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  background: var(--accent-1);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(244,169,140,0.25);
}

.snapshot-stack { display: flex; flex-direction: column; gap: 14px; }
.snapshot {
  background: var(--white);
  border: 1px solid var(--beige-2);
  border-radius: var(--radius);
  padding: 16px;
  display: flex; gap: 14px; align-items: center;
}
.snapshot .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--beige-1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--midnight);
}
.snapshot .icon.accent { background: #FCE3D7; color: var(--peach-3); }
.snapshot .icon.aqua { background: #D7F1F2; color: var(--aqua-3); }
.snapshot .icon.green { background: #E0F3CD; color: var(--green-3); }
.snapshot .icon.yellow { background: #FFEFCB; color: var(--yellow-3); }
.snapshot h4 { font-size: 15.5px; }
.snapshot p { font-size: 13px; color: var(--dusk); margin-top: 2px; }

/* ---------- Process timeline ---------- */

.process {
  margin-top: 56px;
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 22px 20px;
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}
.dark-bg .step {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent-1);
  line-height: 1;
  margin-bottom: 14px;
}
.step h4 {
  color: var(--off-white);
  font-size: 16px;
  margin-bottom: 8px;
}
.step p {
  font-size: 13.5px;
  color: var(--beige-3);
  line-height: 1.5;
}

/* ---------- Course cards ---------- */

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
@media (max-width: 980px) { .course-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .course-grid { grid-template-columns: 1fr; } }

.course-card {
  background: var(--white);
  border: 1px solid var(--beige-2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.course-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.course-thumb {
  aspect-ratio: 16/9;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 16px;
  color: var(--off-white);
}
.course-thumb .thumb-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  max-width: 80%;
}
.course-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55) 100%);
}
.course-thumb .ribbon {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--off-white);
  color: var(--navy);
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  z-index: 2;
}
.course-thumb .play-mini {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.94);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  color: var(--navy);
}

/* Course thumb color variations */
.thumb-1 { background: linear-gradient(135deg, #314159 0%, #212D44 100%); }
.thumb-2 { background: linear-gradient(135deg, #D6735C 0%, #E89379 60%, #F4A98C 100%); }
.thumb-3 { background: linear-gradient(135deg, #42A8AD 0%, #7CCACE 100%); }
.thumb-4 { background: linear-gradient(135deg, #7F6ED3 0%, #A49AE5 100%); }
.thumb-5 { background: linear-gradient(135deg, #85B24B 0%, #9DD357 100%); }
.thumb-6 { background: linear-gradient(135deg, #E59E2C 0%, #F4BB56 100%); }

/* "New" badge — shown instead of star rating for unrated courses */
.badge-new {
  display: inline-flex; align-items: center;
  background: #cde8ca; color: #2a5c27;
  font-size: 12px; font-weight: 700;
  padding: 4px 11px; border-radius: 6px;
  letter-spacing: 0.04em;
}

.course-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.course-body .cat {
  font-size: 12px; font-weight: 600;
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.course-body h4 { font-size: 18px; color: var(--navy); }
.course-body .desc { font-size: 14px; color: var(--dusk); line-height: 1.5; }
.course-body .meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--midnight);
  margin-top: 4px;
}
.course-body .meta .stars { color: var(--yellow-3); display: inline-flex; align-items: center; gap: 2px; }
.course-body .meta .stars svg { width: 12px; height: 12px; }
.course-body .meta .dot { color: var(--beige-3); }
.course-body .tags {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: 12px;
}
.course-body .tag {
  font-size: 11.5px;
  background: var(--beige-1);
  color: var(--dusk);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.course-body .footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--beige-1);
}
.course-body .duration { font-size: 13px; color: var(--dusk); display: inline-flex; gap: 6px; align-items: center; }
.course-body .view-link {
  font-size: 13.5px; font-weight: 600;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
}
.course-body .view-link:hover { color: var(--accent-3); }

/* ---------- Reviews ---------- */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
@media (max-width: 880px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--white);
  border: 1px solid var(--beige-2);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.review-card .theme {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-3);
}
.review-card .stars { color: var(--yellow-3); display: inline-flex; gap: 2px; }
.review-card .stars svg { width: 16px; height: 16px; }
.review-card blockquote {
  margin: 0;
  font-size: 16px;
  color: var(--midnight);
  line-height: 1.55;
  text-wrap: pretty;
}
.review-card .who {
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--beige-1);
  font-size: 13px; color: var(--dusk);
  display: flex; align-items: center; gap: 10px;
}
.review-card .avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-1);
  color: var(--navy);
  font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.review-card .avatar.a2 { background: var(--aqua-1); }
.review-card .avatar.a3 { background: var(--purple-1); }
.review-card .avatar.a4 { background: var(--green-1); }
.review-card .avatar.a5 { background: var(--yellow-1); }
.review-card .avatar.a6 { background: var(--beige-3); }
.review-card .who .name { color: var(--navy); font-weight: 600; }
.review-card .who .course { display: block; font-size: 12px; color: var(--dusk); }

/* ---------- Use cases (corporate) ---------- */

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
@media (max-width: 880px) { .usecase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .usecase-grid { grid-template-columns: 1fr; } }

.usecase {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
}
.usecase h4 { color: var(--off-white); margin-bottom: 8px; }
.usecase p { font-size: 14px; color: var(--beige-3); line-height: 1.55; }
.usecase .tag-set { margin-top: 14px; display: flex; gap: 6px; flex-wrap: wrap; }
.usecase .tag-set .tag {
  font-size: 11.5px;
  background: rgba(244,169,140,0.16);
  color: var(--accent-1);
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(244,169,140,0.18);
}

/* ---------- Final CTA ---------- */

.final-cta {
  background: var(--navy);
  color: var(--off-white);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 7vw, 80px);
  position: relative;
  overflow: hidden;
}
.final-cta h2 { color: var(--off-white); max-width: 720px; }
.final-cta p { color: var(--beige-3); margin: 18px 0 28px; max-width: 620px; }
.final-cta .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.final-cta .deco {
  position: absolute; pointer-events: none;
}
.final-cta .deco-1 {
  right: -100px; top: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 56px solid rgba(244,169,140,0.10);
}
.final-cta .deco-2 {
  right: 80px; bottom: -120px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,169,140,0.18) 0%, transparent 70%);
}

/* ---------- Footer ---------- */

footer.site-footer {
  background: var(--off-white);
  padding: 72px 0 36px;
  border-top: 1px solid var(--beige-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid .brand .logo { height: 28px; margin-bottom: 16px; }
.footer-grid .brand p { font-size: 14px; color: var(--dusk); max-width: 320px; }
.footer-grid h5 {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dusk);
  margin: 0 0 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid ul a { font-size: 14.5px; color: var(--midnight); }
.footer-grid ul a:hover { color: var(--accent-3); }

.footer-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid var(--beige-2);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--dusk);
}

/* ---------- Mobile navigation drawer ---------- */

/* Allow the sticky header to be the stacking context for the absolute drawer */
.site-header { overflow: visible; }

.mobile-nav {
  display: none;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--beige-2);
  padding: 18px 28px 28px;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 12px 32px -8px rgba(23,29,43,0.16);
  z-index: 99;
}
.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 17px;
  font-weight: 500;
  color: var(--midnight);
  padding: 10px 0;
  border-bottom: 1px solid var(--beige-1);
  display: flex;
  align-items: center;
}
.mobile-nav a:last-child { border-bottom: none; margin-top: 8px; }
.mobile-nav a:hover { color: var(--navy); }
.mobile-nav .btn { font-size: 15px; padding: 12px 20px; justify-content: center; }

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(23,29,43,0.22);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.mobile-nav-backdrop.open { display: block; }

/* Smooth fade on load */
.fade-up {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Icon helper ---------- */
.ic { width: 22px; height: 22px; stroke-width: 1.75; }
.ic-sm { width: 16px; height: 16px; stroke-width: 2; }

/* ====================================================================
   Founder section (Evan Kimbrell)
   ==================================================================== */
.founder-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
@media (max-width: 920px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
}

.founder-portrait-wrap {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}
.founder-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, #f0ece8 0%, #e8e3de 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--beige-2);
}
/* Subtle gradient overlay: fades the bottom of the photo into the background */
.founder-portrait .portrait-fade {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(232,227,222,0.55) 78%,
    rgba(232,227,222,0.92) 100%
  );
  pointer-events: none;
}

/* Floating stat / partner badges on portrait */
.portrait-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--beige-2);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
}
.portrait-badge .num {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700; line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.portrait-badge .num .accent { color: var(--accent-3); }
.portrait-badge .label {
  font-size: 12px; color: var(--dusk); font-weight: 500;
  margin-top: 4px;
}
.portrait-badge.tl { top: 20px; left: -22px; }
.portrait-badge.br {
  right: -22px;
  bottom: 26px;
}
.portrait-badge.partner {
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  background: var(--navy);
  border-color: var(--navy);
  color: var(--off-white);
  padding: 10px 16px;
  white-space: nowrap;
}
.portrait-badge.partner .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-1);
  flex-shrink: 0;
}
.portrait-badge.partner .label {
  margin-top: 0; color: var(--off-white);
  font-size: 13px; font-weight: 600;
}

@media (max-width: 540px) {
  .portrait-badge.tl { left: 8px; top: 12px; }
  .portrait-badge.br { right: 8px; }
}

/* Founder copy column */
.founder-copy h2 { margin-top: 18px; max-width: 580px; }
.founder-copy .lede { margin-top: 22px; }
.founder-copy .lede + .lede { margin-top: 16px; }

.cred-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  list-style: none;
  padding: 0;
}
@media (max-width: 540px) { .cred-list { grid-template-columns: 1fr; } }
.cred-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px;
  color: var(--midnight);
  line-height: 1.4;
}
.cred-list .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-1);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.cred-list .check svg { width: 11px; height: 11px; stroke-width: 2.8; }

.founder-copy .cta-row { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.press-strip {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--beige-2);
}
.press-strip .label {
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--beige-4);
  margin-bottom: 10px;
}
.press-strip .logos {
  display: flex; flex-wrap: wrap;
  gap: 10px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--dusk);
  letter-spacing: -0.01em;
}
.press-strip .logos span {
  white-space: nowrap;
  opacity: 0.78;
}

/* ====================================================================
   Instructors section
   ==================================================================== */
.instructor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
@media (max-width: 960px) { .instructor-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .instructor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .instructor-grid { grid-template-columns: 1fr; } }

.instructor {
  background: var(--white);
  border: 1px solid var(--beige-2);
  border-radius: var(--radius-lg);
  padding: 24px 18px 22px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.instructor:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--beige-3);
}

.instructor .headshot {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--beige-2), var(--shadow-sm);
}
.instructor .headshot .bg {
  position: absolute; inset: 0;
}
.instructor .headshot .silhouette {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 70%; height: 84%;
  border-radius: 50% 50% 0 0 / 32% 32% 0 0;
  background: linear-gradient(180deg, transparent 12%, rgba(33,45,68,0.35) 55%, rgba(23,29,43,0.7) 100%);
}
.instructor .headshot .silhouette::before {
  content: "";
  position: absolute;
  top: 18%; left: 50%; transform: translateX(-50%);
  width: 36%; aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(237,233,230,0.85);
}
.instructor .headshot .silhouette::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 86%; height: 60%;
  border-radius: 32% 32% 0 0;
  background: rgba(221,215,211,0.85);
}
.instructor .headshot .initials {
  position: absolute; top: 6px; right: 6px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 3px 7px;
  border-radius: 999px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  border: 1px solid var(--beige-2);
}

/* Headshot bg color variants */
.bg-peach  { background: linear-gradient(155deg, #F4A98C 0%, #E89379 60%, #D6735C 100%); }
.bg-aqua   { background: linear-gradient(155deg, #A5EBEF 0%, #7CCACE 60%, #42A8AD 100%); }
.bg-green  { background: linear-gradient(155deg, #B4E870 0%, #9DD357 60%, #85B24B 100%); }
.bg-purple { background: linear-gradient(155deg, #C7B8FF 0%, #A49AE5 60%, #7F6ED3 100%); }
.bg-yellow { background: linear-gradient(155deg, #FFD580 0%, #F4BB56 60%, #E59E2C 100%); }
.bg-dusk   { background: linear-gradient(155deg, #4A5D7E 0%, #314159 60%, #212D44 100%); }
.bg-beige  { background: linear-gradient(155deg, #EDE9E6 0%, #DDD7D3 60%, #BCB5B1 100%); }
.bg-peach2 { background: linear-gradient(155deg, #E89379 0%, #D6735C 60%, #B95940 100%); }

.instructor .info { text-align: center; display: flex; flex-direction: column; gap: 6px; }
.instructor .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.instructor .covers {
  font-size: 13.5px;
  color: var(--dusk);
  line-height: 1.4;
}

/* Become an Instructor CTA card */
a.instructor-cta { text-decoration: none; cursor: pointer; }
a.instructor-cta:hover { border-color: var(--accent); }
.headshot-plus {
  background: var(--beige-1);
  border: 2px dashed var(--beige-3);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
a.instructor-cta:hover .headshot-plus {
  background: color-mix(in srgb, var(--accent) 8%, white);
  border-color: var(--accent);
}
.headshot-plus svg {
  width: 40%; height: 40%;
  color: var(--dusk);
  transition: color .2s;
}
a.instructor-cta:hover .headshot-plus svg { color: var(--accent); }

