:root {
  --paper: #F5F1E8;
  --paper-2: #EFEADD;
  --paper-3: #E8E1D2;
  --white: #FFFCF6;
  --ink: #16140F;
  --ink-soft: #3C382E;
  --ink-mute: #6B6555;
  --magenta: #C61CA0;
  --magenta-deep: #A01180;
  --magenta-soft: #F3D4EB;
  --clay: #C7603A;
  --clay-deep: #9E4A2C;
  --clay-soft: #F3E0D0;
  --line: #D9D2C0;
  --line-strong: rgba(22, 20, 15, 0.16);
  --serif: "Instrument Serif", Georgia, serif;
  --display: "Space Grotesk", system-ui, sans-serif;
  --sans: Inter, system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
  --max: 1180px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--magenta); color: #fff; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.03;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}
.skip:focus { top: 12px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; }
@media (max-width: 720px) { .wrap { width: min(var(--max), calc(100% - 40px)); } }
section[id] { scroll-margin-top: 96px; }

h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -0.03em; line-height: 1.02; }
.it { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.02em; }
.mono { font-family: var(--mono); }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-mute);
}
.accent { color: var(--magenta); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  transition: transform 0.15s var(--ease), background 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.btn .arr { transition: transform 0.15s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.btn-primary { background: var(--magenta); border-color: var(--magenta); color: #fff; }
.btn-primary:hover { background: var(--magenta-deep); border-color: var(--magenta-deep); transform: translateY(-1px); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-invert { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.btn-invert:hover { background: #fff; border-color: #fff; transform: translateY(-1px); }
.btn:disabled { opacity: 0.55; cursor: wait; transform: none; }
.btn:focus-visible { outline: 2px solid var(--magenta); outline-offset: 3px; }

/* ---------- Chrome ---------- */
.announce {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
}
.announce a { display: block; }
.announce a:hover { color: #f3a8dd; }

.site-chrome { position: sticky; top: 0; z-index: 80; }
.site-nav {
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}
.lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.lockup a { display: flex; align-items: center; min-width: 0; }
.lockup img { height: 24px; width: auto; display: block; }
.lockup .fnf { height: 56px; }
.lockup .times {
  color: var(--magenta);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  opacity: 0.9;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links .muted { font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.nav-links .muted:hover, .nav-links .muted.current { color: var(--ink); }
.nav-playbook {
  font-size: 14px;
  font-weight: 600;
  color: var(--magenta);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.nav-playbook:hover { color: var(--magenta-deep); }
.nav-on-thanks { display: none; }
.apply-page.is-done .nav-on-apply { display: none; }
.apply-page.is-done .nav-on-thanks { display: inline; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 18px; height: 2px; background: currentColor; border-radius: 1px;
}
.nav-toggle-bars { position: relative; margin: 0 auto; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.site-nav.is-open .nav-toggle-bars { background: transparent; }
.site-nav.is-open .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.site-nav.is-open .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .lockup .fnf { height: 44px; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px 20px 20px;
    background: rgba(245, 241, 232, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px -24px rgba(22, 20, 15, 0.45);
  }
  .site-nav.is-open .nav-links { display: flex; }
  .nav-links .muted { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-links .btn { margin-top: 16px; width: 100%; }
  .nav-links .nav-playbook { padding: 14px 4px; font-size: 16px; }
  .apply-page.is-done .nav-on-thanks { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(86vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  padding: 0;
  border-bottom: 1px solid var(--ink);
}
.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(46vw, 620px);
  z-index: 0;
  background: #d8d4cc;
  overflow: hidden;
}
.hero-visual .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  opacity: 0;
  transition: opacity 0.85s ease;
  filter: saturate(0.96) contrast(1.03);
  pointer-events: none;
}
.hero-visual video.hero-slide {
  object-position: 50% 42%;
}
.hero-visual .hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-visual::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: var(--magenta);
  z-index: 2;
}
.hero-veil {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(46vw, 620px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(245, 241, 232, 0) 22%);
}
.wrap.hero-copy {
  position: relative;
  z-index: 2;
  padding: 80px 0 88px;
  padding-right: min(46vw, 640px);
  max-width: min(var(--max), calc(100% - 64px));
}
.hero .eyebrow {
  color: var(--magenta);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(40px, 6.2vw, 84px);
  max-width: 16ch;
  margin: 0 0 24px;
  letter-spacing: -0.045em;
}
.hero h1 .accent { color: var(--magenta); }
.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 54ch;
}
.hero-lead + .hero-lead { margin-top: 14px; }
.hero-actions { margin-top: 28px; }
.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-mute);
  max-width: 42ch;
}
.hero-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-mute);
}
.hero-byline .fnf { height: 28px; width: auto; display: block; }
.hero-byline a { border: 0; color: inherit; }

.spec-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.spec-in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 0;
}
.spec-in > div {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.spec-in > div:last-child { border-right: 0; padding-right: 0; }
.spec-in b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 8px;
}
.spec-in span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--ink);
  position: relative;
  z-index: 1;
}
.fact { padding: 18px 18px 4px 0; }
.fact b {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.fact span { font-size: 15px; font-weight: 500; }

/* ---------- Partner ---------- */
.partner {
  padding: 72px 0 88px;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.partner-in {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.partner-in .fnf { height: 64px; width: auto; margin-top: 8px; }
.partner-copy .eyebrow { color: var(--magenta); margin-bottom: 12px; }
.partner-copy h2 {
  font-size: clamp(32px, 4vw, 48px);
  max-width: 18ch;
  margin: 0 0 18px;
}
.partner-copy p:not(.eyebrow) { color: var(--ink-soft); font-size: 17px; max-width: 58ch; }
.partner-copy p:not(.eyebrow) + p { margin-top: 12px; }
.partner-in a {
  color: var(--magenta);
  border-bottom: 1px solid rgba(198, 28, 160, 0.35);
}

/* ---------- Dark thesis ---------- */
.dark {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 76px;
}
.dark .eyebrow { color: #D9B2D0; }
.dark h2 { font-size: clamp(36px, 5vw, 64px); max-width: 16ch; margin: 12px 0 18px; }
.dark p { color: #E8DFE5; max-width: 68ch; }
.thesis-flow {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 14px;
  margin-top: 42px;
}
.flow {
  border-radius: 18px;
  padding: 24px 24px 22px;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.flow-bad { background: #2A2420; color: #C8BDC5; }
.flow-good { background: #F8EAF5; color: var(--ink); }
.flow b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.12;
  margin-top: 22px;
}
.promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  margin-top: 48px;
}
.promise > div { background: var(--ink); padding: 26px 24px; }
.promise strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 8px;
}
.promise span { font-size: 14px; color: #CFC4CC; line-height: 1.5; }

/* ---------- Story ---------- */
.story { padding: 96px 0; }
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story h2 { font-size: clamp(34px, 4.6vw, 56px); margin: 10px 0 16px; }
.story p { color: var(--ink-soft); }
.ticks { list-style: none; margin-top: 26px; display: grid; gap: 13px; }
.ticks li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; }
.ticks li::before { content: "✓"; font-weight: 800; color: var(--magenta); }
.photo-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 480px;
  background: var(--paper-3);
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 28% 50%;
  position: absolute; inset: 0;
  min-height: 480px;
}

/* ---------- Syllabus / clay ---------- */
.arc {
  background: var(--clay);
  color: #24170C;
  padding: 88px 0 80px;
}
.arc .eyebrow { color: #5A2D00; }
.arc h2 { font-size: clamp(36px, 5vw, 64px); margin: 8px 0 14px; }
.arc-top { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 48px; align-items: end; }
.syllabus {
  background: var(--paper);
  color: var(--ink);
  margin-top: 42px;
  border: 1px solid #24170C;
}
.syllabus table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 15px;
}
.syllabus .c-wk { width: 72px; }
.syllabus .c-dt { width: 168px; }
.syllabus .c-out { width: 26%; }
.syllabus thead th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #5A2D00;
  text-align: left;
  padding: 14px 22px;
  background: #F3E4C8;
  border-bottom: 2px solid #24170C;
}
.syllabus thead th + th { border-left: 1px solid rgba(36, 23, 12, 0.12); }
.syllabus tbody td {
  padding: 22px;
  border-bottom: 1px solid rgba(36, 23, 12, 0.14);
  vertical-align: top;
}
.syllabus tbody td + td { border-left: 1px solid rgba(36, 23, 12, 0.12); }
.syllabus tbody tr:last-child td { border-bottom: 0; }
.syllabus tbody tr:nth-child(even) { background: rgba(199, 96, 58, 0.06); }
.syllabus tbody tr.is-irl { background: rgba(198, 28, 160, 0.05); }
.syllabus tbody tr.is-irl td:first-child {
  box-shadow: inset 4px 0 0 var(--magenta);
}
.syllabus .wk {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 34px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--clay-deep);
  padding-top: 20px;
}
.syllabus .dt {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
  font-weight: 500;
}
.syllabus .where {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 8px;
  border: 1px solid rgba(36, 23, 12, 0.2);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.syllabus .where.ip {
  color: var(--magenta);
  border-color: rgba(198, 28, 160, 0.5);
  background: rgba(198, 28, 160, 0.06);
}
.syllabus .focus b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.syllabus .focus span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.syllabus .out {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ---------- Tools / outcomes ---------- */
.tools { padding: 96px 0; }
.tools h2, .outcomes h2, .who h2, .instructor h2, .faq h2 {
  font-size: clamp(34px, 4.8vw, 60px);
  margin: 10px 0 14px;
}
.lede { color: var(--ink-soft); max-width: 62ch; }
.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.tool {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.tool b { display: block; font-size: 16px; margin-bottom: 8px; }
.tool span { font-size: 14px; color: var(--ink-mute); line-height: 1.5; }

.outcomes { background: var(--paper); padding: 92px 0; border-top: 1px solid var(--line); }
.outcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; margin-top: 28px; }
.outcome { padding: 24px 0; border-top: 1px solid var(--ink); }
.outcome strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 8px;
}

/* ---------- Instructor ---------- */
.instructor { padding: 96px 0 80px; background: var(--paper); }
.instructor-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 56px 72px;
  align-items: start;
}
.about-portrait {
  width: clamp(240px, 28vw, 320px);
  max-width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  isolation: isolate;
  flex-shrink: 0;
  justify-self: center;
  margin: 8px auto 0;
  background: #e8e4db;
  overflow: visible;
}
.about-portrait::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  z-index: -1;
  background:
    radial-gradient(circle at 28% 22%, rgba(232, 191, 198, 0.5) 0%, transparent 52%),
    radial-gradient(circle at 72% 78%, rgba(138, 106, 158, 0.32) 0%, transparent 48%),
    radial-gradient(circle, rgba(192, 138, 154, 0.16) 0%, transparent 70%);
  filter: blur(2px);
}
.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1px rgba(22, 20, 15, 0.08),
    0 0 0 5px rgba(245, 241, 232, 0.95),
    0 0 0 6px rgba(192, 138, 154, 0.28),
    0 18px 44px rgba(22, 20, 15, 0.12);
  pointer-events: none;
  z-index: 1;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  border-radius: 50%;
}
.instructor-copy h2 { max-width: 16ch; }
.receipts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--ink);
}
.receipts > div {
  padding: 22px 20px 4px 0;
  border-right: 1px solid var(--line);
}
.receipts > div:last-child { border-right: 0; }
.receipts b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.receipts span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.4;
}

