/* ==========================================================================
   PromoFlyers — site design system
   Tokens from docs/BRAND.md. No ad-hoc values: colours, spacing (8px scale),
   radii, shadows and type all come from the custom properties below.
   Orange is for CTAs, active states and key highlights ONLY.
   ========================================================================== */

:root {
  /* Brand colour tokens (docs/BRAND.md) */
  --pf-orange: #FD3601;
  --pf-orange-dark: #E22F00;      /* hover darken of the brand orange */
  --pf-orange-tint: rgba(253, 54, 1, 0.06);
  --pf-black: #1A1A1A;
  --pf-grey-600: #6B6B6B;
  --pf-grey-400: #9A9A9A;         /* decorative/large text only — fails AA small */
  --pf-grey-50: #F9F9F9;
  --pf-border: #E8E8E8;
  --pf-white: #FFFFFF;
  --pf-green: #00B67A;
  --pf-gold: #FFD700;

  /* Spacing — strict 8px scale */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-6: 48px;
  --s-8: 64px;
  --s-12: 96px;
  --s-16: 128px;

  /* Radii + shadow */
  --r-btn: 12px;
  --r-card: 16px;
  --r-pill: 999px;
  --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.06);

  /* Layout */
  --container: 1140px;
  --gutter: var(--s-3);            /* 24px mobile */

  /* Type scale (BRAND.md / WEEK-1), fluid to mobile */
  --fs-h1: clamp(36px, 3.2vw + 24px, 56px);
  --lh-h1: 1.15;
  --ls-h1: -1.5px;
  --fs-h2: clamp(28px, 2vw + 20px, 40px);
  --lh-h2: 1.2;
  --ls-h2: -1px;
  --fs-h3: clamp(22px, 1vw + 18px, 28px);
  --lh-h3: 1.22;
  --fs-body: 17px;
  --lh-body: 28px;
  --fs-small: 14px;
  --lh-small: 22px;

  /* Section rhythm: 64 mobile → 112 desktop (within the 96–128 band) */
  --section-y: var(--s-8);
}

