/* Reading Forge marketing site — palette from MARKETING-BRIEF.md */

:root {
  --forge: #241E1A;
  --forge-deep: #1A1512;
  --forge-panel: #2F2721;
  --ember: #E8752A;
  --gold: #F2B441;
  --brass: #C9A227;
  --parchment: #F2E8D5;
  --parchment-dim: #CBBFA8;
  --teal: #57D8C4;
  --vowel-red: #AA3618;
  --radius: 18px;
  --max-width: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--forge);
  color: var(--parchment);
  font-family: "Nunito", -apple-system, "SF Pro Rounded", "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ember-fx { display: none; }
}

/* ---------- Header ---------- */

header.site {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(26, 21, 18, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(242, 180, 65, 0.15);
}

header.site .wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}

header.site img.app-icon { height: 34px; width: auto; }

header.site .ace-home {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  padding: 4px 12px 4px 6px;
  border-radius: 999px;
  border: 1px solid rgba(242, 180, 65, 0.22);
  transition: border-color 0.15s ease, background 0.15s ease;
}

header.site .ace-home img { height: 34px; width: auto; margin: -6px 0; }

header.site .ace-home span { color: var(--parchment-dim); font-weight: 800; font-size: 0.9rem; }

header.site .ace-home:hover { border-color: var(--gold); background: rgba(242, 180, 65, 0.08); }

header.site .ace-home:hover span { color: var(--gold); }

header.site .crumb-sep { color: rgba(242, 232, 213, 0.28); font-weight: 700; font-size: 1.15rem; }

header.site .name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--parchment);
  text-decoration: none;
}

header.site nav { margin-left: auto; display: flex; gap: 22px; align-items: center; }

header.site nav a {
  color: var(--parchment-dim);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
header.site nav a:hover { color: var(--gold); }
header.site nav a.active { color: var(--gold); }

@media (max-width: 1200px) {
  header.site .ace-home span, header.site .crumb-sep { display: none; }
  header.site nav { gap: 16px; }
}

@media (max-width: 720px) {
  header.site nav a:not(.btn) { display: none; }
  header.site .name { font-size: 1.02rem; }
  header.site img.app-icon { display: none; }
  header.site .ace-home span { display: none; }
  header.site .ace-home { padding: 4px 8px; }
}

.btn {
  display: inline-block;
  background: var(--ember);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
}
.btn:hover { background: #F58A44; transform: translateY(-1px); }
.btn.small { padding: 8px 18px; font-size: 0.9rem; }
.btn.ghost { background: transparent; border: 2px solid var(--ember); color: var(--ember) !important; }
.btn.ghost:hover { background: rgba(232, 117, 42, 0.12); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 90px 0 70px;
  background:
    radial-gradient(ellipse 900px 550px at 50% 108%, rgba(232, 117, 42, 0.32), transparent 65%),
    radial-gradient(ellipse 600px 350px at 50% 115%, rgba(242, 180, 65, 0.18), transparent 60%),
    var(--forge-deep);
  text-align: center;
  overflow: hidden;
}

.hero > .wrap { position: relative; z-index: 2; }

.hero-logo {
  height: 128px;
  width: auto;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 8px 26px rgba(232, 117, 42, 0.35));
}

@media (max-width: 600px) { .hero-logo { height: 96px; } }

.ace-badge {
  display: inline-block;
  color: var(--parchment-dim);
  border: 1px solid rgba(242, 180, 65, 0.35);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 22px;
}

.ace-badge:hover { color: var(--gold); border-color: var(--gold); }

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero .sub {
  color: var(--parchment-dim);
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto 34px;
}

.hero .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.hero .shot,
.hero video.shot {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid rgba(242, 180, 65, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 120px rgba(232, 117, 42, 0.2);
}

/* floating embers */
.ember-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ember-fx span {
  position: absolute;
  bottom: -12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold), var(--ember) 70%);
  opacity: 0;
  animation: emberRise linear infinite;
}

@keyframes emberRise {
  0%   { transform: translate(0, 0) scale(1); opacity: 0; }
  8%   { opacity: 0.85; }
  60%  { opacity: 0.5; }
  100% { transform: translate(var(--drift, 20px), -85vh) scale(0.25); opacity: 0; }
}

/* ---------- Sections ---------- */

section { padding: 84px 0; }