/* ---------- Who / FAQ ---------- */
.who { padding: 80px 0 88px; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
  margin-top: 48px;
}
.who-card {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--ink);
}
.who-card h3 {
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.who-card p { font-size: 15px; color: var(--ink-soft); }

.faq { padding: 40px 0 96px; }
.faq-list { display: grid; gap: 0; margin-top: 28px; border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item h3 { font-size: 20px; margin-bottom: 8px; }
.faq-item p { color: var(--ink-soft); max-width: 72ch; }
.faq-item a { color: var(--magenta); border-bottom: 1px solid rgba(198, 28, 160, 0.35); }

/* ---------- Final CTA ---------- */
.final {
  background: var(--magenta);
  color: #fff;
  padding: 88px 0 96px;
}
.final-in { max-width: 46em; }
.final .eyebrow { color: #FFD8F4; }
.final h2 {
  font-size: clamp(40px, 6vw, 72px);
  margin: 10px 0 16px;
  max-width: 14ch;
}
.final p { max-width: 52ch; color: #F9D9F2; }
.final p + p { margin-top: 10px; }
.final .btn { margin-top: 28px; }
.final .fine {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #F9D9F2;
  margin-top: 16px;
  max-width: none;
}

/* ---------- Apply page ---------- */
.apply-hero { padding: 56px 0 36px; overflow: hidden; }
.apply-hero .eyebrow { color: var(--magenta); margin-bottom: 14px; }
.apply-hero h1 { font-size: clamp(36px, 5.6vw, 64px); max-width: 16ch; margin: 10px 0 16px; }
.apply-hero h1 .it { display: inline-block; animation: apply-sway 4.5s var(--ease) infinite; }
.apply-hero .hero-lead { margin: 0; max-width: 46ch; }
.apply-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px 48px;
  align-items: center;
}
.apply-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
  max-width: 440px;
}
.apply-chips div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px 11px;
}
.apply-chips b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.apply-chips span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.apply-photos, .thanks-photos {
  position: relative;
  height: 340px;
  z-index: 0;
}
.apply-photos .polaroid, .thanks-photos .polaroid {
  position: absolute;
  box-sizing: content-box;
  width: min(72%, 280px);
  height: auto;
  max-width: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 10px solid #fff;
  border-bottom-width: 28px;
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(22, 20, 15, 0.16);
}
.apply-photos .p1, .thanks-photos .p1 {
  left: 4%;
  top: 8%;
  transform: rotate(-7deg);
  animation: apply-float 6.5s ease-in-out infinite;
  z-index: 1;
}
.apply-photos .p2, .thanks-photos .p2 {
  right: 0;
  bottom: 0;
  transform: rotate(6deg);
  animation: apply-float 7.5s ease-in-out infinite reverse;
  animation-delay: -1.4s;
}
.apply-page .apply-hero .eyebrow,
.apply-page .apply-hero h1,
.apply-page .apply-hero .hero-lead,
.apply-page .apply-chips,
.apply-page .apply-photos {
  animation: apply-rise 0.8s var(--ease) both;
}
.apply-page .apply-hero h1 { animation-delay: 0.08s; }
.apply-page .apply-hero .hero-lead { animation-delay: 0.16s; }
.apply-page .apply-chips { animation-delay: 0.24s; }
.apply-page .apply-photos { animation-delay: 0.18s; }

@keyframes apply-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes apply-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}
@keyframes apply-sway {
  0%, 100% { transform: rotate(-1.2deg); }
  50% { transform: rotate(1.4deg); }
}

