/* Glow Lookbook — landing
   Palette: warm ivory paper, garnet signal (red carpet), champagne hairlines,
   one deep wine band. No cold greys, no pure black, no gradients. */

:root {
  --bg: #fbf6ef;
  --surface: #f4e9dd;
  --paper: #fffcf8;
  --deep: #2a0e18;
  --ink: #2a1f22;
  --ink-muted: #6b565a;
  --signal: #8c1d35;
  --signal-dark: #70162a;
  --gold: #b08948;
  --line: rgb(42 31 34 / 14%);
  --line-strong: rgb(42 31 34 / 26%);
  --line-light: rgb(246 237 227 / 26%);
  --ivory: #f6ede3;
  --ivory-muted: #d9c3c9;

  --display: Fraunces, "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: "DM Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --gap: clamp(20px, 5vw, 64px);
  --band: clamp(64px, 11vw, 132px);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  /* rem scales with the viewport: 16px @390, ~18.3px @1440, ~21px @1920, 24px @~2470 — the whole layout grows with the screen */
  font-size: clamp(16px, 0.55vw + 10.4px, 24px);
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  hyphens: manual;
}

img { max-width: 100%; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
  border-radius: 2px;
}

.wrap {
  width: min(78rem, 100% - var(--gap) * 2);
  margin-inline: auto;
}

/* ---------- type ---------- */

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  letter-spacing: -.02em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.9rem, 8.2vw, 5.6rem);
  line-height: .98;
}

h2 {
  font-size: clamp(1.95rem, 4.4vw, 3.4rem);
  line-height: 1.06;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  margin: 0 0 20px;
  color: var(--signal);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.5;
  text-transform: uppercase;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgb(251 246 239 / 88%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.01em;
  text-decoration: none;
}

.brand-mark {
  width: 18px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: inset 0 0 0 3px var(--bg), 0 0 0 1px var(--gold);
}

.header-link {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 160ms ease, color 160ms ease;
}

.header-link:hover { color: var(--signal); border-color: var(--signal); }

/* ---------- buttons ---------- */

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--signal);
  color: var(--paper);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--signal-dark);
  transform: translateY(-2px);
}

.price {
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-muted);
}

/* ---------- images ---------- */

.frame {
  overflow: hidden;
  border-radius: 4px;
  background: var(--surface);
  box-shadow: 0 24px 60px rgb(42 15 24 / 14%), 0 0 0 1px var(--line);
}

.frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-portrait { aspect-ratio: 4 / 5; }
.frame-gallery { aspect-ratio: 2 / 3; }

/* ---------- hero ---------- */

.hero {
  padding-block: clamp(40px, 7vw, 80px) var(--band);
}

/* ---------- quiz funnel screens ---------- */

.quiz-screen {
  padding-block: clamp(40px, 7vw, 80px) var(--band);
}

.quiz-card { max-width: 34rem; }
.quiz-card h1 { margin: 0 0 .5em; font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.08; font-variation-settings: "opsz" 72; }
/* work screens (questions, photos): narrow column on paper over the surface band, work-scale h1 */
.quiz-screen--work { background: var(--surface); }
.quiz-screen--work .quiz-card { background: var(--paper); padding: clamp(24px, 3vw, 40px); box-shadow: 0 18px 40px rgb(42 15 24 / 5%); }
.quiz-screen--work h1 { font-size: clamp(1.75rem, 4.2vw, 2.4rem); line-height: 1.15; margin-bottom: max(.42em, 16px); }
.quiz-screen--work .quiz-progress { display: flex; gap: 8px; margin: 22px 0 0; }
.quiz-screen--work .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.quiz-screen--work .dot--done { background: var(--signal); }
.quiz-card h2 { margin: 2em 0 .5em; font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.15; }

