:root {
  --bg: #100f0e;
  --bg-deep: #0b0a09;
  --bg-soft: #171411;
  --panel: #1b1815;
  --panel-2: #211c18;
  --paper: #e8dfcf;
  --paper-deep: #cbbca3;
  --ink: #f4efe6;
  --muted: #b8aea0;
  --muted-2: #8f867b;
  --gold: #c9a227;
  --gold-soft: #e1c65c;
  --green: #638372;
  --red: #9c2d12;
  --blue: #3d5677;
  --line: rgba(232, 223, 207, 0.15);
  --line-strong: rgba(232, 223, 207, 0.25);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 0%, rgba(201, 162, 39, 0.09), transparent 30rem),
    linear-gradient(180deg, #11100f 0%, #0e0d0c 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

a { color: inherit; }
img { max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-180%);
  padding: .8rem 1rem;
  border-radius: 8px;
  color: #17120d;
  background: var(--paper);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.section-shell,
.nav-shell {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

/* @RJS° dot language */
.dot-separator,
.bullet-separator,
.brand-symbol { color: var(--gold); }
.dot-terminal { color: inherit; }

/* @RJS° punctuation color system
   Internal punctuation is gold.
   Sentence-ending punctuation keeps the surrounding text color. */
.punctuation-gold {
  color: var(--gold);
}

.punctuation-terminal {
  color: inherit;
}

/* Punctuation must never become a layout box. */
.dot-separator,
.dot-terminal,
.bullet-separator,
.brand-symbol,
.punctuation-gold,
.punctuation-terminal {
  display: inline;
}

.rjs { white-space: nowrap; }

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(15,14,13,.96);
}
.nav-shell {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}
.brand img {
  display: block;
  width: clamp(190px, 20vw, 270px);
  height: auto;
  max-height: 92px;
  object-fit: contain;
  object-position: left center;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 1.8rem);
}
.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: .92rem;
  text-decoration: none;
  transition: color .2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.65rem;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold);
  transition: transform .2s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--ink); }
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
  background: transparent;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  padding-block: clamp(5.2rem, 9vw, 8.5rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}
.hero-copy { min-width: 0; }

.canon-name,
.sequence-label,
.section-kicker,
.card-topline,
.node-label,
.sheet-head,
.record-map-header > div > span,
.record-boundary-note > span {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .155em;
  font-size: .74rem;
  font-weight: 800;
}
.canon-name { color: var(--muted); }
.sequence-label {
  margin-top: 1.25rem;
  color: var(--muted);
}
.sequence-label > span:first-child {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-right: .55rem;
  border-radius: 50%;
  color: #16120d;
  background: var(--gold);
  letter-spacing: 0;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  text-wrap: balance;
}

h1 {
  margin: 1.35rem 0 1.6rem;
  max-width: 760px;
  font-size: clamp(4rem, 7.6vw, 7.1rem);
  line-height: .92;
  letter-spacing: -.062em;
}
h1 > span { display: block; }
h1 .dot-separator,
h1 .dot-terminal { display: inline; }

.hero-lede {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}
.canon-note {
  max-width: 690px;
  margin: 1.25rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(201,162,39,.75);
  color: var(--muted);
  font-size: .95rem;
}
.canon-note strong { color: var(--ink); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: .85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #17120d;
  background: var(--gold);
  border-color: var(--gold);
}
.button-secondary {
  color: var(--ink);
  background: rgba(255,255,255,.018);
  border-color: var(--line-strong);
}
.button:focus-visible,
.site-nav a:focus-visible,
.menu-toggle:focus-visible,
.card-details summary:focus-visible {
  outline: 3px solid rgba(201,162,39,.5);
  outline-offset: 3px;
}

