/* =========================================================================
   Neurast — warm editorial design system
   Palette & type echo the ebook: cream, terracotta, sage; Fraunces + Hanken.
   ========================================================================= */

:root {
  /* Surfaces */
  --cream:       #FBF7F0;
  --cream-2:     #F4ECDE;
  --paper:       #FFFDF9;
  --paper-2:     #FCF8F1;

  /* Ink */
  --ink:         #2E2A24;
  --ink-soft:    #5B5246;
  --ink-faint:   #8A8073;

  /* Accents */
  --terracotta:      #BD5B38;
  --terracotta-dk:   #A0492A;
  --terracotta-tint: #F3DFD4;
  --sage:        #788A66;
  --sage-dk:     #5C6B4D;
  --sage-tint:   #E4E9DA;
  --gold:        #C79A3F;

  /* Lines & shadows */
  --line:        #E8DDC9;
  --line-soft:   #F0E7D7;
  --shadow-sm:   0 1px 2px rgba(46, 42, 36, .05), 0 2px 6px rgba(46, 42, 36, .04);
  --shadow-md:   0 4px 12px rgba(46, 42, 36, .07), 0 14px 40px rgba(46, 42, 36, .06);
  --shadow-lg:   0 10px 30px rgba(46, 42, 36, .10), 0 30px 70px rgba(46, 42, 36, .10);
  --shadow-cta:  0 8px 18px rgba(189, 91, 56, .28), 0 2px 6px rgba(189, 91, 56, .25);

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --maxw: 1080px;
  --readw: 720px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.62;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(189, 91, 56, .06), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(120, 138, 102, .07), transparent 55%);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta-dk); text-underline-offset: 3px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 6.2vw, 3.5rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 4.4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.6vw, 1.55rem); }
h4 { font-size: 1.12rem; }
.serif { font-family: var(--serif); }

p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 700; }
em { font-style: italic; }

.lead { font-size: clamp(1.08rem, 2.3vw, 1.32rem); color: var(--ink-soft); line-height: 1.55; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.narrow { max-width: var(--readw); margin-inline: auto; }
section { padding-block: clamp(46px, 8vw, 92px); position: relative; }
.section-alt { background: var(--cream-2); }
.section-ink { background: #29251F; }
.section-ink, .section-ink p, .section-ink h2, .section-ink h3, .section-ink li { color: #FBF7F0; }
.section-ink .eyebrow { color: #E9B89F; }

.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracotta-dk);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--terracotta);
  --bgh: var(--terracotta-dk);
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: .005em;
  color: #fff;
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 92%, #fff), var(--bg));
  border: none;
  border-radius: 999px;
  padding: 17px 34px;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-cta);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  line-height: 1.1;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); background: var(--bgh); box-shadow: 0 12px 26px rgba(189,91,56,.34); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid color-mix(in srgb, var(--terracotta) 50%, #fff); outline-offset: 3px; }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 20px 40px; font-size: 1.14rem; }
.btn--ghost {
  background: transparent; color: var(--terracotta-dk);
  box-shadow: inset 0 0 0 2px var(--terracotta);
}
.btn--ghost:hover { background: var(--terracotta-tint); color: var(--terracotta-dk); box-shadow: inset 0 0 0 2px var(--terracotta); }
.btn .sub { font-weight: 600; font-size: .82em; opacity: .9; }

.cta-note { font-size: .9rem; color: var(--ink-faint); margin-top: .8rem; }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex; align-items: center; gap: .45em;
  background: var(--paper); border: 1px solid var(--line);
  color: var(--ink-soft); font-weight: 600; font-size: .82rem;
  padding: 7px 14px; border-radius: 999px;
}
.pill--sage { background: var(--sage-tint); border-color: transparent; color: var(--sage-dk); }
.pill--terra { background: var(--terracotta-tint); border-color: transparent; color: var(--terracotta-dk); }
.badge-launch {
  display: inline-block; background: var(--terracotta); color: #fff;
  font-weight: 800; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 8px;
}

