/* ============================================================
   TRELYAN — shared stylesheet (v2)
   ============================================================ */

:root {
  --void: #0A0E1F;
  --void-soft: #0F1428;
  --void-deep: #06091A;
  --starlight: #F4F1EA;
  --starlight-dim: #C4BEB0;
  --ink-dim: #8A8474;
  --brass: #C8B98A;
  --brass-bright: #D9C690;
  --indigo: #3E4B7C;
  --rule: #1C1F2E;
  --rule-bright: #2A2E45;
  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --mono: 'JetBrains Mono', 'SF Mono', 'Menlo', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--void);
  color: var(--starlight);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Starfield */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(244, 241, 234, 0.45) 0.4px, transparent 1.2px),
    radial-gradient(circle at 76% 28%, rgba(244, 241, 234, 0.35) 0.3px, transparent 1px),
    radial-gradient(circle at 38% 64%, rgba(244, 241, 234, 0.40) 0.5px, transparent 1.4px),
    radial-gradient(circle at 88% 78%, rgba(244, 241, 234, 0.30) 0.3px, transparent 1px),
    radial-gradient(circle at 22% 86%, rgba(244, 241, 234, 0.35) 0.4px, transparent 1.1px),
    radial-gradient(circle at 64% 12%, rgba(244, 241, 234, 0.25) 0.2px, transparent 0.8px);
  background-size: 800px 800px;
  background-repeat: repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

main { position: relative; z-index: 1; }

/* ============================================================
   Nav header (shared across pages)
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: linear-gradient(to bottom, rgba(10, 14, 31, 0.95) 0%, rgba(10, 14, 31, 0.75) 70%, rgba(10, 14, 31, 0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--starlight);
}
.nav-brand svg { width: 28px; height: 28px; flex: 0 0 28px; }
.nav-brand .word {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-menu a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--starlight-dim);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-menu a:hover { color: var(--brass); }
.nav-menu a.active {
  color: var(--brass);
  border-bottom-color: var(--brass);
}
.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.nav-status .pulse {
  width: 6px; height: 6px;
  background: var(--brass);
  border-radius: 50%;
  animation: pulse 2.6s ease-in-out infinite;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule-bright);
  border-radius: 3px;
  color: var(--starlight-dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 6px 10px;
  cursor: pointer;
  text-transform: uppercase;
}

@keyframes pulse {
  0%, 100% { opacity: 0.45; box-shadow: 0 0 0 0 rgba(200, 185, 138, 0.55); }
  50%      { opacity: 1.0;  box-shadow: 0 0 0 6px rgba(200, 185, 138, 0); }
}

@media (max-width: 820px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 18px;
    padding: 20px 32px 28px;
    background: rgba(10, 14, 31, 0.98);
    border-bottom: 1px solid var(--rule);
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .nav-status { display: none; }
}

/* ============================================================
   Page-level layouts
   ============================================================ */
.page {
  padding-top: 96px;
}

/* Hero block (used on every page, customised per page) */
.page-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  text-align: center;
}
.page-hero .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.page-hero .eyebrow::before, .page-hero .eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brass);
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.page-hero h1 em {
  color: var(--brass);
  font-style: italic;
  font-weight: 300;
}
.page-hero .lede {
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--starlight-dim);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

/* General section */
section.field {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 32px;
  position: relative;
}
.section-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--brass);
}
.section-label .num {
  color: var(--ink-dim);
  margin-left: auto;
  font-weight: 300;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 28px;
  color: var(--starlight);
  letter-spacing: -0.005em;
}
h2 em {
  color: var(--brass);
  font-style: italic;
  font-weight: 300;
}
h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--starlight);
  margin-bottom: 12px;
}
p {
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--starlight-dim);
  line-height: 1.75;
  max-width: 70ch;
  margin-bottom: 1.1em;
}
p strong { color: var(--starlight); font-weight: 500; }
a.inline {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 185, 138, 0.4);
  transition: border-color 0.2s ease;
}
a.inline:hover { border-bottom-color: var(--brass); }

.divider {
  height: 1px;
  background: var(--rule);
  margin: 64px 0;
  width: 100%;
}

/* Two-column block */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 40px;
}
@media (max-width: 760px) {
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
}
.grid-2 .meta-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}

/* Card panel */
.panel {
  padding: 36px;
  background: var(--void-soft);
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.panel .meta-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}

/* CTA pill row */
.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  justify-content: center;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  border: 1px solid var(--rule-bright);
  border-radius: 3px;
  color: var(--starlight);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.cta:hover { border-color: var(--brass); color: var(--brass); }
