/* ——— Tokens ——— */
:root {
  --paper:        #FFFFFF;
  --paper-2:      #EEF1FA;
  --ink:          #000000;
  --ink-2:        #0A0E5C;
  --muted:        #5A6480;
  --rule:         rgba(3, 4, 94, .14);
  --accent:       #0077B6;
  --accent-ink:   #03045E;
  --sage:         #00B4D8;
  --surface-dark: #03045E;
  --shadow:       0 1px 0 rgba(255,255,255,.5) inset, 0 18px 40px -24px rgba(3,4,94,.25);

  --f-display: "Instrument Serif", "Times New Roman", serif;
  --f-body:    "Inter", ui-sans-serif, system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, Menlo, monospace;
}

/* ——— Reset ——— */
*, *::before, *::after { box-sizing: border-box }
html, body { margin: 0; padding: 0 }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit }
html { scroll-behavior: smooth }

/* ——— Paper texture ——— */
.paper {
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(0,119,182,.07), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(0,180,216,.06), transparent 60%),
    var(--paper);
}

/* ——— Shell ——— */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px }
@media (max-width: 720px) { .wrap { padding: 0 20px } }

/* ——— Nav ——— */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  background: color-mix(in oklab, var(--paper) 78%, transparent);
  border-bottom: .5px solid var(--rule);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--f-display); font-size: 22px; letter-spacing: .01em; text-decoration: none; color: var(--ink) }
.brand .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); display: inline-block; transform: translateY(-3px) }
.brand em { font-style: italic; color: var(--ink) }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; font-size: 14px }
.nav a { text-decoration: none; color: var(--ink-2); opacity: .85 }
.nav a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px }
.nav .cta {
  font: 500 13px/1 var(--f-body);
  padding: 10px 14px; border-radius: 999px;
  background: var(--surface-dark); color: var(--paper);
  text-decoration: none; letter-spacing: .01em;
  opacity: 1; white-space: nowrap;
}
.nav .cta:hover { background: var(--accent); text-decoration: none }
@media (max-width: 720px) { .nav ul { display: none } }

/* ——— Utilities ——— */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .5 }
.rule { height: 1px; background: var(--rule); border: 0; margin: 0 }
.kicker { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted) }
.serif { font-family: var(--f-display) }

/* ——— Buttons ——— */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 999px;
  font: 500 14px/1 var(--f-body); text-decoration: none;
  border: .5px solid transparent; cursor: pointer;
  transition: background .18s, color .18s;
}
.btn-primary { background: var(--surface-dark); color: var(--paper) }
.btn-primary:hover { background: var(--accent) }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule) }
.btn-ghost:hover { background: color-mix(in oklab, var(--paper) 70%, white) }
.arrow { transition: transform .2s }
.btn:hover .arrow { transform: translateX(3px) }

/* ——— Loop CTA ——— */
.loop-cta {
  margin-top: 44px; display: flex; justify-content: center;
}

/* ——— Section headers ——— */
.sec { padding: 96px 0; border-top: 1px solid var(--rule) }
.sec-head { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: baseline; margin-bottom: 56px }
.sec-head h2 {
  font-family: var(--f-display); font-weight: 400; font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05; letter-spacing: -.01em; margin: 12px 0 0;
}
.sec-head h2 em { font-style: italic; color: var(--accent) }
.sec-head .desc { font-size: 17px; line-height: 1.6; color: var(--ink-2); max-width: 52ch; margin-top: 14px }
@media (max-width: 720px) { .sec-head { grid-template-columns: 1fr } .sec { padding: 72px 0 } }

