
@font-face {
  font-family: 'Engravers Gothic BT';
  src: url('fonts/EngraversGothicBT.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --dk-bg: #04070F;
  --dk-bg-2: #0A1226;
  --dk-panel: #0C1630;
  --dk-rule: #1C2A52;
  --dk-rule-2: #324070;
  --dk-ink: #E8EEF9;
  --dk-ink-2: #B6C2DC;
  --dk-ink-3: #7E93B8;
  --dk-accent: #4F7CC0;
  --dk-glow: #8FB0E0;
  --f-sans: "Geist", ui-sans-serif, -apple-system, "Helvetica Neue", sans-serif;
  --f-mono: "Geist Mono", ui-monospace, Menlo, monospace;
  --f-serif: "Instrument Serif", "Times New Roman", serif;
  --pad-x: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --lit-rest:   inset 0 1px 0 rgba(232, 238, 249, 0.04);
  --lit-edge:   inset 0 1px 0 rgba(232, 238, 249, 0.11);
  --lit-edge-2: inset 1px 0 0 rgba(232, 238, 249, 0.055);
  --cast:       2px 2px 6px -2px rgba(0, 0, 0, 0.5), 7px 20px 46px -14px rgba(0, 0, 0, 0.66);
  --cast-sm:    1px 1px 3px -1px rgba(0, 0, 0, 0.45), 4px 12px 26px -10px rgba(0, 0, 0, 0.6);

  --rule-hair: 1px solid var(--dk-rule);
  --rule-lit:  1px solid var(--dk-rule-2);
  --rule-spec: rgba(232, 238, 249, 0.055);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  background: var(--dk-bg);
  color: var(--dk-ink);
  line-height: 1.55;
  overflow-x: hidden;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 40; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.028;
}
@media (min-resolution: 2dppx) { body::after { background-size: 80px 80px; } }
@media (prefers-contrast: more) { body::after { display: none; } }

a { color: var(--dk-glow); text-decoration: none; }
a:hover { color: #fff; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }
img { max-width: 100%; }
.wrap { max-width: 1280px; margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.mono {
  font-family: var(--f-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--dk-ink-3);
}
.glow-text { color: var(--dk-glow); }

.dk-header {
  position: fixed; top: var(--switcher-h, 0px); left: 0; right: 0; z-index: 50;
  transition: background 300ms var(--ease), border-color 300ms var(--ease), backdrop-filter 300ms;
  border-bottom: 1px solid transparent;
}
.dk-header.scrolled {
  background: rgba(4, 7, 15, 0.78);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--dk-rule);
}
.dk-nav {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  height: 68px; gap: 24px;
}
.dk-nav .brand { display: inline-flex; align-items: center; min-height: 44px; }
.dk-nav .brand img { display: block; height: 26px; width: auto; }
.dk-links { display: flex; gap: clamp(16px, 2.4vw, 34px); justify-content: center; }
.dk-links a {
  font-family: var(--f-sans); font-size: 14px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--dk-ink-2); padding: 6px 2px;
}
.dk-links a:hover { color: #fff; }
.dk-links a.active { color: #fff; }
.dk-right { display: flex; align-items: center; gap: 12px; justify-self: end; }
.dk-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-sans); font-size: 14px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--dk-ink); border: 1px solid var(--dk-rule-2); border-radius: 7px;
  min-height: 40px; padding: 0 16px; white-space: nowrap;
  transition: border-color 200ms, background 200ms;
}
.dk-cta:hover { border-color: var(--dk-glow); background: rgba(143, 176, 224, 0.07); color: #fff; }
.dk-burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 8px; }
.dk-burger svg { width: 22px; height: 22px; stroke: var(--dk-ink); stroke-width: 1.8; fill: none; }
.dk-mobile {
  display: none; background: rgba(4, 7, 15, 0.96);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--dk-rule);
}
@supports not (backdrop-filter: blur(1px)) {
  .dk-mobile { background: var(--dk-bg); }
}
@media (prefers-reduced-transparency: reduce) {
  .dk-mobile { background: var(--dk-bg); -webkit-backdrop-filter: none; backdrop-filter: none; }
}
.dk-mobile a {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 48px; padding: 0 var(--pad-x); border-top: 1px solid var(--dk-rule);
  font-size: 15px; color: var(--dk-ink);
}
@media (max-width: 880px) {
  .dk-links { display: none; }
  .dk-burger { display: inline-flex; }
  .dk-nav { grid-template-columns: auto 1fr auto; }
  .dk-mobile.open { display: block; }
}

