/* ChatGPT Work for Writing Businesses — "Carbon"
   Ground: warm charcoal. Text: bone. Rust = manual. Carbon blue = installed.
   Display: Bricolage Grotesque. Body: Newsreader (serif — they're readers).
   Data: JetBrains Mono (the receipts). */

:root {
  --ink:      #17131A;
  --panel:    #211C26;
  --line:     #342D3B;
  --paper:    #EFE9DD;
  --dim:      rgba(239, 233, 221, 0.62);
  --faint:    rgba(239, 233, 221, 0.34);
  --rust:     #B5573A;
  --carbon:   #6E82E8;

  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body:    'Newsreader', Georgia, serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --gut: clamp(1.25rem, 5vw, 2.5rem);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: clamp(1.15rem, 0.45vw + 1.05rem, 1.3rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: min(100% - var(--gut) * 2, 76rem); margin-inline: auto; }
.wrap.narrow { width: min(100% - var(--gut) * 2, 46rem); }

section { padding-block: clamp(4rem, 9vw, 7.5rem); }

h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.04; letter-spacing: -0.025em; margin: 0; text-wrap: balance; }
h2 { font-size: clamp(2.1rem, 3.9vw, 3.3rem); }
h3 { font-size: clamp(1.32rem, 1.65vw, 1.6rem); font-weight: 600; letter-spacing: -0.015em; line-height: 1.2; }
p { margin: 0 0 1.1em; }

a { color: var(--carbon); }

.skip {
  position: absolute; left: -9999px;
  background: var(--paper); color: var(--ink); padding: .75rem 1.25rem; z-index: 99;
  font-family: var(--mono); font-size: .8rem;
}
.skip:focus { left: 1rem; top: 1rem; }

:where(a, button, summary):focus-visible {
  outline: 2px solid var(--carbon);
  outline-offset: 3px;
}

/* ── shared bits ─────────────────────────────────────────── */

.kicker {
  font-family: var(--mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--rust); margin: 0 0 1.1rem;
}

.btn {
  display: inline-block;
  background: var(--paper); color: var(--ink);
  font-family: var(--display); font-weight: 800; font-size: 1.15rem;
  letter-spacing: -0.01em; text-decoration: none;
  padding: 1.05rem 2.1rem;
  border: 0; cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 0 -2px var(--rust); }
.btn.wide { display: block; text-align: center; width: 100%; }

.cta-sub {
  font-family: var(--mono); font-size: .86rem; line-height: 1.6;
  color: var(--dim); margin: .95rem 0 0; letter-spacing: .01em;
}

/* ── hero ────────────────────────────────────────────────── */