.imposed-visual {
  position: relative;
  width: min(100%, 470px);
  min-height: 540px;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
.frame-corner {
  position: absolute;
  width: 58px;
  height: 58px;
  border-color: rgba(201,162,39,.72);
  border-style: solid;
  pointer-events: none;
}
.corner-a { top: 8%; left: 4%; border-width: 2px 0 0 2px; }
.corner-b { top: 8%; right: 4%; border-width: 2px 2px 0 0; }
.corner-c { bottom: 8%; left: 4%; border-width: 0 0 2px 2px; }
.corner-d { bottom: 8%; right: 4%; border-width: 0 2px 2px 0; }
.back-sheet,
.held-sheet {
  position: absolute;
  width: min(78%, 340px);
  aspect-ratio: .76;
  border-radius: 5px;
  box-shadow: var(--shadow);
}
.back-sheet {
  background: #7b654c;
  opacity: .58;
  transform: rotate(-5deg) translate(-22px, 14px);
}
.held-sheet {
  overflow: hidden;
  padding: 1.8rem;
  color: #29231d;
  background:
    repeating-linear-gradient(to bottom, transparent 0 30px, rgba(61,86,119,.14) 31px 32px),
    var(--paper);
  transform: rotate(-1deg);
}
.held-sheet::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2.55rem;
  width: 1px;
  background: rgba(156,45,18,.32);
}
.sheet-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .61rem;
}
.sheet-copy {
  position: relative;
  z-index: 1;
  margin: 4.1rem 0 0 1.25rem;
  font-size: .82rem;
  line-height: 1.35;
  letter-spacing: .03em;
}
.sheet-lines {
  display: grid;
  gap: .65rem;
  margin-top: 1.3rem;
}
.sheet-lines span {
  width: 88%;
  height: 5px;
  border-radius: 999px;
  background: rgba(41,35,29,.2);
}
.sheet-lines span:nth-child(2) { width: 70%; }
.sheet-lines span:nth-child(3) { width: 82%; }
.sheet-lines span:nth-child(4) { width: 56%; }
.presence-stamp {
  position: absolute;
  right: 1.15rem;
  bottom: 1.7rem;
  padding: .55rem .7rem;
  border: 2px solid rgba(156,45,18,.72);
  color: #7c2819;
  font-size: .66rem;
  font-weight: 950;
  letter-spacing: .12em;
  transform: rotate(-6deg);
}
.visual-tag {
  position: absolute;
  right: 2%;
  bottom: 8%;
  z-index: 3;
  min-width: 120px;
  padding: .9rem 1rem;
  border: 1px solid rgba(201,162,39,.35);
  border-radius: 12px;
  background: rgba(18,16,14,.94);
  box-shadow: 0 18px 40px rgba(0,0,0,.42);
}
.visual-tag span,
.visual-tag strong,
.visual-tag small { display: block; }
.visual-tag span { color: var(--gold); font-size: .62rem; letter-spacing: .15em; }
.visual-tag strong { margin: .25rem 0; font-size: .8rem; }
.visual-tag small { color: var(--muted); font-size: .62rem; letter-spacing: .08em; }

.sequence-band {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}
.sequence-grid {
  min-height: 132px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}
.sequence-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.step-number {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}
.sequence-step strong,
.sequence-step div > span { display: block; }
.sequence-step strong { font-size: .94rem; }
.sequence-step div > span { margin-top: .15rem; color: var(--muted); font-size: .82rem; }
.sequence-step.current {
  padding: 1rem;
  border: 1px solid rgba(201,162,39,.26);
  border-radius: 14px;
  background: rgba(201,162,39,.055);
}
.sequence-arrow { color: rgba(201,162,39,.6); }

.condition {
  padding-block: clamp(6rem, 10vw, 10rem);
}
.section-heading {
  max-width: 940px;
  margin-bottom: 3.2rem;
}
.section-kicker { color: var(--gold); }
.section-heading h2,
.record-intro h2,
.framework-heading h2,
.boundary-heading h2 {
  margin: .8rem 0 1rem;
  font-size: clamp(3rem, 6.3vw, 5.8rem);
  line-height: .96;
  letter-spacing: -.055em;
}
.section-heading > p:last-child,
.record-intro > p:last-child {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.condition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.condition-card {
  position: relative;
  min-width: 0;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  padding: 1.55rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 30%),
    var(--panel);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.condition-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .4;
  background: repeating-linear-gradient(to bottom, transparent 0 31px, rgba(255,255,255,.018) 32px 33px);
}
.condition-card > * { position: relative; z-index: 1; }
.document-card { border-top-color: var(--green); }
.voice-card { border-top-color: var(--red); }
.translation-card { border-top-color: var(--blue); }
.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}
.condition-card h3 {
  margin: 2.4rem 0 1rem;
  font-size: clamp(2.15rem, 3.2vw, 3rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.condition-card h3 > span { display: block; }
.condition-card h3 .dot-separator,
.condition-card h3 .dot-terminal { display: inline; }
.condition-card > p { margin: 0; color: var(--muted); }
.fact-list {
  display: grid;
  gap: 0;
  margin: 2rem 0 1rem;
  border-block: 1px solid var(--line);
}
.fact-list div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(232,223,207,.08);
}
.fact-list div:last-child { border-bottom: 0; }
.fact-list dt { color: var(--muted-2); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.fact-list dd { margin: 0; font-size: .88rem; font-weight: 700; }
.card-details {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.card-details summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}
.card-details summary::-webkit-details-marker { display: none; }
.card-details summary::before { content: "▸"; margin-right: .5rem; color: var(--gold); }
.card-details[open] summary::before { content: "▾"; }
.card-details p { color: var(--muted); font-size: .88rem; }
.audio-status {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: .85rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.024);
}
.audio-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(156,45,18,.45);
  color: #d36f55;
  font-size: 1.2rem;
}
.audio-status > div:last-child > strong,
.audio-status > div:last-child > span {
  display: block;
}