/* ——— Hero ——— */
.hero { padding: 72px 0 56px }
.heroV2 {
  display: grid; grid-template-columns: 1.7fr .85fr; gap: 56px; align-items: center;
}
.heroV2 h1 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(56px, 9vw, 132px); line-height: .94; letter-spacing: -.015em; margin: 14px 0 0;
}
.heroV2 h1 em { font-style: italic; color: var(--accent) }
.heroV2 .lede { font-size: 19px; line-height: 1.55; color: var(--ink-2); margin: 22px 0 28px; max-width: 46ch }
.heroV2 .btns { display: flex; gap: 12px; flex-wrap: wrap }
/* Meet your coach — hero video affordance */
.coach-intro {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 4px 0 28px; padding: 8px 18px 8px 8px;
  background: color-mix(in oklab, var(--accent) 5%, white);
  border: 1px solid var(--rule); border-radius: 999px;
  cursor: pointer; font-family: var(--f-body); text-align: left;
  transition: border-color .18s, background .18s;
}
.coach-intro:hover { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 9%, white) }
.coach-intro:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px }
.ci-thumb {
  position: relative; width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%; background-size: cover; background-position: center;
}
.ci-play {
  position: absolute; right: -2px; bottom: -2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 0 0 2px var(--paper);
}
.ci-play svg { margin-left: 1px }
.ci-text { display: flex; flex-direction: column; gap: 2px }
.ci-label { font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted) }
.ci-cta { font-size: 14px; font-weight: 500; color: var(--accent-ink); display: inline-flex; align-items: center; gap: 7px }
.ci-cta .arrow { color: var(--accent); transition: transform .2s }
.coach-intro:hover .ci-cta .arrow { transform: translateX(3px) }
.heroV2 .proof {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center; margin-top: 28px;
  color: var(--muted); font-size: 13px; font-family: var(--f-mono); letter-spacing: .06em; text-transform: uppercase;
}
.heroV2 .proof .sep { width: 1px; height: 14px; background: var(--rule) }
.heroV2 .coaching-card {
  background: var(--surface-dark); color: var(--paper);
  border-radius: 16px; padding: 32px;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.heroV2 .coaching-card::before {
  content: ""; position: absolute; inset: auto -20% -40% auto; width: 420px; height: 420px; border-radius: 999px;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--accent) 45%, transparent), transparent 70%);
  pointer-events: none;
}
.heroV2 .coaching-card > * { position: relative; z-index: 1 }
.heroV2 .coaching-card .tag {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 70%, transparent);
}
.heroV2 .coaching-card h3 {
  font-family: var(--f-display); font-weight: 400; font-size: 34px; line-height: 1.1; margin: 12px 0 10px;
}
.heroV2 .coaching-card p { color: color-mix(in oklab, var(--paper) 82%, transparent); margin: 0 0 24px; font-size: 15px; line-height: 1.55 }
.heroV2 .coaching-card .price {
  display: flex; align-items: baseline; gap: 10px; margin: 18px 0 22px;
  padding: 16px 0; border-top: 1px solid rgba(243,236,224,.15); border-bottom: 1px solid rgba(243,236,224,.15);
}
.heroV2 .coaching-card .price .num { font-family: var(--f-display); font-size: 44px; line-height: 1 }
.heroV2 .coaching-card .price .unit { color: color-mix(in oklab, var(--paper) 65%, transparent); font-size: 13px }
.heroV2 .coaching-card .book {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff; text-decoration: none;
  padding: 14px 18px; border-radius: 999px; font: 500 14px/1 var(--f-body);
  transition: background .18s;
}
.heroV2 .coaching-card .book:hover { background: #005f91 }
.heroV2 .coaching-card .book .arrow { transition: transform .2s }
.heroV2 .coaching-card .book:hover .arrow { transform: translateX(3px) }
/* Hero video card — replaces the old single-offer pitch card */
.heroV2 .coaching-card.video-card {
  border: none; text-align: left; cursor: pointer; width: 100%; font: inherit; display: block;
}
.vc-thumb {
  position: relative; display: block; width: 100%; aspect-ratio: 16 / 10;
  border-radius: 12px; background-size: cover; background-position: center 22%;
  margin-bottom: 20px; box-shadow: inset 0 0 0 1px rgba(243,236,224,.14);
}
.vc-play {
  position: absolute; inset: 0; margin: auto; width: 64px; height: 64px;
  border-radius: 50%; background: var(--accent); color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: transform .18s;
}
.vc-play svg { margin-left: 2px }
.video-card:hover .vc-play { transform: scale(1.08) }
.vc-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  color: var(--paper); font-weight: 500; font-size: 14px;
}
.vc-cta .arrow { color: var(--accent); transition: transform .2s }
.video-card:hover .vc-cta .arrow { transform: translateX(3px) }
.coach-byline {
  display: flex; align-items: center; gap: 10px; margin-top: 18px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 65%, transparent);
}
.coach-byline .avp {
  width: 34px; height: 34px;
  border-color: rgba(243,236,224,.35);
  background:
    repeating-linear-gradient(135deg, rgba(243,236,224,.08) 0 2px, transparent 2px 8px),
    rgba(243,236,224,.06);
  color: color-mix(in oklab, var(--paper) 65%, transparent);
}
.coach-byline b { color: var(--paper); font-weight: 500; letter-spacing: .04em }
@media (max-width: 900px) { .heroV2 { grid-template-columns: 1fr } }

