/* NeverL8 marketing site.
   Landing page uses the .lp-* namespace; legal/long-form pages use .legal.
   The two share tokens and the reset but no component selectors, so neither
   can clobber the other. */

:root {
  --bg: #0a0b0d;
  --surface: #0e1014;
  --raise: rgba(255, 255, 255, 0.05);
  --raise-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.12);
  --border-soft: rgba(255, 255, 255, 0.1);
  --hairline: rgba(255, 255, 255, 0.08);

  --text: #eef0f2;
  --text-2: #d5d9de;
  --muted: #9aa1a9;
  --muted-2: #8d939b;
  --dim: #6d737a;

  --accent: #ff5f2e;
  --accent-lt: #ff8a5c;
  --accent-link: #ff7a45;
  --ring: #ffa63a;
  --on-accent: #0a0500;

  --radius: 14px;
  --maxw: 1200px;
  --readw: 780px;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Helvetica Neue", Helvetica, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent-link); text-decoration: none; }
a:hover { color: #ffa478; }
a:focus-visible, summary:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--accent-lt);
  outline-offset: 3px;
  border-radius: 4px;
}
img { max-width: 100%; }

/* ==========================================================================
   Legal / long-form pages (privacy.html)
   ========================================================================== */

.wrap { max-width: var(--readw); margin: 0 auto; padding: 0 26px; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.site-nav .brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px; letter-spacing: -0.01em; color: var(--text);
}
.site-nav .brand:hover { color: var(--text); }
.site-nav .brand img { width: 28px; height: 28px; border-radius: 7px; }
.site-nav a.navlink { color: var(--muted-2); font-size: 14.5px; font-weight: 500; }
.site-nav a.navlink:hover { color: var(--text); }