#scene-track { position: relative; height: 340vh; }
.scene-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.scene-sticky canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.stage {
  position: absolute; inset: 0; z-index: 5;
  display: grid; align-content: center; justify-items: start;
  padding: 0 var(--pad-x);
  pointer-events: none; opacity: 0; visibility: hidden;
}
.stage.live .stage-actions { pointer-events: auto; }
.stage-inner { max-width: 1280px; margin: 0 auto; width: 100%; }
.stage h1, .stage .stage-h {
  font-weight: 600; letter-spacing: -0.045em; line-height: 0.98;
  font-size: clamp(38px, 5.4vw, 84px);
  max-width: 15ch;
  text-shadow: 0 2px 40px rgba(4, 7, 15, 0.8);
}
.stage .stage-h em, .stage h1 em { font-style: normal; color: var(--dk-glow); }
.stage .stage-sub {
  margin-top: 24px; max-width: 52ch; font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65; color: var(--dk-ink-2);
  text-shadow: 0 1px 24px rgba(4, 7, 15, 0.9);
}
.stage-kpi { display: flex; gap: clamp(24px, 4vw, 56px); margin-top: 30px; flex-wrap: wrap; }
.stage-kpi .n { font-size: clamp(26px, 2.6vw, 40px); font-weight: 600; letter-spacing: -0.03em; display: block; }
.stage-kpi .l { font-family: var(--f-sans); font-size: 12.5px; font-weight: 500; letter-spacing: -0.01em; color: var(--dk-ink-3); }
.stage-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.dk-btn {
  display: inline-flex; align-items: center; gap: 10px; min-height: 46px; padding: 0 20px;
  font-family: var(--f-sans); font-size: 14px; font-weight: 500; letter-spacing: -0.01em;
  border-radius: 7px; transition: all 200ms var(--ease);
}
.dk-btn--primary { background: var(--dk-ink); color: #0A1226; }
.dk-btn--primary:hover { background: #fff; color: #0A1226; }
.dk-btn--ghost { border: 1px solid var(--dk-rule-2); color: var(--dk-ink); }
.dk-btn--ghost:hover { border-color: var(--dk-glow); color: #fff; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 6;
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--f-sans); font-size: 12px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--dk-ink-3); min-height: 44px; min-width: 44px;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 26px;
  background: linear-gradient(var(--dk-glow), transparent);
  animation: cueDrop 1.8s var(--ease) infinite;
}
@keyframes cueDrop { 0% { transform: scaleY(0); transform-origin: top; } 60% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }
.rail {
  position: absolute; right: clamp(14px, 2vw, 30px); top: 50%; transform: translateY(-50%);
  height: 180px; width: 2px; background: var(--dk-rule); z-index: 6; border-radius: 2px;
}
.rail-fill {
  position: absolute; inset: 0; background: var(--dk-glow); border-radius: 2px;
  transform-origin: top; transform: scaleY(0);
}