/* ---------- Stars ---------- */
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.rating-line { display: inline-flex; align-items: center; gap: .55rem; flex-wrap: wrap; justify-content: center; }
.rating-line .muted { color: var(--ink-faint); font-size: .92rem; }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--cream) 86%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand {
  font-family: var(--serif); font-weight: 600; font-size: 1.35rem;
  color: var(--ink); text-decoration: none; letter-spacing: -.02em;
  display: inline-flex; align-items: baseline; gap: .12em;
}
.brand .dot { color: var(--terracotta); }
.topbar nav { display: none; gap: 26px; }
.topbar nav a { color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: .95rem; }
.topbar nav a:hover { color: var(--ink); }
.topbar .btn { padding: 11px 22px; font-size: .95rem; box-shadow: var(--shadow-sm); }
@media (min-width: 860px) { .topbar nav { display: flex; } }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(34px, 6vw, 64px); padding-bottom: clamp(40px, 7vw, 80px); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.hero h1 { margin-top: .65rem; }
.hero .lead { margin-top: 1.15rem; max-width: 38ch; }
.hero-cta { margin-top: 1.8rem; }
.hero-trust { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .5rem; color: var(--ink-faint); font-size: .92rem; }
.hero-trust .row { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.hero-trust .row span { display: inline-flex; align-items: center; gap: .4rem; }

.cover-figure { position: relative; display: flex; justify-content: center; }
.cover-figure .glow { position: absolute; inset: 8% 12%; background: radial-gradient(closest-side, rgba(189,91,56,.22), transparent 70%); filter: blur(24px); z-index: 0; }
.cover {
  position: relative; z-index: 1; width: min(330px, 78vw);
  border-radius: 8px 14px 14px 8px;
  box-shadow: var(--shadow-lg), -10px 0 0 -2px rgba(0,0,0,.06);
  transform: rotate(-2.2deg);
  transition: transform .4s ease;
  background: var(--paper);
}
.cover:hover { transform: rotate(0) translateY(-4px); }
.cover-fallback {
  width: min(330px, 78vw); aspect-ratio: 1 / 1.41;
  border-radius: 8px 14px 14px 8px; z-index: 1; position: relative;
  background:
    linear-gradient(160deg, #2E2A24, #3a342b 60%, #45382e);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2.2deg);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 32px; color: #FBF7F0; overflow: hidden;
}
.cover-fallback::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 60% at 80% 0%, rgba(189,91,56,.5), transparent 55%);
  opacity: .55;
}
.cover-fallback .cf-eyebrow { position: relative; font-family: var(--sans); font-weight: 700; letter-spacing: .22em; font-size: .62rem; text-transform: uppercase; color: #E9B89F; }
.cover-fallback .cf-title { position: relative; font-family: var(--serif); font-size: 1.85rem; line-height: 1.08; margin-top: 14px; }
.cover-fallback .cf-rule { position: relative; width: 38px; height: 3px; background: var(--terracotta); margin: 16px 0; border-radius: 3px; }
.cover-fallback .cf-sub { position: relative; font-family: var(--sans); font-size: .82rem; color: #d8cfc0; line-height: 1.4; }

@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .hero-grid.reverse { direction: rtl; }
  .hero-grid.reverse > * { direction: ltr; }
}

/* ---------- Price block (hero + offer) ---------- */
.price-block { margin-top: 1.6rem; display: inline-flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.price-now { font-family: var(--serif); font-weight: 600; font-size: clamp(2.4rem, 6vw, 3rem); color: var(--ink); line-height: 1; }
.price-was { font-size: 1.3rem; color: var(--ink-faint); text-decoration: line-through; text-decoration-thickness: 2px; }
.price-save { font-weight: 800; font-size: .85rem; color: var(--sage-dk); background: var(--sage-tint); padding: 5px 11px; border-radius: 8px; align-self: center; }

/* ---------- Generic content blocks ---------- */
.section-head { max-width: 640px; margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .5rem; }
.section-head p { margin-top: .9rem; }

.prose p + p { margin-top: 1.05rem; }
.prose p { font-size: 1.08rem; }

/* Pain bullets */
.pain-list { list-style: none; padding: 0; display: grid; gap: 14px; margin-top: 1.6rem; }
.pain-list li {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 16px 18px 16px 50px; position: relative; color: var(--ink-soft); box-shadow: var(--shadow-sm);
}
.pain-list li::before {
  content: ""; position: absolute; left: 18px; top: 19px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--terracotta-tint);
  box-shadow: inset 0 0 0 2px var(--terracotta);
}
.pain-list li strong { display: block; color: var(--ink); margin-bottom: 2px; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 2.2rem; }
@media (min-width: 620px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 920px) { .feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card .ic {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--terracotta-tint); color: var(--terracotta-dk); margin-bottom: 14px;
}
.card.sage .ic { background: var(--sage-tint); color: var(--sage-dk); }
.card h3 { font-size: 1.18rem; }
.card p { margin-top: .5rem; font-size: 1rem; }

/* Checklist (what's inside) */
.checklist { list-style: none; padding: 0; display: grid; gap: 13px; margin-top: 1.8rem; }
@media (min-width: 720px) { .checklist { grid-template-columns: 1fr 1fr; gap: 13px 30px; } }
.checklist li { position: relative; padding-left: 38px; color: var(--ink-soft); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--sage); color: #fff; font-weight: 800; font-size: .82rem;
  display: grid; place-items: center;
}
.checklist li b { color: var(--ink); }

