/* ============================================================
   Riveryn — "First Light" landing, Phase 3 synthesis (issue #1244)
   Dark espresso page · cinematic dawn glow · cream Bricolage 800
   Grafts: hero energy line + now-dot (The Current), ruled lists
   for all list content, numbered pill eyebrows, big step numerals,
   junction connectors, halo pools behind framed phones.
   Scope: index.html + guides/ (with guide-first-light.css on top).
   Legal pages keep styles.css.
   Tokens: IOS_APP/PlateCue/Views/RadiantTheme.swift (canonical)
   ============================================================ */

/* ---------- Fonts (self-hosted, OFL, subset woff2) ---------- */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/bricolage-grotesque-extrabold-20260612.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* Bricolage 800 is the only display face the page loads — button and
   summary weights map to it so the bold (700) file never ships. */
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-regular-20260612.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-semibold-20260612.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens (dark hero theme — Radiant) ---------- */
:root {
  /* energy palette — constant, never theme-swapped */
  --energy-low: #ee7a4e;
  --energy-sluggish: #f2a52e;
  --energy-steady: #46d06a;
  --energy-great: #15d957;
  --energy-gold-mid: #ebb838;

  /* dark espresso field */
  --ink: #fcf4e8;
  --muted: #cdbeac;
  --faint: #8a7867;
  --bg-0: #52391f;
  --bg-1: #39281a;
  --bg-2: #241a11;
  --bg-3: #17110b;
  --panel: rgba(255, 244, 228, 0.095);
  --panel-2: rgba(255, 244, 228, 0.16);
  --hairline: rgba(255, 244, 228, 0.14);
  --sheet: #241b13;
  --nav-bg: rgba(34, 25, 17, 0.94);
  --accent: #2be07a;
  --accent-text: #6bf0a2;
  --on-accent: #06210f;
  --sun: #ffb23e;

  --energy-line-gradient: linear-gradient(90deg, var(--sun) 0%, var(--energy-gold-mid) 36%, var(--energy-steady) 70%, var(--energy-great) 100%);
  --cta-glow: 0 10px 26px rgba(43, 224, 122, 0.32);
  --phone-shadow: drop-shadow(0 22px 34px rgba(10, 18, 16, 0.42));

  --font-display: "Bricolage Grotesque", "SF Pro Rounded", -apple-system, "Segoe UI", system-ui, sans-serif;
  --font-label: "Plus Jakarta Sans", -apple-system, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  --track-display: -0.02em;
  --track-wordmark: -0.028em;
  --track-eyebrow: 0.12em;

  --r-card: 18px;
  --r-hero: 22px;
  --r-btn: 16px;
  --r-btn-2: 14px;
  --r-pill: 999px;

  --ease-eager: cubic-bezier(0.34, 1.56, 0.5, 1);
  --dur-eager: 0.4s;

  --container: 1120px;
  --pad-x: clamp(20px, 5vw, 32px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-3);
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: var(--track-display);
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0;
}

a {
  color: var(--accent-text);
  text-decoration: none;
}

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

::selection {
  background: rgba(255, 178, 62, 0.4);
  color: var(--ink);
}

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

main > section {
  scroll-margin-top: 84px;
}

/* ---------- Shared atoms ---------- */
.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  padding: 7px 14px 6px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.chip-gold {
  background: var(--sun);
  color: #231a10;
}

.chip-green {
  background: var(--accent);
  color: var(--on-accent);
}

.eyebrow-text {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--sun);
  margin: 0;
}

/* Numbered editorial eyebrow: filled pill + hairline rule to the margin */
.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-width: 0;
}

.eyebrow-line::after {
  content: "";
  flex: 1 1 0;
  height: 1px;
  background: linear-gradient(90deg, var(--hairline), transparent);
}

.section-heading.centered .eyebrow-line::before {
  content: "";
  flex: 1 1 0;
  height: 1px;
  background: linear-gradient(270deg, var(--hairline), transparent);
}

/* Energy-line junction accent: a short gold-to-green connector that
   lands on a glowing now-dot directly above the next section's eyebrow.
   Never a stranded stub — it always points into real content. */
.junction {
  width: 2px;
  height: clamp(84px, 11vw, 124px);
  margin: 0 auto clamp(30px, 4vw, 40px);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(255, 178, 62, 0) 0%, rgba(255, 178, 62, 0.65) 30%, var(--energy-gold-mid) 58%, var(--energy-great) 100%);
  position: relative;
}