section.alt { background: var(--forge-deep); }

.kicker {
  color: var(--ember);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
}

.lede { color: var(--parchment-dim); font-size: 1.1rem; max-width: 700px; margin-bottom: 44px; }

/* ---------- Cards / grids ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--forge-panel);
  border: 1px solid rgba(242, 180, 65, 0.14);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.card:hover { transform: translateY(-3px); border-color: rgba(242, 180, 65, 0.35); }

.card .icon { font-size: 1.8rem; margin-bottom: 12px; }

.card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; color: var(--gold); }

.card p { color: var(--parchment-dim); font-size: 0.98rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split .shot {
  border-radius: var(--radius);
  border: 1px solid rgba(242, 180, 65, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
}

/* ---------- Screenshot gallery strip ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery figure { margin: 0; }

.gallery img {
  border-radius: var(--radius);
  border: 1px solid rgba(242, 180, 65, 0.25);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.gallery figcaption {
  margin-top: 10px;
  color: var(--parchment-dim);
  font-size: 0.9rem;
  text-align: center;
}

/* ---------- Phases timeline ---------- */

.phases { display: grid; gap: 14px; counter-reset: phase; }

.phase {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  background: var(--forge-panel);
  border: 1px solid rgba(242, 180, 65, 0.14);
  border-radius: var(--radius);
  padding: 22px 26px;
  align-items: start;
}

.phase .num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold), var(--ember) 70%);
  color: var(--forge-deep);
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(232, 117, 42, 0.45);
}

.phase h3 { font-size: 1.1rem; font-weight: 800; color: var(--parchment); }

.phase h3 span { color: var(--teal); font-weight: 700; font-size: 0.92rem; margin-left: 8px; }

.phase p { color: var(--parchment-dim); font-size: 0.97rem; }

/* ---------- Forge demo widget ---------- */

#demo { text-align: center; }

.demo-stage {
  max-width: 620px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse 400px 260px at 50% 100%, rgba(232, 117, 42, 0.25), transparent 70%),
    var(--forge-panel);
  border: 1px solid rgba(242, 180, 65, 0.25);
  border-radius: var(--radius);
  padding: 34px 24px 28px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.demo-prompt { color: var(--teal); font-weight: 800; font-size: 1.05rem; margin-bottom: 24px; min-height: 1.6em; }

.demo-slots { display: flex; justify-content: center; gap: 14px; margin-bottom: 6px; }

.demo-slot {
  width: 76px;
  height: 76px;
  border-radius: 14px;
  border: 2px dashed rgba(242, 180, 65, 0.5);
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  font-weight: 900;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.demo-slot.filled { border-style: solid; background: var(--parchment); color: var(--forge-deep); }
.demo-slot.filled.vowel { background: #F6D9CC; color: var(--vowel-red); }
.demo-slot.flash { animation: slotFlash 0.4s ease; }

@keyframes slotFlash {
  0% { box-shadow: 0 0 0 rgba(242, 180, 65, 0); }
  50% { box-shadow: 0 0 34px rgba(242, 180, 65, 0.95); }
  100% { box-shadow: 0 0 0 rgba(242, 180, 65, 0); }
}

.demo-anvil { width: 190px; margin: 0 auto 20px; filter: drop-shadow(0 10px 22px rgba(0,0,0,0.5)); }

.demo-tray { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }

.demo-tile {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--parchment);
  color: var(--forge-deep);
  font-size: 2rem;
  font-weight: 900;
  font-family: inherit;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(0,0,0,0.35);
  transition: transform 0.1s ease, opacity 0.2s ease;
}

.demo-tile.vowel { background: #F6D9CC; color: var(--vowel-red); }
.demo-tile:hover { transform: translateY(-3px); }
.demo-tile.used { opacity: 0; pointer-events: none; }
.demo-tile.shake { animation: tileShake 0.35s ease; }

@keyframes tileShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.demo-hammer {
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.demo-hammer.ready { opacity: 1; pointer-events: auto; animation: hammerPulse 1.2s ease infinite; }

@keyframes hammerPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(232, 117, 42, 0); }
  50% { box-shadow: 0 0 26px rgba(232, 117, 42, 0.8); }
}

.demo-result { min-height: 2em; margin-top: 18px; font-weight: 900; font-size: 1.4rem; color: var(--gold); }

.demo-reset { margin-top: 6px; background: none; border: none; color: var(--parchment-dim); font-family: inherit; font-size: 0.9rem; cursor: pointer; text-decoration: underline; display: none; }
.demo-reset.show { display: inline; }

/* ---------- Pedagogy / linter callout ---------- */

.callout {
  background: linear-gradient(135deg, rgba(87, 216, 196, 0.1), rgba(87, 216, 196, 0.03));
  border: 1px solid rgba(87, 216, 196, 0.35);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 36px;
}

.callout h3 { color: var(--teal); font-weight: 800; font-size: 1.2rem; margin-bottom: 10px; }

.callout p { color: var(--parchment-dim); }

.checks { list-style: none; display: grid; gap: 14px; margin-top: 8px; }

.checks li { padding-left: 34px; position: relative; color: var(--parchment-dim); }

.checks li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.1rem;
}