/* Included list (value stack) */
.included { margin-top: 1.8rem; display: grid; gap: 12px; }
.included .row {
  display: flex; align-items: center; gap: 16px; justify-content: space-between;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 15px 18px; box-shadow: var(--shadow-sm);
}
.included .row .label { display: flex; align-items: center; gap: 12px; }
.included .row .label .tick { color: var(--sage); font-weight: 800; }
.included .row .val { color: var(--ink-faint); font-weight: 700; white-space: nowrap; }
.included .row .val s { color: var(--ink-faint); opacity: .8; }
.included-total {
  margin-top: 6px; display: flex; align-items: baseline; justify-content: space-between;
  padding: 10px 18px; font-weight: 800; color: var(--ink);
}
.included-total .big { font-family: var(--serif); font-size: 1.3rem; }

/* Audience two-col */
.audience { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 2rem; }
@media (min-width: 720px) { .audience { grid-template-columns: 1fr 1fr; } }
.aud-card { border-radius: var(--r-lg); padding: 24px 26px; }
.aud-card.yes { background: var(--sage-tint); border: 1px solid color-mix(in srgb, var(--sage) 30%, transparent); }
.aud-card.no  { background: var(--paper); border: 1px solid var(--line); }
.aud-card h3 { font-size: 1.15rem; display: flex; align-items: center; gap: .5rem; }
.aud-card ul { list-style: none; padding: 0; margin-top: 14px; display: grid; gap: 10px; }
.aud-card li { padding-left: 28px; position: relative; color: var(--ink-soft); }
.aud-card.yes li::before { content: "✓"; color: var(--sage-dk); font-weight: 800; position: absolute; left: 0; }
.aud-card.no li::before  { content: "—"; color: var(--ink-faint); font-weight: 800; position: absolute; left: 0; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 2.2rem; }
@media (min-width: 760px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px;
}
.testi .stars { font-size: .98rem; }
.testi p { color: var(--ink); font-size: 1.02rem; }
.testi .who { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.testi .avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--terracotta), var(--sage));
  color: #fff; display: grid; place-items: center; font-weight: 800; font-family: var(--serif);
}
.testi .who .name { font-weight: 700; color: var(--ink); font-size: .95rem; line-height: 1.1; }
.testi .who .meta { color: var(--ink-faint); font-size: .82rem; }