.form-shell {
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 36px 42px;
  margin: 12px 0 88px;
  overflow: hidden;
}
.apply-page.is-done .apply-hero { display: none; }
.apply-page.is-done .partner { display: none; }
.apply-page.is-done .form-shell[hidden] { display: none !important; }

.embed-bar { display: none; }
html.is-embed {
  overflow: hidden;
  height: auto;
  background: transparent;
}
html.is-embed body {
  overflow: hidden;
  background: transparent;
}
html.is-embed .announce,
html.is-embed .site-nav,
html.is-embed .apply-hero,
html.is-embed .partner,
html.is-embed .site-foot,
html.is-embed .thanks-fund,
html.is-embed .skip {
  display: none !important;
}
html.is-embed .embed-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  padding: 4px 2px 18px;
}
html.is-embed .embed-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}
html.is-embed .embed-lockup img { height: 22px; width: auto; }
html.is-embed .embed-lockup .fnf { height: 30px; }
html.is-embed .embed-lockup .times {
  color: var(--magenta);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
}
html.is-embed .embed-bar p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
html.is-embed .wrap {
  width: 100%;
  max-width: none;
}
html.is-embed .form-shell {
  margin: 0 0 8px;
  padding: 28px 24px 32px;
}
html.is-embed .thanks { margin: 8px 0 16px; }
html.is-embed .thanks-next { margin-bottom: 8px; }
@media (max-width: 720px) {
  html.is-embed .form-shell { padding: 20px 16px 24px; }
  html.is-embed .embed-bar { padding-bottom: 12px; }
}