/* ——— Stuck states ——— */
.stuck { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 14px; overflow: hidden }
.stuck .cell {
  padding: 24px 32px 36px; background: color-mix(in oklab, var(--paper) 60%, white);
  display: flex; flex-direction: column; gap: 14px;
}
.stuck-img {
  aspect-ratio: 4/3;
  border-radius: 6px;
  margin-bottom: 6px;
}
.stuck-img .ph-lbl { font-size: 10px; letter-spacing: .08em; line-height: 1.3; max-width: 90% }
.stuck-img .ph-spec { font-size: 9px }
.stuck .cell .scene {
  font-family: var(--f-display); font-size: 22px; line-height: 1.3; color: var(--ink-2); font-style: italic;
}
.stuck .cell .scene em { color: var(--accent); font-style: italic; font-weight: 500 }
.stuck .cell .tag {
  margin-top: auto; font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em;
  color: var(--muted); text-transform: uppercase;
}
@media (max-width: 860px) { .stuck { grid-template-columns: 1fr } }

/* ——— Offers ——— */
.offers { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px }
.offer {
  border: .5px solid var(--rule); border-radius: 14px; padding: 32px;
  background: color-mix(in oklab, var(--paper) 60%, white);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.offer .badge {
  position: absolute; top: 16px; right: 16px;
  font: 500 10px/1 var(--f-mono); letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 8px; border-radius: 4px; background: var(--accent); color: #fff;
}
.offer h3 { font-family: var(--f-display); font-weight: 400; font-size: 32px; line-height: 1.1; margin: 0; letter-spacing: -.005em }
.offer h3 em { font-style: italic }
.offer .tag { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; color: var(--muted); text-transform: uppercase }
.offer .desc { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0 }
.offer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--ink-2) }
.offer ul li { display: flex; gap: 10px; align-items: flex-start }
.offer ul li::before { content: ""; width: 14px; height: 1px; background: var(--accent); margin-top: 10px; flex-shrink: 0 }
.offer .book-options {
  border-top: 1px solid var(--rule); padding-top: 18px; margin-top: auto;
  display: flex; flex-direction: column; gap: 10px;
}
.offer .book-opt {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px; border-radius: 9px;
  border: 1px solid var(--rule); background: var(--paper);
  text-decoration: none; color: var(--ink);
  transition: background .18s, border-color .18s;
}
.offer .book-opt:hover { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 7%, white) }
.offer .book-opt .bo-label { flex: 1; font-size: 14px; color: var(--ink-2) }
.offer .book-opt .bo-price { font-family: var(--f-mono); font-size: 14px; font-weight: 500; color: var(--ink) }
.offer .book-opt .bo-arrow { color: var(--accent); font-size: 14px; transition: transform .2s }
.offer .book-opt:hover .bo-arrow { transform: translateX(3px) }
.offer.featured { background: var(--surface-dark); color: var(--paper) }
.offer.featured h3,
.offer.featured .desc,
.offer.featured ul,
.offer.featured .book-opt .bo-label { color: color-mix(in oklab, var(--paper) 88%, transparent) }
.offer.featured .tag { color: color-mix(in oklab, var(--paper) 65%, transparent) }
.offer.featured .book-options { border-top-color: rgba(243,236,224,.15) }
.offer.featured .book-opt {
  border-color: rgba(243,236,224,.2); background: rgba(243,236,224,.06);
}
.offer.featured .book-opt:hover { border-color: var(--accent); background: var(--accent) }
.offer.featured .book-opt .bo-price { color: var(--paper) }
.offer.featured .book-opt .bo-arrow { color: var(--paper) }
.offer.featured ul li::before { background: var(--accent) }
.offers-note {
  margin-top: 32px; padding: 20px;
  border: .5px dashed var(--rule); border-radius: 10px;
  font-size: 14px; color: var(--muted); text-align: center;
}
.offers-note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px }
@media (max-width: 900px) { .offers { grid-template-columns: 1fr } }