/* ---------- funnel typography tokens (docs/funnel-redesign-2026-08-16.md §4) ---------- */
.display { font-size: clamp(2.6rem, 5.4vw, 4.2rem); line-height: 1.02; max-width: 18ch; margin: 0 0 max(.42em, 16px); }
.quiz-lead { font-size: clamp(1.2rem, 3.2vw, 1.35rem); line-height: 1.55; max-width: 34em; margin: 0; }
.creator { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; font-family: var(--display); font-style: italic; color: var(--ink-muted); }
.creator-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-strong); }
.intro { padding-top: clamp(24px, 4vw, 48px); }
.intro-figure { margin: 0 auto; max-width: 36rem; }
.intro-frame video, .intro-frame img { display: block; width: 100%; height: auto; }
.intro figcaption { margin-top: 12px; text-align: center; color: var(--ink-muted); font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow--live { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow--live::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--signal); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.7); } }

/* moment screens: two columns ≥1024, the second column always carries content */
.quiz-split { display: grid; gap: clamp(32px, 4vw, 64px); align-items: start; }
@media (min-width: 1024px) {
  .quiz-split { grid-template-columns: 1.05fr .95fr; }
  .quiz-split--email { grid-template-columns: 1.25fr .75fr; }
  .quiz-split .quiz-side { position: sticky; top: 32px; }
}

/* the one decision on the email screen */
.email-panel {
  margin-top: clamp(32px, 3vw, 44px);
  padding: clamp(24px, 3vw, 40px);
  border-left: 3px solid var(--signal);
  background: var(--paper);
  box-shadow: 0 18px 40px rgb(42 15 24 / 7%);
  max-width: 34rem;
}
.email-panel label.eyebrow { display: block; margin: 0 0 12px; }
.email-panel input[type="email"] {
  display: block; width: 100%; min-height: 60px; padding: 0 18px;
  border: 1px solid var(--line-strong); border-radius: 4px; background: var(--bg);
  font: inherit; font-size: 1.05rem;
}
.email-panel .button { width: 100%; min-height: 64px; margin-top: 14px; font-size: 1.1rem; }
.email-assurance { margin: 14px 0 0; color: var(--ink-muted); font-size: .95rem; }
.email-panel .quiz-alert { margin: 0 0 16px; }

/* her selfie, softly blurred, light sweeping over it — this is being made for her, on her photo */
.work-visual { margin: 0; max-width: 26rem; margin-left: auto; }
.work-visual .frame { position: relative; }
.work-visual img { filter: blur(8px); transform: scale(1.06); }
.work-visual .frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgb(255 252 248 / 55%) 50%, transparent 100%);
  background-size: 100% 40%; background-repeat: no-repeat;
  animation: sweep 2.4s linear infinite;
}
@keyframes sweep { from { background-position: 0 -40%; } to { background-position: 0 140%; } }
@media (max-width: 1023px) { .work-visual { margin: 0 auto; max-width: 18rem; } }