/* Quote / emotional band */
.bigquote { max-width: 760px; margin-inline: auto; text-align: center; }
.bigquote blockquote {
  font-family: var(--serif); font-size: clamp(1.5rem, 4vw, 2.15rem); line-height: 1.28;
  color: #FBF7F0; font-weight: 500;
}
.bigquote .by { margin-top: 18px; color: #d8cfc0; font-size: .95rem; }

/* Guarantee */
.guarantee {
  display: grid; grid-template-columns: 1fr; gap: 22px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md);
}
@media (min-width: 720px) { .guarantee { grid-template-columns: 110px 1fr; } }
.guarantee .seal {
  width: 110px; height: 110px; border-radius: 50%; margin-inline: auto;
  background: radial-gradient(circle at 50% 35%, var(--sage), var(--sage-dk));
  color: #fff; display: grid; place-items: center; text-align: center; line-height: 1.05;
  font-family: var(--serif); font-weight: 700; box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}
.guarantee .seal .num { font-size: 1.9rem; display: block; }
.guarantee .seal .lab { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; font-family: var(--sans); font-weight: 700; }

/* FAQ */
.faq { max-width: 760px; margin-inline: auto; margin-top: 2rem; display: grid; gap: 12px; }
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 4px 20px; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease;
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  list-style: none; cursor: pointer; font-family: var(--serif); font-weight: 600;
  font-size: 1.1rem; color: var(--ink); padding: 16px 30px 16px 0; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--terracotta); font-family: var(--sans); font-weight: 400; transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq .ans { padding: 0 0 18px; color: var(--ink-soft); }