/* ——— How coaching works ——— */
.loop-intro {
  margin-bottom: 48px;
}
.loop-intro .loop-h {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px); line-height: 1.05; letter-spacing: -.01em;
  margin: 12px 0 18px;
}
.loop-intro .loop-h em { font-style: italic; color: var(--accent) }
.loop-intro .loop-desc { font-size: 17px; line-height: 1.6; color: var(--ink-2); max-width: 62ch; margin: 0 }
.loop { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px }
.loop-step {
  border: .5px solid var(--rule); border-radius: 14px; padding: 28px;
  background: color-mix(in oklab, var(--paper) 60%, white);
  display: flex; flex-direction: column; gap: 12px;
}
.loop-step .step-n {
  width: 36px; height: 36px; border-radius: 999px;
  display: grid; place-items: center; font-family: var(--f-mono); font-size: 13px;
  background: var(--accent); color: #fff; font-weight: 500;
}
.loop-step h4 { font-family: var(--f-display); font-weight: 400; font-size: 26px; line-height: 1.15; margin: 6px 0 }
.loop-step p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.55 }
.loop-step .example {
  font-family: var(--f-display); font-style: italic; font-size: 16px; line-height: 1.45;
  color: var(--muted); border-left: 2px solid var(--accent); padding-left: 12px; margin-top: 4px;
}
.loop-step .time {
  margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--rule);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; color: var(--muted); text-transform: uppercase;
}
@media (max-width: 900px) { .loop { grid-template-columns: 1fr } }

/* ——— About ——— */
.auth { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start }
.auth .photo-stack { display: flex; flex-direction: column; gap: 14px }
.auth .photo {
  aspect-ratio: 4/5; border-radius: 8px; border: .5px solid var(--rule);
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.auth .photo.ph {
  background-image: none;
}
.auth .photo-stack .secondary { aspect-ratio: 5/3 }
.auth .welcome-video {
  aspect-ratio: 16/9; border-radius: 8px; overflow: hidden;
  border: .5px solid var(--rule); background: #000;
}
.auth .welcome-video iframe { width: 100%; height: 100%; border: 0; display: block }
.auth .welcome-cap {
  margin: 0; font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .04em; color: var(--ink-2); opacity: .8;
}
.auth .intro p { font-size: 17px; line-height: 1.65; color: var(--ink-2) }
.auth .intro p em { color: var(--accent); font-style: italic }
.auth .intro h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(32px, 3.6vw, 46px); line-height: 1.08;
  margin: 16px 0 22px; letter-spacing: -.01em;
}
.auth .intro h2 em { color: var(--accent); font-style: italic }
.creds { margin-top: 28px; display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--rule) }
.creds .cred { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--rule) }
.creds .yr { font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; color: var(--muted); padding-top: 2px }
.creds .what { font-size: 15px; color: var(--ink-2); line-height: 1.5 }
.creds .what b { color: var(--ink); font-weight: 500 }
@media (max-width: 860px) { .auth { grid-template-columns: 1fr } }