@media (min-width: 768px) {
  :root { --gutter: var(--s-6); --section-y: var(--s-12); }
}
@media (min-width: 1140px) {
  :root { --section-y: 112px; }
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--pf-black);
  background: var(--pf-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { font-weight: 800; color: var(--pf-black); text-wrap: balance; }
h1 { font-size: var(--fs-h1); line-height: var(--lh-h1); letter-spacing: var(--ls-h1); }
h2 { font-size: var(--fs-h2); line-height: var(--lh-h2); letter-spacing: var(--ls-h2); font-weight: 700; }
h3 { font-size: var(--fs-h3); line-height: var(--lh-h3); font-weight: 700; letter-spacing: -0.3px; }
h4 { font-size: var(--fs-body); font-weight: 700; }

p, li { max-width: 65ch; }
.muted { color: var(--pf-grey-600); }
.small { font-size: var(--fs-small); line-height: var(--lh-small); }

a { color: inherit; }
a:not([class]) { color: var(--pf-black); text-underline-offset: 3px; }
a:not([class]):hover { color: var(--pf-orange); }

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

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--grey { background: var(--pf-grey-50); }
.section-head { margin-bottom: var(--s-6); }
.section-head p { margin-top: var(--s-2); }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-small);
  line-height: var(--lh-small);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pf-orange);
  margin-bottom: var(--s-2);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--pf-black); color: var(--pf-white);
  padding: var(--s-1) var(--s-2); border-radius: 0 0 var(--r-btn) 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   Buttons — hover, focus-visible and active states everywhere
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  /* 19px/700 keeps white-on-brand-orange at the WCAG large-text threshold (3:1) */
  font: 700 19px/1.2 Inter, system-ui, sans-serif;
  padding: 14px var(--s-3);
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.15s ease, transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary { background: var(--pf-orange); color: var(--pf-white); }
.btn-primary:hover { background: var(--pf-orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.btn-primary:active { transform: translateY(0); box-shadow: none; }
.btn-secondary { background: var(--pf-white); color: var(--pf-black); border-color: var(--pf-border); }
.btn-secondary:hover { border-color: var(--pf-black); transform: translateY(-1px); }
.btn-secondary:active { transform: translateY(0); }
.btn-small { padding: 11px var(--s-3); font-size: 19px; }
/* Focus ring must be visible ON the orange button itself */
.btn-primary:focus-visible { outline-color: var(--pf-black); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.55; cursor: default; transform: none; }

.text-link {
  font-weight: 600; color: var(--pf-black);
  text-decoration: underline; text-underline-offset: 3px;
  display: inline-block; padding-block: 10px; /* 44px touch target */
  background: none; border: 0; cursor: pointer; font-size: inherit;
}
.text-link:hover { color: var(--pf-orange); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--pf-white);
  border-bottom: 1px solid var(--pf-border);
}
.nav-row {
  display: flex; align-items: center;
  gap: var(--s-3); min-height: 72px; flex-wrap: wrap;
  padding-block: var(--s-1);
}
.brand { display: flex; align-items: center; padding-block: var(--s-1); min-height: 44px; order: 1; }
.brand img { width: 160px; height: auto; }
.nav-cta { order: 3; margin-left: auto; white-space: nowrap; }
.nav-cta .nav-cta-short { display: none; }
@media (max-width: 767px) {
  .nav-cta .nav-cta-full { display: none; }
  .nav-cta .nav-cta-short { display: inline; }
}
.site-nav { display: flex; align-items: center; gap: var(--s-3); order: 2; margin-left: auto; }
.site-nav ul {
  display: flex; gap: var(--s-3); list-style: none;
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.site-nav ul::-webkit-scrollbar { display: none; }
/* Scoped to the link LIST so the .btn CTA keeps its own button styling */
.site-nav ul a {
  font-size: 15px; font-weight: 600; text-decoration: none;
  color: var(--pf-black); white-space: nowrap;
  padding: 12px 0; border-bottom: 2px solid transparent; /* ≥44px touch target */
}
.site-nav ul a:hover { color: var(--pf-orange); }
.site-nav ul a[aria-current="page"] { color: var(--pf-orange); border-bottom-color: var(--pf-orange); }
@media (max-width: 767px) {
  /* Row 1: logo left + CTA right · Row 2: full-width scrollable links */
  .nav-row { gap: var(--s-2); }
  .nav-cta { order: 2; }
  .site-nav { order: 3; flex: 1 1 100%; margin-left: 0; }
  .site-nav ul { width: 100%; }
}
@media (max-width: 359px) {
  /* Tiny screens: logo and CTA can't share 272px — full-width CTA reads intentional */
  .nav-cta { flex: 1 1 100%; text-align: center; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { padding-block: var(--section-y); }
.hero-grid {
  display: grid; gap: var(--s-6); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 7fr 5fr; } }
.hero p.lead { margin-top: var(--s-3); font-size: clamp(17px, 1vw + 14px, 20px); line-height: 1.6; color: var(--pf-grey-600); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s-4); }
.hero-note { margin-top: var(--s-2); }

/* --------------------------------------------------------------------------
   Card grid mockup — the 8-slot PromoFlyers Card, reusable
   Slots fill live from /api/placeholders; static styled fallback beneath.
   -------------------------------------------------------------------------- */
.card-mock {
  background: var(--pf-white);
  border: 1px solid var(--pf-border);
  border-radius: var(--r-card);
  padding: var(--s-2);
  box-shadow: var(--shadow-hover);
}
.card-mock-brand {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-1) var(--s-1) var(--s-2);
}
.card-mock-brand .wordmark { font-weight: 800; font-size: 19px; letter-spacing: -0.3px; }
.card-mock-brand .wordmark b { color: var(--pf-orange); }
.card-mock-brand .side { font-size: 12px; line-height: var(--lh-small); font-weight: 600; color: var(--pf-grey-600); }
.card-mock-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-1);
}
.mock-slot {
  position: relative; aspect-ratio: 105 / 74; border-radius: var(--s-1);
  overflow: hidden; border: 1px solid var(--pf-border); background: var(--pf-grey-50);
}
.mock-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mock-slot .fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--s-1);
}
.mock-slot .fallback .bar { height: 6px; width: 60%; border-radius: var(--r-pill); background: var(--pf-border); margin-bottom: 6px; }
.mock-slot .fallback .bar.accent { width: 40%; background: var(--pf-orange); opacity: 0.85; }
.mock-slot.your-slot { border: 2px solid var(--pf-orange); background: var(--pf-orange-tint); }
.mock-slot.your-slot .label {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 19px; color: var(--pf-orange); text-align: center;
}
.card-mock-caption { margin-top: var(--s-2); text-align: center; }

