:root {
  --void: #050705;
  --ink: #080b08;
  --panel: #0c100d;
  --line: rgba(232, 228, 214, 0.1);
  --line-gold: rgba(201, 165, 74, 0.38);
  --cream: #f3efe4;
  --mute: #8b9184;
  --arc: #3dff6a;
  --arc-deep: #18c94a;
  --gold: #c9a54a;
  --gold-bright: #e8d48b;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Cinzel", "Times New Roman", serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--void);
  color: var(--cream);
}

body {
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  min-height: 100%;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

code {
  font-family: var(--mono);
}

:focus-visible {
  outline: 2px solid var(--arc);
  outline-offset: 3px;
}

section:focus {
  outline: none;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  padding: 0.7rem 1rem;
  background: var(--gold);
  color: #111;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skip-link:focus {
  top: 1rem;
}

::selection {
  background: rgba(61, 255, 106, 0.28);
  color: var(--cream);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.pointer-glow {
  position: fixed;
  width: min(42vw, 28rem);
  height: min(42vw, 28rem);
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(61, 255, 106, 0.1), transparent 68%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

body.is-pointer .pointer-glow {
  opacity: 1;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 5, 0.78);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  object-fit: cover;
  border: 1px solid rgba(61, 255, 106, 0.28);
  box-shadow: 0 0 0 1px rgba(201, 165, 74, 0.18);
  animation: mark-breathe 6.5s var(--ease) infinite;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--display);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-ticker {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--gold-bright);
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.6rem;
}

.desktop-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  transition: color 0.25s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--cream);
}

.nav-buy {
  padding: 0.62rem 1rem;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #14110a !important;
  font-weight: 600;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(232, 212, 139, 0.25), 0 8px 30px rgba(201, 165, 74, 0.18);
}

.nav-buy:hover,
.nav-buy:focus-visible {
  filter: brightness(1.08);
}

.menu-toggle {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.menu-toggle-bars {
  width: 1.05rem;
  height: 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle-bars span {
  display: block;
  height: 1px;
  background: var(--cream);
  transition: transform 0.35s var(--ease);
}

body.nav-open .menu-toggle-bars span:first-child {
  transform: translateY(0.32rem) rotate(45deg);
}

body.nav-open .menu-toggle-bars span:last-child {
  transform: translateY(-0.32rem) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 45;
  background: rgba(5, 7, 5, 0.96);
  display: grid;
  align-items: start;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav-panel {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav-panel a {
  font-family: var(--display);
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.mobile-nav-panel .nav-buy {
  margin-top: 1.4rem;
  text-align: center;
  border-bottom: 0;
  font-size: 0.95rem;
}

body.nav-open {
  overflow: hidden;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #14110a;
  box-shadow: 0 10px 30px rgba(201, 165, 74, 0.18);
}

.btn-arc {
  border: 1px solid rgba(61, 255, 106, 0.55);
  color: var(--arc);
  box-shadow: inset 0 0 0 1px rgba(61, 255, 106, 0.08), 0 0 24px rgba(61, 255, 106, 0.08);
}

.btn-arc:hover {
  background: rgba(61, 255, 106, 0.08);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream);
}

.btn-ghost:hover {
  border-color: rgba(232, 228, 214, 0.32);
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: stretch;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 42%;
  transform: scale(1.06);
  will-change: transform;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 7, 5, 0.96) 0%, rgba(5, 7, 5, 0.88) 28%, rgba(5, 7, 5, 0.42) 58%, rgba(5, 7, 5, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 7, 5, 0.28) 0%, transparent 22%, transparent 62%, var(--void) 100%);
}

.hero-layout {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  align-content: end;
  padding: 2.2rem 0 3.5rem;
}

.hero-copy,
.hero-dock {
  position: relative;
  z-index: 2;
  max-width: 38rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.4rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}

.status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 165, 74, 0.16);
}

.display {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(3.8rem, 14vw, 8.4rem);
  line-height: 0.86;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.display span {
  display: block;
}

.hero-ticker {
  margin: 1rem 0 1.4rem;
  font-family: var(--mono);
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  color: var(--gold-bright);
  letter-spacing: 0.28em;
}

.hero-lede {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream);
}