.dk-section { padding: clamp(72px, 9vw, 140px) 0; position: relative; }
.dk-section-head { display: grid; gap: 12px; margin-bottom: clamp(36px, 5vw, 64px); }
.dk-section-head .sec-note { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dk-ink-3); margin: 0; }
.dk-section-head .title {
  font-size: clamp(28px, 3.4vw, 52px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.02;
}
.stat-band { border-top: var(--rule-hair); border-bottom: var(--rule-hair); background: rgba(12, 22, 48, 0.35); }

.stat-band, .contact-strip, .dk-footer { box-shadow: inset 0 1px 0 var(--rule-spec); }
.video-band::after, .div-band::after { box-shadow: inset 0 1px 0 var(--rule-spec); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-cell { padding: clamp(28px, 3.4vw, 48px) clamp(16px, 2vw, 32px); border-right: 1px solid var(--dk-rule); display: grid; gap: 6px; }
.stat-cell:last-child { border-right: 0; }
.stat-cell .n { font-size: clamp(30px, 3.4vw, 54px); font-weight: 600; letter-spacing: -0.035em; line-height: 1; }
.stat-cell .n em { font-style: normal; color: var(--dk-glow); }
.stat-cell .l { font-family: var(--f-sans); font-size: 12.5px; font-weight: 500; letter-spacing: -0.01em; color: var(--dk-ink-3); }
@media (max-width: 760px) {
  .stat-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: 0; border-bottom: 1px solid var(--dk-rule); }
  .stat-cell:last-child { border-bottom: 0; }
}

.dk-index { border-top: var(--rule-hair); }
.dk-row {
  display: grid; grid-template-columns: clamp(80px, 9vw, 130px) 1fr auto;
  gap: clamp(16px, 3vw, 40px); align-items: center;
  padding: clamp(24px, 3.2vw, 42px) 0; border-bottom: var(--rule-hair);
  color: var(--dk-ink);
  transition: background 220ms var(--ease);
}
.dk-row:hover { background: rgba(12, 22, 48, 0.45); }
.dk-num {
  font-family: var(--f-mono); font-size: clamp(28px, 4vw, 52px); font-weight: 500;
  color: var(--dk-rule-2); transition: color 220ms var(--ease), text-shadow 220ms;
}
.dk-row:hover .dk-num { color: var(--dk-glow); text-shadow: 0 0 24px rgba(143, 176, 224, 0.5); }
.dk-row-body { display: grid; gap: 7px; min-width: 0; }
.dk-row-label { font-family: var(--f-sans); font-size: 13px; font-weight: 600; letter-spacing: -0.01em; color: var(--dk-accent); }
.dk-row-title { font-size: clamp(20px, 2.2vw, 28px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; }
.dk-row-sub { font-size: 14.5px; line-height: 1.6; color: var(--dk-ink-3); max-width: 62ch; }
.dk-arrow { font-family: var(--f-mono); font-size: 20px; color: var(--dk-ink-3); transition: all 220ms var(--ease); }
.dk-row:hover .dk-arrow { color: var(--dk-glow); transform: translateX(5px); }
@media (max-width: 700px) {
  .dk-row { grid-template-columns: 1fr auto; }
  .dk-num { grid-column: 1 / -1; font-size: 26px; }
}

.dk-footer { border-top: 1px solid var(--dk-rule); padding: clamp(48px, 6vw, 80px) 0 32px; background: rgba(4, 7, 15, 0.8); }
.dk-footer-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.dk-footer-grid img { height: 24px; width: auto; opacity: 0.85; }
.dk-footer-links { display: flex; gap: clamp(16px, 2.6vw, 32px); flex-wrap: wrap; }
.dk-footer-links a { font-family: var(--f-sans); font-size: 13.5px; font-weight: 500; letter-spacing: -0.01em; color: var(--dk-ink-3); padding: 12px 0; }
.dk-footer-links a:hover { color: #fff; }
.dk-footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--dk-rule);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--f-sans); font-size: 12.5px; letter-spacing: -0.01em; color: var(--dk-ink-3);
}

.dir-badge {
  position: fixed; left: 16px; bottom: 16px; z-index: 90;
  display: flex; align-items: center; gap: 14px;
  background: rgba(12, 22, 48, 0.92); border: 1px solid var(--dk-rule-2);
  backdrop-filter: blur(10px);
  color: var(--dk-ink-2);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 9px 13px; border-radius: 8px;
}
.dir-badge a { color: var(--dk-glow); }
.dir-badge a:hover { color: #fff; }

.dk-reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.dk-reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .dk-reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue::after { animation: none; }
  html { scroll-behavior: auto; }
  #scene-track { height: 200vh; }
}

