:root {
  --ink: #171713;
  --ink-soft: #29271f;
  --paper: #e4d7c5;
  --paper-light: #f3eadc;
  --tobacco: #8f4d2d;
  --tobacco-dark: #5d2f1d;
  --tan: #b9845d;
  --plaid-blue: #263238;
  --cream: #f9f3e8;
  --line: rgba(23, 23, 19, 0.22);
  --shadow: 0 26px 80px rgba(32, 22, 14, 0.25);
  --radius: 22px;
  --content: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(228, 215, 197, 0.94), rgba(228, 215, 197, 0.94)),
    repeating-linear-gradient(0deg, transparent 0 26px, rgba(38, 50, 56, 0.12) 27px 29px),
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(143, 77, 45, 0.12) 27px 29px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(255,255,255,.08) 5px 6px),
    repeating-linear-gradient(90deg, transparent 0 5px, rgba(0,0,0,.025) 6px 7px);
  z-index: 50;
  mix-blend-mode: multiply;
}

::selection { background: var(--tobacco); color: var(--cream); }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { max-width: 100%; display: block; }
code { font-family: "SFMono-Regular", Consolas, monospace; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .09;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.48'/%3E%3C/svg%3E");
}

.top-ticker {
  height: 31px;
  overflow: hidden;
  color: var(--paper-light);
  background: var(--tobacco-dark);
  border-bottom: 1px solid rgba(255,255,255,.16);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}
.top-ticker__track {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
  animation: marquee 24s linear infinite;
}
.top-ticker__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 22px;
  min-width: max-content;
  padding-right: 22px;
  white-space: nowrap;
}
.top-ticker i { font-style: normal; opacity: .48; }
@keyframes marquee { to { transform: translateX(-50%); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 12px max(24px, calc((100vw - var(--content)) / 2));
  background: rgba(228, 215, 197, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; flex: 0 1 auto; min-width: 0; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; }
.brand__pipe { display: grid; place-items: center; width: 42px; height: 42px; color: var(--tobacco); }
.brand__pipe svg { width: 36px; height: 36px; }
.brand__text { overflow: hidden; text-overflow: ellipsis; letter-spacing: .045em; white-space: nowrap; }
.brand__ticker { padding: 5px 8px; color: var(--paper-light); background: var(--ink); border-radius: 4px; font-family: Georgia, serif; font-style: italic; }
.site-nav { display: flex; flex: 0 0 auto; align-items: center; gap: 28px; }
.site-nav a { text-decoration: none; font-size: 13px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--tobacco); transition: right .25s ease; }
.site-nav a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 17px; color: var(--cream); background: var(--ink); border: 1px solid var(--ink); box-shadow: 4px 4px 0 var(--tobacco); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--ink); background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); }