.legal { padding: 46px 0 64px; }
.legal h1 { font-size: 44px; line-height: 1.05; letter-spacing: -0.035em; margin: 0 0 10px; }
.legal .updated {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-lt); margin: 0 0 34px;
}
.legal h2 { font-size: 24px; letter-spacing: -0.02em; margin: 44px 0 10px; }
.legal h3 { font-size: 18px; margin: 26px 0 6px; }
.legal p { color: #b0b6bd; margin: 0 0 14px; }
.legal strong { color: var(--text); font-weight: 650; }
.legal ul { padding-left: 22px; margin: 0 0 16px; }
.legal li { color: #b0b6bd; margin: 9px 0; }
.legal code {
  font-family: var(--mono); font-size: 13.5px;
  background: var(--raise-2);
  border: 1px solid var(--border-soft);
  border-radius: 5px; padding: 1px 6px; color: var(--text-2);
}
.legal .callout {
  background: linear-gradient(150deg, rgba(255, 95, 46, 0.1), rgba(255, 95, 46, 0.02) 60%, var(--surface));
  border: 1px solid rgba(255, 95, 46, 0.28);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 24px 0;
}
.legal .callout p { margin: 0; color: #c3c8ce; }

.site-footer {
  border-top: 1px solid var(--hairline);
  margin-top: 40px; padding: 26px 0 44px;
  color: var(--dim); font-size: 14px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.site-footer a { color: var(--dim); }
.site-footer a:hover { color: var(--text); }

/* ==========================================================================
   Landing page
   ========================================================================== */

.lp-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 30px; }

.lp-mono {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Nav ---------------------------------------------------------------- */
.lp-nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.lp-nav .lp-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16.5px; color: var(--text);
}
.lp-nav .lp-brand img { width: 26px; height: 26px; border-radius: 7px; }
.lp-nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; }
.lp-nav-links a { color: var(--muted-2); }
.lp-nav-links a:hover { color: var(--text); }

/* Buttons ------------------------------------------------------------- */
.lp-btn,
.lp-btn-ghost {
  display: inline-block;
  border-radius: 12px;
  font-weight: 650;
  font-size: 16.5px;
  padding: 15px 28px;
  text-align: center;
}
.lp-btn { background: var(--accent); color: var(--on-accent); }
.lp-btn:hover { background: #ff734a; color: var(--on-accent); }
.lp-btn-ghost { border: 1px solid rgba(255, 255, 255, 0.16); color: var(--text); font-weight: 600; padding: 15px 24px; }
.lp-btn-ghost:hover { border-color: rgba(255, 255, 255, 0.32); color: var(--text); }
.lp-btn-sm {
  display: inline-block;
  background: var(--accent); color: var(--on-accent);
  padding: 8px 15px; border-radius: 8px; font-weight: 600;
}
.lp-btn-sm:hover { background: #ff734a; color: var(--on-accent); }

/* Hero ---------------------------------------------------------------- */
.lp-hero { position: relative; text-align: center; padding: 72px 0 52px; max-width: 940px; margin: 0 auto; }
.lp-hero-glow {
  position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 560px; max-width: 100vw;
  background: radial-gradient(ellipse at center, rgba(255, 95, 46, 0.2), rgba(255, 95, 46, 0) 65%);
  pointer-events: none;
}
.lp-hero-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.lp-hero-icon { width: 96px; height: 96px; border-radius: 23px; box-shadow: 0 24px 70px rgba(255, 95, 46, 0.28); }
.lp-eyebrow { color: var(--accent-lt); }
.lp-hero h1 {
  margin: 0; font-size: 72px; line-height: 1.02; letter-spacing: -0.035em;
  font-weight: 700; max-width: 16ch; text-wrap: balance;
}
.lp-hero-sub { margin: 0; font-size: 21px; line-height: 1.5; color: var(--muted); max-width: 52ch; }
.lp-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; margin-top: 6px; }
.lp-hero-fine { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.05em; color: var(--dim); }

/* Timeline ------------------------------------------------------------ */
.lp-timeline-sec { padding: 0 0 52px; }
.lp-timeline {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.lp-timeline dt {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 7px;
}
.lp-timeline dd { margin: 0; font-size: 15.5px; color: var(--muted); line-height: 1.55; }
.lp-timeline .is-now dt { color: var(--accent-lt); }
.lp-timeline .is-now dd { color: var(--text-2); }

/* Overlay preview ------------------------------------------------------ */
.lp-preview-sec { padding: 0 0 56px; }
.lp-screen {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
}
.lp-menubar {
  height: 26px; background: var(--raise-2);
  display: flex; align-items: center; justify-content: flex-end; gap: 16px; padding: 0 14px;
  font-family: var(--mono); font-size: 11px; color: rgba(255, 255, 255, 0.62);
}
.lp-clockglyph { position: relative; width: 13px; height: 13px; border: 1.5px solid rgba(255, 255, 255, 0.8); border-radius: 50%; }
.lp-clockglyph::before,
.lp-clockglyph::after { content: ""; position: absolute; background: rgba(255, 255, 255, 0.85); }
.lp-clockglyph::before { left: 4.5px; top: 2px; width: 1.5px; height: 4.5px; }
.lp-clockglyph::after { left: 5px; top: 5.5px; width: 4px; height: 1.5px; }

.lp-overlay {
  display: flex; flex-direction: column; align-items: center; gap: 30px;
  padding: 64px 32px 70px;
  background: radial-gradient(ellipse at 50% 30%, rgba(255, 95, 46, 0.15), rgba(0, 0, 0, 0) 64%), #08090b;
}
.lp-ring { position: relative; width: 230px; height: 230px; }
.lp-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.lp-ring-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.lp-ring-label .lp-ring-cap {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.lp-ring-time { font-size: 56px; font-weight: 600; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }

.lp-event {
  width: 100%; max-width: 520px;
  background: var(--raise); border: 1px solid var(--border-soft);
  border-radius: 18px; padding: 22px 24px;
  display: flex; flex-direction: column; gap: 10px; text-align: left;
}
.lp-event-title { font-size: 22px; font-weight: 650; letter-spacing: -0.015em; }
.lp-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.lp-chips span {
  font-size: 13px; color: rgba(255, 255, 255, 0.72);
  background: var(--raise-2); padding: 5px 11px; border-radius: 999px;
}
.lp-event-desc { font-size: 14.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.62); }

.lp-overlay-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.lp-fauxbtn { background: var(--accent); color: var(--on-accent); font-weight: 650; font-size: 16px; padding: 13px 30px; border-radius: 11px; }
.lp-fauxbtn-ghost { border: 1px solid rgba(255, 255, 255, 0.2); color: var(--text); font-weight: 600; font-size: 16px; padding: 13px 24px; border-radius: 11px; }
.lp-keys { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.42); }

/* Video + menu dropdown ------------------------------------------------ */
/* Markup currently commented out in index.html; kept so restoring the
   section is a markup-only change. */
.lp-duo { padding: 20px 0 56px; display: flex; gap: 26px; align-items: stretch; flex-wrap: wrap; }
.lp-video {
  flex: 1 1 420px; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border-soft);
  background: repeating-linear-gradient(135deg, #111318, #111318 9px, #161920 9px, #161920 18px);
  min-height: 280px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 13px;
}
.lp-play {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255, 95, 46, 0.16); border: 1px solid rgba(255, 95, 46, 0.5);
  display: flex; align-items: center; justify-content: center;
}
.lp-play::after {
  content: ""; width: 0; height: 0;
  border-left: 14px solid var(--accent-lt);
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.lp-video figcaption {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.07em;
  color: #8a9099; text-align: center; max-width: 40ch; padding: 0 16px;
}

.lp-glance {
  flex: 0 1 340px; border: 1px solid var(--border-soft); border-radius: 12px;
  background: var(--surface); padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.lp-glance h3 { margin: 0; font-size: 15.5px; font-weight: 650; }
.lp-dropdown {
  background: rgba(32, 34, 39, 0.97);
  border: 1px solid var(--border); border-radius: 11px; overflow: hidden;
}
.lp-dropdown-head { padding: 11px 13px 9px; border-bottom: 1px solid var(--hairline); }
.lp-dropdown-head .lp-next {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-lt);
}
.lp-dropdown-head .lp-next-title { font-size: 13px; font-weight: 600; margin-top: 2px; }
.lp-rows { display: flex; flex-direction: column; padding: 5px; }
.lp-row { display: flex; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 6px; }
.lp-row.is-next { background: rgba(255, 255, 255, 0.06); }
.lp-row.is-muted { opacity: 0.45; }
.lp-row time { font-family: var(--mono); font-size: 11px; color: rgba(255, 255, 255, 0.55); width: 52px; flex: none; }
.lp-row .lp-row-name { font-size: 12.5px; flex: 1; }
.lp-row .lp-off { font-size: 10.5px; color: var(--accent-lt); }
.lp-bell { width: 13px; height: 13px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, 0.35); flex: none; }
.lp-bell.is-off { position: relative; overflow: hidden; border-color: rgba(255, 255, 255, 0.3); }
.lp-bell.is-off::after {
  content: ""; position: absolute; left: -1px; top: 5px;
  width: 15px; height: 1.5px; background: rgba(255, 255, 255, 0.6); transform: rotate(-45deg);
}
.lp-synced {
  border-top: 1px solid var(--hairline); padding: 7px 14px;
  font-family: var(--mono); font-size: 10px; color: rgba(255, 255, 255, 0.4);
}
.lp-glance p { margin: 0; font-size: 13.5px; color: var(--muted-2); line-height: 1.5; }

/* Feature row ---------------------------------------------------------- */
.lp-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding-bottom: 56px; }
.lp-features > div { border-top: 1px solid var(--border); padding-top: 16px; }
.lp-features h3 { margin: 0 0 6px; font-size: 16px; font-weight: 650; }
.lp-features p { margin: 0; font-size: 14px; color: var(--muted-2); line-height: 1.55; }

/* Time-blindness band --------------------------------------------------- */
.lp-band {
  border: 1px solid rgba(255, 95, 46, 0.26); border-radius: 14px; padding: 32px;
  background: linear-gradient(140deg, rgba(255, 95, 46, 0.1), rgba(255, 95, 46, 0.01) 60%);
  margin-bottom: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center;
}
.lp-band .lp-eyebrow { display: block; margin-bottom: 12px; }
.lp-band h2 { margin: 0 0 12px; font-size: 28px; line-height: 1.15; letter-spacing: -0.025em; font-weight: 700; }
.lp-band p { margin: 0; font-size: 15.5px; line-height: 1.65; color: #a6acb3; }
.lp-spec { display: flex; flex-direction: column; margin: 0; }
.lp-spec > div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-top: 1px solid var(--border-soft); font-size: 14.5px;
}
.lp-spec > div:last-child { border-bottom: 1px solid var(--border-soft); }
.lp-spec dt { color: var(--muted-2); }
.lp-spec dd { margin: 0; text-align: right; }

/* Pricing --------------------------------------------------------------- */
.lp-pricing { padding-bottom: 20px; }
.lp-section-head { text-align: center; margin-bottom: 34px; }
.lp-section-head h2 { margin: 0 0 8px; font-size: 34px; letter-spacing: -0.03em; font-weight: 700; }
.lp-section-head p { margin: 0; color: var(--muted-2); font-size: 16.5px; }

.lp-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 760px; margin: 0 auto; }
.lp-plan {
  border: 1px solid var(--border); border-radius: 16px; padding: 30px;
  background: var(--surface);
  display: flex; flex-direction: column; gap: 14px; position: relative;
}
.lp-plan.is-featured {
  border-color: rgba(255, 95, 46, 0.45);
  background: linear-gradient(160deg, rgba(255, 95, 46, 0.12), var(--surface));
}
.lp-plan-kind { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }
.lp-plan.is-featured .lp-plan-kind { color: var(--accent-lt); }
.lp-price { display: flex; align-items: baseline; gap: 8px; }
/* Specificity note: .lp-plan p (0-1-1) outranks .lp-price (0-1-0), so the
   amount is coloured on the <b> itself rather than on the paragraph. */