/* ——— Testimonials ——— */
.tests { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px }
.t {
  padding: 28px; border: .5px solid var(--rule); border-radius: 10px;
  background: color-mix(in oklab, var(--paper) 60%, white);
  display: flex; flex-direction: column; gap: 18px;
}
.t .stars { color: var(--accent); letter-spacing: 2px; font-size: 13px }
.t .q { font-family: var(--f-display); font-size: 22px; line-height: 1.35; margin: 0; color: var(--ink) }
.t .who { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 13px; margin-top: auto }
.t .who .avp { width: 40px; height: 40px }
.t .who b { color: var(--ink-2); font-weight: 500 }
.t .who .city { font-size: 12px }
@media (max-width: 860px) { .tests { grid-template-columns: 1fr } }

/* ——— Podcast ——— */
.pod-grid {
  display: grid; grid-template-columns: 1.4fr .9fr; gap: 24px;
}
.pod-spotify {
  border: .5px solid var(--rule); border-radius: 14px; overflow: hidden; background: #000;
  aspect-ratio: 1 / 0.56;
}
.pod-spotify iframe { width: 100%; height: 100%; border: 0; display: block; background: #121212 }
.pod-panel { display: flex; flex-direction: column; gap: 12px }
.pod-info {
  padding: 20px; border: .5px solid var(--rule); border-radius: 10px;
  background: color-mix(in oklab, var(--paper) 60%, white);
}
.pod-info .pod-info-label {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; color: var(--muted);
  text-transform: uppercase; margin-bottom: 8px;
}
.pod-info p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-2) }
@media (max-width: 900px) { .pod-grid { grid-template-columns: 1fr } }

/* ——— Challenge CTA ——— */
.challenge {
  padding: 72px; border-radius: 18px;
  background:
    radial-gradient(800px 400px at 100% 0%, color-mix(in oklab, var(--accent) 28%, transparent), transparent 60%),
    var(--ink);
  color: var(--paper);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center;
  position: relative; overflow: hidden;
}
.challenge .ch-eyebrow {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 70%, transparent);
  display: inline-flex; align-items: center; gap: 10px;
}
.challenge .ch-eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .5 }
.challenge h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px); line-height: 1.05; margin: 12px 0 16px; letter-spacing: -.01em;
}
.challenge h2 em { font-style: italic; color: #7DDFF5 }
.challenge p { color: color-mix(in oklab, var(--paper) 80%, transparent); font-size: 16px; max-width: 42ch; margin: 0 0 8px }
.challenge p b { color: var(--paper) }
.challenge p em { color: #7DDFF5; font-style: italic }
.challenge .ch-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px }
.challenge .btn-app {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 999px;
  background: var(--accent); color: #fff;
  font: 500 14px/1 var(--f-body); text-decoration: none;
  border: .5px solid transparent; cursor: pointer;
  transition: background .18s;
}
.challenge .btn-app:hover { background: #005f91 }
.challenge .btn-app .arrow { transition: transform .2s }
.challenge .btn-app:hover .arrow { transform: translateX(3px) }
.challenge .micro {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em;
  color: color-mix(in oklab, var(--paper) 55%, transparent);
  text-transform: uppercase; margin-top: 14px;
}
.app-shot {
  position: relative;
  aspect-ratio: 9 / 19.5;
  max-height: 520px;
  margin: 0 auto;
  border-radius: 36px;
  border: 8px solid rgba(243,236,224,.14);
  outline: 1px dashed rgba(243,236,224,.32);
  background:
    repeating-linear-gradient(135deg, rgba(243,236,224,.06) 0 2px, transparent 2px 12px),
    linear-gradient(180deg, rgba(243,236,224,.08), rgba(243,236,224,.02));
  background-size: cover;
  background-position: center;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px;
  overflow: hidden;
}
.app-shot::before {
  content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 6px; border-radius: 999px;
  background: rgba(243,236,224,.18);
}
.app-shot .app-spec {
  position: absolute; top: 24px; right: 18px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .08em;
  color: color-mix(in oklab, var(--paper) 55%, transparent);
  background: rgba(243,236,224,.08);
  padding: 4px 6px; border-radius: 3px;
}
.app-shot .app-lbl {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 78%, transparent);
  background: rgba(243,236,224,.10);
  padding: 8px 10px; border-radius: 6px; border: .5px solid rgba(243,236,224,.18);
  text-align: center;
}
@media (max-width: 900px) { .challenge { grid-template-columns: 1fr; padding: 44px } }

/* Filled phone frame — real screenshot */
.app-shot--filled {
  padding: 0;
  background: #fff;
  outline: none;
  border-color: rgba(243,236,224,.22);
}
.app-shot--filled::before { display: none; }
.app-shot--filled img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}

