@font-face {
  font-family: 'Montserrat';
  src: url('../public/fonts/montserrat-400.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../public/fonts/montserrat-700.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('../public/fonts/source-sans-3-400.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('../public/fonts/source-sans-3-700.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f8f5ee;
  --paper-raised: #fffefb;
  --paper-deep: #ece5d9;
  --ink: #090c12;
  --ink-raised: #161b22;
  --ink-soft: #29313b;
  --muted: #5f6670;
  --line: #d8d0c4;
  --line-soft: rgba(9, 12, 18, 0.12);
  --line-dark: rgba(248, 245, 238, 0.18);
  --cobalt: #8a5b08;
  --cobalt-deep: #5c3d06;
  --cobalt-wash: #f3e6c4;
  --brass: #d8a642;
  --brass-hover: #e8be5f;
  --brass-text: #8a5b08;
  --brass-soft: #f2d99a;
  --white: #fff;
  --editorial: Georgia, Cambria, 'Times New Roman', serif;
  --body: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  --label: 'Montserrat', Arial, sans-serif;
  --page-pad: clamp(1rem, 3.2vw, 3rem);
  --section-pad: clamp(5rem, 8vw, 8rem);
  --max: 85rem;
  --shadow-product: 0 2rem 4.5rem rgba(9, 12, 18, 0.18), 0 0.5rem 1.5rem rgba(9, 12, 18, 0.08);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  min-width: 18rem;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.26'/%3E%3C/svg%3E");
  content: '';
  opacity: 0.025;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--brass-soft);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--brass);
  color: var(--ink);
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateY(-170%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 4.5rem;
  padding: 0 max(var(--page-pad), calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 12, 18, 0.98);
  box-shadow: 0 0.5rem 1.8rem rgba(9, 12, 18, 0.08);
  color: var(--paper);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 166, 66, 0.45), transparent);
  content: '';
}

.brand {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto;
  align-items: center;
  width: max-content;
  min-width: 0;
}

.brand-lockup,
.footer-brand-lockup {
  display: block;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4451 / 669;
  object-fit: contain;
}

.brand-lockup {
  width: clamp(10.5rem, 15vw, 13.5rem);
}

.brand-edition {
  justify-self: end;
  margin-top: -0.1rem;
  margin-right: 0.12rem;
  color: var(--brass-soft);
  font-family: var(--label);
  font-size: 0.54rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, 2.5vw, 2.75rem);
  font-size: 0.82rem;
  font-weight: 400;
}

.nav-links a,
.site-footer nav a {
  position: relative;
}

.nav-links a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.42rem;
  left: 0;
  height: 1px;
  background: var(--brass);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a[aria-current='page'] {
  color: var(--brass-soft);
}

.nav-links a[aria-current='page']::after {
  transform: scaleX(1);
}

.mobile-menu nav a[aria-current='page'] {
  background: var(--paper-deep);
  color: var(--cobalt-deep);
}

.header-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 2.75rem;
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--brass);
  border-radius: 0.18rem;
  background: var(--brass);
  box-shadow: none;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.header-download:hover {
  background: var(--brass-hover);
  transform: translateY(-2px);
}

.mobile-menu {
  position: relative;
  display: none;
  justify-self: end;
}

.mobile-menu summary {
  min-height: 2.75rem;
  padding: 0.75rem 0;
  cursor: pointer;
  font-family: var(--label);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}

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

.mobile-menu summary::after {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 0.65rem;
  border-right: 1px solid var(--brass-soft);
  border-bottom: 1px solid var(--brass-soft);
  content: '';
  transform: translateY(-0.18rem) rotate(45deg);
  transition: transform 160ms ease;
}

.mobile-menu[open] summary::after {
  transform: translateY(0.08rem) rotate(225deg);
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  display: grid;
  width: min(20rem, calc(100vw - 2rem));
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--paper-raised);
  box-shadow: 0 1.5rem 3.5rem rgba(9, 12, 18, 0.24);
  color: var(--ink);
  overflow: hidden;
}

.mobile-menu nav a {
  padding: 0.92rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
  background: var(--brass);
}

.living-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(23rem, 0.8fr) minmax(34rem, 1.2fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
  width: min(100%, calc(var(--max) + var(--page-pad) + var(--page-pad)));
  min-height: min(47rem, calc(100vh - 4.5rem));
  margin: 0 auto;
  padding: clamp(4.75rem, 7vw, 7rem) var(--page-pad) clamp(5rem, 7vw, 7rem);
  background:
    radial-gradient(ellipse at 83% 34%, rgba(216, 166, 66, 0.12), transparent 35%),
    radial-gradient(ellipse at 18% 15%, rgba(216, 166, 66, 0.09), transparent 30%);
}

.hero-intro {
  display: block;
  width: auto;
  margin: 0;
}

.eyebrow,
.section-kicker,
.page-label,
.guide-section-label,
.download-version {
  margin: 0;
  font-family: var(--label);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
  color: var(--muted);
}

.eyebrow span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 0.3rem var(--cobalt-wash);
}

.hero-intro h1 {
  max-width: 11.5ch;
  margin: 0;
  font-family: var(--editorial);
  font-size: clamp(3.8rem, 5.1vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.hero-intro h1 > span {
  display: block;
}

.hero-intro h1 em {
  position: relative;
  color: var(--brass-text);
  font-weight: 400;
}

.hero-intro h1 em::after {
  position: absolute;
  right: 0.02em;
  bottom: -0.03em;
  left: 0.02em;
  height: 1px;
  background: currentColor;
  content: '';
  transform: rotate(-1deg);
}

.hero-deck {
  display: grid;
  gap: 1.7rem;
  max-width: 35rem;
  margin-top: 1.65rem;
}

.home-page .hero-intro h1 {
  max-width: 12.5ch;
  font-size: clamp(3.65rem, 4.8vw, 5.3rem);
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: -0.25rem 0 0;
  padding: 0;
  color: var(--muted);
  font-family: var(--label);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.hero-signals li {
  padding: 0.45rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 254, 251, 0.65);
}

.hero-deck > p,
.route-heading > p:last-child,
.world-heading > p:last-child,
.control-copy > p:last-child,
.finish-copy > p,
.faq-heading > p {
  max-width: 39rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.22vw, 1.2rem);
  line-height: 1.55;
}

.hero-actions,
.closing-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3.2rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0.32rem;
  font-family: var(--body);
  font-size: 0.84rem;
  font-weight: 700;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--brass);
  background: var(--brass);
  box-shadow: none;
  color: var(--ink);
}

.button-primary:hover {
  background: var(--brass-hover);
}

.button-link {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-link:hover {
  border-color: var(--brass-text);
  color: var(--brass-text);
  background: rgba(216, 166, 66, 0.08);
}

.button-ink {
  border-color: var(--brass-soft);
  background: var(--brass);
  color: var(--ink);
}

.button-ink:hover {
  background: var(--brass-hover);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.75rem;
  color: var(--brass-text);
  font-size: 0.86rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translate(0.15rem, -0.15rem);
}

.hero-product {
  position: relative;
  margin: 1.75rem 0 0;
  padding: 0.55rem;
  border: 1px solid rgba(9, 12, 18, 0.15);
  border-radius: 0.8rem;
  background: rgba(255, 254, 251, 0.84);
  box-shadow: var(--shadow-product);
}

.hero-product::before {
  position: absolute;
  z-index: -1;
  top: -2.5rem;
  right: -2.5rem;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 166, 66, 0.28);
  border-radius: 50%;
  content: '';
}

.hero-product picture {
  overflow: hidden;
  border-radius: 0.52rem;
  background: var(--paper-raised);
}

.hero-product img {
  width: 100%;
}

.product-index {
  position: absolute;
  top: -2.3rem;
  left: 0.25rem;
  color: var(--brass-text);
  font-family: var(--label);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.product-thread {
  position: absolute;
  top: -3rem;
  left: 62%;
  width: 1px;
  height: 3rem;
  background: var(--cobalt);
}

.product-thread::before {
  position: absolute;
  bottom: -0.26rem;
  left: -0.24rem;
  width: 0.52rem;
  height: 0.52rem;
  border: 2px solid var(--cobalt);
  border-radius: 50%;
  background: var(--paper);
  content: '';
}

.hero-product figcaption,
.finish-product figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.25rem 0.12rem;
  color: var(--muted);
  font-family: var(--label);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.proof-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - var(--page-pad) - var(--page-pad)), var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 254, 251, 0.6);
}