.checks li strong { color: var(--parchment); }

/* ---------- Calm strip ---------- */

.calm-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.pill {
  background: var(--forge-panel);
  border: 1px solid rgba(242, 180, 65, 0.25);
  color: var(--parchment);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ---------- Pricing ---------- */

.price-banner {
  background: linear-gradient(135deg, rgba(242, 180, 65, 0.14), rgba(232, 117, 42, 0.07));
  border: 1px solid rgba(242, 180, 65, 0.4);
  border-radius: var(--radius);
  padding: 26px 30px;
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 48px;
}

.price-banner strong { color: var(--gold); font-size: 1.3rem; }

.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.tier {
  background: var(--forge-panel);
  border: 1px solid rgba(242, 180, 65, 0.18);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.tier.featured { border-color: var(--ember); box-shadow: 0 0 40px rgba(232, 117, 42, 0.18); }

.tier .tier-name { font-weight: 800; color: var(--ember); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; }

.tier .tier-price { font-size: 2.1rem; font-weight: 900; margin: 10px 0 2px; }

.tier .tier-price span { font-size: 1rem; font-weight: 700; color: var(--parchment-dim); }

.tier .tier-alt { color: var(--brass); font-size: 0.95rem; font-weight: 700; margin-bottom: 18px; }

.tier ul { list-style: none; display: grid; gap: 10px; margin: 0 0 24px; }

.tier li { padding-left: 26px; position: relative; color: var(--parchment-dim); font-size: 0.95rem; }

.tier li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

.tier .btn { margin-top: auto; text-align: center; }

.tier .badge {
  display: inline-block;
  background: var(--ember);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 3px 12px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---------- FAQ ---------- */

.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }

.faq details {
  background: var(--forge-panel);
  border: 1px solid rgba(242, 180, 65, 0.14);
  border-radius: 14px;
  padding: 18px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--parchment);
  list-style: none;
  position: relative;
  padding-right: 30px;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 800;
  transition: transform 0.2s ease;
}

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

.faq details p { color: var(--parchment-dim); margin-top: 12px; font-size: 0.97rem; }

/* ---------- Beta signup ---------- */

#beta {
  background:
    radial-gradient(ellipse 700px 400px at 50% 0%, rgba(232, 117, 42, 0.22), transparent 65%),
    var(--forge-deep);
  text-align: center;
}

#beta form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 34px auto 0;
  max-width: 560px;
}

#beta input[type="email"] {
  flex: 1 1 300px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(242, 180, 65, 0.4);
  background: var(--forge-panel);
  color: var(--parchment);
  font-size: 1rem;
  font-family: inherit;
}

#beta input[type="email"]::placeholder { color: var(--parchment-dim); }

#beta input[type="email"]:focus { outline: 2px solid var(--ember); border-color: transparent; }

#beta select {
  flex: 1 1 100%;
  max-width: 560px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(242, 180, 65, 0.4);
  background: var(--forge-panel);
  color: var(--parchment);
  font-size: 1rem;
  font-family: inherit;
}

#beta .form-note { margin-top: 16px; color: var(--parchment-dim); font-size: 0.9rem; }

#beta .success {
  display: none;
  margin-top: 24px;
  color: var(--teal);
  font-weight: 800;
  font-size: 1.1rem;
}

/* ---------- Status honesty ---------- */

.status {
  border: 1px dashed rgba(201, 162, 39, 0.5);
  border-radius: var(--radius);
  padding: 26px 30px;
  color: var(--parchment-dim);
  font-size: 0.97rem;
  max-width: 760px;
  margin: 0 auto;
}