.cta.primary { background: var(--brass); color: var(--void); border-color: var(--brass); }
.cta.primary:hover { background: var(--brass-bright); border-color: var(--brass-bright); color: var(--void); }
.cta .arrow { display: inline-block; transition: transform 0.2s ease; }
.cta:hover .arrow { transform: translateX(3px); }

/* ============================================================
   Hero "video" — animated SVG sequence on index
   ============================================================ */
.hero-video {
  position: relative;
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 24px;
}
.hero-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--void-deep);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(200, 185, 138, 0.08) inset;
}
.hero-video-frame svg.scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.scene-caption {
  position: absolute;
  bottom: 36px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brass);
  opacity: 0;
}
.video-controls {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.video-controls .dots { display: inline-flex; gap: 8px; }
.video-controls .dots i {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rule-bright);
  font-style: normal;
}
.video-controls .dots i.on { background: var(--brass); }

/* 60-second scene cycle: 5 scenes × 12s each */
@keyframes scene1Show { 0%,16%{opacity:1} 20%,100%{opacity:0} }
@keyframes scene2Show { 0%,20%{opacity:0} 24%,36%{opacity:1} 40%,100%{opacity:0} }
@keyframes scene3Show { 0%,40%{opacity:0} 44%,56%{opacity:1} 60%,100%{opacity:0} }
@keyframes scene4Show { 0%,60%{opacity:0} 64%,76%{opacity:1} 80%,100%{opacity:0} }
@keyframes scene5Show { 0%,80%{opacity:0} 84%,100%{opacity:1} }
.scene-1 { animation: scene1Show 60s linear infinite; }
.scene-2 { animation: scene2Show 60s linear infinite; }
.scene-3 { animation: scene3Show 60s linear infinite; }
.scene-4 { animation: scene4Show 60s linear infinite; }
.scene-5 { animation: scene5Show 60s linear infinite; }

/* ============================================================
   Status badges (homepage)
   ============================================================ */
.badges {
  margin: 64px auto 0;
  max-width: 1100px;
  padding: 0 24px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.badges span { display: inline-flex; align-items: center; gap: 8px; }
.badges span::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--brass);
  border-radius: 50%;
}

/* ============================================================
   Cell grid
   ============================================================ */
.cell-grid-wrap {
  margin-top: 40px;
  padding: 36px;
  background: var(--void-soft);
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.cell-grid-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.cell-grid-meta strong { color: var(--brass); font-weight: 500; }
.cell-grid {
  display: grid;
  grid-template-columns: repeat(32, 1fr);
  gap: 3px;
  aspect-ratio: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cell {
  background: rgba(200, 185, 138, 0.06);
  border-radius: 1px;
  transition: background 0.6s ease;
}
.cell.inscribed { background: var(--brass); }
.cell.presale { background: rgba(200, 185, 138, 0.18); }
.cell-grid-legend {
  margin-top: 24px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--starlight-dim);
}
.cell-grid-legend span { display: inline-flex; align-items: center; gap: 8px; }
.cell-grid-legend i {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 1px;
  font-style: normal;
}
.cell-grid-legend i.inscribed { background: var(--brass); }
.cell-grid-legend i.presale { background: rgba(200, 185, 138, 0.18); }
.cell-grid-legend i.public { background: rgba(200, 185, 138, 0.06); }

/* Tier table */
.tiers { margin-top: 36px; border-top: 1px solid var(--rule); }
.tier-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr 1fr;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  gap: 18px;
}
@media (max-width: 600px) {
  .tier-row { grid-template-columns: 40px 1fr 1fr; }
  .tier-row .price { display: none; }
}
.tier-row .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 2px;
}
.tier-row .name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--starlight);
  font-weight: 500;
}
.tier-row .desc {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--starlight-dim);
  font-style: italic;
}
.tier-row .price {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--brass);
  letter-spacing: 1px;
  text-align: right;
}

/* ============================================================
   State machine (Cells lifecycle)
   ============================================================ */
.states {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 40px;
}
@media (max-width: 760px) { .states { grid-template-columns: 1fr; } }
.state {
  padding: 32px;
  border: 1px solid var(--rule);
  background: var(--void-soft);
}
.state + .state { margin-left: -1px; }
@media (max-width: 760px) {
  .state + .state { margin-left: 0; margin-top: -1px; }
}
.state .num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--brass);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.state .label {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--starlight);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.state .arrow-out {
  display: block;
  margin-top: 18px;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
}

/* ============================================================
   Reading list
   ============================================================ */