/* the named work checking itself off while the pipeline runs */
.work-list { list-style: none; margin: 0; padding: 0; font-size: 1.05rem; }
.work-list li { display: flex; gap: 12px; align-items: baseline; padding: 8px 0; color: var(--ink-muted); }
.work-list li::before {
  content: ""; flex: none; width: 1.1em; height: 1.1em; align-self: center; border-radius: 50%;
  border: 2px solid var(--line-strong);
  animation: tick 300ms ease-out forwards; animation-delay: var(--tick);
}
.work-list li { animation: ink 300ms ease-out forwards; animation-delay: var(--tick); }
.work-list li:nth-child(1) { --tick: 1s; }
.work-list li:nth-child(2) { --tick: 5s; }
.work-list li:nth-child(3) { --tick: 9s; }
.work-list li:nth-child(4) { --tick: 13s; }
@keyframes tick { to { border-color: var(--signal); background: var(--signal) center / 60% no-repeat url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'><path d='M1 5l3.5 3.5L11 1' fill='none' stroke='white' stroke-width='2'/></svg>"); } }
@keyframes ink { to { color: var(--ink); } }
.work-list--done li, .work-list--done li::before { animation-duration: 0s; animation-delay: 0s; }
@media (prefers-reduced-motion: reduce) {
  .work-list li, .work-list li::before { animation-duration: 0s; animation-delay: 0s; }
  .eyebrow--live::before, .work-visual .frame::after { animation: none; }
}

.quiz-split h1:not(.display) { font-size: clamp(2.6rem, 5.4vw, 4.2rem); line-height: 1.02; margin: 0 0 .45em; }

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

/* selfie: moment screen — one grid, the example photo is the second column on desktop, sits between intro and tips on mobile */
.selfie-grid { display: grid; gap: 0; }
.selfie-grid > * { min-width: 0; }
.selfie-grid .quiz-lead { margin-bottom: clamp(24px, 3vw, 36px); }
.selfie-grid .quiz-alert { margin: 0 0 12px; max-width: 34em; }
.selfie-example { margin: 0 0 clamp(24px, 3vw, 36px); max-width: 26rem; }
.selfie-example img { display: block; width: 100%; height: auto; }
.selfie-example figcaption { margin-top: 10px; color: var(--ink-muted); font-size: .95rem; }
.selfie-grid .tips-list { margin: 0 0 clamp(28px, 3vw, 40px); max-width: 34em; }
.selfie-grid .tips-list li { font-size: 1.02rem; }
.selfie-form { max-width: 34rem; }
.button--upload { width: 100%; min-height: 64px; font-size: 1.1rem; cursor: pointer; }
.button--upload:has(input:focus-visible) { outline: 3px solid var(--signal); outline-offset: 4px; }
.selfie-form .privacy-note { margin-top: 14px; max-width: 34em; }
@media (min-width: 1024px) {
  .selfie-grid { grid-template-columns: 1.05fr .95fr; column-gap: clamp(32px, 4vw, 64px); }
  .selfie-grid > * { grid-column: 1; }
  .selfie-grid > .selfie-example { grid-column: 2; grid-row: 1 / span 8; max-width: none; align-self: start; position: sticky; top: 32px; }
}
.selfie-example figcaption { margin-top: 8px; color: var(--ink-muted); font-size: .9rem; }

.tips-list {
  margin: 24px 0;
  max-width: 34em;
  padding: 0;
  list-style: none;
}

.tips-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: .95rem;
  line-height: 1.6;
}

.quiz-alert {
  padding: 14px 18px;
  border-left: 2px solid var(--signal);
  background: var(--surface);
  color: var(--ink);
  font-size: .95rem;
}

.quiz-card input[type="file"],
.quiz-card input[type="text"],
.quiz-card input[type="email"] {
  display: block;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--paper);
  font-family: var(--sans);
  font-size: .92rem;
}