.form-intro {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.form-intro h2 { font-size: 34px; }
.form-intro p { color: var(--ink-mute); font-size: 14px; max-width: 340px; text-align: right; line-height: 1.5; }
.section { padding: 28px 0 8px; border-bottom: 0; }
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  align-items: start;
  padding: 16px 18px 15px;
  margin: 0 0 26px;
  background: #E8E7E4;
  border-radius: 16px;
  border-left: 4px solid var(--magenta);
}
.section-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--magenta);
  padding-top: 8px;
}
.section h3 {
  font-size: clamp(28px, 3.4vw, 36px);
  margin: 0;
  max-width: 16ch;
}
.section h3 .it { color: var(--magenta); }
.section .sub {
  font-size: 14px;
  color: var(--ink-mute);
  margin: 8px 0 0;
  max-width: 52ch;
  line-height: 1.45;
}
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field:last-child { margin-bottom: 0; }
label .req { color: var(--magenta); }
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
}
.hint { display: block; font-size: 12px; font-weight: 400; color: var(--ink-mute); margin-top: 3px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], textarea, select {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #D5CAD2;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}
textarea { min-height: 104px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(198, 28, 160, 0.08);
}
.hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.radios { display: grid; gap: 8px; }
.radios.inline { grid-template-columns: 1fr 1fr; }
.ineligible {
  background: #FDF6FB;
  border: 1px solid rgba(198, 28, 160, 0.28);
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 8px;
}
.ineligible p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 58ch;
}
.ineligible p + p { margin-top: 10px; }
.ineligible strong { color: var(--ink); }
.ineligible-form { margin-top: 16px; }
.ineligible-form input[type="email"] { background: #fff; }
.choice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
}
.choice:hover, .choice:has(input:checked) { border-color: var(--magenta); background: #FDF6FB; }
.choice input { width: auto; margin-top: 3px; accent-color: var(--magenta); }
.schedule {
  padding: 14px 16px;
  background: var(--paper-2);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.submit-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 28px;
}
.fine { font-size: 12px; color: var(--ink-mute); max-width: 470px; line-height: 1.5; }
.form-status { margin-top: 14px; font-size: 14px; color: var(--magenta-deep); }
.thanks {
  display: none;
  position: relative;
  text-align: left;
  margin: 48px 0 28px;
}
.thanks:not([hidden]) {
  display: block;
  animation: apply-rise 0.7s var(--ease);
}
.thanks-card {
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) minmax(0, 1.2fr) minmax(220px, 0.95fr);
  gap: 12px 28px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(22, 20, 15, 0.06);
  padding: 36px 32px 36px 28px;
  overflow: visible;
}
.thanks-copy { min-width: 0; }
.thanks .eyebrow { margin-bottom: 10px; color: var(--magenta); }
.thanks h2 {
  position: relative;
  font-size: clamp(32px, 4.2vw, 48px);
  margin: 0 0 16px;
  max-width: 12ch;
  line-height: 1.08;
}
.thanks h2 .it {
  display: block;
  font-size: 1.05em;
  animation: apply-sway 4.5s var(--ease) infinite;
}
.thanks p { color: var(--ink-soft); max-width: 42ch; font-size: 15px; }
.thanks p + p { margin-top: 12px; }
.thanks-photos {
  position: relative;
  height: 280px;
  overflow: visible;
  z-index: 1;
}
.thanks-photos .polaroid {
  width: 200px;
  max-width: 200px;
  height: 150px;
}
.thanks-photos .p1 {
  left: 8px;
  top: 28px;
}
.thanks-photos .p2 {
  left: 54px;
  top: 108px;
  right: auto;
  bottom: auto;
}
.thanks-facts {
  list-style: none;
  display: grid;
  gap: 16px;
  padding-left: 22px;
  border-left: 1px solid var(--line);
}
.thanks-facts li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}
.thanks-fact-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--magenta-soft);
  color: var(--magenta);
  flex-shrink: 0;
  line-height: 0;
}
.thanks-fact-ico svg {
  display: block;
}
.thanks-facts b {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.thanks-facts li > div span {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.thanks-next {
  display: none;
  margin: 0 0 72px;
}
.thanks-next:not([hidden]) {
  display: block;
  animation: apply-rise 0.7s var(--ease);
}
.wait-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 28px 32px;
}
.wait-kicker {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--paper);
  padding: 0 14px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta);
  white-space: nowrap;
}
.wait-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  align-items: stretch;
}
.wait-play {
  display: grid;
  grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 8px 28px 8px 8px;
  border-right: 1px solid var(--line);
}
.wait-drops {
  padding: 8px 8px 8px 32px;
}
.wait-copy h3,
.wait-drops h3 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 6px 0 10px;
  letter-spacing: -0.03em;
}
.wait-copy p,
.wait-drops p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 38ch;
}
.wait-copy .btn,
.wait-drops .btn { margin-top: 18px; }
.wait-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--magenta-soft);
  color: var(--magenta);
  margin-bottom: 10px;
}
.wait-ico-box {
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}
.wait-visual {
  position: relative;
  height: 210px;
  overflow: visible;
}
.wait-board {
  width: 100%;
  height: 168px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(22, 20, 15, 0.08);
  padding: 10px 10px 12px;
}
.wait-board-dots {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}
.wait-board-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E4D9C8;
}
.wait-board-title {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.wait-board-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.wait-board-cols span {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.wait-board-cols .note {
  display: block;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.25;
  padding: 6px 5px;
  border-radius: 3px;
  margin-top: 4px;
}
.note.n1 { background: #F8E3A8; }
.note.n2 { background: #F3D4EB; }
.note.n3 { background: #D8E8C8; }
.note.n4 { background: #F3E0D0; }
.wait-polaroid {
  position: absolute;
  right: -10px;
  bottom: 4px;
  width: 78px;
  background: #fff;
  border: 6px solid #fff;
  border-bottom-width: 16px;
  border-radius: 3px;
  box-shadow: 0 10px 22px rgba(22, 20, 15, 0.16);
  transform: rotate(8deg);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 4px 8px;
}
.wait-polaroid span {
  display: block;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper-2);
  padding: 5px 4px;
  text-align: center;
}
.wait-form {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  align-items: stretch;
}
.wait-form input[type="email"] {
  flex: 1;
  min-width: 0;
  background: var(--paper);
}
.wait-form .btn {
  margin-top: 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.wait-fine {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-mute);
}
.thanks-fund {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  padding: 18px 22px;
  background: var(--magenta-soft);
  border-radius: 20px;
}
.thanks-fund img {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}
.thanks-fund p {
  flex: 1;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.thanks-fund strong { color: var(--ink); font-weight: 600; }
.thanks-fund a {
  flex-shrink: 0;
  color: var(--magenta-deep);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.thanks-fund a:hover { color: var(--ink); }

/* ---------- Footer ---------- */
.site-foot {
  border-top: 1px solid var(--line);
  padding: 32px 0 40px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
}
.foot-in { display: flex; justify-content: space-between; gap: 24px; align-items: center; flex-wrap: wrap; }
.foot-brands { display: flex; align-items: center; gap: 14px; }
.foot-brands img { height: 22px; width: auto; }
.foot-brands .fnf { height: 30px; }
.foot-brands .times { color: var(--magenta); font-family: var(--serif); font-style: italic; font-size: 20px; }
.site-foot a:hover { color: var(--ink); }

@media (max-width: 900px) {
  .two, .arc-top, .apply-split, .instructor-grid, .partner-in { grid-template-columns: 1fr; }
  .instructor-grid { justify-items: center; gap: 36px; }
  .instructor-copy { width: 100%; }
  .hero {
    display: block;
    min-height: 0;
    border-bottom: 0;
  }
  .hero-visual {
    position: relative;
    width: 100%;
    height: 46vh;
    min-height: 280px;
  }
  .hero-visual .hero-slide { object-position: 50% 42%; }
  .hero-visual video.hero-slide { object-position: 50% 38%; }
  .hero-visual::after {
    width: 100%;
    height: 8px;
    top: auto;
    bottom: 0;
  }
  .hero-veil {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 46vh;
    min-height: 280px;
    background: linear-gradient(180deg, transparent 48%, var(--paper) 100%);
  }
  .hero-copy {
    max-width: min(var(--max), calc(100% - 40px));
    padding: 36px 0 56px;
  }
  .spec-in { grid-template-columns: 1fr 1fr; gap: 22px 0; padding: 24px 0; }
  .spec-in > div {
    border-right: 0;
    padding-right: 16px;
    padding-bottom: 8px;
  }
  .facts, .who-grid { grid-template-columns: 1fr 1fr; }
  .syllabus { padding: 0; }
  .syllabus table { table-layout: auto; }
  .syllabus table,
  .syllabus thead,
  .syllabus tbody,
  .syllabus tr,
  .syllabus th,
  .syllabus td { display: block; width: auto; }
  .syllabus thead { display: none; }
  .syllabus tbody td,
  .syllabus tbody td + td {
    border: 0;
    border-left: 0;
    padding: 0 0 8px;
    box-shadow: none;
    width: auto;
  }
  .syllabus tbody tr {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 2px 16px;
    padding: 20px 18px 18px;
    border-bottom: 1px solid rgba(36, 23, 12, 0.14);
  }
  .syllabus tbody tr:last-child { border-bottom: 0; }
  .syllabus tbody tr.is-irl { box-shadow: inset 4px 0 0 var(--magenta); }
  .syllabus .wk { grid-row: 1 / span 3; font-size: 30px; width: auto; padding: 0; }
  .syllabus .dt { width: auto; }
  .syllabus .out { width: auto; font-size: 17px; padding-top: 4px; }
  .who-grid { gap: 32px; }
  .receipts { grid-template-columns: 1fr 1fr; }
  .receipts > div { border-right: 0; padding: 20px 16px 8px 0; }
  .about-portrait { width: min(260px, 78vw); max-width: 260px; }
  .form-intro { display: block; }
  .form-intro p { text-align: left; margin-top: 10px; }
  .form-shell { padding: 24px; }
  .thanks { margin-top: 36px; }
  .thanks-card {
    grid-template-columns: 1fr;
    padding: 28px 22px 32px;
    gap: 8px;
  }
  .thanks-photos {
    height: 240px;
    margin: 0 auto 8px;
    width: min(280px, 100%);
  }
  .thanks-photos .polaroid { width: 190px; max-width: 190px; height: 142px; }
  .thanks-photos .p1 { left: 8px; top: 16px; }
  .thanks-photos .p2 { left: 64px; top: 78px; }
  .apply-photos { height: 260px; }
  .thanks h2 { max-width: none; }
  .thanks-facts {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 22px;
    margin-top: 8px;
  }
  .wait-grid,
  .wait-play { grid-template-columns: 1fr; }
  .wait-play {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 8px 4px 28px;
  }
  .wait-drops { padding: 28px 4px 8px; }
  .wait-visual { max-width: 220px; }
  .wait-form { flex-wrap: wrap; }
  .wait-form .btn { width: 100%; }
  .thanks-fund {
    flex-wrap: wrap;
    text-align: left;
  }
  .thanks-fund a { white-space: normal; }
  .apply-chips { max-width: none; }
}
@media (max-width: 560px) {
  .facts, .outcome-grid, .who-grid, .receipts, .grid2, .spec-in { grid-template-columns: 1fr; }
  .hero-visual, .hero-veil { height: 40vh; min-height: 240px; }
  .hero h1 { font-size: 36px; }
  .lockup .times, .lockup .fnf { display: none; }
  .final { padding: 64px 0 72px; }
  .submit-row { display: block; }
  .submit-row .btn { width: 100%; margin-top: 16px; }
  .apply-chips { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .btn .arr { transition: none; }
  .hero-visual .hero-slide { transition: none; }
  .apply-hero h1 .it,
  .thanks h2 .it,
  .apply-photos .polaroid,
  .thanks-photos .polaroid,
  .apply-page .apply-hero .eyebrow,
  .apply-page .apply-hero h1,
  .apply-page .apply-hero .hero-lead,
  .apply-page .apply-chips,
  .apply-page .apply-photos,
  .form-shell.is-done .thanks,
  .thanks:not([hidden]) {
    animation: none;
  }
}

/* AI toolkit update */
.tool { display:flex; flex-direction:column; gap:5px; }
.tool > strong { font-family:var(--serif); font-size:22px; font-weight:400; line-height:1.15; margin-bottom:5px; }
.tool-note { margin-top:18px; border:1px solid var(--line); padding:18px 22px; font-size:14px; line-height:1.55; background:var(--paper); }
.tool-note strong { font-weight:700; }
@media (max-width: 900px) { .tool-grid { grid-template-columns:1fr 1fr; } }
@media (max-width: 560px) { .tool-grid { grid-template-columns:1fr; } }