.status strong { color: var(--brass); }

/* ---------- Audience pages ---------- */

.page-hero {
  padding: 80px 0 60px;
  background:
    radial-gradient(ellipse 800px 450px at 50% 115%, rgba(232, 117, 42, 0.25), transparent 65%),
    var(--forge-deep);
  text-align: center;
}

.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900; max-width: 800px; margin: 0 auto 18px; }

.page-hero h1 em { font-style: normal; color: var(--gold); }

.page-hero .sub { color: var(--parchment-dim); font-size: 1.15rem; max-width: 640px; margin: 0 auto; }

.roadmap-note {
  background: linear-gradient(135deg, rgba(87, 216, 196, 0.1), rgba(87, 216, 196, 0.03));
  border: 1px solid rgba(87, 216, 196, 0.35);
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 760px;
  margin: 40px auto 0;
}

.roadmap-note h3 { color: var(--teal); font-weight: 800; margin-bottom: 10px; }

.roadmap-note p { color: var(--parchment-dim); font-size: 0.97rem; }

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid rgba(242, 180, 65, 0.15);
  padding: 36px 0 48px;
  color: var(--parchment-dim);
  font-size: 0.9rem;
}

footer .wrap { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }

footer .brand { display: flex; align-items: center; gap: 12px; }

footer .brand img { height: 64px; width: auto; margin: -10px 0; }

footer .brand strong { color: var(--parchment); }

footer a { color: var(--parchment-dim); }
footer a:hover { color: var(--gold); }

/* ---------- Privacy page ---------- */

.prose { max-width: 720px; padding: 60px 24px 90px; margin: 0 auto; }

.prose h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px; }

.prose h2 { font-size: 1.3rem; margin-top: 40px; color: var(--gold); }

.prose p, .prose li { color: var(--parchment-dim); margin-top: 12px; }

.prose ul { padding-left: 22px; }

.prose .updated { font-size: 0.9rem; color: var(--brass); }

/* ---------- Teacher-tools walkthrough video ---------- */

.walkthrough { margin: 44px 0 0; }

.walkthrough video {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(242, 180, 65, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
  background: #000;
}

.walkthrough figcaption {
  margin-top: 14px;
  color: var(--parchment-dim);
  font-size: 0.95rem;
  text-align: center;
}

/* ---------- Sample progress report (light card on the dark page) ---------- */

.report-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fdfcfa;
  color: #1d1b26;
  border-radius: var(--radius);
  padding: 30px 32px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5);
  font-size: 0.95rem;
}