.reading-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}
.reading-cat {
  margin-bottom: 48px;
}
.reading-cat-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.reading-cat-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.book {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.book .title {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--starlight);
  font-weight: 400;
}
.book .author {
  font-family: var(--serif);
  font-style: italic;
  color: var(--starlight-dim);
  font-size: 14px;
  margin-left: 8px;
}
.book .why {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-dim);
  font-style: italic;
}
.book .pin {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--brass);
  white-space: nowrap;
  text-transform: uppercase;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  margin-top: 120px;
  padding: 60px 32px 40px;
  border-top: 1px solid var(--rule);
  text-align: center;
}
footer .wordmark {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--starlight);
  margin-bottom: 8px;
}
footer .tagline-small {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--brass);
  margin-bottom: 36px;
}
footer .meta-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 36px;
}
footer .contact {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 1.5px;
  text-decoration: none;
}
footer .contact:hover { color: var(--brass-bright); }
footer .copyright {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 2px;
  color: var(--ink-dim);
}

/* Skip-link for keyboard a11y */
.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  padding: 8px 14px;
  background: var(--brass);
  color: var(--void);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  z-index: 1000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--starlight); }

/* Focus styles for keyboard navigation */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   v3 — Awwwards motion + editorial layer
   ============================================================ */

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Cursor halo (desktop only) */
.cursor-halo {
  position: fixed;
  top: 0; left: 0;
  width: 320px; height: 320px;
  margin: -160px 0 0 -160px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(200, 185, 138, 0.12) 0%, rgba(200, 185, 138, 0.04) 35%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  animation: haloFade 1.4s 0.5s ease forwards;
}
@keyframes haloFade { to { opacity: 1; } }
@media (hover: none), (prefers-reduced-motion: reduce) { .cursor-halo { display: none; } }

/* CTA magnetic transform smoothing */
.cta {
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  will-change: transform;
}

/* Editorial accent — display oversize numerals beside section labels */
.field-stat {
  position: relative;
  padding-left: 80px;
}
.field-stat::before {
  content: attr(data-stat);
  position: absolute;
  top: -8px; left: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: var(--brass);
  opacity: 0.5;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media (max-width: 760px) {
  .field-stat { padding-left: 56px; }
  .field-stat::before { font-size: 32px; }
}

/* Editorial pull-quote */
.pull-quote {
  font-family: var(--serif);
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.35;
  font-weight: 300;
  font-style: italic;
  color: var(--starlight);
  max-width: 760px;
  margin: 96px auto;
  padding: 0 32px;
  text-align: center;
  letter-spacing: -0.005em;
}
.pull-quote::before, .pull-quote::after {
  display: block;
  content: '';
  width: 48px;
  height: 1px;
  background: var(--brass);
  margin: 32px auto;
  opacity: 0.6;
}

/* Marquee ticker */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--void-deep);
  padding: 22px 0;
  margin: 96px 0 0;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
  gap: 0;
}
.marquee-item {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--starlight-dim);
  padding: 0 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.marquee-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--brass);
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 6px;
}
.marquee-item strong { color: var(--brass); font-weight: 500; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Crypto stack — three layer cards */
.stack {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 880px) { .stack { grid-template-columns: 1fr; } }
.stack-card {
  position: relative;
  padding: 40px 32px;
  background: var(--void-soft);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.stack-card:hover { border-color: var(--brass); transform: translateY(-4px); }
.stack-card::before {
  content: attr(data-layer);
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.stack-card .num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--brass);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 24px;
}
.stack-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--starlight);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.stack-card .scheme {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}
.stack-card p {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--starlight-dim);
  line-height: 1.7;
  margin: 0;
}
.stack-card .footnote {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* Closing video flourish */
.closing-video {
  margin: 120px auto 0;
  padding: 80px 24px 60px;
  text-align: center;
  border-top: 1px solid var(--rule);
}
.closing-video .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
}
.closing-video h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 300;
  font-style: italic;
  color: var(--starlight);
  max-width: 760px;
  margin: 0 auto 48px;
  line-height: 1.25;
}
.closing-video h2 em {
  color: var(--brass);
  font-style: italic;
}

/* Asymmetric two-column for the threads/thesis */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}
.split .lhs { position: sticky; top: 120px; }
.split .lhs .meta-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.split .lhs h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--starlight);
}
.split .rhs p { font-size: clamp(15px, 1.4vw, 17px); }

/* Pulled badge / chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--brass);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
  background: rgba(200, 185, 138, 0.08);
}
.chip::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--brass);
  border-radius: 50%;
  display: inline-block;
}