/* --------------------------------------------------------------------------
   Product grid
   -------------------------------------------------------------------------- */
.product-grid {
  display: grid; gap: var(--s-3);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.product-card {
  display: flex; flex-direction: column; gap: var(--s-2);
  background: var(--pf-white);
  border: 1px solid var(--pf-border);
  border-radius: var(--r-card);
  padding: var(--s-4);
  text-decoration: none;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
a.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); border-color: var(--pf-grey-400); }
a.product-card:active { transform: translateY(0); }
.product-card h3 { font-size: 19px; line-height: 1.3; }
.product-card p { font-size: 15px; line-height: 1.55; color: var(--pf-grey-600); flex: 1; }
.product-card .meta { display: flex; align-items: center; justify-content: space-between; gap: var(--s-2); }
.price { font-weight: 700; color: var(--pf-black); }
.price .from { font-weight: 500; color: var(--pf-grey-600); font-size: var(--fs-small); }
.arrow { color: var(--pf-orange); font-weight: 700; }
.badge {
  display: inline-block; font-size: 12px; line-height: 1; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--pf-grey-600); background: var(--pf-grey-50);
  border: 1px solid var(--pf-border); border-radius: var(--r-pill);
  padding: 6px 10px;
}
.badge--founding { color: var(--pf-orange); background: var(--pf-orange-tint); border-color: transparent; }

/* --------------------------------------------------------------------------
   Steps (How it works)
   -------------------------------------------------------------------------- */