.rc-head { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid #ece9e2; padding-bottom: 14px; }
.rc-title { font-weight: 900; font-size: 1.15rem; color: #1d1b26; }
.rc-date { color: #8a8579; font-size: 0.85rem; }
.rc-flame { font-size: 1.5rem; }

.rc-student { display: flex; align-items: center; gap: 12px; margin: 18px 0; }
.rc-avatar { font-size: 2rem; }
.rc-student strong { font-size: 1.2rem; }
.rc-rank { color: #8a8579; font-size: 0.9rem; }

.rc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 20px; }
.rc-stats div { background: #f4f2ec; border-radius: 10px; padding: 10px 6px; text-align: center; }
.rc-stats b { display: block; font-size: 1.05rem; color: #1d1b26; }
.rc-stats span { font-size: 0.72rem; color: #8a8579; }

.rc-section { margin-bottom: 16px; }
.rc-label { font-weight: 800; font-size: 0.95rem; margin-bottom: 6px; }
.rc-watch { color: #b45309; }
.rc-sounds { color: #57534e; margin-bottom: 4px; letter-spacing: 0.03em; }
.rc-strong { color: #15803d; font-weight: 800; margin-right: 8px; }
.rc-practicing { color: #d97706; font-weight: 800; margin-right: 8px; }

.rc-bar { display: grid; grid-template-columns: 96px 1fr auto; align-items: center; gap: 10px; margin-bottom: 7px; }
.rc-bar span { font-size: 0.85rem; color: #57534e; }
.rc-bar i { height: 12px; background: #e8752a; border-radius: 6px; display: block; }
.rc-bar b { font-size: 0.8rem; color: #8a8579; font-weight: 700; }

.rc-foot { border-top: 1px solid #ece9e2; padding-top: 12px; margin-top: 18px; color: #a8a296; font-size: 0.78rem; }

@media (max-width: 520px) {
  .rc-bar { grid-template-columns: 74px 1fr auto; }
  .report-card { padding: 22px 18px; }
}

/* ---------- Pricing "try it" link band ---------- */

.try-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---------- "How it's different" comparison ---------- */

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.compare-col {
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid rgba(242, 180, 65, 0.14);
}
.compare-col h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 16px; }
.compare-col ul { list-style: none; display: grid; gap: 12px; }
.compare-col li { padding-left: 30px; position: relative; color: var(--parchment-dim); font-size: 0.98rem; }

.compare-col.dim { background: rgba(0,0,0,0.18); }
.compare-col.dim h3 { color: var(--parchment-dim); }
.compare-col.dim li::before { content: "✕"; position: absolute; left: 0; color: #8a7f72; font-weight: 800; }

.compare-col.win { background: linear-gradient(160deg, rgba(232,117,42,0.12), rgba(242,180,65,0.05)); border-color: rgba(232,117,42,0.4); }
.compare-col.win h3 { color: var(--gold); }
.compare-col.win li { color: var(--parchment); }
.compare-col.win li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.compare-col.win em { color: var(--gold); font-style: normal; font-weight: 800; }

@media (max-width: 720px) { .compare { grid-template-columns: 1fr; } }

/* ---------- Founder's note ---------- */

.founder { max-width: 760px; margin: 0 auto; }
.founder .kicker { text-align: left; }
.founder blockquote { border-left: 3px solid var(--ember); padding-left: 22px; margin: 6px 0 20px; }
.founder blockquote p { color: var(--parchment); font-size: 1.15rem; line-height: 1.6; margin-bottom: 14px; }
.founder blockquote em { color: var(--gold); font-style: italic; }
.founder-sign { font-weight: 900; color: var(--gold); font-size: 1.1rem; }
.founder-sign span { display: block; font-weight: 700; color: var(--parchment-dim); font-size: 0.9rem; margin-top: 2px; }

/* ---------- Scope & sequence ---------- */

.regions { list-style: none; display: grid; gap: 14px; counter-reset: none; }
.region {
  display: grid; grid-template-columns: 54px 1fr; gap: 20px; align-items: center;
  background: var(--forge-panel); border: 1px solid rgba(242,180,65,0.14);
  border-radius: var(--radius); padding: 20px 24px;
}
.region .rnum {
  width: 46px; height: 46px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold), var(--ember) 70%);
  color: var(--forge-deep); font-weight: 900; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 18px rgba(232,117,42,0.4);
}
.region h3 { font-size: 1.15rem; font-weight: 800; color: var(--parchment); display: inline; }
.region .rlevel { color: var(--teal); font-weight: 800; font-size: 0.82rem; float: right; }
.region .rfocus { color: var(--parchment-dim); font-size: 0.97rem; margin-top: 3px; }
.region .rex { color: var(--gold); font-weight: 700; letter-spacing: 0.04em; margin-top: 4px; font-size: 0.95rem; }
.scope-more { text-align: center; color: var(--parchment-dim); margin-top: 22px; font-size: 0.95rem; }

@media (max-width: 520px) { .region .rlevel { float: none; display: block; margin-top: 4px; } }

/* ---------- Research citations (recording-booth section) ---------- */
.cites { list-style: none; margin-top: 14px; display: grid; gap: 10px; }
.cites li { padding-left: 20px; position: relative; color: var(--parchment-dim); font-size: 0.9rem; line-height: 1.5; }
.cites li::before { content: "→"; position: absolute; left: 0; color: var(--teal); }
.cites a { color: var(--teal); font-weight: 700; text-decoration: none; }
.cites a:hover { text-decoration: underline; }

/* ---------- Donate / Founding Supporter ---------- */
.btn.donate {
  background: linear-gradient(135deg, #E23D6D, #E8752A);
  box-shadow: 0 6px 22px rgba(226, 61, 109, 0.35);
}
.btn.donate:hover { background: linear-gradient(135deg, #EE5580, #F58A44); }
.fine { margin-top: 16px; color: var(--parchment-dim); font-size: 0.82rem; max-width: 560px; margin-left: auto; margin-right: auto; }