.audio-status > div:last-child > strong {
  white-space: nowrap;
}

.audio-status > div:last-child > span {
  margin-top: .2rem;
  color: var(--muted);
  font-size: .78rem;
}

.audio-status strong .dot-separator,
.audio-status strong .dot-terminal,
.audio-status strong .punctuation-gold,
.audio-status strong .punctuation-terminal {
  display: inline;
}
.waveform {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 1.45rem 0;
}
.waveform span {
  width: 4px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(to top, var(--red), #db876f);
  animation: pulse 1.6s ease-in-out infinite;
}
.waveform span:nth-child(2n) { height: 36px; animation-delay: -.3s; }
.waveform span:nth-child(3n) { height: 54px; animation-delay: -.65s; }
.waveform span:nth-child(5n) { height: 27px; animation-delay: -.9s; }
.status-note { margin-top: auto !important; font-size: .82rem; }

.audio-player {
  display: block;
  width: 100%;
  margin-top: 1rem;
  accent-color: var(--gold);
}

.audio-player:focus-visible {
  outline: 3px solid rgba(201, 162, 39, .45);
  outline-offset: 3px;
}
.translation-list {
  display: grid;
  gap: .75rem;
  margin-top: 2rem;
}
.translation-list div {
  padding: 1rem;
  border-left: 2px solid rgba(61,86,119,.8);
  background: rgba(61,86,119,.09);
}
.translation-list div > span,
.translation-list div > strong {
  display: block;
}

.translation-list div > span {
  color: var(--muted-2);
  font-size: .68rem;
  letter-spacing: .12em;
}

.translation-list div > strong {
  margin-top: .25rem;
  font-size: .9rem;
}

.translation-list strong .dot-separator,
.translation-list strong .dot-terminal,
.translation-list strong .punctuation-gold,
.translation-list strong .punctuation-terminal {
  display: inline;
}

.boundary {
  padding-block: clamp(5rem, 8vw, 8rem);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(99,131,114,.06), rgba(156,45,18,.08), rgba(61,86,119,.08)),
    var(--bg-soft);
}
.boundary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}
.boundary-heading h2 { margin-bottom: 0; }
.boundary-heading h2 > span { display: block; }
.boundary-heading h2 .dot-separator,
.boundary-heading h2 .dot-terminal { display: inline; }
.boundary-copy { padding-bottom: .6rem; }
.boundary-copy p { margin: 0 0 1.7rem; color: var(--muted); font-size: 1.06rem; }

.record {
  padding-block: clamp(6rem, 10vw, 10rem);
}
.record-intro { max-width: 950px; margin-bottom: 3rem; }
.record-map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), transparent 35%), var(--panel);
  box-shadow: var(--shadow);
}
.record-map-header {
  min-height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 1.8rem;
  border-bottom: 1px solid var(--line);
}
.record-map-header > div > span { color: var(--gold); }
.record-map-header strong { display: block; margin-top: .45rem; font-size: 1rem; }
.record-code {
  flex: 0 0 auto;
  padding: .65rem .8rem;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--muted);
  font-weight: 800;
}
.record-path {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 1rem;
  padding: 1.2rem;
}
.path-node {
  min-width: 0;
  min-height: 330px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.018);
}
.source-node { border-top-color: var(--green); }
.voice-node { border-top-color: var(--red); }
.meaning-node { border-top-color: var(--blue); }
.node-number { color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; }
.node-label { margin-top: 2.3rem; color: var(--muted-2); }
.path-node h3 {
  margin: .7rem 0 1rem;
  font-size: clamp(1.85rem, 2.6vw, 2.5rem);
  line-height: .98;
  letter-spacing: -.04em;
}
.path-node h3 > span { display: block; }
.path-node h3 .dot-separator,
.path-node h3 .dot-terminal { display: inline; }
.path-node p:last-child { margin: 0; color: var(--muted); }
.path-arrow {
  display: grid;
  place-items: center;
  color: rgba(201,162,39,.65);
  font-size: 1.6rem;
}
.record-boundary-note {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.2rem;
  padding: 1.25rem 1.8rem;
  border-top: 1px solid var(--line);
  background: rgba(201,162,39,.045);
}
.record-boundary-note > span { color: var(--gold); }
.record-boundary-note strong { font-size: .9rem; }