.proof-rail > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.9rem;
  min-height: 8.25rem;
  padding: 1.8rem clamp(1rem, 2vw, 2rem);
  border-right: 1px solid var(--line);
}

.proof-rail span {
  grid-row: 1 / 3;
  color: var(--brass-text);
  font-family: var(--editorial);
  font-size: 1.45rem;
  line-height: 1;
}

.proof-rail strong {
  font-family: var(--editorial);
  font-size: 1.03rem;
  font-weight: 400;
}

.proof-rail small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.38;
}

/* Product overview */

.studio-overview,
.assistants-section,
.review-section,
.recovery-section,
.production-details,
.fit-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-pad) var(--page-pad);
}

.studio-overview + .route-section,
.recovery-section + .finish-section {
  padding-top: 0;
}

.review-section + .control-section {
  margin-top: 0;
}

.section-heading,
.planning-heading,
.assistants-heading,
.recovery-heading,
.production-heading,
.fit-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.55fr);
  gap: 1.5rem 6vw;
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.section-heading > div {
  display: grid;
  gap: 1.15rem;
}

.section-heading .section-kicker,
.planning-heading .section-kicker,
.assistants-heading .section-kicker,
.recovery-heading .section-kicker,
.production-heading .section-kicker,
.fit-heading .section-kicker {
  color: var(--brass-text);
}

.section-heading h2,
.planning-heading h2,
.assistants-heading h2,
.review-copy h2,
.recovery-heading h2,
.production-heading h2,
.fit-heading h2 {
  margin: 0;
  font-family: var(--editorial);
  font-size: clamp(2.8rem, 4.7vw, 4.9rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.section-heading > p,
.planning-heading > p,
.assistants-heading > p,
.review-copy > p,
.recovery-heading > p {
  max-width: 40rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
}

.planning-heading .section-kicker,
.planning-heading h2,
.planning-heading > p,
.assistants-heading .section-kicker,
.assistants-heading h2,
.assistants-heading > p {
  grid-column: 1 / -1;
}

.planning-heading > p,
.assistants-heading > p {
  margin-top: 0.2rem;
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.studio-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 28rem;
  padding: clamp(1.65rem, 3vw, 2.75rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: rgba(255, 254, 251, 0.7);
}

.studio-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.75fr) minmax(20rem, 1.05fr);
  gap: 0 6vw;
  min-height: 31rem;
}

.studio-card-plan {
  box-shadow: inset 0 3px 0 var(--cobalt);
}

.studio-card-world {
  box-shadow: inset 0 3px 0 #277858;
}

.studio-card-review {
  box-shadow: inset 0 3px 0 var(--brass);
}

.studio-card-publish {
  box-shadow: inset 0 3px 0 var(--ink);
}

.studio-card-wide .card-topline {
  grid-column: 1 / -1;
}

.studio-card-wide > h3,
.studio-card-wide > p,
.studio-card-wide > .feature-chips,
.studio-card-wide > .card-link {
  grid-column: 1;
}

.studio-card-wide > .manuscript-mini,
.studio-card-wide > .assistant-mini {
  grid-column: 2;
  grid-row: 2 / 6;
  align-self: center;
}

.studio-card-ink {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse at 84% 18%, rgba(216, 166, 66, 0.18), transparent 42%),
    linear-gradient(135deg, #080a0f, #131a25);
  color: var(--paper);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: auto;
  padding-bottom: 3rem;
  color: var(--brass-text);
  font-family: var(--label);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.card-topline small {
  font: inherit;
}

.studio-card-ink .card-topline {
  color: var(--brass-soft);
}

.studio-card h3 {
  max-width: 16ch;
  margin: 0 0 1rem;
  font-family: var(--editorial);
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.studio-card > p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.studio-card-ink > p {
  color: #bdc2cb;
}

.feature-chips,
.format-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-chips li,
.format-chips li {
  padding: 0.42rem 0.64rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 245, 238, 0.62);
  color: var(--ink-soft);
  font-family: var(--label);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.studio-card-ink .feature-chips li {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: #d9dce2;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: max-content;
  max-width: 100%;
  margin-top: 1.25rem;
  color: var(--brass-text);
  font-size: 0.78rem;
  font-weight: 700;
}

.card-link span {
  transition: transform 160ms ease;
}

.card-link:hover span {
  transform: translateX(0.18rem);
}

.card-link-light {
  color: var(--brass-soft);
}

.manuscript-mini {
  display: grid;
  grid-template-columns: 0.28fr 1fr 0.38fr;
  min-height: 20rem;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--ink);
  box-shadow: 0 1.5rem 3rem rgba(9, 12, 18, 0.18);
}

.mini-sidebar,
.mini-page,
.mini-context {
  display: grid;
  align-content: start;
  gap: 0.62rem;
  padding: 1rem;
}

.mini-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d1118;
}

.mini-page {
  background: #fdfbf5;
}

.mini-context {
  border-left: 1px solid var(--line);
  background: #f2eee5;
}

.mini-sidebar i,
.mini-page i,
.mini-page b,
.mini-context i,
.mini-context b {
  display: block;
  height: 0.32rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.2;
}

.mini-sidebar i:nth-child(1),
.mini-page b,
.mini-context b {
  height: 0.5rem;
  color: var(--cobalt);
  opacity: 0.7;
}

.mini-page i:nth-child(3),
.mini-context i:nth-child(3) {
  width: 72%;
}

.plan-mini,
.world-mini,
.assistant-mini,
.signal-mini,
.format-mini {
  margin-top: 2.4rem;
}

.plan-mini {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 0.45rem;
  align-items: center;
  color: var(--cobalt-deep);
  font-family: var(--label);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-mini span {
  padding: 0.65rem;
  border: 1px solid #b8c8ee;
  background: var(--cobalt-wash);
}

.plan-mini i {
  height: 1px;
  background: var(--cobalt);
}

.world-mini {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  min-height: 8.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(216, 166, 66, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 166, 66, 0.10) 1px, transparent 1px), var(--paper-deep);
  background-size: 2rem 2rem;
}

.world-mini span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper-raised);
  font-family: var(--label);
  font-size: 0.52rem;
  font-weight: 700;
}

.world-mini i {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 70%;
  height: 1px;
  background: var(--brass-text);
  transform: rotate(-17deg);
}

.assistant-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.035);
}

.assistant-mini span {
  padding: 1rem;
  border-left: 2px solid var(--brass);
  background: rgba(255, 255, 255, 0.05);
  color: #eef0f4;
  font-family: var(--label);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.signal-mini {
  display: grid;
  gap: 0.65rem;
}

.signal-mini span {
  display: block;
  height: 0.65rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-deep);
}

.signal-mini i {
  display: block;
  width: var(--signal);
  height: 100%;
  background: linear-gradient(90deg, var(--cobalt), var(--brass));
}

.format-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}

.format-mini span {
  display: grid;
  min-height: 5.5rem;
  place-items: end center;
  padding: 0.7rem;
  border: 1px solid var(--ink);
  background: var(--paper-raised);
  color: var(--ink);
  font-family: var(--label);
  font-size: 0.5rem;
  font-weight: 700;
}

/* Planning */

.planning-section {
  background:
    radial-gradient(ellipse at 12% 0%, rgba(216, 166, 66, 0.16), transparent 35%),
    linear-gradient(135deg, #080a0f, #111722);
  color: var(--paper);
}

.planning-shell,
.assistants-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: var(--section-pad) var(--page-pad);
}

.planning-heading {
  grid-template-columns: 1fr;
}

.planning-heading .section-kicker {
  color: var(--brass-soft);
}

.planning-heading > p {
  color: #bec3cc;
}

.planning-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  list-style: none;
}

.planning-methods li {
  display: grid;
  align-content: start;
  min-height: 18rem;
  padding: clamp(1.4rem, 2.5vw, 2.2rem);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background-color 180ms ease;
}

.planning-methods li:hover {
  background: rgba(216, 166, 66, 0.14);
}