.junction::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 9px;
  height: 9px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--energy-great);
  box-shadow: 0 0 10px rgba(21, 217, 87, 0.85), 0 0 24px rgba(21, 217, 87, 0.4);
}

/* Ruled lists — the house style for list content. Hairline dividers,
   alternating amber/green dot bullets, zero cards. */
.ruled-list {
  list-style: none;
  margin: clamp(36px, 5vw, 44px) 0 0;
  padding: 0;
  max-width: 760px;
}

.ruled-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 17px 2px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--muted);
}

.ruled-list li + li {
  border-top: 1px solid var(--hairline);
}

.ruled-list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
}

.ruled-list li:nth-child(odd)::before {
  background: var(--energy-sluggish);
  box-shadow: 0 0 6px rgba(242, 165, 46, 0.7);
}

.ruled-list li:nth-child(even)::before {
  background: var(--energy-steady);
  box-shadow: 0 0 6px rgba(70, 208, 106, 0.7);
}

.ruled-list--display li {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 1.4;
  color: var(--ink);
  padding: 19px 2px;
}

.ruled-qa li {
  padding: 19px 2px;
}

.ruled-qa h3 {
  font-size: 18.5px;
  margin-bottom: 5px;
}

.ruled-qa p {
  font-size: 15px;
  line-height: 1.55;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 30px;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  border-radius: var(--r-btn);
  box-shadow: var(--cta-glow);
  transition: transform var(--dur-eager) var(--ease-eager), box-shadow var(--dur-eager) var(--ease-eager), filter 0.2s ease;
}

.primary-action:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(43, 224, 122, 0.38);
}

.primary-action:active {
  transform: scale(0.98);
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 26px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  border: 1.5px solid rgba(252, 244, 232, 0.22);
  border-radius: var(--r-btn-2);
  transition: transform var(--dur-eager) var(--ease-eager), background 0.2s ease, border-color 0.2s ease;
}

.secondary-action:hover {
  background: rgba(255, 244, 228, 0.08);
  border-color: rgba(252, 244, 232, 0.42);
  transform: translateY(-1px);
}

.secondary-action:active {
  transform: scale(0.98);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: var(--container);
  margin-inline: auto;
  padding: 14px var(--pad-x);
  background: var(--nav-bg);
}

@supports (backdrop-filter: blur(12px)) {
  .site-header {
    background: rgba(34, 25, 17, 0.78);
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
  }
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: var(--track-wordmark);
}

.brand-mark img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: none;
  gap: 24px;
  margin-inline: auto;
}

.nav-links a {
  color: var(--muted);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-install {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 18px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14.5px;
  border: 1.5px solid rgba(252, 244, 232, 0.26);
  border-radius: 13px;
  white-space: nowrap;
  transition: transform var(--dur-eager) var(--ease-eager), background 0.2s ease, border-color 0.2s ease;
}

.header-install:hover {
  background: rgba(255, 244, 228, 0.07);
  border-color: rgba(252, 244, 232, 0.46);
}

.header-install:active {
  transform: scale(0.98);
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }

  .header-install {
    margin-left: 0;
  }
}

/* ---------- Hero — the dawn ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 50% -6%, var(--bg-0) 0%, var(--bg-1) 30%, var(--bg-2) 62%, var(--bg-3) 100%);
  margin-top: -70px;
  padding-top: 70px;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto;
  height: 85%;
  background:
    radial-gradient(46% 56% at 50% 8%, rgba(255, 178, 62, 0.30) 0%, rgba(255, 178, 62, 0.10) 45%, transparent 72%),
    radial-gradient(34% 44% at 76% 56%, rgba(255, 178, 62, 0.16) 0%, rgba(255, 178, 62, 0.05) 52%, transparent 74%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  gap: clamp(40px, 6vw, 64px);
  padding-top: clamp(48px, 9vw, 104px);
  padding-bottom: 0;
}

.hero-copy {
  max-width: 600px;
}

.hero-copy .eyebrow-text {
  margin-bottom: 22px;
}

.hero-copy h1 {
  font-size: clamp(43px, 10.5vw, 64px);
  margin-bottom: 22px;
}

.hero-lede {
  font-size: clamp(16.5px, 2vw, 18.5px);
  line-height: 1.62;
  max-width: 54ch;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-note {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sun);
}

/* The signature: gold-to-green energy line flowing beneath the CTAs
   into a glowing now-dot, pointing into the phone frame. */