.framework {
  padding-block: clamp(5rem, 9vw, 8.5rem);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(99,131,114,.06), rgba(156,45,18,.055), rgba(61,86,119,.065)),
    var(--bg-deep);
}
.framework-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .55fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}
.framework-heading h2 { margin-bottom: 0; }
.framework-statements {
  display: grid;
  gap: 1rem;
}
.framework-statements p {
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.framework-statements p:last-child { border-bottom: 0; }
.framework-statements p > span,
.framework-statements p > strong {
  display: block;
}

.framework-statements p > span {
  color: var(--muted-2);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.framework-statements p > strong {
  margin-top: .2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
}

.framework-statements p > span .dot-separator,
.framework-statements p > span .dot-terminal,
.framework-statements p > span .punctuation-gold,
.framework-statements p > span .punctuation-terminal,
.framework-statements p > strong .dot-separator,
.framework-statements p > strong .dot-terminal,
.framework-statements p > strong .punctuation-gold,
.framework-statements p > strong .punctuation-terminal {
  display: inline;
}

.site-footer {
  padding-block: 2rem;
  border-top: 1px solid var(--line);
  background: #0b0a09;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: var(--muted);
  font-size: .85rem;
}
.footer-grid p { margin: 0; }

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

.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% { transform: scaleY(.55); opacity: .55; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(310px, .72fr); gap: 3rem; }
  h1 { font-size: clamp(3.9rem, 7.7vw, 6.2rem); }
  .condition-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .translation-card { grid-column: 1 / -1; min-height: 430px; }
  .translation-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-grid,
  .boundary-grid,
  .framework-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 1.5rem; }
  .imposed-visual { min-height: 480px; }
  .boundary-copy { max-width: 640px; }
  .record-path { grid-template-columns: 1fr; }
  .path-arrow { transform: rotate(90deg); min-height: 28px; }
  .path-node { min-height: auto; }
  .framework-statements { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .section-shell,
  .nav-shell { width: min(calc(100% - 1.5rem), var(--max)); }
  .nav-shell { min-height: 88px; gap: .8rem; }
  .brand img { width: clamp(150px, 48vw, 195px); max-height: 76px; }
  .menu-toggle { display: block; flex: 0 0 46px; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: .75rem;
    right: .75rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .7rem;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: rgba(15,14,13,.99);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .8rem; }
  .site-nav a::after { display: none; }

  .hero { padding-block: 4.5rem 5rem; }
  h1 { font-size: clamp(3.45rem, 14vw, 5.2rem); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .imposed-visual { min-height: 420px; }
  .back-sheet,
  .held-sheet { width: min(76%, 300px); }

  .sequence-grid { grid-template-columns: 1fr; gap: 0; padding-block: 1rem; }
  .sequence-arrow { display: none; }
  .sequence-step { padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .sequence-step:last-child { border-bottom: 0; }
  .sequence-step.current { margin-block: .25rem; padding-inline: .85rem; border-bottom: 1px solid rgba(201,162,39,.26); }

  .condition-grid { grid-template-columns: 1fr; }
  .translation-card { grid-column: auto; min-height: 0; }
  .condition-card { min-height: 0; }
  .translation-list { grid-template-columns: 1fr; }
  .section-heading h2,
  .record-intro h2,
  .framework-heading h2,
  .boundary-heading h2 { font-size: clamp(2.8rem, 12vw, 4.4rem); }

  .record-map-header { align-items: flex-start; flex-direction: column; }
  .record-boundary-note { grid-template-columns: 1fr; }
  .framework-statements { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; gap: .5rem; }
}

@media (max-width: 480px) {
  .brand img { width: 140px; max-height: 68px; }
  .hero { padding-top: 3.8rem; }
  h1 { font-size: clamp(3.1rem, 15.2vw, 4.35rem); }
  .hero-lede { font-size: 1rem; }
  .imposed-visual { min-height: 370px; }
  .held-sheet { padding: 1.3rem; }
  .sheet-copy { margin-top: 3rem; }
  .visual-tag { min-width: 102px; padding: .7rem .8rem; }
  .condition-card { padding: 1.2rem; }
  .fact-list div { grid-template-columns: 1fr; gap: .25rem; }
  .record-map-header,
  .record-boundary-note { padding-inline: 1.2rem; }
  .record-path { padding: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal,
  .reveal-enabled .reveal { opacity: 1; transform: none; }
}


/* ================================================================
   Viewport stability repair
   Keeps the page centered while scrolling and blocks side-to-side drift.
   ================================================================ */

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  scrollbar-gutter: stable;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  touch-action: pan-y pinch-zoom;
}

main,
.site-header,
.sequence-band,
.boundary,
.framework,
.site-footer {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.section-shell,
.nav-shell,
.hero-grid,
.condition-grid,
.boundary-grid,
.record-path,
.framework-grid,
.sequence-grid {
  max-width: 100%;
}

.hero-grid > *,
.condition-grid > *,
.boundary-grid > *,
.record-path > *,
.framework-grid > *,
.sequence-grid > * {
  min-width: 0;
  max-width: 100%;
}

h1,
h2,
h3,
p,
dd,
summary,
.sequence-step,
.path-node {
  overflow-wrap: break-word;
}

.imposed-visual {
  max-width: 100%;
  overflow: hidden;
  overflow: clip;
}

/* The fixed texture layer can shimmer or drift when mobile browser
   controls resize the visual viewport. Let it scroll with the document. */
@media (max-width: 900px) {
  body::before {
    position: absolute;
  }

  /* Avoid transform-composited movement while the page is being scrolled. */
  .reveal-enabled .reveal,
  .reveal-enabled .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .back-sheet {
    transform: rotate(-4deg) translate(-12px, 10px);
  }
}

/* Fallback for browsers that do not support overflow: clip. */
@supports not (overflow: clip) {
  html,
  body,
  main,
  .site-header,
  .sequence-band,
  .boundary,
  .framework,
  .site-footer,
  .imposed-visual {
    overflow-x: hidden;
  }
}


/* ================================================================
   Visual polish repair
   Corrects title wrapping, card height, spacing, skip-link leakage,
   text readability, and grid breakpoints.
   ================================================================ */

:root {
  --muted: #c7bdae;
  --muted-2: #aaa094;
}

/* Keep accessibility intact without allowing the skip link to appear
   in ordinary screenshots or while the page is being scrolled. */
.skip-link:not(:focus-visible) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  transform: none;
  opacity: 0;
  pointer-events: none;
}

.skip-link:focus-visible {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

/* Never split an ordinary word in a display heading.
   Dot-language lines wrap only where the HTML intentionally divides them. */
h1,
h2,
h3,
h1 span,
h2 span,
h3 span {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  font-size: clamp(3.5rem, 6.8vw, 6.35rem);
}

h1 > span,
.condition-card h3 > span,
.path-node h3 > span,
.boundary-heading h2 > span {
  white-space: nowrap;
}

.hero-title-track {
  font-size: .9em;
}

/* Improve the hierarchy without making the page louder. */
.hero-lede,
.section-heading > p:last-child,
.record-intro > p:last-child,
.boundary-copy p {
  line-height: 1.72;
}

.canon-note {
  font-size: 1rem;
  line-height: 1.68;
}

.canon-name,
.sequence-label,
.section-kicker,
.card-topline,
.node-label,
.sheet-head,
.record-map-header > div > span,
.record-boundary-note > span {
  font-size: .77rem;
}

.sequence-step div > span {
  font-size: .88rem;
  line-height: 1.5;
}

.condition-card h3 {
  font-size: clamp(2rem, 2.7vw, 2.75rem);
}

.condition-card > p {
  font-size: .98rem;
  line-height: 1.66;
}

.card-details p,
.status-note,
.path-node p:last-child {
  font-size: .92rem;
  line-height: 1.62;
}

.fact-list dt {
  font-size: .8rem;
}

.fact-list dd {
  font-size: .92rem;
}

.footer-grid {
  font-size: .9rem;
}

/* The lyric-reading cards should size to their actual content.
   The closing interpretation spans the grid but does not inherit the
   original 610px card minimum. */
#background {
  padding-bottom: clamp(4rem, 6vw, 6.5rem);
}

#background .section-heading {
  margin-bottom: 2.5rem;
}

.lyric-language-grid {
  align-items: start;
  row-gap: 1.2rem;
}

#background .condition-card,
.closing-meaning-card {
  min-height: 0;
  height: auto;
}

.closing-meaning-card {
  grid-column: 1 / -1;
  padding-block: 1.7rem;
}

.closing-meaning-card h3,
.closing-meaning-card > p {
  max-width: 1040px;
}

.closing-meaning-card > p + p {
  margin-top: .9rem;
}

/* Collapse the cards before their headings become cramped. */
@media (max-width: 1180px) {
  .condition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .condition-grid > .translation-card {
    grid-column: 1 / -1;
  }

  #background .translation-card {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: clamp(3.25rem, 8.5vw, 5.2rem);
  }

  .hero-title-track {
    font-size: .92em;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(3rem, 13.2vw, 4.35rem);
  }

  .hero-title-track {
    font-size: .86em;
  }

  .condition-grid,
  .condition-grid > .translation-card {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .condition-card h3 {
    font-size: clamp(1.9rem, 8.5vw, 2.35rem);
  }

  .closing-meaning-card {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(2.75rem, 12.8vw, 3.75rem);
  }

  .hero-title-track {
    font-size: .82em;
  }

  .condition-card h3 > span {
    white-space: normal;
  }

  .condition-card h3 .dot-separator,
  .condition-card h3 .dot-terminal {
    white-space: nowrap;
  }
}


/* ================================================================
   Back.To.Top.
   Appears only when the footer enters the viewport.
   ================================================================ */

.back-to-top {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(5.25rem, calc(env(safe-area-inset-bottom) + 4.25rem));
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  padding: .72rem .95rem;
  border: 1px solid rgba(202, 165, 78, .58);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(38, 31, 23, .98), rgba(18, 16, 14, .98));
  color: var(--paper);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity .22s ease,
    transform .22s ease,
    visibility .22s ease,
    border-color .22s ease,
    background-color .22s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--gold);
  background:
    linear-gradient(180deg, rgba(54, 43, 28, .99), rgba(22, 18, 14, .99));
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(202, 165, 78, .45);
  outline-offset: 4px;
}