/* ---------- Order / checkout form ---------- */
.order-shell {
  max-width: 560px; margin-inline: auto;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.order-head {
  background: linear-gradient(180deg, var(--cream-2), var(--paper-2));
  padding: 24px 28px; border-bottom: 1px solid var(--line);
}
.order-head .badge-launch { margin-bottom: 12px; }
.order-summary { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.order-summary .ptitle { font-family: var(--serif); font-size: 1.18rem; color: var(--ink); line-height: 1.15; }
.order-summary .psub { color: var(--ink-faint); font-size: .9rem; margin-top: 2px; }
.order-summary .pprice { text-align: right; }
.order-summary .pprice .now { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); line-height: 1; }
.order-summary .pprice .was { color: var(--ink-faint); text-decoration: line-through; font-size: .95rem; }

.order-body { padding: 26px 28px 30px; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 480px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-weight: 700; font-size: .9rem; color: var(--ink); margin-bottom: 6px; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  width: 100%; font-family: var(--sans); font-size: 1.02rem; color: var(--ink);
  background: var(--paper-2); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 13px 15px; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder { color: var(--ink-faint); }
.field input:focus {
  outline: none; border-color: var(--terracotta);
  box-shadow: 0 0 0 3px var(--terracotta-tint); background: #fff;
}
.field input[aria-invalid="true"] { border-color: #C0392B; box-shadow: 0 0 0 3px rgba(192,57,43,.12); }
.field .err { color: #B23A2A; font-size: .82rem; margin-top: 6px; display: none; }
.field .err.show { display: block; }

.consent { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 12px; }
.consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--terracotta); flex: none; }
.consent label { font-size: .92rem; color: var(--ink-soft); line-height: 1.45; }
.consent a { font-weight: 700; }

.form-error {
  background: #FBE9E6; border: 1px solid #E7B7AE; color: #8E2D1C;
  border-radius: var(--r-sm); padding: 12px 14px; font-size: .92rem; margin-bottom: 16px;
}

.pay-row { margin-top: 6px; }
.pay-trust { margin-top: 16px; text-align: center; color: var(--ink-faint); font-size: .85rem; line-height: 1.6; }
.pay-trust .badges { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; color: var(--ink-soft); font-weight: 600; font-size: .82rem; }
.pay-trust .badges span { display: inline-flex; align-items: center; gap: .4rem; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(12px) saturate(140%);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 12px;
  transform: translateY(120%); transition: transform .3s ease;
  box-shadow: 0 -8px 24px rgba(46,42,36,.10);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .meta { line-height: 1.1; }
.sticky-cta .meta .n { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; color: var(--ink); }
.sticky-cta .meta .w { color: var(--ink-faint); text-decoration: line-through; font-size: .85rem; margin-left: 6px; }
.sticky-cta .meta small { display: block; color: var(--ink-faint); font-size: .72rem; }
.sticky-cta .btn { margin-left: auto; padding: 13px 22px; font-size: 1rem; }
@media (min-width: 860px) { .sticky-cta { display: none; } }
body.has-sticky { padding-bottom: 84px; }
@media (min-width: 860px) { body.has-sticky { padding-bottom: 0; } }

/* ---------- Status pages (success / error / download error) ---------- */
.status-wrap { min-height: 70vh; display: grid; place-items: center; padding-block: 60px; }
.status-card {
  max-width: 580px; width: 100%; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: clamp(30px, 5vw, 48px); text-align: center;
}
.status-icon {
  width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 22px;
  font-size: 2rem;
}
.status-icon.ok { background: var(--sage-tint); color: var(--sage-dk); }
.status-icon.warn { background: #FBE9E6; color: #B23A2A; }
.status-card h1 { font-size: clamp(1.7rem, 4.5vw, 2.3rem); }
.status-card p { margin-top: .9rem; }
.status-receipt {
  text-align: left; margin: 24px 0; background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 18px 20px;
}
.status-receipt .ln { display: flex; justify-content: space-between; gap: 14px; padding: 6px 0; font-size: .96rem; }
.status-receipt .ln span:first-child { color: var(--ink-faint); }
.status-receipt .ln span:last-child { color: var(--ink); font-weight: 600; text-align: right; }
.status-receipt .ln.total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 12px; font-weight: 800; }
.dl-note { font-size: .88rem; color: var(--ink-faint); margin-top: 14px; }
.btn-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
@media (min-width: 520px) { .btn-stack { flex-direction: row; justify-content: center; } }

/* ---------- Legal / article pages ---------- */
.legal { max-width: var(--readw); margin-inline: auto; }
.legal h1 { font-size: clamp(1.9rem, 5vw, 2.6rem); }
.legal .updated { color: var(--ink-faint); font-size: .9rem; margin-top: 8px; }
.legal h2 { font-size: 1.4rem; margin-top: 2.2rem; }
.legal h3 { font-size: 1.12rem; margin-top: 1.5rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal p { margin-top: .9rem; }
.legal ul, .legal ol { margin-top: .8rem; padding-left: 1.3rem; }
.legal li { margin-top: .4rem; }
.legal a { font-weight: 600; }

/* ---------- Footer ---------- */
.footer { background: #29251F; color: #cfc6b8; padding-block: 46px; }
.footer .wrap { display: flex; flex-direction: column; gap: 22px; }
.footer .brand { color: #FBF7F0; }
.footer .cols { display: flex; flex-wrap: wrap; gap: 26px 40px; }
.footer a { color: #cfc6b8; text-decoration: none; font-size: .95rem; }
.footer a:hover { color: #fff; }
.footer .fine { border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; font-size: .82rem; color: #9a9183; line-height: 1.6; }
.footer .fine p + p { margin-top: .6rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
.no-js .reveal { opacity: 1; transform: none; }

/* hero entrance */
.hero .anim { opacity: 0; transform: translateY(16px); animation: rise .8s cubic-bezier(.2,.7,.3,1) forwards; }
.hero .anim.d1 { animation-delay: .05s; }
.hero .anim.d2 { animation-delay: .15s; }
.hero .anim.d3 { animation-delay: .28s; }
.hero .anim.d4 { animation-delay: .40s; }
.hero .anim.cover-figure { animation-delay: .2s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero .anim { opacity: 1; transform: none; animation: none; } }

/* small helpers */
.mt-0 { margin-top: 0; }
.muted { color: var(--ink-faint); }
.divider { height: 1px; background: var(--line); border: none; margin-block: 0; }
.hide { display: none !important; }

/* inline consent validation errors (used by order-form) */
.err--inline { color: #B23A2A; font-size: .82rem; margin: -6px 0 12px; display: none; line-height: 1.5; }
.err--inline.show { display: block; }