.quiz-progress {
  margin: 0 0 12px;
  color: var(--ink-muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.field { margin: 24px 0; }

.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.field .field-help {
  margin: -2px 0 8px;
  color: var(--ink-muted);
  font-size: .85rem;
}

.option-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  font-size: 1.02rem;
  line-height: 1.4;
  cursor: pointer;
  box-shadow: 0 1px 2px rgb(42 15 24 / 4%);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.option-card:hover { border-color: var(--signal); box-shadow: 0 6px 18px rgb(42 15 24 / 8%); }

.option-card:has(input:checked) {
  border-color: var(--signal);
  background: rgb(140 29 53 / 6%);
  box-shadow: inset 0 0 0 1px var(--signal);
}

.option-card:has(input:focus-visible) { outline: 3px solid var(--signal); outline-offset: 3px; }

.option-card input[type="radio"],
.option-card input[type="checkbox"] {
  appearance: none;
  flex: none;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  background: var(--paper);
  transition: border-color 160ms ease, background 160ms ease;
}

.option-card input[type="checkbox"] { border-radius: 6px; }

.option-card input:checked {
  border-color: var(--signal);
  background: var(--signal);
  box-shadow: inset 0 0 0 4px var(--paper);
}

.option-card input[type="checkbox"]:checked { box-shadow: inset 0 0 0 3px var(--paper); }

.quiz-back {
  display: inline-block;
  margin-top: 18px;
  color: var(--ink-muted);
  font-size: .9rem;
  text-decoration: underline;
}

.result-variants {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.result-variants figcaption { margin-top: 8px; color: var(--ink-muted); font-size: .9rem; }

@media (max-width: 600px) {
  .result-variants {
    grid-template-columns: 1fr;
  }
}

/* ---------- T-043: flipbook ---------- */

.button--ghost { background: transparent; color: var(--signal); border: 1px solid var(--signal); }
.lookbook-screen { max-width: 60rem; margin-inline: auto; text-align: center; }
.lookbook-screen .display, .lookbook-screen .quiz-lead { margin-inline: auto; text-wrap: balance; }
.lookbook-book { margin: 24px auto 0; }
.lookbook-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

.result-free { max-width: 52rem; }

.result-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 8px;
}

.result-compare figure { margin: 0; }
.result-compare figcaption { margin-top: 10px; display: grid; gap: 4px; color: var(--ink-muted); font-size: .92rem; line-height: 1.4; }
.result-compare figcaption strong { color: var(--ink); font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.result-before .frame { filter: none; }
.result-work { grid-column: span 2; align-self: center; padding: 8px 4px; }
.result-work .work-list { font-size: 1.1rem; }
.result-work .work-list li { padding: 12px 0; border-top: 1px solid var(--line); }
.result-work .work-list li:first-child { border-top: 0; }
.result-variant .frame { position: relative; }
.glow-badge {
  position: absolute; bottom: 12px; left: 12px; display: inline-flex; flex-direction: column; align-items: flex-start;
  padding: 8px 12px; border-radius: 4px; background: var(--paper); color: var(--ink);
  box-shadow: 0 8px 22px rgb(42 15 24 / 18%); line-height: 1.05;
}
.glow-badge strong { font-family: var(--display); font-size: 1.45rem; font-weight: 500; color: var(--signal); }
.glow-badge small { margin-top: 2px; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); }
.glow-note { color: var(--ink-muted); font-size: .95rem; }

.swatch {
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .15);
  flex: none;
}

.result-observation {
  margin: 20px 0 8px;
  padding: 16px 20px;
  border-left: 3px solid var(--ink);
  background: rgba(0, 0, 0, .03);
}
.result-observation p { margin: 0 0 6px; font-size: 1.1rem; line-height: 1.45; }
.result-observation cite { font-style: normal; color: var(--ink-muted); font-size: .85rem; }

@media (max-width: 720px) {
  .result-compare {
    grid-template-columns: 1fr 1fr;
  }
  .result-compare .result-before { grid-column: 1 / -1; max-width: 60%; margin: 0 auto; }
  .result-work { grid-column: 1 / -1; }
}

.palette-list {
  margin: 16px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.palette-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
}

.palette-swatch {
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}



.hero-grid {
  display: grid;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.hero-lead {
  margin-top: 26px;
  max-width: 34em;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  line-height: 1.65;
}

.hero-visual { margin: 0; }

.hero-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line-strong);
  color: var(--ink-muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-story {
  display: grid;
  gap: clamp(30px, 4vw, 56px);
  margin-top: var(--band);
  padding-top: clamp(36px, 5vw, 60px);
  border-top: 1px solid var(--line);
}

.story-main {
  font-size: clamp(1.05rem, 2.2vw, 1.15rem);
  line-height: 1.75;
  color: var(--ink);
}

.story-main::first-letter {
  float: left;
  margin: .06em .12em 0 0;
  color: var(--signal);
  font-family: var(--display);
  font-size: 3.6em;
  font-weight: 400;
  line-height: .78;
}

.story-aside {
  padding: clamp(26px, 3vw, 34px);
  border-left: 2px solid var(--gold);
  background: var(--paper);
  box-shadow: 0 18px 40px rgb(42 15 24 / 6%);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  font-variation-settings: "opsz" 60;
  line-height: 1.42;
  align-self: start;
}

/* ---------- problem ---------- */

.problem {
  background: var(--surface);
  padding-block: var(--band);
}

.problem-grid {
  display: grid;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.problem-visual { margin: 32px 0 0; }

.problem-copy p { color: var(--ink); }
.problem-copy .lead-para { font-size: clamp(1.1rem, 2.4vw, 1.25rem); line-height: 1.6; }

.list-intro {
  margin-top: 2em;
  color: var(--ink-muted);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .02em;
}

.pain-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: pain;
}

.pain-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 4px 14px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  counter-increment: pain;
  line-height: 1.55;
}

.pain-list li::before {
  content: "0" counter(pain);
  color: var(--signal);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 2.2;
}

.pull-quote {
  margin-top: 44px;
  padding-left: clamp(18px, 2.5vw, 28px);
  border-left: 2px solid var(--signal);
  font-family: var(--display);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-style: italic;
  font-variation-settings: "opsz" 90;
  line-height: 1.32;
  text-wrap: pretty;
}

/* ---------- steps ---------- */

.steps { padding-block: var(--band); }

.steps-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.step {
  padding-block: clamp(28px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
}

.step-number {
  display: block;
  color: var(--signal);
  font-family: var(--display);
  font-size: 1.5rem;
  font-variation-settings: "opsz" 30;
  letter-spacing: .06em;
}

.step h2 {
  margin-top: 14px;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  line-height: 1.16;
  letter-spacing: -.01em;
}

.step p {
  margin-top: 16px;
  color: var(--ink-muted);
  font-size: .98rem;
  line-height: 1.65;
}

/* ---------- results ---------- */

.results { padding-block: 0 var(--band); }

.results-grid {
  display: grid;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.benefit-list {
  margin: 34px 0 40px;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.benefit-list strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  font-variation-settings: "opsz" 40;
  letter-spacing: -.01em;
  line-height: 1.3;
}

.benefit-list span {
  display: block;
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: .98rem;
  line-height: 1.6;
}

.results-closing {
  color: var(--ink-muted);
  font-size: .98rem;
  line-height: 1.65;
}

.results-gallery { margin: 0; }

/* ---------- pricing (the one dark band) ---------- */

.pricing {
  background: var(--deep);
  color: var(--ivory);
  padding-block: var(--band);
}

.pricing .eyebrow { color: var(--gold); }
.pricing h2 { font-size: clamp(2.4rem, 7vw, 4.6rem); }

.pricing-inner {
  max-width: 46rem;
  text-align: center;
}

.pricing-inner > p {
  margin-top: 24px;
  margin-bottom: 0;
  color: var(--ivory-muted);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  line-height: 1.7;
}

.pricing .actions { justify-content: center; margin-top: 40px; }

.pricing .button {
  background: var(--ivory);
  color: var(--deep);
}

.pricing .button:hover { background: #fff; }
.pricing :focus-visible { outline-color: var(--gold); }

/* ---------- faq ---------- */

.faq { padding-block: var(--band); }

.faq-grid {
  display: grid;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.faq-list { border-top: 1px solid var(--line-strong); }

.faq details { border-bottom: 1px solid var(--line); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-variation-settings: "opsz" 40;
  line-height: 1.35;
  transition: color 160ms ease;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--signal); }

.faq summary::after {
  content: "";
  flex: none;
  width: 14px;
  height: 14px;
  background-image:
    linear-gradient(var(--signal), var(--signal)),
    linear-gradient(var(--signal), var(--signal));
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: 14px 1.5px, 1.5px 14px;
}

.faq details[open] summary { color: var(--signal); }

.faq details[open] summary::after {
  background-image: linear-gradient(var(--signal), var(--signal));
  background-size: 14px 1.5px;
}

.faq details p {
  max-width: 42em;
  margin: 0;
  padding: 0 34px 26px 0;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--line);
  padding-block: 30px 40px;
  color: var(--ink-muted);
  font-size: .82rem;
  letter-spacing: .02em;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: baseline;
}

.footer-inner a {
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-note {
  margin-top: 14px;
  color: var(--ink-muted);
  font-size: .88rem;
  line-height: 1.6;
}

/* ---------- up to 1023px: images stay editorial objects, not walls ---------- */

@media (max-width: 1023px) {
  .hero-visual,
  .problem-visual,
  .results-gallery {
    width: min(100%, 560px);
    margin-inline: auto;
  }
}

/* ---------- 900px and up ---------- */

@media (min-width: 900px) {
  .hero-story { grid-template-columns: 1.35fr 1fr; align-items: start; }
  .faq-grid { grid-template-columns: .8fr 1.2fr; }
}

/* ---------- 1024px and up ---------- */

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--line-strong);
  }

  .step {
    padding: clamp(28px, 3vw, 40px) clamp(20px, 2.4vw, 34px) clamp(32px, 4vw, 48px) 0;
    border-bottom: 0;
  }

  .step + .step {
    padding-left: clamp(20px, 2.4vw, 34px);
    border-left: 1px solid var(--line);
  }

  .hero { padding-top: clamp(56px, 6vw, 96px); }
  .hero-grid { grid-template-columns: 1.02fr .98fr; }
  .hero-copy { padding-right: clamp(0px, 2vw, 32px); }
  .problem-grid { grid-template-columns: .9fr 1.1fr; }
  .problem-visual { margin-top: 40px; }
  .results-grid { grid-template-columns: 1.05fr .95fr; }
  .results-copy { padding-right: clamp(0px, 3vw, 48px); }
}

/* ---------- motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- paid funnel screens (docs/funnel-redesign-2026-08-16.md §3.7–§3.10, §4) ---------- */

/* the display token has to beat `.quiz-card h1`, which is more specific than a bare class */
.quiz-card h1.display { font-size: clamp(2.6rem, 5.4vw, 4.2rem); line-height: 1.02; max-width: 18ch; margin: 0 0 max(.42em, 16px); }

/* T-038: payment-success screen — meaning carried by the ✓ mark and the h1 wording, not by color (no green in the landing palette) */
.success-mark { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 0 20px; border-radius: 50%; background: var(--signal); color: var(--paper); font-family: var(--display); font-size: 2.2rem; line-height: 1; }

/* quiet closing lines: trust, what happens next, contact */
.quiz-note { max-width: 34em; margin: 0 0 10px; color: var(--ink-muted); font-size: .95rem; line-height: 1.6; }
.quiz-note:last-child { margin-bottom: 0; }
.quiz-split .quiz-note { margin-top: clamp(16px, 2vw, 24px); }

/* §3.7 offer — moment screen: her variant and the example gallery ride the second column */
.offer-grid { display: grid; gap: 0; }
.offer-grid > * { min-width: 0; }
.offer-grid .quiz-lead { margin-bottom: clamp(24px, 3vw, 36px); }
.offer-grid .benefit-list { max-width: 34em; margin-block: clamp(24px, 3vw, 36px); }
.offer-visuals { display: grid; gap: clamp(20px, 2.5vw, 32px); margin: 0 0 clamp(24px, 3vw, 36px); max-width: 26rem; }
.offer-visuals figure { margin: 0; }
.offer-visuals figcaption { margin-top: 10px; color: var(--ink-muted); font-size: .95rem; line-height: 1.5; }
.offer-price { max-width: 34em; margin: clamp(24px, 3vw, 32px) 0 6px; }
.offer-price strong { font-family: var(--display); font-weight: 500; font-size: clamp(1.6rem, 3.4vw, 2.2rem); letter-spacing: -.02em; }
.offer-grid .quiz-h2 { margin: clamp(28px, 3.5vw, 44px) 0 0; font-size: clamp(1.4rem, 3vw, 1.9rem); }
.offer-grid .benefit-list { margin-top: 16px; }
/* the six lookbook items: garnet display leads, zebra rows on paper, no hairlines — each item reads as its own thing */
.offer-grid .benefit-list li, .pending-card .benefit-list li { padding: 20px 22px; border: 0; border-radius: 10px; }
.offer-grid .benefit-list li:nth-child(odd), .pending-card .benefit-list li:nth-child(odd) { background: var(--surface); }
.offer-grid .benefit-list strong, .pending-card .benefit-list strong { color: var(--signal); font-size: 1.35rem; font-weight: 500; }
.offer-grid .benefit-list span, .pending-card .benefit-list span { margin-top: 8px; font-size: 1rem; }
.offer-grid .pitch { max-width: 36em; }
.offer-grid .pitch .actions { justify-content: flex-start; }
.offer-grid .pitch .button--shine { width: 100%; }

/* T-033: the consent she ticks before checkout — the quiz's own option card, stacked over the CTA */
.actions form { flex: 1 1 100%; }
.consent-card { align-items: flex-start; margin-bottom: 18px; font-size: .95rem; line-height: 1.35; }
.consent-card input[type="checkbox"] { margin-top: 2px; }
.actions form .button--shine { width: 100%; border: 0; font-family: inherit; cursor: pointer; }
@media (min-width: 1024px) {
  .offer-grid { grid-template-columns: 1.05fr .95fr; column-gap: clamp(32px, 4vw, 64px); }
  .offer-grid > * { grid-column: 1; }
  .offer-grid > .offer-visuals { grid-column: 2; grid-row: 1 / span 20; max-width: none; align-self: start; position: sticky; top: 32px; }
}

/* pitch — the sale on a moment screen sits on its own surface, never blends into the result prose */
.pitch { margin-top: clamp(40px, 6vw, 72px); padding: clamp(28px, 4vw, 48px); background: var(--surface); border-radius: 12px; }
.pitch .eyebrow { margin-bottom: 12px; }
.quiz-card .pitch h2 { margin: 0 0 .5em; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.pitch > p { max-width: 34em; }
.pitch .benefit-list { margin: 24px 0 8px; }
.pitch .benefit-list li { padding: 20px 0; border-top-color: var(--line-strong); }
.pitch .benefit-list li:first-child { border-top: 0; }
.pitch .benefit-list strong { color: var(--signal); font-size: 1.3rem; }
.pitch .actions { margin-top: 32px; justify-content: center; }
/* the pitch CTA: bigger, centered, a soft shine sweeps across it every few seconds (reduced-motion block above kills it) */
.button--shine { position: relative; overflow: hidden; min-height: 64px; padding: 0 44px; font-size: 1.1rem; }
.button--shine::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgb(255 255 255 / 45%) 50%, transparent 65%);
  transform: translateX(-120%); animation: shine 4.5s ease-in-out infinite;
}
@keyframes shine { 0%, 70% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }

/* §3.9 photo screens — work-screen family, upload button then the dots (Z8, Z9) */
.photo-form { margin-top: clamp(24px, 3vw, 32px); }
.photo-form .privacy-note { margin: 0 0 14px; }
.photo-alt { margin: 16px 0 0; }
.photo-alt .quiz-back { margin-top: 0; cursor: pointer; }
.photo-alt .quiz-back:has(input:focus-visible) { outline: 3px solid var(--signal); outline-offset: 4px; }
.quiz-screen--work .quiz-lead,
.quiz-screen--work .quiz-note { margin-bottom: clamp(20px, 2.5vw, 28px); }
.quiz-screen--work .quiz-note--tip { padding: 14px 18px; border-left: 3px solid var(--gold); background: var(--surface); border-radius: 0 10px 10px 0; color: var(--ink); }
.quiz-screen--work .quiz-note--pause { margin: 28px 0 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: .88rem; }
.quiz-screen--work .field-help { margin: 0 0 1.1em; }

/* §3.10 delivered report — wider than a work column so the outfits breathe, prose still ≤34em (Z11) */
.report-screen { max-width: 52rem; }
.report-screen p, .report-screen .palette-list { max-width: 34em; }
/* funnel h2 sits at 1.4–1.9rem (§4), so it needs a text optical size, not the display one */
.report-screen h2, .quiz-h2 { font-variation-settings: "opsz" 40; }

/* upload in progress: the picked file submits itself, this is the only sign she gets that it is working */
.button--upload { position: relative; }
form.is-uploading .button--upload { pointer-events: none; opacity: .8; padding: 12px 20px 12px 56px; }
form.is-uploading .button--upload::before {
  content: ""; position: absolute; top: 50%; left: 24px; margin: -11px 0 0 0;
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid currentColor; border-top-color: transparent;
  animation: upload-spin .8s linear infinite;
  transform-origin: 50% 50%;
  z-index: 1;
}
form.is-uploading .quiz-back { pointer-events: none; opacity: .5; }
@keyframes upload-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { form.is-uploading .button--upload::before { animation-duration: 2.4s; } }

/* ---------- T-046: consent banner ---------- */

.consent-banner {
  position: fixed;
  inset-block-end: 0;
  inset-inline: 0;
  z-index: 40;
  background: var(--deep);
  color: var(--ivory);
  border-top: 1px solid var(--line-light);
}

.consent-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  padding-block: 18px;
}

.consent-banner-inner p { margin: 0; max-width: 46em; font-size: .92rem; }

.consent-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.consent-banner .button--ghost { color: var(--ivory); border-color: var(--ivory-muted); }