.back-to-top-arrow {
  color: var(--gold);
  font-size: 1.05rem;
  line-height: 1;
}

.back-to-top-label {
  white-space: nowrap;
}

@media (max-width: 560px) {
  .back-to-top {
    right: max(.75rem, env(safe-area-inset-right));
    bottom: max(4.75rem, calc(env(safe-area-inset-bottom) + 4rem));
    width: 44px;
    min-width: 44px;
    padding: 0;
    justify-content: center;
  }

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

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}


@media (max-height: 620px) {
  .back-to-top {
    bottom: max(3.75rem, calc(env(safe-area-inset-bottom) + 3rem));
  }
}
/* The.Powerblum logo scrolls away; navigation remains in view. */
.powerblum-nav-lock-shell{position:sticky;top:0;z-index:1000;background:rgba(15,14,13,.98);box-shadow:0 12px 28px rgba(0,0,0,.34)}
.powerblum-nav-lock-shell .nav-shell{min-height:58px;justify-content:flex-end}
.powerblum-nav-lock-shell::after{content:"";display:block;width:min(calc(100% - 3rem), var(--max));height:1px;margin:auto;background:var(--line)}
@media (max-width:760px){.powerblum-nav-lock-shell .nav-shell{min-height:56px}.powerblum-nav-lock-shell .site-nav{top:calc(100% + 1px)}.powerblum-nav-lock-shell::after{width:min(calc(100% - 1.5rem), var(--max))}}