.hero-line {
  margin-top: clamp(22px, 4vw, 36px);
  width: 100%;
  pointer-events: none;
}

.hero-line svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

@media (min-width: 860px) {
  .hero-line {
    width: 131%;
    max-width: none;
  }
}

.hero-phone {
  position: relative;
  margin: 0;
  justify-self: center;
}

.hero-phone::before {
  content: "";
  position: absolute;
  inset: -20% -38%;
  background: radial-gradient(50% 44% at 50% 42%, rgba(255, 188, 84, 0.36) 0%, rgba(255, 178, 62, 0.14) 48%, rgba(21, 217, 87, 0.07) 64%, transparent 78%);
  pointer-events: none;
}

.hero-phone img {
  position: relative;
  display: block;
  width: min(316px, 78vw);
  height: auto;
  filter: var(--phone-shadow);
}

.hero-layout {
  padding-bottom: clamp(40px, 6vw, 72px);
}

@media (min-width: 860px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
  }

  .hero-phone img {
    width: min(352px, 26vw);
  }
}

/* ---------- Launch strip (mobile CTA mirror) ---------- */
.launch-strip {
  background: var(--bg-3);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding-block: 36px;
}

.launch-strip .wrap {
  display: grid;
  gap: 20px;
}

.launch-strip p {
  font-size: 15.5px;
}

.launch-strip strong {
  color: var(--ink);
}

.signal-actions {
  display: grid;
  gap: 12px;
}

.signal-note {
  font-size: 13px;
  color: var(--faint);
}

@media (min-width: 860px) {
  .launch-strip {
    display: none;
  }
}

/* ---------- Section scaffolding ---------- */
.band {
  padding-block: clamp(76px, 11vw, 130px);
}

.band-tight {
  padding-block: clamp(60px, 8vw, 96px);
}

.section-heading {
  max-width: 720px;
  display: grid;
  gap: 20px;
  justify-items: start;
}

.section-heading h2 {
  font-size: clamp(31px, 5.4vw, 48px);
}

.section-heading p {
  font-size: clamp(16px, 1.9vw, 17.5px);
  max-width: 60ch;
}