.steps { display: grid; gap: var(--s-3); grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--pf-white); border: 1px solid var(--pf-border);
  border-radius: var(--r-card); padding: var(--s-4);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: block; font-weight: 800; font-size: var(--fs-small);
  color: var(--pf-orange); margin-bottom: var(--s-2); letter-spacing: 0.04em;
}
.step h3 { font-size: 19px; margin-bottom: var(--s-1); }
.step p { font-size: 15px; line-height: 1.55; color: var(--pf-grey-600); }

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */
.trust-strip {
  display: grid; gap: var(--s-2); grid-template-columns: 1fr;
  padding-block: var(--s-6);
}
@media (min-width: 480px) { .trust-strip { grid-template-columns: repeat(2, 1fr); gap: var(--s-3); } }
@media (min-width: 768px) { .trust-strip { padding-block: var(--s-8); } }
@media (min-width: 768px) { .trust-strip { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: var(--s-2); font-weight: 600; font-size: 15px; }
.trust-item svg { flex: 0 0 auto; color: var(--pf-green); }

/* --------------------------------------------------------------------------
   Feature rows / value props
   -------------------------------------------------------------------------- */
.value-grid { display: grid; gap: var(--s-3); grid-template-columns: 1fr; }
@media (min-width: 768px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .value-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  background: var(--pf-white); border: 1px solid var(--pf-border);
  border-radius: var(--r-card); padding: var(--s-4);
}
.value-card h3 { font-size: 18px; margin-bottom: var(--s-1); }
.value-card p { font-size: 15px; line-height: 1.55; color: var(--pf-grey-600); }

/* --------------------------------------------------------------------------
   Widgets shared (suggest / slots / solo config / waitlist)
   -------------------------------------------------------------------------- */
.widget {
  background: var(--pf-white); border: 1px solid var(--pf-border);
  border-radius: var(--r-card); padding: var(--s-4);
}
.field { margin-bottom: var(--s-2); }
.field label { display: block; font-size: var(--fs-small); font-weight: 600; margin-bottom: var(--s-1); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  font: 400 16px/1.4 Inter, system-ui, sans-serif; color: var(--pf-black);
  background: var(--pf-white); border: 1px solid var(--pf-border);
  border-radius: 10px; outline: none;
  transition: border-color 0.15s ease;
}
.field textarea { resize: vertical; min-height: 64px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--pf-grey-400); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pf-orange); }
.seg { display: flex; gap: var(--s-1); flex-wrap: wrap; }
.seg button {
  flex: 1; min-width: 96px; padding: 12px;
  border: 1px solid var(--pf-border); background: var(--pf-white); border-radius: 10px;
  font: 600 15px Inter, system-ui, sans-serif; cursor: pointer; color: var(--pf-black);
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.seg button:hover { border-color: var(--pf-grey-400); }
.seg button:active { background: var(--pf-grey-50); }
.seg button[aria-pressed="true"] { border-color: var(--pf-orange); background: var(--pf-orange-tint); color: var(--pf-orange); }
.hint { font-size: var(--fs-small); line-height: var(--lh-small); color: var(--pf-grey-600); margin-top: var(--s-1); }

.notice { font-size: 15px; line-height: 1.5; padding: var(--s-2); border-radius: 10px; }
.notice--ok { background: rgba(0, 182, 122, 0.1); color: #00875C; border: 1px solid rgba(0, 182, 122, 0.3); }
.notice--err { background: var(--pf-orange-tint); color: #C22C00; border: 1px solid rgba(253, 54, 1, 0.25); }

.spinner {
  width: 28px; height: 28px; margin: 0 auto var(--s-2);
  border: 3px solid var(--pf-border); border-top-color: var(--pf-orange);
  border-radius: 50%; animation: pf-spin 1s linear infinite;
}
@keyframes pf-spin { to { transform: rotate(360deg); } }
.loading-block { text-align: center; padding: var(--s-4) 0; color: var(--pf-grey-600); }

/* Suggest tool */
.suggest-grid { display: grid; gap: var(--s-3); grid-template-columns: 1fr; }
@media (min-width: 900px) { .suggest-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.suggest-result { min-height: 320px; display: flex; flex-direction: column; justify-content: center; }
.suggest-result .kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--pf-orange); margin-bottom: var(--s-1); }
.suggest-result h3 { font-size: var(--fs-h3); margin-bottom: var(--s-2); }
.suggest-result .areas { color: var(--pf-grey-600); font-size: var(--fs-small); margin-top: var(--s-1); }
.suggest-result .actions { margin-top: var(--s-3); display: flex; gap: var(--s-2); align-items: center; flex-wrap: wrap; }

/* Slots availability */
.slots-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-2); margin-bottom: var(--s-2); flex-wrap: wrap; }
.slots-remaining { font-weight: 800; font-size: var(--fs-h3); letter-spacing: -0.4px; }
.slots-remaining b { color: var(--pf-orange); }
.slots-grid { display: grid; gap: var(--s-1); grid-template-columns: 1fr; list-style: none; }
@media (min-width: 560px) { .slots-grid { grid-template-columns: 1fr 1fr; } }
.slot-cat {
  display: flex; align-items: center; gap: var(--s-1);
  padding: 12px 14px; border: 1px solid var(--pf-border); border-radius: 10px;
  font-size: 15px; font-weight: 600; background: var(--pf-white);
}
.slot-cat .ic { width: 20px; text-align: center; }
.slot-cat.avail .ic { color: var(--pf-green); }
.slot-cat.taken { color: var(--pf-grey-600); background: var(--pf-grey-50); }
.slot-cat.taken .name { text-decoration: line-through; }