.hero {
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(4rem, 9vw, 7rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(120% 90% at 12% -10%, rgba(110, 130, 232, 0.13), transparent 60%),
    radial-gradient(90% 70% at 95% 0%, rgba(181, 87, 58, 0.10), transparent 55%);
}

/* Two columns only when the box art survived loading — see .os-frame for the same guard. */
.hero-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
@media (min-width: 62rem) {
  .hero-grid:has(.hero-art) { grid-template-columns: minmax(0, 1fr) minmax(0, 1.26fr); }
}

/* The box is near-navy on a near-black ground; a soft glow stops the edges vanishing. */
/* Art bleeds past the wrap's right edge — .hero has overflow:hidden, so it clips at
   the viewport, not mid-box. Buys real size without squeezing the headline column. */
/* Art is 1045x1298 with the box filling 84% x 94% of the canvas. The previous render
   was 900x900 filling 68% x 96%, so the same container width now draws a much bigger
   box — max-width and padding-left below are scaled down to hold the shipped size. */
.hero-art { display: block; position: relative; justify-self: center; max-width: 52rem; width: 100%;
  margin-right: calc(-1 * var(--gut)); }
.hero-art::before {
  content: ''; position: absolute; inset: 6% 2% 2%;
  background: radial-gradient(52% 48% at 50% 55%, rgba(110, 130, 232, .28), transparent 72%);
  filter: blur(18px); z-index: 0;
}
/* Two-product stack: WriterOS sits behind and left of the bootcamp box. */
/* padding-left and max-width move together: the front box keeps its drawn width while
   sliding right, so the WriterOS wordmark behind it stays legible. */
.hero-art { padding-left: 36%; }
.ha-front { display: block; width: 100%; height: auto; position: relative; z-index: 2; }
.ha-back {
  display: block; position: absolute; z-index: 1;
  left: 0; bottom: 12.5%; width: 51%; height: auto;
  filter: brightness(.9);
}

@media (max-width: 61.99rem) {
  .hero-art { max-width: 21.5rem; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  font-family: var(--mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--paper);
  border: 1px solid var(--line); padding: .45rem .85rem;
  margin: 0 0 2rem;
}
.dot { width: 7px; height: 7px; background: var(--rust); border-radius: 50%; flex: none; }

.hero h1 {
  font-size: clamp(2.5rem, 5.1vw, 4.05rem);
  max-width: 15ch;
  margin-bottom: 1.6rem;
}

.lede {
  font-size: clamp(1.22rem, 1.2vw + 1rem, 1.55rem);
  color: var(--dim);
  max-width: 58ch;
  margin-bottom: 2.6rem;
}


.cta-block { max-width: min(30rem, 100%); }

/* Visually hidden, still read aloud. */
.sr {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap; border: 0;
}

.hero-sub {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing: -0.02em; line-height: 1.15;
  color: var(--carbon);
  max-width: 46ch; /* holds "ChatGPT Work for Writing Businesses" on one line at desktop */
  margin: 0 0 1.5rem;
}

/* ── what is chatgpt work ────────────────────────────────── */

.what { border-bottom: 1px solid var(--line); }
.what h2 { margin-bottom: 2.8rem; }

.what-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 56rem) {
  .what-grid { grid-template-columns: 1fr 1fr; }
}

.what-copy p { color: var(--dim); }
.what-copy p:last-child { margin-bottom: 0; }

.built-for { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.built-for li {
  position: relative;
  padding: .95rem 0 .95rem 1.6rem;
  border-bottom: 1px solid var(--line);
  color: var(--dim); font-size: .98rem;
}
/* Same diamond as the install board — one shape means "system component" sitewide. */
.built-for li::before {
  content: ''; position: absolute; left: 0; top: 1.5rem;
  width: 7px; height: 7px; background: var(--carbon); transform: rotate(45deg);
}
.built-for strong {
  display: block; color: var(--paper);
  font-family: var(--display); font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: .15rem;
}

.video {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border: 1px solid var(--line); background: #000;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

.caveat {
  font-family: var(--mono); font-size: .85rem; line-height: 1.75;
  color: var(--faint); max-width: 78ch; margin: 2.6rem 0 0;
  border-left: 2px solid var(--rust); padding-left: 1rem;
}


/* ── dot clusters ────────────────────────────────────────────
   Ported from the Claude Fundamentals Sprint lander. A radial-gradient dot grid
   masked by four overlapping ellipses — the overlap is what makes it read as an
   organic cloud instead of a flat halftone. That page was dark-on-white; this is
   silver on near-black, so the alpha is tuned down rather than up. */

.has-dots { position: relative; overflow: hidden; }
.has-dots > .wrap { position: relative; z-index: 1; }

.dots {
  position: absolute; z-index: 0; pointer-events: none;
  background-image: radial-gradient(currentColor 2.6px, transparent 3.4px);
  background-size: 25px 25px;
  color: rgba(198, 203, 214, .17);
  -webkit-mask-image:
    radial-gradient(42% 46% at 30% 32%, #000 60%, transparent 100%),
    radial-gradient(36% 44% at 63% 46%, #000 60%, transparent 100%),
    radial-gradient(32% 38% at 44% 70%, #000 60%, transparent 100%),
    radial-gradient(26% 32% at 74% 62%, #000 60%, transparent 100%);
  mask-image:
    radial-gradient(42% 46% at 30% 32%, #000 60%, transparent 100%),
    radial-gradient(36% 44% at 63% 46%, #000 60%, transparent 100%),
    radial-gradient(32% 38% at 44% 70%, #000 60%, transparent 100%),
    radial-gradient(26% 32% at 74% 62%, #000 60%, transparent 100%);
}

/* Decoration only — it costs layout room on small screens and earns nothing. */
@media (max-width: 58.75rem) { .dots { display: none; } }

/* ── two-week calendar ───────────────────────────────────── */

.cal { margin: 0 0 clamp(2rem, 4vw, 3rem); }

.cal-card {
  border: 1px solid var(--line);
  background: var(--ink);
  padding: clamp(1rem, 2.5vw, 1.75rem);
}

.cal-head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: .4rem 1.5rem;
  padding-bottom: 1rem; margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.cal-month {
  font-family: var(--display); font-weight: 800; font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -0.025em; color: var(--paper);
}
.cal-meta {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--faint);
}

.cal-grid {
  width: 100%; table-layout: fixed;
  border-collapse: separate; border-spacing: 5px;
  margin: -5px;
}
.cal-grid thead th {
  font-family: var(--mono); font-size: .64rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--faint);
  padding: 0 0 .5rem; text-align: center;
}
.cal-grid thead th abbr { text-decoration: none; }
.cal-grid .corner { width: 6.5rem; padding: 0; }

/* Week label rail */
.cal-grid tbody th {
  width: 6.5rem; text-align: left; vertical-align: middle; padding: 0 .9rem 0 .25rem;
}
.wk-n {
  display: block;
  font-family: var(--display); font-weight: 800; font-size: 1rem;
  letter-spacing: -0.02em; color: var(--paper);
}
.wk-range {
  display: block;
  font-family: var(--mono); font-size: .64rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--faint); margin-top: .15rem;
}

.day {
  vertical-align: middle; text-align: center;
  height: clamp(5.5rem, 9vw, 7.25rem);
  padding: .5rem .35rem;
}

/* Session days: filled, carrying what the session is. */
.day.is-on { background: var(--carbon); }
.day.is-on .dnum {
  display: block;
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.35rem); line-height: 1;
  letter-spacing: -0.04em; color: #0E0C12;
}
.dses {
  display: block; margin-top: .2rem;
  font-family: var(--mono); font-size: .6rem; font-weight: 700;
  letter-spacing: .12em; color: rgba(14, 12, 18, .9);
}
.dlab {
  display: block; margin: .15rem auto 0; max-width: 12ch;
  font-family: var(--display); font-weight: 600; font-size: .7rem;
  line-height: 1.15; letter-spacing: -0.01em; color: rgba(14, 12, 18, .8);
}

/* Off days stay visible so it still reads as a calendar, but recede hard. */
.day.is-off { border: 1px solid var(--line); }
.day.is-off .dnum {
  font-family: var(--mono); font-size: .85rem; color: var(--faint);
}

.cal-foot {
  font-family: var(--mono); font-size: .8rem; letter-spacing: .05em;
  color: var(--dim); margin-top: 1rem;
}

/* Phones: seven columns is unusable at 390px. Reflow the table into a stacked grid of
   just the six session tiles — the empty weekdays carry no information on a phone. */
@media (max-width: 44rem) {
  .cal-grid, .cal-grid tbody { display: block; }
  .cal-grid thead { display: none; }
  .cal-grid { margin: 0; }
  .cal-grid tr {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
    margin-bottom: 1.25rem;
  }
  .cal-grid tr:last-child { margin-bottom: 0; }
  .cal-grid tbody th {
    display: block; grid-column: 1 / -1;
    width: auto; padding: 0 0 .1rem;
  }
  .day.is-off { display: none; }
  .day.is-on { display: block; height: auto; min-height: 5.25rem; padding: .8rem .4rem; }
  .dlab { display: block; font-size: .68rem; }
}

/* ── writer os product box (sits above the session outline) ── */

.os-frame {
  border: 1px solid var(--line);
  background: var(--ink);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  display: grid; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
/* Two columns only when the box art is actually present. The <img> deletes its own
   <picture> on 404, and without :has() the copy would be stranded in the 17rem column. */
@media (min-width: 52rem) {
  /* 18rem here draws the same box size 23rem drew against the old 900x900 art. */
  .os-frame:has(.os-box) { grid-template-columns: minmax(0, 18rem) minmax(0, 1fr); }
}

/* Product box art. Removes itself on 404 and the copy reflows to full width. */
.os-box { display: block; }
.os-box img { display: block; width: 100%; height: auto; }

.os-copy .kicker { margin-bottom: .8rem; }
.os-copy h3 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.03em;
  color: var(--paper); margin-bottom: 1rem;
}
.os-copy p { color: var(--dim); max-width: 56ch; }
.os-copy p:last-child { margin-bottom: 0; }

.os-note {
  font-family: var(--mono); font-size: .84rem; line-height: 1.7;
  color: var(--faint) !important;
  border-left: 2px solid var(--carbon); padding-left: 1rem;
  margin-top: 1.4rem;
}

/* ── who ─────────────────────────────────────────────────── */

.who { border-bottom: 1px solid var(--line); }
.who h2 { max-width: 20ch; margin-bottom: 3rem; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card { background: var(--ink); padding: 1.9rem 1.6rem; }
.card h3 { margin-bottom: .9rem; color: var(--paper); }
.card p { color: var(--dim); margin: 0; font-size: 1.09rem; }

/* ── sessions ────────────────────────────────────────────── */

.sessions { border-bottom: 1px solid var(--line); background: var(--panel); }
.sessions h2 { margin-bottom: 3rem; }

.session-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.session { background: var(--panel); padding: 1.9rem clamp(1.1rem, 3vw, 2.2rem); }
.session.pre { background: var(--ink); }

/* Wide screens: the date rail lives left, the build lives right — reads as a schedule. */
@media (min-width: 56rem) {
  .session {
    display: grid;
    grid-template-columns: 11rem minmax(0, 1fr);
    column-gap: 2.5rem;
    align-items: start;
  }
  /* Explicit placement — auto-placement drops every other child into the date rail. */
  .s-head  { grid-column: 1; grid-row: 1 / span 3; flex-direction: column; gap: .3rem; margin-bottom: 0; padding-top: .25rem; }
  .session h3 { grid-column: 2; grid-row: 1; }
  .s-obj      { grid-column: 2; grid-row: 2; }
  .s-leave    { grid-column: 2; grid-row: 3; }
  .session h3, .s-obj, .s-leave { max-width: 58ch; }
}

.s-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .9rem; margin-bottom: .85rem; }

/* Session floppies. The <img> removes itself on 404, so the rail degrades to a bare
   date label until the art lands — no broken-image glyphs, no layout hole. */
.floppy {
  display: block; width: 100%; max-width: 7.2rem; height: auto;
  flex: none; align-self: flex-start;
  image-rendering: -webkit-optimize-contrast;
}
@media (min-width: 56rem) {
  .floppy { max-width: 11.7rem; margin-bottom: 1.1rem; }
}
@media (max-width: 55.99rem) {
  .s-head { align-items: center; }
  .floppy { max-width: 4.25rem; }
}
.s-num {
  font-family: var(--mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--carbon);
}
.s-date {
  font-family: var(--mono); font-size: .74rem; color: var(--faint);
  letter-spacing: .06em;
}
.session h3 { margin-bottom: .85rem; max-width: 34ch; font-size: clamp(1.42rem, 2vw, 1.8rem); }
.s-obj { color: var(--dim); max-width: 62ch; font-size: 1.18rem; }
.s-leave { margin: 0; font-size: 1.15rem; color: var(--paper); max-width: 62ch; }
.s-leave span {
  font-family: var(--mono); font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--rust);
  display: block; margin-bottom: .3rem;
}

/* ── bonuses ─────────────────────────────────────────────── */

.bonuses { border-bottom: 1px solid var(--line); background: var(--panel); }
.bonuses h2 { margin-bottom: 2.6rem; max-width: 24ch; }

.bonus-row {
  list-style: none; margin: 0 0 1.25rem; padding: 0;
  display: grid; gap: 1.25rem;
}
.bonus-row:last-child { margin-bottom: 0; }

@media (min-width: 52rem) {
  .bonus-row.three { grid-template-columns: repeat(3, 1fr); }
  .bonus-row.two   { grid-template-columns: repeat(2, 1fr); }
}

.bonus {
  border: 1px solid var(--line);
  background: var(--ink);
  padding: clamp(1.2rem, 2.5vw, 1.7rem);
  display: flex; flex-direction: column;
}
.b-img { display: block; margin-bottom: 1.1rem; }
.b-img img { display: block; width: 100%; max-width: 19.3rem; height: auto; margin-inline: auto; }

/* Cards go single-column below 52rem, so the art suddenly owns ~77% of the card.
   Cap it well under that or the copy reads as an afterthought. */
@media (max-width: 51.99rem) {
  .b-img img { max-width: 11rem; }
  .b-img { margin-bottom: .9rem; }
}

.bonus h3 { margin: 0 0 .7rem; color: var(--paper); }
.bonus p { margin: 0; color: var(--dim); font-size: 1.06rem; }

.b-note {
  display: block; margin-top: .9rem;
  font-family: var(--mono); font-size: .75rem; line-height: 1.6;
  color: var(--faint);
}

.b-tag {
  font-family: var(--mono); font-size: .69rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--faint); margin-bottom: .9rem;
}

/* Expiring bonuses carry the rust "clock" treatment — the same colour the page uses
   everywhere else for "not handled yet". */
.bonus.expiring { border-color: rgba(181, 87, 58, .55); }
.b-clock {
  display: inline-flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  color: var(--rust); align-self: flex-start;
  border: 1px solid rgba(181, 87, 58, .45);
  padding: .35rem .7rem;
}
.b-clock::before {
  content: ''; width: 7px; height: 7px; flex: none;
  background: var(--rust); border-radius: 50%;
}

/* ── instructor ──────────────────────────────────────────── */

.instructor { border-bottom: 1px solid var(--line); }
.instructor h2 { margin-bottom: 1.6rem; }
.instructor p { color: var(--dim); }
.instructor-copy p:last-child { margin-bottom: 0; }

.instructor-grid { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }

/* Framed photo. The shot's terracotta backdrop is close to --rust, so a hairline rule
   in that same family reads as intentional rather than as a stray box. */
.shot { display: block; max-width: 22rem; }
.shot img {
  display: block; width: 100%; height: auto;
  border: 1px solid rgba(181, 87, 58, .45);
}

@media (min-width: 56rem) {
  .instructor-grid { grid-template-columns: minmax(0, 21rem) minmax(0, 1fr); }
  .instructor-copy { max-width: 54ch; }
}
@media (max-width: 55.99rem) {
  .shot { max-width: 15rem; }
}

/* ── enroll ──────────────────────────────────────────────── */

.enroll { border-bottom: 1px solid var(--line); }
.enroll h2 { margin-bottom: 2.6rem; max-width: 20ch; }
/* Undercuts the headline in its own voice — keep it visibly subordinate. */
.aside {
  display: block; margin-top: .6rem;
  font-family: var(--mono); font-weight: 400;
  font-size: clamp(.82rem, 1.1vw, .95rem);
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--faint);
}

.price-card { border: 1px solid var(--line); padding: clamp(1.4rem, 3vw, 2.2rem); background: var(--panel); }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--line); }
.price-row.alt { color: var(--dim); }
.price-label { font-family: var(--display); font-weight: 600; font-size: 1.1rem; }
.price-amt { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.03em; white-space: nowrap; }
.price-row.alt .price-amt { color: var(--carbon); }

.guarantee { margin-top: 2.6rem; border-left: 3px solid var(--carbon); padding-left: 1.4rem; }
.guarantee h3 { margin-bottom: .7rem; }
.guarantee p { color: var(--dim); margin: 0; }

/* ── faq ─────────────────────────────────────────────────── */

.faq h2 { margin-bottom: 2.6rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 600; font-size: 1.15rem;
  padding: 1.25rem 2.5rem 1.25rem 0; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: .4rem; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 1.35rem; color: var(--rust); line-height: 1;
}
.faq details[open] summary::after { content: '\2212'; }
.faq details p { color: var(--dim); padding: 0 2.5rem 1.4rem 0; margin: 0; font-size: 1.09rem; }


/* ── final + footer ──────────────────────────────────────── */

.final { text-align: center; }
.final h2 { margin-bottom: 2.4rem; max-width: 24ch; margin-inline: auto; }
.final .btn.wide { max-width: 26rem; margin-inline: auto; }

footer { border-top: 1px solid var(--line); padding-block: 3rem 4rem; }
footer p { font-family: var(--mono); font-size: .83rem; color: var(--dim); line-height: 1.7; }
footer .fine { color: var(--faint); margin: 0; }

/* ── small screens ───────────────────────────────────────── */

@media (max-width: 34rem) {
  .price-row { flex-direction: column; align-items: flex-start; gap: .2rem; }
}
