:root {

  --paper:    #1a1c1f;
  --paper-2:  #202327;
  --paper-3:  #282b30;
  --paper-4:  #15171a;

  --ink:      #ebe4d3;
  --ink-2:    #d6cfbf;
  --ink-soft: #a8a48e;
  --ink-faint:#6c685d;

  --rule:        rgba(235, 228, 211, 0.09);
  --rule-strong: rgba(235, 228, 211, 0.20);

  --accent:      #9bcfa6;
  --accent-2:    #7eb88c;
  --accent-deep: #4f7d5a;
  --accent-pale: rgba(155, 207, 166, 0.10);

  --rose: #d28796;
  --gold: #d4b878;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans:  'Geist', system-ui, -apple-system, sans-serif;

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --max-w: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  overflow-x: clip;
}

html, body {
  margin: 0; padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--accent); color: var(--paper); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.paper-noise {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 100;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 0.96 0 0 0 0 0.86 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.progress-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 1px; z-index: 200;
}
.progress-bar__fill {
  height: 100%; width: 0;
  background: var(--accent);
  transition: width 80ms linear;
  box-shadow: 0 0 8px var(--accent);
}

.nav {
  position: sticky; top: 0; z-index: 80;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px var(--gutter);
  background: rgba(26, 28, 31, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, padding 0.3s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--rule);
  padding-top: 14px; padding-bottom: 14px;
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-weight: 500;
  font-size: 18px; letter-spacing: -0.01em;
}
.brand-mark { color: var(--accent); display: inline-flex; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--ink-soft);
  position: relative; padding: 6px 0;
  transition: color 0.25s;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: var(--ink);
  transition: width 0.4s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--ink); color: var(--paper);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  transition: background 0.3s, gap 0.3s;
}
.nav-cta:hover { background: var(--accent); gap: 12px; }

@media (max-width: 720px) { .nav-link { display: none; } }

.reveal-mask { display: block; overflow: hidden; padding: 0.05em 0; }
.reveal-mask__inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}
.is-revealed .reveal-mask__inner,
.reveal-mask.is-revealed .reveal-mask__inner { transform: translateY(0); }
.is-revealed .reveal-mask:nth-child(1) .reveal-mask__inner { transition-delay: 0.05s; }
.is-revealed .reveal-mask:nth-child(2) .reveal-mask__inner { transition-delay: 0.18s; }
.is-revealed .reveal-mask:nth-child(3) .reveal-mask__inner { transition-delay: 0.31s; }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-soft), transform 0.9s var(--ease);
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }

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

.numeral {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink-faint);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.numeral em { font-style: italic; color: var(--accent); }

.section-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 1; letter-spacing: -0.025em;
  margin: 0 0 60px;
}

.hero {
  position: relative;
  padding: clamp(80px, 14vh, 160px) var(--gutter) clamp(60px, 10vh, 120px);
  max-width: var(--max-w); margin: 0 auto;
  min-height: 92vh;
  display: grid; grid-template-rows: auto 1fr auto; gap: 28px;
}
.hero-meta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--ink-soft);
  opacity: 0; animation: fadeIn 0.9s var(--ease-soft) 0.2s forwards;
}
.meta-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  animation: livePulse 2.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(155, 207, 166, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(155, 207, 166, 0); }
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(52px, 9.5vw, 152px);
  line-height: 0.96; letter-spacing: -0.035em;
  margin: 0; max-width: 16ch;
  will-change: transform;
}
.hero-title em { font-style: italic; color: var(--accent); font-weight: 400; }

.hero-foot {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 5vw, 80px); align-items: end;
}
.hero-lede {
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.65;
  color: var(--ink-soft); max-width: 46ch; margin: 0;
  opacity: 0; animation: fadeIn 1s var(--ease-soft) 1.0s forwards;
  will-change: transform;
}
.hero-actions {
  display: flex; align-items: center; gap: 28px;
  justify-content: flex-end; flex-wrap: wrap;
  opacity: 0; animation: fadeIn 1s var(--ease-soft) 1.15s forwards;
}
@media (max-width: 760px) {
  .hero-foot { grid-template-columns: 1fr; align-items: start; }
  .hero-actions { justify-content: flex-start; }
}

.scroll-hint {
  position: absolute; left: var(--gutter); bottom: 24px;
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--ink-faint);
  display: flex; align-items: center; gap: 12px;
}
.scroll-hint__line {
  width: 60px; height: 1px; background: var(--ink-faint);
  position: relative; overflow: hidden;
}
.scroll-hint__line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--ink); transform: translateX(-100%);
  animation: scrollHint 2.4s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--ink); color: var(--paper);
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  position: relative; overflow: hidden;
  transition: padding 0.3s ease;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease); z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover { padding-right: 26px; }