.section-pad { width: min(var(--content), calc(100% - 48px)); margin: 0 auto; padding: 116px 0; }
.hero { min-height: calc(100vh - 109px); display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 74px; padding-top: 68px; padding-bottom: 82px; }
.eyebrow { display: flex; width: fit-content; border: 1px solid var(--ink); box-shadow: 4px 4px 0 rgba(23,23,19,.15); }
.eyebrow span { padding: 8px 12px; font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.eyebrow span + span { color: var(--cream); background: var(--ink); }
.hero h1, .section-heading h2, .community h2 {
  margin: 26px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7vw, 104px);
  line-height: .84;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.hero h1 em { position: relative; color: var(--tobacco); font-style: italic; }
.hero h1 em::after { content: ""; position: absolute; left: 4%; right: -3%; bottom: 2px; height: 9px; border: solid var(--tobacco); border-width: 0 0 3px; border-radius: 50%; transform: rotate(-2deg); }
.hero__lede { max-width: 650px; margin: 0; font-family: Georgia, serif; font-size: 19px; line-height: 1.66; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 54px; padding: 0 20px; border: 1px solid var(--ink); text-decoration: none; cursor: pointer; font-size: 13px; font-weight: 900; letter-spacing: .075em; text-transform: uppercase; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(23,23,19,.2); }
.button--primary { color: var(--cream); background: var(--tobacco-dark); border-color: var(--tobacco-dark); }
.button--ghost { color: var(--ink); background: rgba(249,243,232,.45); }
.contract-strip { display: flex; align-items: center; gap: 12px; max-width: 650px; margin-top: 22px; padding: 12px; border: 1px dashed rgba(23,23,19,.55); background: rgba(249,243,232,.52); overflow: hidden; }
.contract-strip__label { flex: 0 0 auto; padding: 5px 7px; color: var(--cream); background: var(--tobacco); font-size: 10px; font-weight: 900; }
.contract-strip code { min-width: 0; flex: 1; overflow: hidden; text-overflow: ellipsis; font-size: 12px; white-space: nowrap; }
.live-dot { display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.live-dot i, .refresh-pill i { width: 8px; height: 8px; border-radius: 50%; background: #aa3d2b; box-shadow: 0 0 0 4px rgba(170,61,43,.14); }
.live-dot.is-live i, .refresh-pill i { background: #4e7c54; box-shadow: 0 0 0 4px rgba(78,124,84,.15); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { transform: scale(.65); opacity: .65; } }

.hero__visual { position: relative; }
.case-card { position: relative; padding: 15px; background: var(--ink); box-shadow: var(--shadow), 15px 15px 0 var(--tobacco); transform: rotate(1.5deg); }
.case-card::before { content: ""; position: absolute; inset: 9px; border: 1px solid rgba(255,255,255,.25); pointer-events: none; z-index: 2; }
.case-card picture { display: block; overflow: hidden; }
.case-card img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: sepia(.05) contrast(1.04); transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.case-card:hover img { transform: scale(1.025); }
.case-card__tape { position: absolute; top: 22px; right: -38px; z-index: 3; padding: 8px 42px; color: var(--ink); background: #d8c195; font-size: 10px; font-weight: 1000; letter-spacing: .18em; transform: rotate(39deg); box-shadow: 0 2px 6px rgba(0,0,0,.3); }
.case-card__meta { display: grid; grid-template-columns: 1.4fr .8fr 1fr; color: var(--paper); }
.case-card__meta div { padding: 14px 12px 3px; border-right: 1px solid rgba(255,255,255,.16); }
.case-card__meta div:last-child { border-right: 0; }
.case-card__meta small { display: block; margin-bottom: 4px; opacity: .55; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.case-card__meta strong { font-family: Georgia, serif; font-size: 13px; }
.case-card__meta .accent { color: #d49b74; }
.pipe-stamp { position: absolute; left: -50px; bottom: 58px; padding: 16px 14px; color: var(--tobacco-dark); border: 3px double var(--tobacco-dark); border-radius: 50%; background: rgba(228,215,197,.82); font-family: Georgia, serif; font-size: 11px; font-weight: 900; letter-spacing: .1em; transform: rotate(-13deg); }

.stats-band { display: grid; grid-template-columns: repeat(5, 1fr); color: var(--cream); background: var(--ink); border-top: 7px solid var(--tobacco); border-bottom: 1px solid rgba(255,255,255,.12); }
.stat { min-width: 0; padding: 30px max(20px, calc((100vw - var(--content)) / 10)); border-right: 1px solid rgba(255,255,255,.13); }
.stat:last-child { border-right: 0; }
.stat small { display: block; margin-bottom: 9px; color: #c79b7e; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.stat strong { display: block; overflow: hidden; text-overflow: ellipsis; font-family: Georgia, serif; font-size: clamp(22px, 2.2vw, 34px); white-space: nowrap; }
.stat span { display: block; margin-top: 6px; opacity: .55; font-size: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stat .positive { color: #8fbb94; }
.stat .negative { color: #d67e70; }

.section-heading { max-width: 780px; }
.kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 1000; letter-spacing: .18em; color: var(--tobacco-dark); }
.kicker::before { content: ""; width: 32px; height: 2px; background: currentColor; }
.section-heading h2 { margin-top: 20px; margin-bottom: 16px; font-size: clamp(48px, 6.2vw, 86px); }
.section-heading p { max-width: 670px; font-family: Georgia, serif; font-size: 17px; line-height: 1.65; }
.section-heading code { padding: 2px 5px; background: rgba(23,23,19,.08); font-size: .86em; }
.about__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.story-card { position: relative; min-height: 335px; padding: 34px; border: 1px solid var(--ink); background: rgba(249,243,232,.67); overflow: hidden; }
.story-card::after { content: ""; position: absolute; width: 190px; height: 190px; right: -95px; bottom: -95px; border: 1px solid rgba(23,23,19,.18); border-radius: 50%; box-shadow: 0 0 0 20px rgba(23,23,19,.025), 0 0 0 42px rgba(23,23,19,.02); }
.story-card__number { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid currentColor; border-radius: 50%; font-family: Georgia, serif; font-size: 20px; font-style: italic; }
.story-card h3 { margin: 52px 0 17px; font-family: Georgia, serif; font-size: 30px; }
.story-card p { margin: 0; font-family: Georgia, serif; font-size: 16px; line-height: 1.65; }
.story-card--dark { color: var(--paper-light); background: var(--tobacco-dark); border-color: var(--tobacco-dark); }
.story-card--dark::after { border-color: rgba(255,255,255,.19); box-shadow: 0 0 0 20px rgba(255,255,255,.03), 0 0 0 42px rgba(255,255,255,.02); }
.mini-pipe { position: absolute; right: 30px; bottom: 28px; font-family: Georgia, serif; font-size: 44px; transform: rotate(-8deg); opacity: .8; }

.tokenomics { padding-top: 70px; }
.tokenomics__layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; margin-top: 54px; }
.allocation-card, .live-ledger { border: 1px solid var(--ink); background: rgba(249,243,232,.76); box-shadow: 10px 10px 0 rgba(23,23,19,.11); }
.allocation-card { display: grid; grid-template-columns: minmax(210px, .85fr) 1.15fr; align-items: center; gap: 30px; padding: 38px; }
.donut { position: relative; width: min(100%, 260px); aspect-ratio: 1; border-radius: 50%; background: conic-gradient(var(--tobacco) 0 100%); box-shadow: inset 0 0 0 1px var(--ink), 0 14px 35px rgba(23,23,19,.16); }
.donut::before { content: ""; position: absolute; inset: 25%; border-radius: 50%; background: var(--paper-light); box-shadow: 0 0 0 1px var(--ink); }
.donut__center { position: absolute; inset: 25%; z-index: 1; display: grid; place-content: center; text-align: center; }
.donut__center strong { font-family: Georgia, serif; font-size: 38px; }
.donut__center span { font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.allocation-list { display: grid; gap: 16px; }
.allocation-item { display: grid; grid-template-columns: 14px 1fr auto; gap: 10px; align-items: start; padding-bottom: 14px; border-bottom: 1px dashed rgba(23,23,19,.25); }
.allocation-item:last-child { border-bottom: 0; }
.allocation-item i { width: 12px; height: 12px; margin-top: 4px; background: var(--swatch); border: 1px solid rgba(23,23,19,.5); }
.allocation-item strong { font-family: Georgia, serif; font-size: 16px; }
.allocation-item small { grid-column: 2 / -1; color: rgba(23,23,19,.6); line-height: 1.45; }
.allocation-item b { font-family: Georgia, serif; font-size: 20px; }
.live-ledger { overflow: hidden; }
.ledger__header { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 29px 32px; color: var(--paper-light); background: var(--ink); }
.ledger__header .kicker { color: #c89472; }
.ledger__header h3 { margin: 8px 0 0; font-family: Georgia, serif; font-size: 27px; }
.refresh-pill { display: inline-flex; align-items: center; gap: 9px; padding: 9px 11px; border: 1px solid rgba(255,255,255,.2); font-size: 11px; }
.ledger__rows { padding: 4px 32px 0; }
.ledger__rows > div { display: grid; grid-template-columns: 1fr minmax(170px, auto); gap: 22px; align-items: center; min-height: 54px; border-bottom: 1px dashed rgba(23,23,19,.22); }
.ledger__rows span { color: rgba(23,23,19,.68); font-size: 13px; }
.ledger__rows strong { text-align: right; font-family: Georgia, serif; font-size: 16px; }
.text-button { margin: 20px 32px 28px; padding: 0; color: var(--tobacco-dark); border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; font-weight: 900; letter-spacing: .05em; }
.text-button:disabled { opacity: .45; cursor: wait; }

.roadmap { position: relative; width: 100%; max-width: none; padding-left: max(24px, calc((100vw - var(--content)) / 2)); padding-right: max(24px, calc((100vw - var(--content)) / 2)); color: var(--paper-light); background:
  linear-gradient(rgba(23,23,19,.95), rgba(23,23,19,.95)),
  repeating-linear-gradient(0deg, transparent 0 34px, rgba(255,255,255,.12) 35px 37px),
  repeating-linear-gradient(90deg, transparent 0 34px, rgba(143,77,45,.45) 35px 37px);
  overflow: hidden;
}
.roadmap::before { content: "◖━━"; position: absolute; right: 6%; top: 35px; color: rgba(210,154,116,.18); font-family: Georgia, serif; font-size: 190px; transform: rotate(-11deg); }
.section-heading--light .kicker { color: #d29a74; }
.roadmap__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 60px; }
.roadmap__line { position: absolute; left: 8%; right: 8%; bottom: 32%; height: 1px; background: rgba(255,255,255,.14); }
.roadmap-card { position: relative; min-height: 360px; padding: 30px 27px; border: 1px solid rgba(255,255,255,.3); background: rgba(228,215,197,.055); backdrop-filter: blur(3px); transition: transform .2s ease, background .2s ease; }
.roadmap-card:hover { transform: translateY(-5px); background: rgba(143,77,45,.17); }
.roadmap-card > span { color: #d29a74; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.roadmap-card h3 { margin: 56px 0 17px; font-family: Georgia, serif; font-size: 28px; }
.roadmap-card p { margin: 0; color: rgba(249,243,232,.72); font-family: Georgia, serif; line-height: 1.65; }
.roadmap-card b { position: absolute; right: 20px; bottom: 12px; color: rgba(255,255,255,.06); font-family: Georgia, serif; font-size: 110px; line-height: 1; }

.chart-shell { margin-top: 50px; overflow: hidden; border: 1px solid var(--ink); background: var(--ink); box-shadow: 14px 14px 0 var(--tobacco); }
.chart-shell__bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; min-height: 54px; padding: 0 18px; color: var(--paper-light); border-bottom: 1px solid rgba(255,255,255,.18); }
.chart-shell__bar > div { display: flex; gap: 7px; }
.window-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--tobacco); }
.window-dot:nth-child(2) { background: #b68a55; }
.window-dot:nth-child(3) { background: #6d866b; }
.chart-shell__bar strong { font-size: 11px; letter-spacing: .12em; }
.chart-shell__bar a { justify-self: end; color: #d7a27e; font-size: 11px; font-weight: 900; text-decoration: none; }
.chart-shell__body { position: relative; min-height: 640px; background: #111; }
#dex-chart { display: none; width: 100%; height: 640px; border: 0; background: #111; }
#dex-chart.is-active { display: block; }
.chart-placeholder { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; padding: 40px; color: var(--paper-light); text-align: center; background:
  linear-gradient(rgba(23,23,19,.95), rgba(23,23,19,.95)),
  repeating-linear-gradient(0deg, transparent 0 31px, rgba(255,255,255,.08) 32px 33px),
  repeating-linear-gradient(90deg, transparent 0 31px, rgba(143,77,45,.35) 32px 33px);
}
.chart-placeholder.is-hidden { display: none; }
.chart-placeholder__pipe { color: #c78f69; font-family: Georgia, serif; font-size: 84px; transform: rotate(-7deg); }
.chart-placeholder h3 { margin: 8px 0 12px; font-family: Georgia, serif; font-size: 32px; }
.chart-placeholder p { max-width: 660px; margin: 0; color: rgba(249,243,232,.7); font-family: Georgia, serif; font-size: 16px; line-height: 1.7; }
.chart-placeholder code { color: #e6b38f; }

.community { padding-top: 86px; }
.community__panel { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; padding: 58px; border: 1px solid var(--ink); background:
  linear-gradient(rgba(249,243,232,.84), rgba(249,243,232,.84)),
  repeating-linear-gradient(0deg, transparent 0 35px, rgba(38,50,56,.25) 36px 38px),
  repeating-linear-gradient(90deg, transparent 0 35px, rgba(143,77,45,.25) 36px 38px);
  box-shadow: 14px 14px 0 rgba(23,23,19,.13);
  overflow: hidden;
}
.community__panel::after { content: "?"; position: absolute; right: 36%; bottom: -90px; color: rgba(143,77,45,.08); font-family: Georgia, serif; font-size: 330px; line-height: 1; transform: rotate(8deg); }
.community h2 { margin-top: 17px; font-size: clamp(44px, 5vw, 72px); }
.community p { max-width: 650px; margin: 0; font-family: Georgia, serif; font-size: 17px; line-height: 1.6; }
.community__actions { position: relative; z-index: 1; display: grid; min-width: 240px; gap: 10px; }
.social-link.is-disabled { opacity: .45; pointer-events: none; }

.site-footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 36px; padding: 34px max(24px, calc((100vw - var(--content)) / 2)); color: rgba(249,243,232,.65); background: var(--ink); border-top: 7px solid var(--tobacco); font-size: 11px; line-height: 1.5; }
.brand--footer { color: var(--paper-light); }
.brand--footer .brand__pipe { width: auto; height: auto; font-family: Georgia, serif; font-size: 25px; }
.site-footer p { margin: 0; }
.site-footer p:last-child { white-space: nowrap; }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 100; padding: 12px 18px; color: var(--cream); background: var(--ink); border: 1px solid rgba(255,255,255,.2); box-shadow: 5px 5px 0 var(--tobacco); font-size: 12px; font-weight: 900; transform: translate(-50%, 30px); opacity: 0; pointer-events: none; transition: .25s ease; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr 1fr; gap: 38px; }
  .hero h1 { font-size: clamp(52px, 7vw, 78px); }
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 11px; }
  .stats-band { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3) { border-right: 0; }
  .stat:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,.13); }
  .tokenomics__layout { grid-template-columns: 1fr; }
  .roadmap__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 940px) {
  .site-header { min-height: 68px; padding-inline: 18px; }
  .brand__text { font-size: 13px; }
  .brand__pipe { width: 34px; height: 34px; }
  .brand__pipe svg { width: 30px; }
  .menu-toggle { display: block; flex: 0 0 auto; }
  .site-nav { position: absolute; left: 14px; right: 14px; top: calc(100% + 8px); display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 12px; background: var(--paper-light); border: 1px solid var(--ink); box-shadow: 8px 8px 0 rgba(23,23,19,.2); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 12px; }
  .nav-cta { margin-top: 7px; text-align: center; }
}

@media (max-width: 780px) {
  .top-ticker { height: 28px; }
  .site-header { min-height: 68px; padding-inline: 18px; }
  .brand__text { font-size: 13px; }
  .brand__pipe { width: 34px; height: 34px; }
  .brand__pipe svg { width: 30px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; left: 14px; right: 14px; top: calc(100% + 8px); display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 12px; background: var(--paper-light); border: 1px solid var(--ink); box-shadow: 8px 8px 0 rgba(23,23,19,.2); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 12px; }
  .nav-cta { margin-top: 7px; text-align: center; }
  .section-pad { width: min(100% - 28px, var(--content)); padding: 78px 0; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 46px; gap: 48px; }
  .hero h1 { font-size: clamp(50px, 15vw, 78px); }
  .hero__lede { font-size: 17px; }
  .hero__actions .button { width: 100%; }
  .contract-strip { align-items: flex-start; flex-wrap: wrap; }
  .contract-strip code { order: 3; flex-basis: 100%; }
  .case-card { box-shadow: var(--shadow), 8px 8px 0 var(--tobacco); }
  .pipe-stamp { left: -5px; bottom: 30px; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat { padding: 24px 20px; border-top: 1px solid rgba(255,255,255,.13); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.13); }
  .stat:nth-child(even) { border-right: 0; }
  .stat:last-child { grid-column: 1 / -1; }
  .about__grid { grid-template-columns: 1fr; }
  .story-card { min-height: 290px; }
  .allocation-card { grid-template-columns: 1fr; justify-items: center; }
  .allocation-list { width: 100%; }
  .ledger__rows > div { grid-template-columns: 1fr; gap: 5px; padding: 12px 0; }
  .ledger__rows strong { text-align: left; }
  .roadmap { padding-left: 14px; padding-right: 14px; }
  .roadmap__grid { grid-template-columns: 1fr; }
  .roadmap-card { min-height: 290px; }
  .chart-shell__bar { grid-template-columns: 1fr auto; }
  .chart-shell__bar strong { display: none; }
  .chart-shell__body, #dex-chart { height: 560px; min-height: 560px; }
  .community__panel { grid-template-columns: 1fr; padding: 35px 25px; }
  .community__actions { min-width: 0; }
  .site-footer { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