/* === The.Books of / The.Legal Edition shell parity — 2026-08-10 === */
/* The.Powerblum interior remains unchanged. Only the shared publishing shell is normalized. */
body { background:#000; }

/* Banner: same black field and contained width as The.Legal Edition; it scrolls away. */
.site-header.books-site-top{
  position:relative;
  z-index:20;
  width:100%;
  padding:.75rem 0 0;
  border:0;
  background:#000;
  overflow:visible;
}
.site-banner{
  display:block;
  width:min(1120px, calc(100% - clamp(2rem, 12vw, 10rem)));
  margin:.15rem auto .85rem;
  padding:clamp(.55rem,1.6vw,1rem);
  border:1px solid rgba(201,162,39,.34);
  border-radius:28px;
  background:#000;
  text-decoration:none;
  box-shadow:0 20px 50px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.08);
}
.site-banner img{
  display:block;
  width:100%;
  height:auto;
  max-height:190px;
  object-fit:contain;
  border-radius:20px;
  background:#000;
  filter:drop-shadow(0 12px 28px rgba(0,0,0,.45));
}

/* Navigation: one Legal-style gold rule only, BELOW the row. No accent line above it. */
.powerblum-nav-lock-shell.books-nav-lock-shell{
  position:sticky;
  top:0;
  z-index:1000;
  width:100%;
  padding:0;
  background:#000;
  border:0;
  box-shadow:0 12px 28px rgba(0,0,0,.34);
}
.powerblum-nav-lock-shell.books-nav-lock-shell::before{display:none!important;content:none!important;}
.powerblum-nav-lock-shell.books-nav-lock-shell::after{
  content:"";
  display:block;
  width:min(1120px, calc(100% - clamp(2rem, 12vw, 10rem)));
  height:2px;
  margin:0 auto;
  background:var(--gold);
}
.powerblum-nav-lock-shell .nav-shell.site-nav-row{
  width:min(1120px, calc(100% - clamp(2rem, 12vw, 10rem)));
  min-height:0;
  margin:0 auto;
  padding:.45rem 0 .5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  max-width:none;
}
.books-brand{
  display:flex;
  align-items:center;
  gap:.7rem;
  min-width:0;
  color:inherit;
  text-decoration:none;
  font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  line-height:1;
}
.brand-mark{
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:2.25rem;
  height:2.25rem;
  border:1px solid var(--gold);
  border-radius:50%;
  color:var(--gold);
  font-weight:900;
  box-shadow:0 0 25px rgba(201,162,39,.22);
}
.brand-copy{display:grid;gap:.08rem;line-height:1.1;min-width:0;}
.brand-series{color:var(--muted);font-size:.63rem;letter-spacing:.14em;}
.brand-edition{color:var(--ink);font-size:.96rem;letter-spacing:.05em;}
.site-nav{
  display:flex;
  gap:.35rem;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.site-nav a{
  padding:.55rem .8rem;
  border-radius:999px;
  color:var(--muted);
  font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:.9rem;
  font-weight:700;
  text-decoration:none;
}
.site-nav a::after{display:none!important;content:none!important;}
.site-nav a:hover,.site-nav a:focus-visible{background:rgba(201,162,39,.18);color:var(--ink);}
.site-nav .library-nav-link{color:var(--gold);border:1px solid rgba(201,162,39,.34);}
.site-nav .library-nav-link:hover,.site-nav .library-nav-link:focus-visible{background:rgba(201,162,39,.18);color:var(--ink);}

/* Footer: exact The.Books of Legal reference geometry and type scale. */
.site-footer.books-footer{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,520px);
  align-items:end;
  gap:1rem 2rem;
  width:min(1120px, calc(100% - clamp(2rem, 12vw, 10rem)));
  max-width:none;
  margin:3rem auto 0;
  padding:1.15rem 0 2rem;
  border-top:2px solid var(--gold);
  background:#000;
  color:var(--muted);
  overflow:visible;
  font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
.site-footer.books-footer::before,.site-footer.books-footer::after{display:none!important;content:none!important;}
.books-footer-main p,.footer-house-line{margin:0;}
.footer-series{
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  line-height:1.6;
}
.footer-series a{color:var(--gold);text-decoration:none;}
.footer-series a:hover{text-decoration:underline;}
.footer-edition{
  margin-top:.28rem!important;
  color:var(--ink);
  font-size:1.08rem;
  font-weight:850;
  line-height:1.6;
}
.footer-status{
  margin-top:.3rem!important;
  color:var(--muted);
  font-size:.84rem;
  line-height:1.6;
}
.footer-house-line{
  display:grid;
  gap:.08rem;
  margin:0!important;
  padding:0;
  border:0;
  color:var(--muted);
  font-size:.86rem;
  line-height:1.3;
  text-align:right;
}
.footer-house-line span{display:block;}

@media(max-width:900px){
  .site-banner,
  .powerblum-nav-lock-shell .nav-shell.site-nav-row,
  .powerblum-nav-lock-shell.books-nav-lock-shell::after,
  .site-footer.books-footer{width:calc(100% - 2rem);}
  .site-banner{border-radius:22px;padding:.5rem;}
  .site-banner img{max-height:145px;}
  .powerblum-nav-lock-shell .nav-shell.site-nav-row{align-items:flex-start;}
  .site-footer.books-footer{grid-template-columns:1fr;}
  .footer-house-line{text-align:left;}
}
@media(max-width:760px){
  .powerblum-nav-lock-shell .nav-shell.site-nav-row{min-height:56px;flex-wrap:wrap;}
  .books-brand{padding:.2rem 0;}
  .brand-series{font-size:.58rem;}
  .menu-toggle{display:grid;place-items:center;margin-left:auto;}
  .site-nav{
    display:none;
    position:absolute;
    top:100%;
    left:1rem;
    right:1rem;
    flex-direction:column;
    align-items:stretch;
    gap:.2rem;
    padding:.75rem;
    border:1px solid rgba(201,162,39,.34);
    border-radius:16px;
    background:#000;
    box-shadow:0 16px 30px rgba(0,0,0,.45);
  }
  .site-nav.is-open{display:flex;}
  .site-nav a{padding:.7rem .8rem;}
}


/* === The.Books of body-width parity — 2026-08-10 ===
   Match The.Powerblum Edition content column to The.Legal Edition
   shared 1120px header/footer publishing shell. */
.section-shell{
  width:min(1120px, calc(100% - clamp(2rem, 12vw, 10rem)));
  max-width:none;
  margin-inline:auto;
}
@media(max-width:900px){
  .section-shell{width:calc(100% - 2rem);}
}


/* === Powerblum transition + connected-record CTA refinement — 2026-08-10 === */
/* Tighten the boundary transition so its heading begins higher and reads as a deliberate bridge. */
.boundary{
  padding-block:clamp(3.4rem,5.5vw,5.25rem);
  background:
    linear-gradient(110deg,rgba(201,162,39,.055),transparent 38%),
    linear-gradient(90deg,rgba(99,131,114,.035),rgba(156,45,18,.045),rgba(61,86,119,.04)),
    #14110f;
}
.boundary-grid{
  align-items:center;
  gap:clamp(2.5rem,6vw,5.5rem);
}
.boundary-heading{
  align-self:start;
  padding-top:.15rem;
}
.boundary-heading .section-kicker{
  margin-bottom:.55rem;
}
.boundary-heading h2{
  margin:.35rem 0 0;
}
.boundary-copy{
  align-self:center;
  padding-bottom:0;
}
.boundary-copy p{
  margin-bottom:1.35rem;
}

/* Give the record-transition control its own measured row and align the forward action right. */
.record-map > .hero-actions{
  justify-content:flex-end;
  align-items:center;
  margin-top:0;
  padding:1.35rem 1.8rem 1.55rem;
  border-top:1px solid var(--line);
  background:linear-gradient(90deg,transparent,rgba(201,162,39,.035));
}
.record-map > .hero-actions .button{
  margin:0;
}

@media(max-width:760px){
  .boundary{
    padding-block:3.25rem;
  }
  .boundary-grid{
    gap:2rem;
  }
  .record-map > .hero-actions{
    justify-content:center;
    padding:1.15rem 1rem 1.3rem;
  }
  .record-map > .hero-actions .button{
    width:auto;
    min-width:min(100%,17rem);
  }
}


/* === Prologue copy + background-card parity — 2026-08-10 === */
/* Keep the three primary background cards on one equal-height row at desktop widths. */
@media(min-width:1181px){
  #background .lyric-language-grid{align-items:stretch;}
  #background .lyric-language-grid > .condition-card:not(.closing-meaning-card){height:100%;}
}

/* === Movement section-width parity — 2026-08-10 ===
   Keep formerly full-bleed Movement I bands aligned to the shared
   The.Books of 1120px publishing column used by header, body, and footer. */
.movement-transition,
.phase-two-section,
.translation-section{
  width:min(1120px, calc(100% - clamp(2rem, 12vw, 10rem)));
  margin-inline:auto;
}
.movement-transition > .section-shell,
.phase-two-section > .section-shell,
.translation-section > .section-shell{
  width:100%;
  max-width:none;
}
@media(max-width:900px){
  .movement-transition,
  .phase-two-section,
  .translation-section{width:calc(100% - 2rem);}
}


/* =========================================================
   THE.BOOKS OF — TYPOGRAPHY SIZE LOCK
   Source of truth: The.Legal Edition index.html
   Applied across every The.Powerblum Edition page.
   This changes type SIZE only; Powerblum fonts/colors/layout remain intact.
   ========================================================= */
html { font-size: 16px; }
body { font-size: 1rem; }

/* Shared publishing shell */
.site-nav a, .nav-shell a { font-size: .9rem !important; }
.brand-series { font-size: .63rem !important; }
.brand-edition { font-size: .96rem !important; }

/* Legal-index heading scale */
h1,
.hero-copy h1,
.movement-copy h1 {
  font-size: clamp(2.55rem, 7vw, 6.7rem) !important;
  line-height: .92;
}
h2,
.section-heading h2,
.boundary-heading h2,
.record-map-header h2,
.framework-heading h2,
.cover-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  line-height: 1.1;
}
h3,
.condition-card h3,
.record-node h3,
.sequence-step h3 {
  font-size: 1.15rem !important;
  line-height: 1.1;
}