.section-heading.centered {
  margin-inline: auto;
  justify-items: center;
  text-align: center;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

/* ---------- Pain band ---------- */
.pain-band {
  padding-top: clamp(48px, 7vw, 72px);
}

/* ---------- How it works — three beats ---------- */
.beats-grid {
  display: grid;
  gap: clamp(36px, 5vw, 28px);
  margin-top: clamp(48px, 7vw, 72px);
}

@media (min-width: 760px) {
  .beats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.beat-card {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: var(--r-hero);
  padding: clamp(24px, 3vw, 30px);
  display: grid;
  gap: 0;
  align-content: start;
}

/* Big gold/green step numerals + tiny step-eyebrow pills:
   THE MEAL / THE ENERGY / THE NEXT PLATE — the three-beat loop. */
.beat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.beat-numeral {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(46px, 6vw, 58px);
  line-height: 0.9;
}

.beat-card:nth-child(1) .beat-numeral {
  color: var(--sun);
  text-shadow: 0 0 26px rgba(255, 178, 62, 0.4);
}

.beat-card:nth-child(2) .beat-numeral {
  color: var(--energy-steady);
  text-shadow: 0 0 26px rgba(70, 208, 106, 0.35);
}

.beat-card:nth-child(3) .beat-numeral {
  color: var(--energy-great);
  text-shadow: 0 0 26px rgba(21, 217, 87, 0.4);
}

.step-pill {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px 5px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.step-pill-gold {
  background: rgba(255, 178, 62, 0.14);
  color: var(--sun);
  border: 1px solid rgba(255, 178, 62, 0.35);
}

.step-pill-green {
  background: rgba(43, 224, 122, 0.12);
  color: var(--accent-text);
  border: 1px solid rgba(43, 224, 122, 0.35);
}

.beat-card h3 {
  font-size: clamp(21px, 2.4vw, 23px);
  letter-spacing: -0.01em;
}

.beat-card > p {
  font-size: 15.5px;
  line-height: 1.58;
  margin-top: 4px;
}

.beat-shot {
  position: relative;
  margin: 26px 0 0;
  display: flex;
  justify-content: center;
}

/* Warm halo pool behind each frame so the dark screenshots
   read as objects instead of dissolving into the band. */
.beat-shot::before {
  content: "";
  position: absolute;
  inset: -10% -22%;
  background: radial-gradient(52% 46% at 50% 44%, rgba(255, 196, 100, 0.17) 0%, rgba(255, 178, 62, 0.06) 54%, transparent 76%);
  pointer-events: none;
}

.beat-card:nth-child(3) .beat-shot::before {
  background: radial-gradient(52% 46% at 50% 44%, rgba(120, 224, 140, 0.15) 0%, rgba(21, 217, 87, 0.05) 54%, transparent 76%);
}

.beat-shot img {
  position: relative;
  width: min(228px, 64vw);
  filter: var(--phone-shadow);
}

.kicker-line {
  margin-top: clamp(44px, 6vw, 56px);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--ink);
  text-align: center;
}

.demo-band {
  background: radial-gradient(70% 42% at 50% 4%, rgba(255, 178, 62, 0.055) 0%, transparent 72%);
}

.demo-band .section-actions {
  justify-content: center;
  margin-top: 28px;
}

/* ---------- Fuel clues proof ---------- */
.clues-band {
  background: var(--bg-3);
}

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

@media (min-width: 900px) {
  .clues-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.clues-phone {
  position: relative;
  margin: 0;
  justify-self: center;
  text-align: center;
}

.clues-phone::before {
  content: "";
  position: absolute;
  inset: -14% -30%;
  background: radial-gradient(50% 44% at 50% 40%, rgba(120, 224, 140, 0.18) 0%, rgba(255, 178, 62, 0.08) 55%, transparent 76%);
  pointer-events: none;
}

.clues-phone img {
  position: relative;
  width: min(300px, 74vw);
  filter: var(--phone-shadow);
}

.clues-phone figcaption {
  position: relative;
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--faint);
  max-width: 34ch;
  margin-inline: auto;
}

/* ---------- How it helps (outcome band) ---------- */
.helps-layout {
  display: grid;
  gap: clamp(40px, 6vw, 80px);
}

@media (min-width: 900px) {
  .helps-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
}

.helps-layout .ruled-list {
  margin-top: 0;
}

/* ---------- Trust band ---------- */
.trust-band {
  background: radial-gradient(64% 50% at 22% 0%, rgba(255, 178, 62, 0.05) 0%, transparent 70%), var(--bg-3);
}

/* ---------- Guide band (first-class, give-before-ask) ---------- */
.guide-band {
  position: relative;
}

.guide-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 178, 62, 0.12) 0%, rgba(255, 244, 228, 0.07) 45%, rgba(21, 217, 87, 0.07) 100%);
  border: 1px solid rgba(255, 178, 62, 0.28);
  border-radius: 26px;
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
}

@media (min-width: 900px) {
  .guide-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }
}

.guide-copy {
  display: grid;
  gap: 20px;
  justify-items: start;
}

.guide-copy h2 {
  font-size: clamp(29px, 4.6vw, 42px);
}

.guide-copy > p {
  font-size: 16.5px;
  max-width: 56ch;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.guide-note {
  font-size: 13px;
  color: var(--faint);
}

/* CSS paper mockup of the 3-page guide */
.guide-paper {
  position: relative;
  justify-self: center;
  width: min(250px, 64vw);
  aspect-ratio: 3 / 4;
}

.guide-paper .page {
  position: absolute;
  inset: 0;
  background: var(--ink);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(10, 8, 5, 0.45);
}

.guide-paper .page:nth-child(1) {
  transform: rotate(-5deg) translate(-12px, 8px);
  opacity: 0.55;
}

.guide-paper .page:nth-child(2) {
  transform: rotate(3deg) translate(10px, 4px);
  opacity: 0.75;
}

.guide-paper .page-front {
  position: absolute;
  inset: 0;
  background: #fffaf1;
  border-radius: 14px;
  box-shadow: 0 22px 44px rgba(10, 8, 5, 0.5);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guide-paper .paper-dots {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 26px;
}

.guide-paper .paper-dots i {
  border-radius: 50%;
  display: block;
}

.guide-paper .paper-dots i:nth-child(1) {
  width: 9px;
  height: 9px;
  background: #f2980a;
  align-self: flex-end;
}

.guide-paper .paper-dots i:nth-child(2) {
  width: 12px;
  height: 12px;
  background: #0fa94e;
  margin-bottom: 5px;
}

.guide-paper .paper-dots i:nth-child(3) {
  width: 15px;
  height: 15px;
  background: #0fa94e;
  margin-bottom: 11px;
  box-shadow: 0 0 8px rgba(15, 169, 78, 0.55);
}

.guide-paper .paper-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #231a10;
}

.guide-paper .paper-line {
  height: 7px;
  border-radius: 4px;
  background: rgba(35, 26, 16, 0.12);
}

.guide-paper .paper-line.short {
  width: 62%;
}

.guide-paper .paper-tag {
  margin-top: auto;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0fa94e;
}

/* ---------- Pricing ---------- */
.pricing-layout {
  display: grid;
  gap: clamp(44px, 6vw, 72px);
}

@media (min-width: 900px) {
  .pricing-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }
}