/* ——— Footer ——— */
footer { padding: 48px 0 60px; border-top: 1px solid var(--rule); margin-top: 24px }
footer .row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap }
footer .cols { display: flex; gap: 48px; flex-wrap: wrap }
footer h5 { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; font-weight: 500 }
footer a { display: block; text-decoration: none; color: var(--ink-2); font-size: 14px; padding: 3px 0 }
footer a:hover { color: var(--accent) }
footer .mark { font-family: var(--f-display); font-size: 44px; line-height: 1; color: var(--ink) }
footer .mark em { font-style: italic }
footer .sig-row { display: flex; align-items: center; gap: 12px; margin-top: 14px }
footer .sig-row .avp { width: 36px; height: 36px }
footer .sig-row .sig-name { font-family: var(--f-display); font-style: italic; font-size: 18px; color: var(--ink-2) }
footer .sig-row .sig-meta { font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted) }
footer .fine { font-family: var(--f-mono); font-size: 11px; color: var(--muted); margin-top: 20px; letter-spacing: .04em }

/* ——— Photo placeholders ——— */
.ph {
  position: relative; overflow: hidden; border-radius: 8px;
  border: 1px dashed color-mix(in oklab, var(--accent) 55%, var(--rule));
  background:
    repeating-linear-gradient(135deg, color-mix(in oklab, var(--accent) 8%, transparent) 0 2px, transparent 2px 14px),
    var(--paper-2);
  background-size: cover; background-position: center;
}
.ph .ph-lbl {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-2);
  background: color-mix(in oklab, var(--paper) 88%, transparent);
  padding: 6px 8px; border-radius: 4px; border: .5px solid var(--rule);
  max-width: 75%;
}
.ph .ph-spec {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .08em;
  color: var(--muted);
  background: color-mix(in oklab, var(--paper) 70%, transparent);
  padding: 4px 6px; border-radius: 3px;
}
.ph[data-filled="true"] { border-style: solid; border-color: var(--rule) }
.ph[data-filled="true"] .ph-lbl,
.ph[data-filled="true"] .ph-spec { display: none }

/* Avatar placeholder — circular */
.avp {
  position: relative; border-radius: 999px;
  background:
    repeating-linear-gradient(135deg, color-mix(in oklab, var(--accent) 8%, transparent) 0 2px, transparent 2px 8px),
    var(--paper-2);
  border: 1px dashed color-mix(in oklab, var(--accent) 55%, var(--rule));
  background-size: cover; background-position: center;
  flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .04em; color: var(--muted);
  text-transform: uppercase;
}
.avp[data-filled="true"] { border-style: solid; border-color: var(--rule) }
.avp[data-filled="true"] .avp-init { display: none }

/* ——— Video lightbox ——— */
.video-lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center; padding: 24px;
}
.video-lightbox[hidden] { display: none }
.vl-backdrop {
  position: absolute; inset: 0;
  background: rgba(3,4,94,.55); backdrop-filter: blur(4px);
  animation: vlFade .2s ease;
}
.vl-inner {
  position: relative; width: min(880px, 100%);
  animation: vlPop .22s cubic-bezier(.2,.7,.3,1);
}
.vl-frame {
  position: relative; aspect-ratio: 16/9; width: 100%;
  border-radius: 14px; overflow: hidden; background: #000;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.6);
}
.vl-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0 }
.vl-close {
  position: absolute; top: -46px; right: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.16); color: #fff; border: 0;
  font-size: 24px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: background .18s;
}
.vl-close:hover { background: rgba(255,255,255,.32) }
body.vl-open { overflow: hidden }
@keyframes vlFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes vlPop { from { opacity: 0; transform: translateY(8px) scale(.98) } to { opacity: 1; transform: none } }
@media (max-width: 560px) { .vl-close { top: -42px } }