/* Price panel (solo config + shared price block) */
.price-panel {
  background: var(--pf-grey-50); border: 1px solid var(--pf-border);
  border-radius: var(--r-card); padding: var(--s-4); margin-top: var(--s-2);
}
.price-panel .context { font-size: var(--fs-small); font-weight: 600; color: var(--pf-grey-600); }
.price-panel .amount { font-weight: 800; font-size: clamp(28px, 2vw + 20px, 36px); letter-spacing: -0.6px; margin-top: 4px; }
.price-panel .saving { font-size: var(--fs-small); font-weight: 700; color: var(--pf-green); margin-top: 4px; min-height: var(--lh-small); }
.price-panel .scarcity { font-size: 15px; font-weight: 600; color: var(--pf-orange); margin-top: var(--s-1); min-height: 24px; }

/* FAQ */
.faq { border-top: 1px solid var(--pf-border); }
.faq details { border-bottom: 1px solid var(--pf-border); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: var(--s-2);
  padding: var(--s-3) 0; font-weight: 700; font-size: var(--fs-body);
  transition: color 0.15s ease;
}
.faq summary:hover { color: var(--pf-orange); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--pf-orange); font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: var(--s-3); color: var(--pf-grey-600); }

/* CTA band */
.cta-band { text-align: center; }
.cta-band .hero-ctas { justify-content: center; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--pf-border); background: var(--pf-white); }
.footer-grid {
  display: grid; gap: var(--s-6); padding-block: var(--s-8);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand img { width: 180px; }
.footer-brand p { margin-top: var(--s-2); font-size: var(--fs-small); line-height: var(--lh-small); color: var(--pf-grey-600); }
.footer-col .footer-h { font-size: var(--fs-small); text-transform: uppercase; letter-spacing: 0.05em; color: var(--pf-grey-600); margin-bottom: var(--s-2); font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col a {
  font-size: 15px; text-decoration: none; color: var(--pf-black);
  display: inline-block; padding-block: 12px; /* ≥44px touch target */
}
.footer-col a:hover { color: var(--pf-orange); }
.footer-legal a { display: inline-block; padding-block: 12px; }
.footer-legal {
  display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: space-between; align-items: center;
  border-top: 1px solid var(--pf-border); padding-block: var(--s-3);
  font-size: var(--fs-small); color: var(--pf-grey-600);
}

/* --------------------------------------------------------------------------
   Reveal on scroll — ADDITIVE only: content is never hidden. The entrance
   animation plays when the observer adds .in; if JS/IO never runs, everything
   is simply visible. (Global reduced-motion rule disables the animation.)
   -------------------------------------------------------------------------- */
.js .reveal.in { animation: pf-rise 0.5s ease backwards; }
@keyframes pf-rise {
  from { opacity: 0; transform: translateY(12px); }
}

/* --------------------------------------------------------------------------
   Page-specific helpers
   -------------------------------------------------------------------------- */
.annotation-list { list-style: none; display: grid; gap: var(--s-1); margin-top: var(--s-3); }
.annotation-list li { display: flex; gap: var(--s-1); align-items: baseline; font-size: 15px; color: var(--pf-grey-600); }
.annotation-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--pf-orange); flex: 0 0 auto; transform: translateY(-1px); }

.two-col { display: grid; gap: var(--s-6); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col--top { align-items: start; }

.option-cards { display: grid; gap: var(--s-3); grid-template-columns: 1fr; }
@media (min-width: 768px) { .option-cards { grid-template-columns: 1fr 1fr; } }
.option-card {
  background: var(--pf-white); border: 1px solid var(--pf-border);
  border-radius: var(--r-card); padding: var(--s-4);
  display: flex; flex-direction: column; gap: var(--s-2);
}
.option-card .tag { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--pf-grey-600); }
.option-card p { font-size: 15px; line-height: 1.55; color: var(--pf-grey-600); }
/* price + CTA pin to the bottom so the two option cards align with each other */
.option-card .price { margin-top: auto; font-size: var(--fs-body); color: var(--pf-black); }

.legal-body { max-width: 720px; }
.legal-body h2 { font-size: var(--fs-h3); margin-top: var(--s-6); margin-bottom: var(--s-2); }
.legal-body p { margin-bottom: var(--s-2); color: var(--pf-grey-600); }

.error-hero { text-align: center; padding-block: var(--s-16); }