.pricing-layout .section-actions {
  margin-top: 36px;
}

.price-panel {
  display: grid;
  gap: 14px;
}

.price-panel > div {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  align-items: baseline;
}

.price-panel > div:first-child {
  background: linear-gradient(135deg, rgba(43, 224, 122, 0.14), rgba(255, 244, 228, 0.08));
  border-color: rgba(43, 224, 122, 0.35);
}

.price-panel span {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--sun);
}

.price-panel > div:first-child span {
  color: var(--accent-text);
}

.price-panel strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--ink);
  text-align: right;
}

.price-panel p {
  grid-column: 1 / -1;
  font-size: 14.5px;
  line-height: 1.55;
}

.small-print {
  margin-top: clamp(36px, 5vw, 48px);
  font-size: 13px;
  line-height: 1.6;
  color: #a99681;
  max-width: 78ch;
}

/* ---------- Availability ---------- */
.availability-band {
  background: var(--bg-3);
}

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

@media (min-width: 900px) {
  .availability-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.availability-card {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: var(--r-hero);
  padding: clamp(28px, 4vw, 40px);
  display: grid;
  gap: 18px;
  justify-items: start;
}

.availability-card strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  color: var(--ink);
}

.availability-card > p {
  font-size: 15.5px;
}

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

.availability-list li {
  font-size: 14.5px;
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
}

.availability-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--energy-sluggish);
  box-shadow: 0 0 5px rgba(242, 165, 46, 0.7);
}

.availability-list span {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 44px;
  max-width: 820px;
}

.faq-list details {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16.5px;
  color: var(--ink);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  color: var(--sun);
  transition: transform var(--dur-eager) var(--ease-eager);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 68ch;
}

/* ---------- Final CTA — dawn again ---------- */
.final-cta {
  position: relative;
  text-align: center;
  padding-block: clamp(96px, 13vw, 160px);
  background: radial-gradient(90% 110% at 50% 115%, var(--bg-0) 0%, var(--bg-1) 36%, var(--bg-2) 68%, var(--bg-3) 100%);
  overflow: clip;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: auto -20% -30%;
  height: 80%;
  background: radial-gradient(46% 60% at 50% 92%, rgba(255, 178, 62, 0.20) 0%, rgba(255, 178, 62, 0.06) 48%, transparent 74%);
  pointer-events: none;
}

.final-cta .wrap {
  position: relative;
  display: grid;
  gap: 22px;
  justify-items: center;
}

.final-cta .junction {
  margin-bottom: 2px;
}

.final-cta h2 {
  font-size: clamp(34px, 6.4vw, 56px);
}

.final-cta p {
  font-size: 16.5px;
  max-width: 52ch;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--hairline);
  background: var(--bg-3);
  padding-block: 56px;
}

.site-footer .wrap {
  display: grid;
  gap: 36px;
}

@media (min-width: 860px) {
  .site-footer .wrap {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .site-footer nav {
    grid-column: 1 / -1;
  }
}

.site-footer strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: var(--track-wordmark);
  color: var(--ink);
  margin-bottom: 8px;
}

.site-footer p {
  font-size: 14px;
  color: var(--faint);
  line-height: 1.6;
}

.footer-app-store {
  display: inline-flex;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}

.site-footer nav a {
  font-size: 13.5px;
  color: var(--faint);
  transition: color 0.2s ease;
}

.site-footer nav a:hover {
  color: var(--ink);
}

/* ---------- Mobile refinements ---------- */
@media (max-width: 559px) {
  .hero-copy .eyebrow-text {
    font-size: 10.5px;
    letter-spacing: 0.1em;
  }

  .hero-actions,
  .section-actions,
  .final-actions,
  .guide-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-note {
    text-align: center;
  }

  .price-panel strong {
    font-size: 23px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