.btn-primary--lg { padding: 18px 28px; font-size: 15px; }
.btn-primary--lg:hover { padding-right: 32px; }

.btn-text {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 2px; border-bottom: 1px solid var(--rule-strong);
  transition: color 0.3s, border-color 0.3s, gap 0.3s;
}
.btn-text:hover { color: var(--ink); border-color: var(--ink); gap: 12px; }
.btn-text__arrow { font-style: normal; transition: transform 0.4s var(--ease); }
.btn-text:hover .btn-text__arrow { transform: translateX(4px); }

.ticker {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
  background: var(--paper-4);
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--paper-4), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--paper-4), transparent); }

.ticker-rail { width: 100%; overflow: hidden; }
.ticker-track {
  display: inline-flex; gap: 56px; white-space: nowrap;
  animation: tickerScroll 80s linear infinite;
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--ink-soft);
  padding-left: 56px;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 12px; }
.ticker-item em { font-style: italic; }
.ticker-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex: 0 0 5px;
  box-shadow: 0 0 8px var(--accent);
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.manifesto {
  padding: clamp(120px, 22vh, 220px) var(--gutter);
  max-width: var(--max-w); margin: 0 auto;
}
.manifesto-text {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.25; letter-spacing: -0.018em;
  margin: 0; max-width: 22ch;
  color: var(--ink-faint);
}
.manifesto-text em { font-style: italic; color: var(--accent); }
.manifesto-text .word {
  display: inline-block; color: var(--ink-faint);
  transition: color 0.5s var(--ease-soft);
  white-space: pre;
}
.manifesto-text .word.is-lit { color: var(--ink); }
.manifesto-text .word em { color: inherit; }

.stats {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 70px var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-w); margin: 0 auto; gap: 40px;
  background: var(--paper);
}
.stat { display: grid; gap: 18px; }
.stat:not(:last-child) { border-right: 1px solid var(--rule); padding-right: 40px; }
.stat-num {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 6vw, 88px); line-height: 1;
  letter-spacing: -0.03em; color: var(--ink);
  display: flex; align-items: baseline; gap: 4px;
}
.stat-suffix { font-size: 0.55em; color: var(--accent); font-style: italic; }
.stat-label {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--ink-soft); line-height: 1.55;
}
@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr; gap: 36px; }
  .stat:not(:last-child) {
    border-right: none; border-bottom: 1px solid var(--rule);
    padding-right: 0; padding-bottom: 28px;
  }
}

.principles {
  position: relative;
  background: var(--paper);

}
.principles-pin {
  position: sticky; top: 0;
  height: 100vh; overflow: hidden;
  display: grid; grid-template-rows: auto 1fr auto;
  gap: 24px;
  padding-top: clamp(60px, 8vh, 100px);
  padding-bottom: 28px;
}

.principles-head {
  padding: 0 var(--gutter);
  max-width: var(--max-w); margin: 0 auto;
  width: 100%;
  display: grid; gap: 14px;
}
.principles-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 5.2vw, 72px); line-height: 1;
  letter-spacing: -0.025em; margin: 0;
}
.principles-title em { font-style: italic; color: var(--accent); font-weight: 400; }

.principles-progress {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--ink-faint);
  margin-top: 12px;
}
.principles-progress__current { color: var(--accent); }
.principles-progress__bar {
  flex: 0 0 280px; max-width: 38vw;
  height: 1px; background: var(--rule-strong);
  position: relative; overflow: hidden;
}
.principles-progress__bar > span {
  position: absolute; inset: 0;
  background: var(--accent);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 100ms linear;
}

.principles-stage {
  overflow: hidden; width: 100%;
  display: flex; align-items: center;
}
.principles-track {
  display: flex; align-items: stretch;
  gap: clamp(20px, 2.4vw, 40px);
  padding: 0 var(--gutter);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.card {
  flex: 0 0 clamp(320px, 64vw, 760px);
  height: clamp(440px, 64vh, 580px);
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(28px, 3.4vw, 44px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  position: relative; overflow: hidden;
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}
.card.is-active {
  background: var(--paper-3);
  border-color: var(--rule-strong);
  box-shadow:
    0 30px 60px -30px rgba(0, 0, 0, 0.45),
    0 0 0 1px var(--accent-pale) inset;
}
.card-text {
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 18px; min-width: 0;
}
.card-head {
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--ink-faint);
}
.card-num { color: var(--accent); }
.card-label { color: var(--ink-soft); }
.card-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.1; letter-spacing: -0.018em;
  margin: 14px 0 0; max-width: 16ch;
  color: var(--ink);
}
.card-body {
  font-size: 15px; line-height: 1.65;
  color: var(--ink-soft); margin: 0;
}