.lp-price b { font-size: 44px; font-weight: 700; letter-spacing: -0.03em; color: var(--text); }
.lp-price span { color: var(--muted-2); font-size: 15px; }
.lp-price s { color: var(--muted-2); font-size: 15px; }
.lp-plan p { margin: 0; font-size: 14.5px; color: var(--muted-2); line-height: 1.6; }
.lp-plan.is-featured p { color: #a6acb3; }
.lp-plan-cta {
  margin-top: auto; text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2); color: var(--text);
  font-weight: 600; padding: 12px; border-radius: 10px;
}
.lp-plan-cta:hover { border-color: rgba(255, 255, 255, 0.36); color: var(--text); }
.lp-plan-cta.is-solid { background: var(--accent); color: var(--on-accent); border-color: transparent; font-weight: 650; }
.lp-plan-cta.is-solid:hover { background: #ff734a; color: var(--on-accent); }
.lp-badge {
  position: absolute; top: -11px; right: 22px;
  background: var(--accent); color: var(--on-accent);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 6px;
}
.lp-freenote { text-align: center; margin: 20px auto 0; color: var(--dim); font-size: 14px; max-width: 56ch; }

/* FAQ -------------------------------------------------------------------- */
.lp-faq { padding: 56px 0 0; }
.lp-faq-inner { max-width: 820px; margin: 0 auto; }
.lp-faq h2 { margin: 0 0 26px; font-size: 34px; letter-spacing: -0.03em; font-weight: 700; }
.lp-faq-list { display: flex; flex-direction: column; gap: 2px; }
.lp-faq details { border-top: 1px solid var(--border-soft); padding: 18px 0; }
.lp-faq details:last-child { border-bottom: 1px solid var(--border-soft); }
.lp-faq summary { cursor: pointer; font-size: 17px; font-weight: 600; list-style: none; }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::marker { content: ""; }
.lp-faq p { margin: 12px 0 0; color: var(--muted-2); font-size: 15.5px; line-height: 1.65; }

/* Closing CTA ------------------------------------------------------------ */
.lp-cta-sec { padding: 56px 0; }
.lp-cta {
  border: 1px solid var(--border); border-radius: 18px; padding: 48px 40px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 95, 46, 0.18), var(--surface) 70%);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.lp-cta h2 { margin: 0; font-size: 40px; letter-spacing: -0.03em; font-weight: 700; max-width: 24ch; text-wrap: balance; }