.page-hero {
  position: relative; overflow: hidden;
  min-height: 0;
  display: grid; align-content: end;
  padding: 108px 0 clamp(36px, 5vh, 60px);
  border-bottom: var(--rule-lit);
}
.page-hero canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.page-hero .wrap { position: relative; z-index: 2; width: 100%; }
.ph-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: saturate(0.55) contrast(1.05);
}
.ph-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,7,15,0.52) 0%, rgba(4,7,15,0.8) 58%, rgba(4,7,15,0.93) 100%);
}
.video-band { position: relative; height: clamp(320px, 44vw, 560px); border-top: 1px solid var(--dk-rule); border-bottom: 1px solid var(--dk-rule); overflow: hidden; }
.video-band .vb-cover { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.video-band video { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; object-fit: cover; }
.video-band::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(4,7,15,0.2), transparent, rgba(4,7,15,0.4)); pointer-events: none; }
.ph-meta {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-bottom: 18px; margin-bottom: clamp(20px, 3.4vh, 36px);
  border-bottom: 1px solid var(--dk-rule);
}
.ph-title {
  font-size: clamp(40px, 5.6vw, 88px); font-weight: 500; letter-spacing: -0.04em; line-height: 0.98;
  max-width: 16ch;
}
.ph-title em { font-family: var(--f-serif); font-style: italic; letter-spacing: -0.01em; color: var(--dk-glow); }
.ph-sub { margin-top: 26px; max-width: 56ch; font-size: clamp(15px, 1.3vw, 18px); line-height: 1.65; color: var(--dk-ink-2); }
.dk-panel {
  background: linear-gradient(180deg, rgba(12, 22, 48, 0.55), rgba(10, 18, 38, 0.25));
  border-top: var(--rule-lit);
  border-bottom: var(--rule-lit);
  box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.35) inset, inset 0 1px 0 var(--rule-spec);
}
.logo-chip {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(18, 32, 64, 0.55), rgba(8, 14, 30, 0.7));
  border: var(--rule-hair);
  border-radius: 8px;
  padding: 14px 18px; min-height: 64px;
  box-shadow: var(--lit-rest);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.logo-chip img { max-height: 34px; max-width: 82%; width: auto; object-fit: contain; opacity: 0.88; transition: opacity 220ms var(--ease); }