.card-visual {
  display: flex; align-items: center; justify-content: center;
  min-width: 0;
}

@media (max-width: 760px) {
  .card { grid-template-columns: 1fr; height: auto; min-height: 520px; }
  .card-visual { order: -1; }
}

.demo {
  width: 100%; max-width: 320px;
  background: var(--paper-4);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 20px;
  font-size: 13px;
  box-shadow: 0 12px 24px -16px rgba(0, 0, 0, 0.5);
}
.card.is-active .demo {
  border-color: var(--rule-strong);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.6);
}

.demo-listing { display: grid; gap: 14px; }
.demo-head {
  display: flex; justify-content: space-between;
  font-family: var(--serif); font-style: italic;
  font-size: 13px; color: var(--ink-faint);
  padding-bottom: 12px; border-bottom: 1px solid var(--rule);
}
.demo-tag { color: var(--accent); }
.demo-row { display: grid; gap: 6px; }
.demo-row__label {
  font-family: var(--serif); font-style: italic;
  font-size: 13px; color: var(--ink-faint);
}
.demo-row__items { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px; color: var(--ink);
}
.chip-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink);
}
.chip-dot--rose { background: var(--rose); box-shadow: 0 0 8px rgba(210, 135, 150, 0.5); }
.chip-dot--gold { background: var(--gold); box-shadow: 0 0 8px rgba(212, 184, 120, 0.5); }
.demo-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--rule);
}
.demo-author {
  font-family: var(--serif); font-style: italic;
  font-size: 12px; color: var(--ink-faint);
}
.demo-cta {
  background: var(--ink); color: var(--paper);
  border: none; border-radius: 999px;
  padding: 7px 14px; font-size: 11px; font-weight: 500;
  cursor: default;
}

.demo-rep { text-align: center; padding: 24px 18px; }
.rep-ring { display: flex; justify-content: center; margin-bottom: 14px; }
.rep-ring__progress { transition: stroke-dashoffset 1.4s var(--ease); }
.card.is-active .rep-ring__progress { stroke-dashoffset: 60; }
.card:not(.is-active) .rep-ring__progress { stroke-dashoffset: 326.7; }
.rep-rank {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--ink); margin-bottom: 6px;
}
.rep-stars { color: var(--accent); font-size: 14px; letter-spacing: 4px; margin-bottom: 12px; }
.rep-next {
  font-family: var(--serif); font-style: italic;
  font-size: 13px; color: var(--ink-faint);
}
.rep-next em { color: var(--accent); font-style: italic; }

.demo-chat { display: grid; gap: 8px; }
.chat-bubble {
  padding: 10px 14px; border-radius: 14px;
  font-size: 13px; line-height: 1.4;
  max-width: 88%;
  opacity: 0; transform: translateY(6px);
  animation: chatPop 0.5s var(--ease) forwards;
}
.card:not(.is-active) .chat-bubble { animation: none; opacity: 1; transform: none; }
.chat-bubble--them {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  align-self: start;
  border-bottom-left-radius: 4px;
  animation-delay: 0.1s;
}
.chat-bubble--me {
  background: var(--accent-deep); color: var(--ink);
  align-self: end;
  border-bottom-right-radius: 4px;
  animation-delay: 0.4s;
}
.chat-bubble:nth-child(3) { animation-delay: 0.7s; }
.chat-name {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-size: 12px;
  color: var(--ink-faint); margin-bottom: 4px;
}
.chat-meta {
  font-family: var(--serif); font-style: italic;
  font-size: 12px; color: var(--ink-faint);
  margin-top: 6px;
  display: inline-flex; align-items: center; gap: 6px;
  align-self: end;
}
.chat-meta__lock { color: var(--accent); display: inline-flex; }
@keyframes chatPop {
  to { opacity: 1; transform: translateY(0); }
}

.demo-verify { display: grid; gap: 14px; }
.verify-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 12px; border-bottom: 1px solid var(--rule);
}
.verify-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 16px;
}
.verify-name { font-family: var(--serif); font-weight: 500; font-size: 15px; color: var(--ink); }
.verify-sub {
  font-family: var(--serif); font-style: italic;
  font-size: 12px; color: var(--ink-faint);
}
.verify-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.verify-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink);
}
.check {
  display: inline-block; width: 16px; height: 16px;
  border-radius: 50%; background: var(--accent);
  position: relative; flex: 0 0 16px;
  transform: scale(0);
  animation: checkPop 0.4s var(--ease) forwards;
}
.card.is-active .verify-list li:nth-child(1) .check { animation-delay: 0.1s; }
.card.is-active .verify-list li:nth-child(2) .check { animation-delay: 0.3s; }
.card.is-active .verify-list li:nth-child(3) .check { animation-delay: 0.5s; }
.card.is-active .verify-list li:nth-child(4) .check { animation-delay: 0.7s; }
.card:not(.is-active) .check { animation: none; transform: scale(1); }
.check::after {
  content: ''; position: absolute;
  left: 4px; top: 7px; width: 4px; height: 7px;
  border-right: 1.5px solid var(--paper);
  border-bottom: 1.5px solid var(--paper);
  transform: rotate(45deg);
}
@keyframes checkPop { to { transform: scale(1); } }
.verify-stamp {
  align-self: end;
  display: inline-block;
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 14px; border-radius: 4px;
  transform: rotate(-4deg);
  text-align: center;
}