.lp-cta > p { margin: 0; color: #a6acb3; font-size: 17px; max-width: 46ch; }
.lp-cta-btn { background: var(--accent); color: var(--on-accent); font-weight: 650; font-size: 17px; padding: 15px 32px; border-radius: 12px; }
.lp-cta-btn:hover { background: #ff734a; color: var(--on-accent); }
.lp-cta-fine { font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; color: var(--dim); }

.lp-notify { display: flex; flex-direction: column; gap: 10px; align-items: center; margin-top: 8px; width: 100%; max-width: 420px; }
.lp-notify-label { font-size: 14px; color: var(--muted-2); }
.lp-notify-row { display: flex; gap: 8px; width: 100%; }
.lp-notify input {
  flex: 1; min-width: 0;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px; padding: 12px 14px; color: var(--text); font-size: 15px; font-family: inherit;
}
.lp-notify input::placeholder { color: var(--dim); }
.lp-notify button {
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text); font-weight: 600; font-size: 15px;
  padding: 12px 18px; border-radius: 10px; cursor: pointer; font-family: inherit;
}
.lp-notify button:hover { background: rgba(255, 255, 255, 0.16); }

/* Notify form — markup removed until a list provider is wired up (see INFRA.md).
   Kept so re-adding the form is a markup-only change. */

/* Landing footer ---------------------------------------------------------- */
.lp-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 24px 0 44px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: 13.5px; color: var(--dim);
}
.lp-footer-brand { display: flex; align-items: center; gap: 9px; }
.lp-footer-brand img { width: 20px; height: 20px; border-radius: 6px; }
.lp-footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.lp-footer a { color: var(--dim); }
.lp-footer a:hover { color: var(--text); }