.hero-tag {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.ca-block {
  margin-top: 2rem;
  max-width: 34rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  background: rgba(8, 11, 8, 0.72);
  backdrop-filter: blur(10px);
}

.ca-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

.ca-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.ca-value {
  font-size: clamp(0.72rem, 2.4vw, 0.88rem);
  letter-spacing: 0.02em;
  word-break: break-all;
  color: var(--cream);
}

.btn-copy {
  flex-shrink: 0;
  min-height: 2.1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(61, 255, 106, 0.45);
  color: var(--arc);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn-copy.is-copied {
  background: rgba(61, 255, 106, 0.12);
  border-color: var(--arc);
}

/* Shared section chrome */

.section-shell {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.section-index {
  margin: 0 0 0.7rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--arc);
}

.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.section-dek {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: var(--mute);
  font-size: 1.02rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Taxonomy */

.taxonomy {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(61, 255, 106, 0.07), transparent 46%),
    var(--ink);
  border-top: 1px solid var(--line);
}

.shelf {
  margin-top: 3.4rem;
  display: grid;
  justify-items: center;
  text-align: center;
}

.shelf-apex {
  position: relative;
  padding: 1.6rem 1.2rem 1.8rem;
  min-width: min(100%, 28rem);
}

.shelf-tag {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.shelf-name {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(61, 255, 106, 0.18);
}

.shelf-sc {
  margin: 0.7rem 0 0;
  font-family: var(--mono);
  letter-spacing: 0.32em;
  color: var(--arc);
}

.shelf-plank {
  display: block;
  width: min(36rem, 92%);
  height: 3px;
  margin: 1.3rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-bright), var(--gold), var(--gold-bright), transparent);
  box-shadow: 0 10px 30px rgba(201, 165, 74, 0.28), 0 0 24px rgba(61, 255, 106, 0.16);
}

.shelf-spine {
  width: 1px;
  height: 4.2rem;
  position: relative;
}

.spine {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--gold), rgba(61, 255, 106, 0.55));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.4s var(--ease) 0.15s;
}

.shelf.is-visible .spine {
  transform: scaleY(1);
}

.shelf-below {
  list-style: none;
  margin: 0;
  padding: 0;
  width: min(36rem, 100%);
}

.shelf-below li {
  position: relative;
  display: grid;
  gap: 0.25rem;
  padding: 1.15rem 0 1.25rem;
  opacity: 0;
  transform: translateY(16px);
}

.shelf.is-visible .shelf-below li {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.shelf.is-visible .shelf-below li:nth-child(1) { transition-delay: 0.35s; }
.shelf.is-visible .shelf-below li:nth-child(2) { transition-delay: 0.5s; opacity: 0.78; }
.shelf.is-visible .shelf-below li:nth-child(3) { transition-delay: 0.65s; opacity: 0.55; }
.shelf.is-visible .shelf-below li:nth-child(4) { transition-delay: 0.8s; opacity: 0.32; }

.rung-rule {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 228, 214, 0.28), transparent);
}

.rung-label {
  font-family: var(--display);
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

.rung-note {
  font-size: 0.88rem;
  color: rgba(139, 145, 132, 0.9);
}

/* Narrative */

.narrative {
  position: relative;
  background: var(--void);
  overflow: hidden;
}

.narrative-rail {
  display: none;
}

.narrative-shell {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

.editorial {
  margin: 1.5rem 0 0;
  padding: 0;
  border: 0;
  max-width: 18ch;
}

.editorial p {
  margin: 0 0 0.15em;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.6vw, 3.35rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.18;
}

.editorial-peak {
  color: var(--gold-bright);
}

.aside-claim {
  margin: 4.5rem 0 0;
  max-width: 22rem;
  margin-left: auto;
  padding-left: 1.4rem;
  border-left: 1px solid var(--line-gold);
}

.aside-claim p {
  margin: 0;
  font-size: 1.15rem;
  color: var(--mute);
}

.aside-claim p + p {
  margin-top: 0.35rem;
  color: var(--cream);
}

.end-taxonomy {
  margin: 5.5rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 8vw, 6.8rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.end-taxonomy span {
  display: block;
}

.end-taxonomy span:last-child {
  margin-top: 0.12em;
  color: var(--arc);
  text-shadow: 0 0 40px rgba(61, 255, 106, 0.2);
}

/* Identity */

.identity {
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.identity-stage {
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.identity-figure {
  margin: 0;
}

.identity-logo {
  width: min(100%, 34rem);
  aspect-ratio: 1;
  object-fit: cover;
  animation: mark-breathe 7s var(--ease) infinite;
  box-shadow: 0 0 0 1px rgba(61, 255, 106, 0.18), 0 30px 80px rgba(0, 0, 0, 0.45);
}

.identity-sc {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 14vw, 8.2rem);
  line-height: 0.8;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold) 58%, #8a6a24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.identity-name {
  margin: 0.6rem 0 1.4rem;
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.identity-line {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-style: italic;
}

/* Chart */

.chart {
  background: var(--void);
  border-top: 1px solid var(--line);
}

.chart-head {
  display: grid;
  gap: 0.4rem;
}

.chart-frame {
  margin-top: 2.2rem;
  border: 1px solid var(--line);
  background: var(--panel);
}

.chart-chrome {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  border-bottom: 1px solid var(--line);
}

.chart-chrome span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chart-stage {
  position: relative;
  min-height: 22rem;
  background: #070907;
}

.chart-stage iframe {
  width: 100%;
  height: 28rem;
  border: 0;
  opacity: 0.22;
  filter: grayscale(0.4);
}

.chart-veil {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.7rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(7, 9, 7, 0.18), rgba(7, 9, 7, 0.78));
}

.chart-veil[hidden] {
  display: none;
}

.chart-veil-kicker {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.chart-veil-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chart-veil-copy {
  margin: 0 0 0.6rem;
  max-width: 32rem;
  color: var(--mute);
}

/* CTA */

.cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: radial-gradient(ellipse at 50% 120%, rgba(61, 255, 106, 0.12), transparent 50%), var(--ink);
}

.cta-glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  left: 50%;
  top: 110%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 165, 74, 0.16), transparent 70%);
  pointer-events: none;
}