.planning-methods li > span,
.planning-methods li > small {
  color: var(--brass-soft);
  font-family: var(--label);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.planning-methods h3 {
  margin: 3.3rem 0 0.75rem;
  font-family: var(--editorial);
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.planning-methods p {
  margin: 0;
  color: #afb5bf;
  font-size: 0.9rem;
}

.planning-methods li > small {
  align-self: end;
  margin-top: 2rem;
  color: #8c94a0;
}

/* Story world */

.world-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(22rem, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
  width: min(100%, var(--max));
  margin: 0 auto clamp(3.5rem, 6vw, 6rem);
}

.library-visual {
  position: relative;
  min-height: 38rem;
  margin: 0;
  padding: 1.5rem;
  overflow: hidden;
  border-radius: 0.7rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(216, 166, 66, 0.18), transparent 32%), #0b0e14;
  box-shadow: 0 1.6rem 3.5rem rgba(9, 12, 18, 0.18);
  color: var(--paper);
}

.library-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #c6cad1;
  font-family: var(--label);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.library-label strong {
  color: var(--brass-soft);
  font-weight: 700;
}

.cover-stack {
  position: relative;
  height: 31rem;
  margin-top: 1rem;
}

.cover-card {
  position: absolute;
  bottom: 1.4rem;
  width: 43%;
  padding: 0.35rem 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.3rem;
  background: #151922;
  box-shadow: 0 1.2rem 2rem rgba(0, 0, 0, 0.35);
  transform-origin: bottom center;
}

.cover-card img {
  width: 100%;
  border-radius: 0.16rem;
}

.cover-card span {
  display: block;
  padding: 0.55rem 0.25rem 0;
  color: #d6d9df;
  font-family: var(--label);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cover-card-one {
  z-index: 1;
  left: 2%;
  transform: rotate(-8deg);
}

.cover-card-two {
  z-index: 3;
  left: 29%;
  transform: translateY(-1.2rem);
}

.cover-card-three {
  z-index: 2;
  right: 1%;
  transform: rotate(8deg);
}

.library-visual figcaption,
.assistant-proof figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #9ea4ae;
  font-family: var(--label);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.world-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.world-benefits article {
  display: grid;
  align-content: start;
  min-height: 18rem;
  padding: clamp(1.5rem, 2.7vw, 2.5rem);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgba(248, 245, 238, 0.6);
}

.world-benefits article > span,
.production-grid article > span,
.fit-grid article > span {
  color: var(--cobalt-deep);
  font-family: var(--label);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.world-benefits h3,
.production-grid h3,
.fit-grid h3 {
  margin: 3rem 0 0.75rem;
  font-family: var(--editorial);
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.world-benefits p,
.production-grid p,
.fit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Specialist assistants */

.assistants-section {
  max-width: none;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper-raised);
}

.assistants-heading {
  grid-template-columns: 1fr;
}

.provider-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 0 clamp(3rem, 5vw, 5rem);
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.provider-rail li {
  display: grid;
  gap: 0.2rem;
  min-height: 5.5rem;
  align-content: center;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.provider-rail small {
  color: var(--muted);
  font-family: var(--label);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.provider-rail strong {
  font-family: var(--editorial);
  font-size: 1.08rem;
  font-weight: 400;
}

.assistants-layout {
  display: grid;
  grid-template-columns: minmax(30rem, 1.2fr) minmax(22rem, 0.8fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.assistant-proof {
  position: sticky;
  top: 7rem;
  margin: 0;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--paper);
  box-shadow: var(--shadow-product);
}

.assistant-proof img {
  width: 100%;
  border-radius: 0.42rem;
}

.assistant-proof figcaption {
  padding: 0.75rem 0.2rem 0.1rem;
  color: var(--muted);
}

.assistant-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.assistant-cards article {
  display: grid;
  align-content: start;
  min-height: 14rem;
  padding: 1.4rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.assistant-cards article > span {
  color: var(--brass-text);
  font-family: var(--label);
  font-size: 0.54rem;
  font-weight: 700;
}

.assistant-cards h3 {
  margin: 2.2rem 0 0.55rem;
  font-family: var(--editorial);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.assistant-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.assistant-cards-full {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.home-evidence-card-ink {
  align-content: end;
  min-height: 22rem;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(216, 166, 66, 0.16), transparent 42%), var(--ink);
  color: var(--paper);
}

.home-evidence-card-ink .home-evidence-copy > span {
  color: var(--brass-soft);
}

.home-evidence-card-ink .home-evidence-copy p {
  color: #bfc3ca;
}

.closing-section .button-link,
.page-cta .button-link {
  border-color: var(--brass-soft);
  color: var(--paper);
}

.closing-section .button-link:hover,
.page-cta .button-link:hover {
  border-color: var(--brass);
  background: rgba(216, 166, 66, 0.12);
  color: var(--brass-soft);
}


/* Review and recovery */

.review-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(24rem, 1.18fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.review-copy .section-kicker {
  margin-bottom: 1.1rem;
  color: var(--brass-text);
}

.review-copy h2 {
  max-width: 12ch;
}

.review-copy > p {
  margin-top: 1.5rem;
}

.review-feature-list {
  margin: 2.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.review-feature-list li {
  display: grid;
  gap: 0.15rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.review-feature-list strong {
  font-family: var(--editorial);
  font-size: 1.1rem;
  font-weight: 400;
}

.review-feature-list span {
  color: var(--muted);
  font-size: 0.84rem;
}

.review-board {
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background:
    linear-gradient(rgba(216, 166, 66, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 166, 66, 0.07) 1px, transparent 1px), var(--paper-raised);
  background-size: 3rem 3rem;
  box-shadow: var(--shadow-product);
}

.review-board-head,
.review-row {
  display: grid;
  align-items: center;
}

.review-board-head {
  grid-template-columns: 1fr auto;
  padding: 0 0 1.5rem;
  color: var(--muted);
  font-family: var(--label);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.review-board-head strong {
  color: var(--brass-text);
}

.review-row {
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  min-height: 5.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(255, 254, 251, 0.86);
}

.review-row:last-of-type {
  border-bottom: 1px solid var(--line);
}

.review-row > div {
  display: grid;
  gap: 0.1rem;
}

.review-row strong {
  font-family: var(--editorial);
  font-weight: 400;
}

.review-row small {
  color: var(--muted);
  font-size: 0.73rem;
}

.review-row > b {
  color: var(--brass-text);
  font-family: var(--label);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  box-shadow: 0 0 0 0.27rem rgba(216, 166, 66, 0.10);
}

.review-dot-amber {
  background: #b87a13;
}

.review-dot-blue {
  background: var(--cobalt);
}

.review-dot-ink {
  background: var(--ink);
}

.review-dot-green {
  background: #277858;
}

.recovery-heading .section-kicker {
  grid-column: 1 / -1;
}

.recovery-path {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  list-style: none;
}

.recovery-path li {
  display: grid;
  align-content: start;
  min-height: 13rem;
  padding: 1.35rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgba(255, 254, 251, 0.45);
}

.recovery-path span {
  margin-bottom: 2.5rem;
  color: var(--cobalt);
  font-family: var(--label);
  font-size: 0.53rem;
  font-weight: 700;
}

.recovery-path strong {
  font-family: var(--editorial);
  font-size: 1.2rem;
  font-weight: 400;
}

.recovery-path small {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.recovery-note {
  margin: 1rem 0 0;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--brass);
  background: #f2e7c9;
  color: #4f3a0d;
  font-size: 0.85rem;
}

/* Production and use cases */

.finish-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.finish-process li {
  display: grid;
  gap: 0.35rem;
  padding: 0.8rem 0.55rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--label);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.finish-process span {
  color: var(--cobalt);
}

.format-chips {
  margin-top: -0.25rem;
}

.production-details {
  padding-top: 0;
}

.production-heading,
.fit-heading {
  grid-template-columns: 1fr;
}

.production-heading .section-kicker,
.production-heading h2,
.fit-heading .section-kicker,
.fit-heading h2 {
  grid-column: 1 / -1;
}

.production-heading h2,
.fit-heading h2 {
  max-width: 18ch;
}

.production-grid,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.production-grid article,
.fit-grid article {
  min-height: 18rem;
  padding: clamp(1.4rem, 2.4vw, 2.2rem);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.fit-section {
  max-width: none;
  background:
    linear-gradient(rgba(216, 166, 66, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 166, 66, 0.06) 1px, transparent 1px), var(--paper-deep);
  background-size: 4rem 4rem;
}

.fit-heading,
.fit-grid {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.fit-grid article {
  background: rgba(248, 245, 238, 0.6);
}

.closing-copy > p:not(.section-kicker) {
  max-width: 37rem;
  margin: -0.75rem 0 0;
  color: #bfc3ca;
  font-size: 1.04rem;
}

/* Home hub */

.home-hub,
.home-evidence {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-pad) var(--page-pad);
}

.home-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.home-hub-card {
  display: grid;
  align-content: start;
  min-height: 20rem;
  padding: clamp(1.5rem, 2.7vw, 2.5rem);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgba(255, 254, 251, 0.52);
}

.home-hub-card > span,
.home-evidence-copy > span {
  color: var(--cobalt-deep);
  font-family: var(--label);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-hub-card h3,
.home-evidence-copy h3 {
  margin: 3rem 0 0.75rem;
  font-family: var(--editorial);
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.home-hub-card p,
.home-evidence-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.home-hub-card .card-link {
  align-self: end;
  margin-top: 2rem;
}

.home-hub-card-ink {
  background:
    radial-gradient(ellipse at 85% 10%, rgba(216, 166, 66, 0.16), transparent 40%), var(--ink);
  color: var(--paper);
}

.home-hub-card-ink > span {
  color: var(--brass-soft);
}

.home-hub-card-ink p {
  color: #bfc3ca;
}

.home-route {
  padding-top: 0;
}

.home-evidence {
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-raised);
}

.home-evidence > .section-heading,
.home-evidence-grid {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.home-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-evidence-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--paper);
}

.home-evidence-media {
  position: relative;
  height: 16rem;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0b0e14;
}

.home-evidence-media > img:not([alt='']) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.home-evidence-media figcaption {
  position: absolute;
  right: 0.65rem;
  bottom: 0.55rem;
  left: 0.65rem;
  padding: 0.4rem 0.5rem;
  background: rgba(9, 12, 18, 0.82);
  color: #d9dce2;
  font-family: var(--label);
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-evidence-covers {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 0;
  padding: 1.4rem 1rem 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(216, 166, 66, 0.17), transparent 35%), #0b0e14;
}

.home-evidence-covers img {
  width: 32%;
  max-width: 8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0.8rem 1.4rem rgba(0, 0, 0, 0.35);
}

.home-evidence-covers img:first-child {
  transform: rotate(-7deg) translateX(0.7rem);
}

.home-evidence-covers img:nth-child(2) {
  z-index: 2;
  transform: translateY(-0.7rem);
}

.home-evidence-covers img:last-child {
  transform: rotate(7deg) translateX(-0.7rem);
}

.home-evidence-copy {
  display: grid;
  align-content: start;
  padding: 1.5rem;
}

.home-evidence-copy h3 {
  margin-top: 2rem;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
}

.home-evidence-copy .card-link {
  align-self: end;
  margin-top: 1.5rem;
}

.home-trust {
  width: min(calc(100% - var(--page-pad) - var(--page-pad)), var(--max));
  margin: var(--section-pad) auto;
  padding: clamp(3rem, 5vw, 5rem);
  border-radius: 0.7rem;
  background: radial-gradient(ellipse at 90% 0%, rgba(216, 166, 66, 0.16), transparent 42%), #090c12;
  color: var(--paper);
}

.home-trust-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

.home-trust-heading .section-kicker {
  color: var(--brass-soft);
}

.home-trust-heading h2 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--editorial);
  font-size: clamp(2.8rem, 4.7vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 2rem;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.home-trust-grid article {
  display: grid;
  align-content: start;
  min-height: 10rem;
  padding: 1.4rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.home-trust-grid span {
  margin-bottom: 1.6rem;
  color: var(--brass-soft);
  font-family: var(--label);
  font-size: 0.52rem;
  font-weight: 700;
}

.home-trust-grid strong {
  font-family: var(--editorial);
  font-size: 1.15rem;
  font-weight: 400;
}

.home-trust-grid small {
  margin-top: 0.35rem;
  color: #aeb3bd;
  font-size: 0.77rem;
  line-height: 1.4;
}

.home-faq {
  padding-top: 0;
}

/* Multi-page product tours */

.product-page-hero {
  min-height: 37rem;
  border-bottom: 1px solid var(--line);
}

.product-page-hero h1 {
  max-width: 13ch;
}

.feature-page-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-pad) var(--page-pad);
}

.feature-page-heading,
.page-section-heading {
  display: grid;
  gap: 1.2rem;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.feature-page-heading .section-kicker,
.page-section-heading .section-kicker {
  color: var(--brass-text);
}

.feature-page-heading h2,
.page-section-heading h2,
.page-cta h2 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--editorial);
  font-size: clamp(2.8rem, 4.7vw, 4.9rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.feature-page-heading > p:last-child {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.feature-directory-card {
  display: grid;
  align-content: start;
  min-height: 20rem;
  padding: clamp(1.6rem, 3vw, 2.8rem);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgba(255, 254, 251, 0.5);
}

.feature-directory-card-wide {
  grid-column: 1 / -1;
  min-height: 24rem;
}

.feature-directory-card-ink {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(216, 166, 66, 0.16), transparent 42%), var(--ink);
  color: var(--paper);
}

.feature-directory-card > span {
  color: var(--cobalt-deep);
  font-family: var(--label);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.feature-directory-card-ink > span {
  color: var(--brass-soft);
}

.feature-directory-card h3 {
  max-width: 20ch;
  margin: 3rem 0 0.85rem;
  font-family: var(--editorial);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.feature-directory-card p {
  max-width: 48rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.feature-directory-card-ink p {
  color: #bdc2cb;
}

.feature-directory-card .card-link {
  align-self: end;
  margin-top: 2rem;
}

.page-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-section-shell {
  width: min(100%, calc(var(--max) + var(--page-pad) + var(--page-pad)));
  margin: 0 auto;
  padding: var(--section-pad) var(--page-pad);
}

.page-section-paper {
  background:
    linear-gradient(rgba(216, 166, 66, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 166, 66, 0.045) 1px, transparent 1px), var(--paper-deep);
  background-size: 4rem 4rem;
}

.page-section-dark {
  border-color: rgba(255, 255, 255, 0.09);
  background: radial-gradient(ellipse at 10% 0%, rgba(216, 166, 66, 0.16), transparent 36%), #090c12;
  color: var(--paper);
}

.page-section-dark .page-section-heading .section-kicker {
  color: var(--brass-soft);
}

.page-section-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.72fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.page-section-split .page-section-heading {
  margin-bottom: 0;
}

.compact-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  list-style: none;
}

.compact-process li {
  display: grid;
  align-content: start;
  min-height: 13rem;
  padding: 1.5rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgba(255, 254, 251, 0.5);
}

.compact-process span,
.scope-stack span {
  margin-bottom: 2.2rem;
  color: var(--cobalt);
  font-family: var(--label);
  font-size: 0.53rem;
  font-weight: 700;
}

.compact-process strong,
.scope-stack strong {
  font-family: var(--editorial);
  font-size: 1.2rem;
  font-weight: 400;
}

.compact-process small,
.scope-stack small {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.compact-process-dark {
  border-color: var(--line-dark);
}

.compact-process-dark li {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.035);
}

.compact-process-dark strong {
  color: var(--paper);
}

.compact-process-dark small {
  color: #aeb3bd;
}

.page-section-link {
  margin-top: 2rem;
}

.scope-stack {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.scope-stack > div {
  display: grid;
  grid-template-columns: auto minmax(5rem, 0.4fr) 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.scope-stack span,
.scope-stack small {
  margin: 0;
}

.scope-stack small {
  color: #aeb3bd;
}

.boundary-note {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
}

.boundary-note strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--brass-soft);
  font-family: var(--editorial);
  font-size: 1.5rem;
  font-weight: 400;
}

.boundary-note p {
  margin: 0 0 1.25rem;
  color: #bfc3ca;
}

.boundary-note-light {
  border-color: var(--ink);
  background: rgba(255, 254, 251, 0.62);
}

.boundary-note-light strong {
  color: var(--ink);
}

.boundary-note-light p {
  color: var(--muted);
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem 7vw;
  align-items: end;
  width: min(calc(100% - var(--page-pad) - var(--page-pad)), var(--max));
  margin: var(--section-pad) auto;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border: 1px solid var(--ink);
  background:
    radial-gradient(ellipse at 90% 0%, rgba(216, 166, 66, 0.16), transparent 35%),
    var(--paper-raised);
}

.page-cta .section-kicker {
  margin-bottom: 1rem;
  color: var(--brass-text);
}

.page-cta h2 {
  max-width: 16ch;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.page-cta-actions {
  display: grid;
  gap: 0.85rem;
  justify-items: stretch;
  min-width: 14rem;
}

.product-faq {
  padding-top: var(--section-pad);
}

.world-page-section {
  border-top: 0;
}

.book-studio-lead {
  padding-top: var(--section-pad);
}

.safety-control {
  margin-top: 0;
}

.safety-intro {
  padding-bottom: var(--section-pad);
}

.route-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-pad) var(--page-pad);
}

.route-heading,
.world-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.55fr);
  gap: 1.75rem 6vw;
  align-items: end;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

.route-heading .section-kicker,
.world-heading .section-kicker {
  grid-column: 1 / -1;
  color: var(--brass-text);
}

.route-heading h2,
.world-heading h2,
.control-copy h2,
.finish-copy h2,
.faq-heading h2,
.closing-copy h2,
.page-hero h1,
.download-panel h2,
.guide-content h2,
.guide-contact h2 {
  margin: 0;
  font-family: var(--editorial);
  font-size: clamp(3rem, 5.2vw, 5.3rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.story-route {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  list-style: none;
}

.story-route li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.4rem;
  align-content: start;
  min-height: 18rem;
  padding: clamp(1.75rem, 3vw, 3rem);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.route-number,
.route-detail {
  font-family: var(--label);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-number {
  color: var(--cobalt);
}

.route-name {
  color: var(--brass-text);
  font-family: var(--label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.route-copy {
  grid-column: 1 / -1;
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.route-copy h3 {
  max-width: 14ch;
  margin: 1.3rem 0 0;
  font-family: var(--editorial);
  font-size: clamp(1.85rem, 2.7vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.route-copy p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.route-detail {
  grid-column: 1 / -1;
  align-self: end;
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--muted);
}

.story-route li:hover {
  background: var(--ink);
  color: var(--paper);
}

.story-route li:hover .route-copy p,
.story-route li:hover .route-detail {
  color: #bfc3ca;
}

.story-route li:hover .route-name,
.story-route li:hover .route-number {
  color: var(--brass-soft);
}

.world-section {
  position: relative;
  padding: var(--section-pad) var(--page-pad);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(216, 166, 66, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 166, 66, 0.07) 1px, transparent 1px), var(--paper-deep);
  background-size: 4rem 4rem;
}

.world-section::before {
  position: absolute;
  top: -18rem;
  right: -12rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(216, 166, 66, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(216, 166, 66, 0.04),
    0 0 0 10rem rgba(216, 166, 66, 0.02);
  content: '';
}

.world-heading,
.world-surfaces,
.world-footnote {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.world-surfaces {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  background: rgba(248, 245, 238, 0.65);
  list-style: none;
}

.world-surfaces li {
  display: flex;
  align-items: center;
  min-height: 8rem;
  padding: 1.35rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--editorial);
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
  letter-spacing: -0.04em;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    padding-left 180ms ease;
}

.world-surfaces li:hover {
  padding-left: 1.8rem;
  background: var(--brass);
  color: var(--ink);
}

.world-footnote {
  margin-top: 1.5rem;
  color: var(--brass-text);
  font-family: var(--label);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: right;
  text-transform: uppercase;
}

.control-section {
  position: relative;
  width: min(calc(100% - var(--page-pad) - var(--page-pad)), var(--max));
  margin: var(--section-pad) auto 0;
  padding: clamp(3.5rem, 6vw, 6rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  background:
    radial-gradient(ellipse at 92% 0%, rgba(216, 166, 66, 0.15), transparent 42%),
    linear-gradient(135deg, #080a0f, #111722);
  box-shadow: 0 2rem 4rem rgba(9, 12, 18, 0.14);
  color: var(--paper);
}

.control-section::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58%;
  width: 1px;
  background: linear-gradient(transparent, rgba(216, 166, 66, 0.35), transparent);
  content: '';
}

.control-copy,
.control-steps,
.control-rule {
  position: relative;
  z-index: 2;
}

.control-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  gap: 1.75rem 6vw;
  align-items: end;
  margin-bottom: clamp(3.25rem, 5vw, 5rem);
}

.control-copy .section-kicker {
  grid-column: 1 / -1;
  color: var(--brass-soft);
}

.control-copy > p:last-child {
  color: #c4c7ce;
}

.control-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 clamp(3rem, 5vw, 5rem);
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
}

.control-steps li {
  display: grid;
  align-content: start;
  min-height: 10.5rem;
  padding: 1.6rem clamp(1rem, 2vw, 1.8rem);
  border-left: 1px solid var(--line-dark);
}

.control-steps li:last-child {
  border-right: 1px solid var(--line-dark);
}

.control-steps span {
  margin-bottom: 2rem;
  color: var(--brass-soft);
  font-family: var(--label);
  font-size: 0.56rem;
  font-weight: 700;
}

.control-steps strong {
  font-family: var(--editorial);
  font-size: 1.18rem;
  font-weight: 400;
}

.control-steps small {
  margin-top: 0.32rem;
  color: #aeb3bd;
  font-size: 0.8rem;
  line-height: 1.4;
}

.control-rule {
  margin: 0;
  color: #aeb3bd;
  font-family: var(--editorial);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.control-rule strong {
  display: block;
  color: var(--paper);
  font-weight: 400;
}

.control-orbit {
  position: absolute;
  z-index: 1;
  top: -7rem;
  right: -7rem;
  width: 27rem;
  height: 27rem;
  border: 1px solid rgba(216, 166, 66, 0.16);
  border-radius: 50%;
  color: rgba(242, 217, 154, 0.48);
  font-family: var(--label);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.control-orbit::before,
.control-orbit::after {
  position: absolute;
  border: 1px solid rgba(216, 166, 66, 0.22);
  border-radius: 50%;
  content: '';
}

.control-orbit::before {
  inset: 4rem;
}

.control-orbit::after {
  inset: 9rem;
  background: rgba(216, 166, 66, 0.28);
  box-shadow: 0 0 0 1rem rgba(216, 166, 66, 0.08);
}

.control-orbit span {
  position: absolute;
}

.control-orbit span:nth-child(1) {
  top: 4rem;
  left: 5rem;
}

.control-orbit span:nth-child(2) {
  top: 10rem;
  right: -1rem;
}

.control-orbit span:nth-child(3) {
  right: 4rem;
  bottom: 3rem;
}

.control-orbit span:nth-child(4) {
  bottom: 8rem;
  left: -1rem;
}

.finish-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(32rem, 1.3fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-pad) var(--page-pad);
}

.finish-copy {
  display: grid;
  gap: 1.65rem;
}

.finish-copy .section-kicker {
  color: var(--brass-text);
}

.finish-copy h2 {
  font-size: clamp(3rem, 4.8vw, 4.8rem);
}

.finish-product {
  position: relative;
  margin: 0;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--paper-raised);
  box-shadow: var(--shadow-product);
}

.finish-product::before {
  position: absolute;
  z-index: -1;
  right: -1.75rem;
  bottom: -1.75rem;
  width: 58%;
  height: 70%;
  border: 1px solid rgba(216, 166, 66, 0.22);
  background: var(--cobalt-wash);
  content: '';
}

.finish-product img {
  width: 100%;
  border-radius: 0.52rem;
}

.faq-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--page-pad) var(--section-pad);
}

.faq-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.55fr);
  gap: 1.75rem 6vw;
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.faq-heading > div {
  display: grid;
  gap: 1.15rem;
}

.faq-heading .section-kicker {
  color: var(--brass-text);
}

.faq-heading h2 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 4.4vw, 4.4rem);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.faq-list details {
  min-height: 5rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgba(255, 254, 251, 0.45);
}

.faq-list summary {
  position: relative;
  min-height: 5rem;
  padding: 1.4rem 3.5rem 1.35rem 1.5rem;
  cursor: pointer;
  font-family: var(--editorial);
  font-size: 1.08rem;
  line-height: 1.25;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  color: var(--brass-text);
  content: '+';
  font-family: var(--body);
  font-size: 1.35rem;
  transform: translateY(-50%);
  transition: transform 160ms ease;
}

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

.faq-list details[open] summary {
  color: var(--cobalt-deep);
}

.faq-list details > p {
  max-width: 56ch;
  margin: 0 1.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.closing-section {
  position: relative;
  display: grid;
  align-items: center;
  width: min(calc(100% - var(--page-pad) - var(--page-pad)), var(--max));
  min-height: 30rem;
  margin: 0 auto var(--section-pad);
  padding: clamp(4rem, 7vw, 7rem);
  overflow: hidden;
  border-radius: 0.75rem;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(216, 166, 66, 0.2), transparent 34%), var(--ink);
  color: var(--paper);
}

.closing-section > img {
  position: absolute;
  right: -7rem;
  bottom: -5rem;
  width: min(38rem, 48vw);
  opacity: 0.12;
  filter: brightness(0) invert(1);
  transform: rotate(-5deg);
}

.closing-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.25rem;
}

.closing-copy .section-kicker {
  color: var(--brass-soft);
}

.closing-copy h2 {
  max-width: 12ch;
  font-size: clamp(3.1rem, 5.5vw, 5.6rem);
}

.closing-section :focus-visible,
.control-section :focus-visible,
.page-section-dark :focus-visible,
.home-trust :focus-visible,
.feature-directory-card-ink :focus-visible,
.home-hub-card-ink :focus-visible,
.site-header :focus-visible,
.site-footer :focus-visible {
  outline-color: #f5c461;
}

.text-link-light {
  color: var(--brass-soft);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem 6vw;
  padding: clamp(4rem, 7vw, 6rem) max(var(--page-pad), calc((100vw - var(--max)) / 2)) 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(115deg, rgba(216, 166, 66, 0.10), transparent 35%), #080a0e;
  color: var(--paper);
}

.footer-brand-lockup {
  width: clamp(13.5rem, 20vw, 17rem);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  max-width: 24rem;
  margin: 0;
  color: #adb2bc;
}

.site-footer nav {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-top: 1rem;
  color: #d6d8dd;
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
  color: #8f949e;
  font-family: var(--label);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Inner pages */

.inner-page main {
  min-height: 60vh;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 30rem);
  gap: 2rem 7vw;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) var(--page-pad) clamp(5rem, 8vw, 8rem);
  background: radial-gradient(ellipse at 86% 20%, rgba(216, 166, 66, 0.09), transparent 32%);
}

.page-label {
  grid-column: 1 / -1;
  color: var(--brass-text);
}

.page-hero h1 span,
.download-panel h2 span {
  display: block;
  color: var(--brass-text);
}

.page-hero-aside {
  display: grid;
  gap: 1.75rem;
}

.page-hero-aside > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
}

.guide-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--page-pad) var(--section-pad);
}

.guide-section {
  display: grid;
  grid-template-columns: minmax(9rem, 0.28fr) minmax(0, 1fr);
  gap: 2rem 5vw;
  padding: clamp(4rem, 7vw, 7rem) 0;
  border-top: 1px solid var(--ink);
}

.guide-section-label {
  color: var(--brass-text);
}

.guide-content h2,
.guide-contact h2 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
}

.guide-lead {
  max-width: 48rem;
  margin: 1.5rem 0 clamp(3rem, 5vw, 5rem);
  color: var(--muted);
  font-size: 1.1rem;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.guide-card {
  min-height: 14rem;
  padding: 2rem clamp(1.1rem, 2vw, 2rem);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgba(255, 254, 251, 0.48);
}

.guide-card > span {
  color: var(--cobalt);
  font-family: var(--label);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.guide-card h3 {
  margin: 3rem 0 0.7rem;
  font-family: var(--editorial);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.guide-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid #ccd5ee;
  background: var(--cobalt-wash);
}

.guide-note span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  background: var(--cobalt);
  color: var(--white);
  font-weight: 700;
}

.guide-note p {
  max-width: 52rem;
  margin: 0;
}

.guide-contact {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: end;
}

.guide-contact p {
  max-width: 43rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 30rem);
  gap: 2rem 7vw;
  align-items: end;
  width: min(calc(100% - var(--page-pad) - var(--page-pad)), var(--max));
  margin: 0 auto var(--section-pad);
  padding: clamp(4rem, 7vw, 7rem);
  overflow: hidden;
  border-radius: 0.75rem;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(216, 166, 66, 0.15), transparent 42%), var(--ink);
  color: var(--paper);
}

.download-version {
  grid-column: 1 / -1;
  color: var(--brass-soft);
}

.download-panel h2 span {
  color: var(--brass-soft);
}

.download-panel-aside {
  display: grid;
  gap: 2rem;
}

.download-panel-aside p {
  margin: 0;
  color: #c4c7ce;
  font-size: 1.08rem;
}

.download-panel-aside .button {
  width: 100%;
}

.not-found-hero {
  min-height: 44rem;
}

html.js-ready .reveal {
  opacity: 0;
  transform: translateY(0.8rem);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 72rem) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-right: 1rem;
  }

  .living-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-intro {
    max-width: 47rem;
  }

  .hero-intro h1 {
    max-width: 12ch;
  }

  .hero-product {
    width: 100%;
    margin-top: 3rem;
  }

  .proof-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-rail > div:nth-child(1),
  .proof-rail > div:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .home-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-evidence-grid,
  .home-trust-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .planning-heading,
  .assistants-heading,
  .recovery-heading,
  .production-heading,
  .fit-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p,
  .planning-heading > p,
  .assistants-heading > p,
  .recovery-heading > p {
    max-width: 43rem;
  }

  .studio-card-wide {
    grid-template-columns: minmax(0, 0.82fr) minmax(18rem, 1.18fr);
  }

  .planning-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .world-showcase,
  .assistants-layout,
  .review-section {
    grid-template-columns: 1fr;
  }

  .library-visual {
    width: min(100%, 46rem);
    min-height: 36rem;
    margin-right: auto;
    margin-left: auto;
  }

  .assistants-layout {
    gap: 3rem;
  }

  .assistant-proof {
    position: relative;
    top: auto;
  }

  .provider-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .assistant-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-copy {
    max-width: 46rem;
  }

  .recovery-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .production-grid,
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-section-split,
  .page-cta {
    grid-template-columns: 1fr;
  }

  .compact-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-cta-actions {
    justify-items: start;
  }

  .route-heading,
  .world-heading,
  .control-copy,
  .faq-heading,
  .page-hero,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .route-heading > p:last-child,
  .world-heading > p:last-child,
  .control-copy > p:last-child,
  .faq-heading > p,
  .page-hero-aside,
  .download-panel-aside {
    max-width: 42rem;
  }

  .world-surfaces {
    grid-template-columns: repeat(2, 1fr);
  }

  .control-section::after {
    left: 50%;
  }

  .control-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .control-steps li:nth-child(3),
  .control-steps li:nth-child(4) {
    border-top: 1px solid var(--line-dark);
  }

  .finish-section {
    grid-template-columns: 1fr;
  }

  .finish-copy {
    max-width: 47rem;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .guide-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 46rem) {
  html {
    scroll-padding-top: 4rem;
  }

  .site-header {
    min-height: 4.1rem;
  }

  .brand {
    grid-template-rows: auto;
  }

  .brand-lockup {
    width: 9.65rem;
  }

  .brand-edition {
    display: none;
  }

  .mobile-menu {
    margin-right: 0;
  }

  .header-download {
    display: none;
  }

  .living-hero {
    padding-top: 4rem;
  }

  .hero-intro h1 {
    font-size: clamp(3.1rem, 14.5vw, 4.2rem);
    line-height: 0.98;
  }

  .home-page .hero-intro h1 {
    font-size: clamp(3rem, 13.5vw, 4rem);
  }

  .hero-signals {
    gap: 0.4rem;
  }

  .hero-actions,
  .closing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .closing-actions .button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero-product {
    margin-top: 3.2rem;
    padding: 0.35rem;
  }

  .hero-product::before {
    right: -4rem;
  }

  .product-index {
    top: -2.1rem;
  }

  .hero-product figcaption,
  .finish-product figcaption,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-rail {
    grid-template-columns: 1fr;
  }

  .proof-rail > div {
    min-height: 6.5rem;
    border-bottom: 1px solid var(--line);
  }

  .proof-rail > div:last-child {
    border-bottom: 0;
  }

  .home-hub-grid {
    grid-template-columns: 1fr;
  }

  .home-hub-card {
    min-height: 16rem;
  }

  .home-hub-card h3 {
    margin-top: 2.2rem;
  }

  .home-evidence-media {
    height: 13rem;
  }

  .home-trust {
    width: calc(100% - 2rem);
    padding: 3rem 1.25rem;
  }

  .home-trust-heading h2 {
    font-size: clamp(2.65rem, 12vw, 3.75rem);
  }

  .section-heading h2,
  .planning-heading h2,
  .assistants-heading h2,
  .review-copy h2,
  .recovery-heading h2,
  .production-heading h2,
  .fit-heading h2 {
    font-size: clamp(2.65rem, 12vw, 3.75rem);
  }

  .studio-grid,
  .planning-methods,
  .world-benefits,
  .assistant-cards,
  .review-section,
  .production-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .studio-card,
  .studio-card-wide {
    grid-column: auto;
    min-height: 0;
  }

  .studio-card-wide {
    display: grid;
    grid-template-columns: 1fr;
  }

  .studio-card-wide > h3,
  .studio-card-wide > p,
  .studio-card-wide > .feature-chips,
  .studio-card-wide > .card-link,
  .studio-card-wide > .manuscript-mini,
  .studio-card-wide > .assistant-mini {
    grid-column: 1;
    grid-row: auto;
  }

  .card-topline {
    padding-bottom: 2.2rem;
  }

  .studio-card h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .manuscript-mini {
    min-height: 15rem;
    margin-top: 2.4rem;
  }

  .mini-sidebar,
  .mini-page,
  .mini-context {
    padding: 0.65rem;
  }

  .plan-mini {
    grid-template-columns: 1fr;
  }

  .plan-mini i {
    width: 1px;
    height: 0.55rem;
    margin: 0 auto;
  }

  .planning-methods li,
  .world-benefits article,
  .production-grid article,
  .fit-grid article {
    min-height: 15rem;
  }

  .library-visual {
    min-height: 28rem;
    padding: 1rem;
  }

  .library-label,
  .library-visual figcaption,
  .assistant-proof figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .cover-stack {
    height: 22rem;
  }

  .cover-card {
    bottom: 0.8rem;
    width: 47%;
  }

  .cover-card-one {
    left: -2%;
  }

  .cover-card-two {
    left: 27%;
  }

  .cover-card-three {
    right: -2%;
  }

  .world-benefits h3,
  .production-grid h3,
  .fit-grid h3 {
    margin-top: 2.2rem;
  }

  .provider-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assistant-cards article {
    min-height: 12rem;
  }

  .review-board {
    padding: 0.75rem;
  }

  .review-board-head {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .review-row {
    grid-template-columns: auto 1fr;
  }

  .review-row > b {
    grid-column: 2;
  }

  .recovery-path {
    grid-template-columns: 1fr;
  }

  .recovery-path li {
    min-height: 9.5rem;
  }

  .recovery-path span {
    margin-bottom: 1.25rem;
  }

  .finish-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-page-hero {
    min-height: 0;
  }

  .feature-page-heading h2,
  .page-section-heading h2,
  .page-cta h2 {
    font-size: clamp(2.65rem, 12vw, 3.75rem);
  }

  .feature-directory {
    grid-template-columns: 1fr;
  }

  .feature-directory-card,
  .feature-directory-card-wide {
    grid-column: auto;
    min-height: 16rem;
  }

  .feature-directory-card h3 {
    margin-top: 2.2rem;
  }

  .compact-process {
    grid-template-columns: 1fr;
  }

  .compact-process li {
    min-height: 9.5rem;
  }

  .compact-process span {
    margin-bottom: 1.25rem;
  }

  .scope-stack > div {
    grid-template-columns: auto 1fr;
  }

  .scope-stack small {
    grid-column: 2;
  }

  .page-cta {
    width: calc(100% - 2rem);
    padding: 2.5rem 1.25rem;
  }

  .page-cta-actions {
    justify-items: stretch;
    min-width: 0;
  }

  .page-cta-actions .button {
    width: 100%;
  }

  .route-heading h2,
  .world-heading h2,
  .control-copy h2,
  .finish-copy h2,
  .faq-heading h2,
  .closing-copy h2,
  .page-hero h1,
  .download-panel h2,
  .guide-content h2,
  .guide-contact h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .story-route {
    grid-template-columns: 1fr;
  }

  .story-route li {
    min-height: 16rem;
  }

  .world-surfaces {
    grid-template-columns: 1fr;
  }

  .world-surfaces li {
    min-height: 6.5rem;
  }

  .control-section {
    width: calc(100% - 2rem);
    padding: 3rem 1.25rem;
  }

  .control-section::after {
    display: none;
  }

  .control-steps {
    grid-template-columns: 1fr;
  }

  .control-steps li {
    min-height: 9rem;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .control-steps li:last-child {
    border-bottom: 0;
  }

  .control-steps span {
    margin-bottom: 1.5rem;
  }

  .control-orbit {
    right: -20rem;
  }

  .finish-section {
    overflow: hidden;
  }

  .finish-product {
    width: calc(100% + var(--page-pad));
  }

  .faq-list summary {
    padding-left: 1.1rem;
  }

  .faq-list details > p {
    margin-right: 1.1rem;
    margin-left: 1.1rem;
  }

  .closing-section {
    width: calc(100% - 2rem);
    min-height: 31rem;
    padding: 3.5rem 1.25rem;
  }

  .closing-section > img {
    right: -8rem;
    width: 27rem;
  }

  .closing-copy > p:not(.section-kicker) {
    margin-top: -1rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-direction: column;
  }

  .footer-meta {
    grid-column: 1;
  }

  .page-hero {
    padding-top: 5rem;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-card {
    min-height: 11rem;
  }

  .guide-card h3 {
    margin-top: 2rem;
  }

  .guide-contact {
    align-items: stretch;
    flex-direction: column;
  }

  .guide-contact .button {
    width: 100%;
  }

  .download-panel {
    width: calc(100% - 2rem);
    padding: 3rem 1.25rem;
  }
}

@media (hover: hover) {
  .button:hover {
    transform: translateY(-2px);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  html.js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  body::before,
  .world-section::before,
  .hero-product::before,
  .finish-product::before,
  .control-orbit,
  .product-thread {
    display: none;
  }

  .site-header,
  .planning-section,
  .page-section-dark,
  .home-trust,
  .control-section,
  .closing-section,
  .download-panel,
  .site-footer {
    background: Canvas;
    color: CanvasText;
  }

  .studio-card,
  .home-hub-card,
  .home-evidence-card,
  .feature-directory-card,
  .page-cta,
  .library-visual,
  .assistant-proof,
  .review-board,
  .fit-grid article {
    forced-color-adjust: auto;
    background: Canvas;
    color: CanvasText;
  }

  .brand-lockup,
  .footer-brand-lockup {
    forced-color-adjust: none;
  }

  .closing-section > img {
    filter: none;
  }
}


/* rebuild: manuscript studio */
.site-header {
  position: sticky;
  background: rgba(248, 245, 238, 0.94);
  backdrop-filter: saturate(1.1) blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  color: var(--ink);
}

.site-header::after {
  background: linear-gradient(90deg, transparent, rgba(216, 166, 66, 0.7), transparent);
}

.brand-edition {
  color: var(--brass-text);
}

.nav-links a[aria-current='page'] {
  color: var(--brass-text);
}

.site-header :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--brass);
}

.header-download {
  border-radius: 0.15rem;
  box-shadow: none;
}

.living-hero {
  grid-template-columns: minmax(22rem, 0.68fr) minmax(36rem, 1.32fr);
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  background:
    radial-gradient(ellipse at 78% 28%, rgba(216, 166, 66, 0.1), transparent 36%),
    var(--paper);
}

.hero-intro h1,
.home-page .hero-intro h1 {
  font-size: clamp(3.9rem, 5.4vw, 5.8rem);
}

.hero-product {
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 0.18rem;
  background: var(--ink);
  box-shadow: 0 2.4rem 4rem rgba(9, 12, 18, 0.16);
}

.hero-product::before,
.product-thread {
  display: none;
}

.hero-product picture,
.hero-product img {
  border-radius: 0;
}

.hero-product figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem 0.8rem;
  background: var(--ink);
  color: var(--brass-soft);
  font-family: var(--label);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-index {
  top: auto;
  bottom: calc(100% + 0.55rem);
  left: 0;
}

.proof-rail {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper-raised);
}

.home-hub-card {
  min-height: 0;
  padding: 1.45rem 1.4rem 1.3rem;
}

.home-hub-card h3,
.home-evidence-copy h3 {
  margin-top: 1.15rem;
}

.home-hub-card .card-link {
  margin-top: 1.15rem;
}

.home-evidence-grid {
  grid-template-columns: 1.05fr 0.85fr 1.25fr;
}

.home-evidence-card {
  border-radius: 0.18rem;
}

.home-evidence-card-ink {
  min-height: 22rem;
}

.button,
.header-download {
  border-radius: 0.15rem;
}

.button:hover,
.header-download:hover {
  transform: none;
}

.page-hero h1 {
  font-size: clamp(3.2rem, 5vw, 5.1rem);
}

@media (max-width: 72rem) {
  .living-hero {
    grid-template-columns: 1fr;
  }

  .home-evidence-grid {
    grid-template-columns: 1fr;
  }
}

.page-cta {
  gap: 2rem 4vw;
  align-items: end;
}

.page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  justify-content: start;
}

.page-hero {
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

/* homepage: six-block sell */
.hero-ai-line {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-ai-line a {
  display: inline;
  margin-left: 0.35rem;
  color: var(--brass-text);
  font-weight: 700;
}

.world-proof,
.studio-close {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: var(--section-pad) var(--page-pad);
}

.world-proof-media,
.studio-close-media {
  margin: 0;
}

.world-proof-media .home-evidence-covers {
  height: 22rem;
  border: 1px solid var(--ink);
}

.world-proof-media figcaption,
.studio-close-media figcaption {
  margin-top: 0.85rem;
  color: var(--brass-text);
  font-family: var(--editorial);
  font-size: 1.15rem;
  font-style: italic;
}

.world-proof-copy h2,
.studio-close-copy h2,
.trust-lines-heading h2 {
  margin: 0.7rem 0 1rem;
  font-family: var(--editorial);
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.world-proof-copy p,
.studio-close-copy p {
  margin: 0 0 1.4rem;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.format-row {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.format-row li {
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line);
  font-family: var(--label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-close {
  background: var(--ink);
  color: var(--paper);
  width: 100%;
  max-width: none;
  padding-left: max(var(--page-pad), calc((100vw - var(--max)) / 2));
  padding-right: max(var(--page-pad), calc((100vw - var(--max)) / 2));
}

.studio-close-copy,
.studio-close-media {
  width: min(100%, calc(var(--max) / 2 - 1rem));
}

.studio-close {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.studio-close-copy {
  width: auto;
}

.studio-close-media {
  width: auto;
}

.studio-close-copy p {
  color: #c4c7ce;
}

.studio-close-media img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.studio-close-media figcaption {
  color: var(--brass-soft);
}

.trust-lines {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: var(--section-pad) var(--page-pad);
}

.trust-line-list {
  display: grid;
  gap: 1.1rem;
  margin: 2.2rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.trust-line-list li {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.2rem;
  font-family: var(--editorial);
}

.trust-line-list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-text);
}

.download-spec {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--page-pad) var(--section-pad);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.download-spec article {
  padding: 1.3rem 1.1rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.download-spec span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-family: var(--label);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.download-spec strong {
  font-family: var(--editorial);
  font-size: 1.15rem;
  font-weight: 400;
}

.beta-panel {
  width: min(100%, var(--max));
  margin: 0 auto var(--section-pad);
  padding: clamp(3rem, 5vw, 4.5rem) var(--page-pad);
  border: 1px solid var(--ink);
  background: var(--paper-raised);
}

.beta-panel h2 {
  max-width: 14ch;
  margin: 0.6rem 0 1rem;
  font-family: var(--editorial);
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.beta-panel > p {
  max-width: 36rem;
  color: var(--ink-soft);
}

@media (max-width: 72rem) {
  .world-proof,
  .studio-close {
    grid-template-columns: 1fr;
  }

  .download-spec {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 46rem) {
  .download-spec {
    grid-template-columns: 1fr;
  }
}

/* look switcher + four visual variants */
.look-switch {
  position: sticky;
  z-index: 45;
  top: 4.5rem;
  display: flex;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.35rem;
  background: rgba(248, 245, 238, 0.92);
  border-bottom: 1px solid var(--line);
  font-family: var(--label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.look-switch a {
  padding: 0.45rem 0.85rem;
  border: 1px solid transparent;
}

.look-switch a[aria-current='page'] {
  border-color: var(--brass);
  color: var(--brass-text);
}

.world-proof-shot {
  width: 100%;
  border: 1px solid var(--ink);
}

/* A — App: bone, rounded chrome like the installed studio */
.look-app .site-header {
  background: rgba(249, 248, 243, 0.94);
  border-bottom: 1px solid #e4ddd0;
}

.look-app .header-download,
.look-app .button,
.look-app .hero-product,
.look-app .world-proof-shot,
.look-app .studio-close-media img,
.look-app .beta-panel {
  border-radius: 0.85rem;
}

.look-app .button-primary,
.look-app .header-download {
  border: 1px solid #c4a15a;
  background: transparent;
  box-shadow: none;
  color: #3d2a0e;
}

.look-app .button-primary:hover,
.look-app .header-download:hover {
  background: rgba(216, 166, 66, 0.14);
}

.look-app .hero-product {
  background: #f4efe4;
  border-color: #e4ddd0;
  box-shadow: 0 1.2rem 2.8rem rgba(61, 42, 14, 0.08);
}

.look-app .hero-product figcaption {
  background: #f4efe4;
  color: #6a5840;
  border-radius: 0 0 0.85rem 0.85rem;
}

/* B — Ink: black binding, ivory page, sharp plate */
.look-ink .site-header {
  background: #090c12;
  color: var(--paper);
}

.look-ink .brand-edition,
.look-ink .nav-links a[aria-current='page'] {
  color: var(--brass-soft);
}

.look-ink .header-download {
  background: var(--brass);
  color: var(--ink);
}

.look-ink .look-switch {
  background: #090c12;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.look-ink .hero-product,
.look-ink .world-proof-shot,
.look-ink .button {
  border-radius: 0.12rem;
}

.look-ink .hero-product {
  background: #090c12;
  border-color: #090c12;
}

.look-ink .hero-product figcaption {
  background: #090c12;
  color: var(--brass-soft);
}

/* C — Folio: title page, huge type, almost no chrome */
.look-folio .site-header {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.look-folio .site-header::after {
  display: none;
}

.look-folio .header-download {
  background: none;
  border-color: var(--ink);
  box-shadow: none;
}

.look-folio .living-hero {
  grid-template-columns: 1fr;
  min-height: 0;
  text-align: center;
  padding-top: 5rem;
}

.look-folio .hero-intro,
.look-folio .hero-deck,
.look-folio .hero-intro h1,
.look-folio .home-page .hero-intro h1 {
  max-width: 18ch;
  margin-right: auto;
  margin-left: auto;
}

.look-folio .hero-intro h1,
.look-folio .home-page .hero-intro h1 {
  font-size: clamp(4.4rem, 8vw, 7.2rem);
}

.look-folio .hero-actions,
.look-folio .hero-signals {
  justify-content: center;
}

.look-folio .hero-product {
  max-width: 58rem;
  margin: 3rem auto 0;
  border: 0;
  background: none;
  box-shadow: none;
  padding: 0;
}

.look-folio .hero-product figcaption {
  background: none;
  color: var(--muted);
  justify-content: center;
}

.look-folio .look-switch {
  background: transparent;
}

/* D — Ledger: spec sheet, hairlines, download-first */
.look-ledger {
  --editorial: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
}

.look-ledger .site-header {
  min-height: 3.6rem;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}

.look-ledger .site-header::after {
  display: none;
}

.look-ledger .living-hero {
  grid-template-columns: 1fr;
  gap: 2rem;
  min-height: 0;
}

.look-ledger .hero-intro h1,
.look-ledger .home-page .hero-intro h1 {
  max-width: 22ch;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  letter-spacing: -0.03em;
}

.look-ledger .hero-product {
  border-radius: 0;
  box-shadow: none;
}

.look-ledger .hero-product figcaption {
  border-top: 1px solid var(--paper);
}

.look-ledger .world-proof,
.look-ledger .studio-close {
  gap: 1.5rem;
}

.look-ledger .button,
.look-ledger .header-download {
  border-radius: 0;
}

@media (max-width: 72rem) {
  .look-switch {
    top: 4.5rem;
    overflow-x: auto;
  }
}


.world-proof-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.world-proof-pair figure,
.world-proof-library {
  margin: 0;
}

.world-proof-caption {
  margin: 0.9rem 0 1.4rem;
  color: var(--brass-text);
  font-family: var(--editorial);
  font-size: 1.2rem;
  font-style: italic;
}

.world-proof-library {
  margin-top: 0.2rem;
}

.world-proof-media figcaption {
  margin-top: 0.45rem;
  font-family: var(--label);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--muted);
}

@media (max-width: 46rem) {
  .world-proof-pair {
    grid-template-columns: 1fr;
  }
}