a.logo-chip:hover { transform: translateY(-3px); border-color: var(--dk-glow); box-shadow: var(--lit-edge), var(--lit-edge-2), var(--cast-sm); }
a.logo-chip:hover img { opacity: 1; }
.contact-strip { border-top: 1px solid var(--dk-rule); background: linear-gradient(180deg, rgba(12,22,48,0.5), rgba(4,7,15,0)); }
.contact-strip-inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.contact-strip h2 { font-size: clamp(24px, 2.8vw, 40px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.08; }
.contact-strip h2 em { font-style: normal; color: var(--dk-glow); }

body.modal-open { overflow: hidden; }
.lp-overlay { position: fixed; inset: 0; z-index: 120; background: rgba(2, 4, 10, 0.78); backdrop-filter: blur(10px); display: grid; place-items: center; padding: clamp(14px, 3vw, 40px); animation: lpFade 240ms var(--ease) both; }
@keyframes lpFade { from { opacity: 0; } to { opacity: 1; } }
.lp-modal { position: relative; width: min(440px, 100%); padding: clamp(28px, 3.6vw, 40px); background: linear-gradient(180deg, #0C1630, #070C1C); border: 1px solid var(--dk-rule-2); border-radius: 14px; box-shadow: 0 24px 60px rgba(0,0,0,0.5); animation: lpRise 320ms var(--ease) both; }
@keyframes lpRise { from { opacity: 0; transform: translateY(18px) scale(0.985); } to { opacity: 1; transform: none; } }
.lp-tag { font-family: var(--f-sans); font-size: 12.5px; font-weight: 500; letter-spacing: -0.01em; color: var(--dk-glow); }
.lp-modal h2 { margin-top: 10px; font-size: clamp(21px, 2.4vw, 26px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.15; }
.lp-modal p { margin-top: 14px; font-size: 14.5px; line-height: 1.65; color: var(--dk-ink-2); }
.lp-mail { display: inline-flex; margin-top: 18px; font-size: 15px; color: var(--dk-ink); border-bottom: 1px solid var(--dk-rule-2); padding-bottom: 6px; min-height: 44px; align-items: center; transition: color 200ms, border-color 200ms; }
.lp-mail:hover { color: #fff; border-color: var(--dk-glow); }
.lp-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--dk-rule-2); color: var(--dk-ink); font-size: 15px; background: rgba(4,7,15,0.6); }
.lp-close:hover { border-color: var(--dk-glow); color: #fff; }


@view-transition { navigation: auto; }
@keyframes wcp-vt-out { from { opacity: 1; } to { opacity: 0; } }
@keyframes wcp-vt-in  { from { opacity: 0; } to { opacity: 1; } }
::view-transition-old(root) { animation: wcp-vt-out 110ms ease-out both; }
::view-transition-new(root) { animation: wcp-vt-in 170ms ease-in 60ms both; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}
.dk-nav { view-transition-name: wcp-vt-header; }

.dk-row { transition: background-color 800ms cubic-bezier(0.22, 0.61, 0.24, 1), opacity 800ms cubic-bezier(0.22, 0.61, 0.24, 1), filter 800ms cubic-bezier(0.22, 0.61, 0.24, 1); }
.dk-row:hover { background-color: rgba(79, 124, 192, 0.08); }
.dk-num, .dk-arrow { transition: color 800ms cubic-bezier(0.22, 0.61, 0.24, 1), text-shadow 800ms cubic-bezier(0.22, 0.61, 0.24, 1), transform 800ms cubic-bezier(0.22, 0.61, 0.24, 1); }
.dk-index:hover .dk-row:not(:hover) { opacity: 0.55; filter: saturate(0.6); }

.stat-cell { transition: background-color 800ms cubic-bezier(0.22, 0.61, 0.24, 1), opacity 800ms cubic-bezier(0.22, 0.61, 0.24, 1), filter 800ms cubic-bezier(0.22, 0.61, 0.24, 1); }
.stat-cell:hover { background-color: rgba(79, 124, 192, 0.08); }
.stat-cell .n, .stat-cell .l { transition: color 800ms cubic-bezier(0.22, 0.61, 0.24, 1); }
.stat-cell:hover .n { color: #fff; }
.stat-cell:hover .l { color: var(--dk-ink-2); }
.stat-grid:hover .stat-cell:not(:hover) { opacity: 0.55; filter: saturate(0.6); }

a.logo-chip { transition: transform 800ms cubic-bezier(0.22, 0.61, 0.24, 1), border-color 800ms cubic-bezier(0.22, 0.61, 0.24, 1),
  box-shadow 800ms cubic-bezier(0.22, 0.61, 0.24, 1), opacity 800ms cubic-bezier(0.22, 0.61, 0.24, 1), filter 800ms cubic-bezier(0.22, 0.61, 0.24, 1); }
a.logo-chip:hover { transform: translateY(-4px); border-color: var(--dk-glow);
  box-shadow: var(--lit-edge), var(--lit-edge-2), var(--cast); }
.wall-grid:not(.const-wall):hover a.logo-chip:not(:hover) { opacity: 0.55; filter: saturate(0.6); }

.sec-chip, .slayer, .vert-cell, .prop, .pf-panel, .aud-cell, .dest,
.oasis-stats > div {
  box-shadow: var(--lit-rest);
}
.lp-modal { box-shadow: var(--lit-edge), var(--lit-edge-2), var(--cast); }

@media (max-width: 560px) {
  .stage-inner .cta-quad { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .dk-row, .dk-num, .dk-arrow, .stat-cell, .stat-cell .n, .stat-cell .l, a.logo-chip { transition: none; }
  .dk-index:hover .dk-row:not(:hover), .stat-grid:hover .stat-cell:not(:hover),
  .wall-grid:not(.const-wall):hover a.logo-chip:not(:hover) { opacity: 1; filter: none; }
  a.logo-chip:hover { transform: none; }
}

.dk-footer-bottom a { padding: 14px 8px; margin: -14px -8px; }

.site-disclosure { border-top: var(--rule-hair); padding: clamp(26px, 3vw, 40px) 0 clamp(30px, 3.4vw, 48px); }
.site-disclosure p { margin: 0; font-family: var(--f-mono); font-size: 11px; line-height: 1.7;
  letter-spacing: 0.05em; color: var(--dk-ink-3); }