.card--end {
  flex: 0 0 clamp(280px, 36vw, 420px);
  background: var(--paper-4); color: var(--ink);
  border-color: var(--rule-strong);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; gap: 22px;
}
.card-end-mark { color: var(--accent); }
.card-end-text {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; max-width: 16ch;
}
.card-end-cta { color: var(--ink-soft); border-color: var(--rule-strong); }
.card-end-cta:hover { color: var(--accent); border-color: var(--accent); }

.principles-foot {
  padding: 0 var(--gutter); max-width: var(--max-w); margin: 0 auto;
  width: 100%;
  display: flex; justify-content: flex-end;
}
.principles-foot__hint {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--ink-faint);
}

@media (max-width: 760px) {
  .principles { height: auto !important; }
  .principles-pin {
    position: static; height: auto; padding-bottom: 60px;
  }
  .principles-stage {
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .principles-track { transform: none !important; padding: 0 var(--gutter); }
  .card { scroll-snap-align: center; flex: 0 0 86vw; }
  .principles-progress { display: none; }
  .principles-foot { display: none; }
}

.how {
  padding: clamp(100px, 16vh, 180px) var(--gutter);
  max-width: var(--max-w); margin: 0 auto;
}
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.how-step {
  padding: 28px 0;
  border-top: 1px solid var(--rule-strong);
  position: relative;
}
.how-step::after {
  content: ''; position: absolute;
  left: 0; top: -1px; height: 1px;
  width: 0; background: var(--accent);
  transition: width 0.7s var(--ease) 0.2s;
}
.how-step.is-revealed::after { width: 40%; }
.how-step__num {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--accent);
  margin-bottom: 32px;
}
.how-step h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; letter-spacing: -0.01em;
  margin: 0 0 10px; color: var(--ink);
}
.how-step p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
@media (max-width: 900px) { .how-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 540px) { .how-grid { grid-template-columns: 1fr; } }

.closing {
  padding: clamp(140px, 22vh, 220px) var(--gutter);
  background: var(--paper-4);
  color: var(--ink);
  position: relative; overflow: hidden;
  border-top: 1px solid var(--rule);
}
.closing::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(800px circle at 80% 20%, rgba(155, 207, 166, 0.10), transparent 60%),
    radial-gradient(600px circle at 10% 90%, rgba(155, 207, 166, 0.06), transparent 60%);
  pointer-events: none;
}
.closing-inner {
  position: relative;
  max-width: var(--max-w); margin: 0 auto;
  text-align: center;
}
.closing-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 7vw, 104px); line-height: 1;
  letter-spacing: -0.03em; margin: 0 0 32px;
}
.closing-title em { font-style: italic; color: var(--accent); }
.closing-text {
  max-width: 44ch; margin: 0 auto 40px;
  font-size: 16px; line-height: 1.6;
  color: var(--ink-soft);
}
.closing-link {
  margin-top: 24px;
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--ink-faint);
}

.footer {
  padding: 36px var(--gutter) 28px;
  background: var(--paper);
  border-top: 1px solid var(--rule);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--serif); font-size: 16px;
}
.footer-brand .brand-mark { color: var(--accent); }
.footer-meta {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--ink-faint);
  display: inline-flex; align-items: center; gap: 12px;
}
.footer-meta a {
  color: var(--ink-soft); border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.footer-meta a:hover { color: var(--accent); border-color: var(--accent); }
.footer-sep { opacity: 0.5; font-style: normal; }
.footer-fineprint {
  margin-top: 14px;
  max-width: var(--max-w); margin-inline: auto;
  font-family: var(--serif); font-style: italic;
  font-size: 13px; color: var(--ink-faint);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal-mask__inner, [data-reveal] { transform: none !important; opacity: 1 !important; }
  .principles { height: auto !important; }
  .principles-pin { position: static; height: auto; }
  .principles-track { transform: none !important; }
  .ticker-track { animation: none; }
}