.cta-shell {
  position: relative;
  text-align: center;
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

.cta-kicker {
  margin: 0 0 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}

.cta-title {
  margin: 0 0 2rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-actions {
  justify-content: center;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--void);
}

.footer-inner {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.8rem 0 2.4rem;
  display: grid;
  gap: 0.7rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand img {
  width: 2.1rem;
  height: 2.1rem;
  object-fit: cover;
}

.footer-brand p {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.footer-brand span {
  margin-left: 0.4rem;
  color: var(--gold-bright);
  font-family: var(--mono);
}

.footer-bio,
.footer-note {
  margin: 0;
  color: var(--mute);
  font-size: 0.88rem;
}

.footer-note {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes mark-breathe {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(61, 255, 106, 0));
    transform: translateY(0);
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(61, 255, 106, 0.28));
    transform: translateY(-2px);
  }
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }

  .hero-layout {
    align-content: center;
    min-height: calc(100svh - var(--header-h));
    padding: 4rem 0 5rem;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: auto;
  }

  .hero-copy,
  .hero-dock {
    max-width: 38rem;
  }

  .hero-dock {
    margin-top: 1.8rem;
  }

  .identity-stage {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3vw;
  }

  .chart-stage {
    min-height: 28rem;
  }

  .chart-stage iframe {
    height: 32rem;
  }

  .chart-veil {
    padding: 2.4rem;
  }

}

@media (min-width: 1100px) {
  .narrative-rail {
    display: block;
    position: absolute;
    left: 1.1rem;
    top: 6.5rem;
    font-family: var(--mono);
    font-size: 0.64rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(139, 145, 132, 0.55);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
}

@media (min-width: 1080px) {
  .hero-copy {
    max-width: 42rem;
  }

  .editorial {
    max-width: 16ch;
  }

  .aside-claim {
    margin-right: 8%;
  }
}

@media (max-width: 759px) {
  .hero {
    min-height: auto;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
    height: min(52vw, 16.5rem);
    min-height: 11rem;
  }

  .hero-visual::before,
  .hero-visual::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 3.2rem;
    z-index: 1;
    pointer-events: none;
  }

  .hero-visual::before {
    top: 0;
    background: linear-gradient(180deg, var(--void), transparent);
  }

  .hero-visual::after {
    bottom: 0;
    background: linear-gradient(0deg, var(--void), transparent);
  }

  .hero-veil {
    display: none;
  }

  .hero-layout {
    padding: 1.4rem 0 2.2rem;
    background: var(--void);
  }

  .hero-copy,
  .hero-dock {
    max-width: none;
  }

  .ca-row {
    flex-wrap: wrap;
  }

  .section-shell {
    padding: 4rem 0;
  }

  .cta-shell,
  .narrative-shell {
    padding-top: 4.4rem;
    padding-bottom: 4.4rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal],
  .shelf-below li,
  .spine {
    opacity: 1 !important;
    transform: none !important;
  }

  .pointer-glow {
    display: none;
  }
}