/* Legal-index lead/body scale */
.hero-lede { font-size: clamp(1.08rem, 2.5vw, 1.45rem) !important; }
.section-heading > p:not(.section-kicker),
.cover-copy > p:not(.section-kicker),
.boundary-copy p,
.framework-copy p,
.condition-card > p,
.record-node > p,
.movement-copy > p:not(.canon-name):not(.sequence-label),
.card-details p { font-size: 1rem !important; }

/* Legal-index eyebrow / metadata scale */
.canon-name,
.sequence-label,
.section-kicker,
.node-label,
.card-topline,
.fact-list dt,
.cover-object figcaption span,
.status-note,
.record-boundary-note,
.visual-tag span,
.visual-tag small { font-size: .8rem !important; }
.fact-list dd,
.cover-object figcaption strong,
.record-map-header strong,
.sequence-step strong { font-size: 1rem !important; }

/* Buttons and utility text follow Legal navigation/body scale */
.cta-button,
.hero-actions a,
.movement-nav a,
.back-to-top,
.library-nav-link { font-size: .9rem !important; }

/* Shared Legal footer scale */
.footer-series { font-size: .78rem !important; }
.footer-edition { font-size: 1.08rem !important; }
.footer-status { font-size: .84rem !important; }
.footer-house-line { font-size: .86rem !important; }

@media (max-width: 540px) {
  h1, .hero-copy h1, .movement-copy h1 { font-size: 3rem !important; }
  .brand-series { font-size: .58rem !important; }
}


/* =========================================================
   THE.BOOKS OF — PAGE TITLE PARITY
   Match The.Legal Edition page-title scale.
   ========================================================= */
.powerblum-edition h1,
.hero-copy h1,
.movement-copy h1 {
  font-size: clamp(.9rem, 4.25vw, 3.25rem) !important;
  letter-spacing: normal !important;
  line-height: 1.02 !important;
  max-width: 18ch;
}
@media (max-width: 540px) {
  .powerblum-edition h1,
  .hero-copy h1,
  .movement-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3rem) !important;
  }
}


/* Prologue — keep “The build is now established.” toward the top of its section. */
body:not(.movement-page) .boundary {
  padding-top: clamp(2.75rem, 4.5vw, 4rem);
}
body:not(.movement-page) .boundary-grid {
  align-items: start;
}