/* ==========================================================================
   Responsive — the design is authored desktop-first
   ========================================================================== */

@media (max-width: 1000px) {
  .lp-features { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
  .lp-hero h1 { font-size: 56px; }
}

@media (max-width: 820px) {
  .lp-wrap { padding: 0 22px; }
  .lp-hero { padding: 52px 0 40px; }
  .lp-hero h1 { font-size: 46px; }
  .lp-hero-sub { font-size: 19px; }
  .lp-timeline { grid-template-columns: 1fr; gap: 20px; }
  .lp-band { grid-template-columns: 1fr; gap: 26px; padding: 26px; }
  .lp-plans { grid-template-columns: 1fr; }
  .lp-cta { padding: 36px 24px; }
  .lp-cta h2 { font-size: 32px; }
  .lp-faq h2, .lp-section-head h2 { font-size: 28px; }
}

@media (max-width: 560px) {
  .lp-nav-links { gap: 14px; font-size: 13.5px; }
  .lp-hero h1 { font-size: 36px; }
  .lp-hero-sub { font-size: 17px; }
  .lp-hero-ctas { flex-direction: column; align-items: stretch; width: 100%; }
  .lp-btn, .lp-btn-ghost { width: 100%; }
  .lp-features { grid-template-columns: 1fr; }
  .lp-overlay { padding: 40px 18px 46px; gap: 24px; }
  .lp-ring { width: 176px; height: 176px; }
  .lp-ring-time { font-size: 42px; }
  .lp-event { padding: 18px; }
  .lp-event-title { font-size: 19px; }
  .lp-overlay-actions { width: 100%; flex-direction: column; }
  .lp-fauxbtn, .lp-fauxbtn-ghost { text-align: center; }
  .lp-notify-row { flex-direction: column; }
  .lp-notify button { width: 100%; }
  .lp-cta h2 { font-size: 27px; }
  .legal h1 { font-size: 34px; }
  .legal h2 { font-size: 21px; }
  body { font-size: 16.5px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
