:root {
  --ink: #080807;
  --ink-soft: #0e0e0c;
  --panel: #12120f;
  --gold: #e7b844;
  --gold-light: #ffd873;
  --gold-dark: #8e6817;
  --cream: #f3efe4;
  --muted: #a9a396;
  --line: rgba(231, 184, 68, 0.22);
  --line-soft: rgba(243, 239, 228, 0.1);
  --display: "Unbounded", Impact, sans-serif;
  --sans: "Inter", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(231, 184, 68, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 184, 68, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.035;
  pointer-events: none;
  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='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: -2;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(231, 184, 68, 0.08), transparent 67%);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.section-shell {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.broadcast-bar {
  min-height: 36px;
  padding: 8px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--gold);
  color: var(--ink);
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.14em;
}

.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); animation: pulse 1.4s infinite; }
.broadcast-rule { width: 28px; height: 1px; background: rgba(8, 8, 7, 0.38); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  height: 78px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 7, 0.9);
  backdrop-filter: blur(18px);
}

.wordmark { display: inline-flex; align-items: center; gap: 10px; width: max-content; font: 800 21px/1 var(--display); letter-spacing: -0.06em; }
.wordmark-crown { color: var(--gold); font-size: 28px; transform: translateY(-2px); }
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a { color: var(--muted); font: 600 11px/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; transition: color .2s; }
.desktop-nav a:hover { color: var(--cream); }
.nav-cta { justify-self: end; padding: 12px 15px; border: 1px solid var(--line); color: var(--gold-light); font: 700 10px/1 var(--mono); letter-spacing: .07em; }

.hero {
  min-height: calc(100vh - 114px);
  padding: 84px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.eyebrow, .section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  color: var(--gold);
  font: 700 10px/1.4 var(--mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span, .section-label span { color: var(--cream); opacity: .38; }

.hero h1, .doctrine h2, .icons-heading h2, .crown-copy h2, .coin-heading h2, .share-copy h2, .community h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: .88;
  text-transform: uppercase;
}

.hero h1 { font-size: clamp(80px, 10.7vw, 164px); }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-statement { margin: 24px 0 0; font: 700 clamp(16px, 2vw, 25px)/1.2 var(--display); letter-spacing: -0.04em; text-transform: uppercase; }
.hero-body { max-width: 620px; margin: 28px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }

.hero-actions, .coin-actions, .community-actions, .share-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  min-height: 51px;
  padding: 0 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  font: 800 11px/1 var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}

.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.button-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.button-ghost { background: transparent; color: var(--cream); border-color: var(--line-soft); }
.button-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.config-link.is-pending { opacity: .56; cursor: default; }
.config-link.is-pending:hover { transform: none; }

.contract-block {
  max-width: 620px;
  margin-top: 44px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, .02);
}

.contract-block > div { min-width: 0; }
.micro-label { display: block; margin-bottom: 7px; color: var(--muted); font: 700 9px/1 var(--mono); letter-spacing: .14em; }
.contract-block code { display: block; overflow: hidden; color: var(--cream); font: 500 11px/1.3 var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.contract-block button { border: 0; background: none; color: var(--gold); cursor: pointer; font: 700 10px/1 var(--mono); letter-spacing: .1em; }
.contract-block button:disabled { color: var(--muted); cursor: default; opacity: .5; }

.hero-throne { position: relative; min-height: 560px; display: grid; place-items: center; }
.hero-throne::before { content: ""; position: absolute; inset: 8%; background: radial-gradient(circle, rgba(231,184,68,.17), transparent 64%); filter: blur(18px); }
.orbit { position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.orbit-one { width: 450px; height: 450px; animation: slowSpin 28s linear infinite; }
.orbit-one::before { content: ""; position: absolute; top: 8%; left: 8%; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 22px var(--gold); }
.orbit-two { width: 350px; height: 350px; border-style: dashed; opacity: .55; animation: slowSpin 19s linear infinite reverse; }
.throne-seal {
  position: relative;
  z-index: 2;
  width: 300px;
  aspect-ratio: 1;
  padding: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 34%, #1f1b10, #0a0a08 68%);
  box-shadow: inset 0 0 0 8px var(--ink), inset 0 0 0 9px var(--line), 0 30px 100px rgba(0,0,0,.55);
}
.seal-kicker { color: var(--muted); font: 600 9px/1 var(--mono); letter-spacing: .14em; }
.seal-crown { margin: 18px 0 12px; color: var(--gold); font-size: 70px; line-height: .7; text-shadow: 0 0 38px rgba(231,184,68,.32); }
.throne-seal strong { font: 800 23px/1.04 var(--display); letter-spacing: -.05em; }
.seal-status { margin-top: 22px; color: var(--muted); font: 600 9px/1 var(--mono); letter-spacing: .08em; }
.seal-status i { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: var(--gold-dark); }
.throne-caption { position: absolute; z-index: 3; bottom: 10px; max-width: 370px; margin: 0; color: var(--muted); text-align: center; font-size: 12px; line-height: 1.6; }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principles article { min-height: 150px; padding: 32px clamp(24px, 4vw, 68px); border-right: 1px solid var(--line); }
.principles article:last-child { border: 0; }
.principles article > span { color: var(--gold); font: 500 10px/1 var(--mono); }
.principles strong { display: block; margin: 17px 0 8px; font: 700 13px/1 var(--display); letter-spacing: -.03em; }
.principles p { margin: 0; color: var(--muted); font-size: 12px; }

.market-section { padding-top: 150px; padding-bottom: 155px; }
.market-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(50px, 9vw, 130px); align-items: end; }
.market-heading h2 { margin: 0; font: 900 clamp(48px, 6.8vw, 96px)/.9 var(--display); letter-spacing: -.075em; text-transform: uppercase; }
.market-heading p { max-width: 520px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.market-heading span { display: block; margin-top: 24px; color: var(--gold); font: 700 9px/1.4 var(--mono); letter-spacing: .1em; }
.chart-shell { margin-top: 66px; border: 1px solid var(--line); background: #090908; box-shadow: 20px 20px 0 rgba(231,184,68,.035); }
.chart-bar, .chart-footer { min-height: 54px; padding: 0 20px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); font: 600 9px/1 var(--mono); letter-spacing: .09em; color: var(--muted); }
.chart-bar > div:first-child { display: flex; align-items: center; gap: 10px; color: var(--cream); }
.dex-brand { justify-self: end; display: flex; align-items: center; gap: 8px; color: var(--cream); }
.dex-brand img { width: 23px; height: 23px; display: block; border-radius: 5px; }
.chart-mark { color: var(--gold); font-size: 21px; }
.market-status { padding: 8px 11px; display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); color: var(--gold-dark); }
.market-status i, .pending-message > span i { width: 6px; height: 6px; display: inline-block; border-radius: 50%; background: var(--gold-dark); }
.market-status.is-live { color: var(--gold-light); }
.market-status.is-live i { background: var(--gold); box-shadow: 0 0 12px var(--gold); animation: pulse 1.4s infinite; }
.chart-stage { position: relative; min-height: 620px; overflow: hidden; }
.dex-chart-frame { width: 100%; height: 620px; display: block; border: 0; background: #090908; }
.dex-chart-frame[hidden], .chart-pending[hidden] { display: none; }
.chart-pending { position: absolute; inset: 0; display: grid; place-items: center; background: radial-gradient(circle at 50% 48%, rgba(231,184,68,.065), transparent 34%), #090908; }
.chart-grid { position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px); background-size: 76px 62px; mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent); }
.chart-grid::after { content: ""; position: absolute; left: 0; right: 0; top: 58%; border-top: 1px dashed rgba(231,184,68,.28); }
.chart-watermark { position: absolute; color: rgba(231,184,68,.05); font-size: clamp(220px, 30vw, 440px); line-height: 1; }
.pending-message { position: relative; z-index: 2; max-width: 650px; padding: 40px; text-align: center; }
.pending-message > span { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font: 700 9px/1 var(--mono); letter-spacing: .11em; }
.pending-message h3 { margin: 25px 0 18px; font: 900 clamp(38px, 5.8vw, 76px)/.92 var(--display); letter-spacing: -.07em; }
.pending-message p { max-width: 470px; margin: 0 auto; color: var(--muted); font-size: 13px; line-height: 1.65; }
.chart-footer { min-height: 46px; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-bottom: 0; font-size: 8px; }
.chart-footer span:last-child { justify-self: end; color: var(--gold-dark); }

.doctrine { padding-top: 150px; padding-bottom: 155px; }
.doctrine-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 10vw, 150px); }
.doctrine h2, .icons-heading h2, .crown-copy h2, .coin-heading h2, .share-copy h2, .community h2 { font-size: clamp(48px, 6.8vw, 96px); }
.doctrine-copy { padding-top: 6px; }
.doctrine-copy p { margin: 0 0 25px; color: var(--muted); font-size: 15px; line-height: 1.78; }
.doctrine-copy .lead { color: var(--cream); font-size: 25px; font-weight: 600; line-height: 1.35; letter-spacing: -.025em; }
.doctrine-signoff { margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line); }
.doctrine-signoff span { display: block; margin-bottom: 10px; color: var(--muted); font: 600 9px/1 var(--mono); letter-spacing: .12em; }
.doctrine-signoff strong { color: var(--gold); font: 800 21px/1 var(--display); }

.icons-section { padding-top: 20px; padding-bottom: 155px; }
.icons-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(50px, 9vw, 130px); align-items: end; }
.icons-heading > div { padding-bottom: 7px; }
.icons-heading p { max-width: 500px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.icons-heading small { display: block; margin-top: 24px; color: var(--gold-dark); font: 600 8px/1.5 var(--mono); letter-spacing: .08em; }
.icons-grid { margin-top: 66px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.icon-card { min-width: 0; border-right: 1px solid var(--line); background: var(--panel); }
.icon-card:last-child { border-right: 0; }
.icon-portrait { position: relative; overflow: hidden; aspect-ratio: .635; background: #090909; }
.icon-portrait::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -80px 90px rgba(0,0,0,.32); pointer-events: none; }
.icon-portrait img { width: 300%; height: 100%; display: block; object-fit: cover; max-width: none; }
.icon-card:nth-child(1) .icon-portrait img { transform: translateX(0); }
.icon-card:nth-child(2) .icon-portrait img { transform: translateX(-33.333%); }
.icon-card:nth-child(3) .icon-portrait img { transform: translateX(-66.666%); }
.icon-caption { min-height: 168px; padding: 25px 24px; }
.icon-caption span { color: var(--gold); font: 600 8px/1.2 var(--mono); letter-spacing: .09em; }
.icon-caption strong { display: block; margin-top: 15px; font: 800 clamp(17px, 2vw, 27px)/1 var(--display); letter-spacing: -.055em; }
.icon-caption p { margin: 13px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }

.crown-section { padding: 140px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-soft); }
.crown-grid { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: clamp(60px, 10vw, 150px); }
.crown-copy > p { max-width: 560px; margin: 30px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.crown-copy .fine-print { font-size: 12px; }
.crown-status-card { padding: 30px; border: 1px solid var(--line); background: var(--ink); box-shadow: 18px 18px 0 rgba(231,184,68,.05); }
.status-card-top { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font: 700 9px/1 var(--mono); letter-spacing: .1em; }
.pending-pill { padding: 7px 9px; border: 1px solid var(--line); color: var(--gold); }
.empty-crown { margin: 46px 0 20px; color: var(--gold); font-size: 92px; line-height: 1; text-align: center; opacity: .78; }
.crown-status-card h3 { margin: 0; text-align: center; font: 800 22px/1.2 var(--display); }
.crown-status-card > p { max-width: 390px; margin: 14px auto 36px; color: var(--muted); text-align: center; font-size: 13px; line-height: 1.65; }
.status-lines { border-top: 1px solid var(--line-soft); }
.status-lines div { padding: 15px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line-soft); }
.status-lines span { color: var(--muted); font-size: 12px; }
.status-lines strong { font: 700 11px/1 var(--mono); text-transform: uppercase; }

.coin { padding-top: 150px; padding-bottom: 150px; }
.coin-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.coin-heading p { max-width: 430px; margin: 0 0 6px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.facts-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.facts-grid article { min-height: 210px; padding: 28px 24px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); }
.facts-grid article:last-child { border: 0; }
.facts-grid span { color: var(--muted); font: 600 9px/1 var(--mono); letter-spacing: .13em; }
.facts-grid strong { color: var(--gold-light); font: 800 clamp(17px, 1.9vw, 25px)/1.05 var(--display); letter-spacing: -.05em; }
.facts-grid small { color: var(--muted); font-size: 11px; line-height: 1.5; }
.fact-value { display: flex; align-items: center; gap: 13px; }
.fact-network img { width: 34px; height: 30px; display: block; object-fit: contain; flex: 0 0 auto; }
.text-link { align-self: center; padding: 10px 2px; border-bottom: 1px solid var(--line); color: var(--gold-light); font: 700 10px/1 var(--mono); letter-spacing: .08em; }

.share-section { padding: 140px 0; background: var(--gold); color: var(--ink); }
.share-grid { display: grid; grid-template-columns: 1fr .88fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.share-copy .section-label { color: var(--ink); }
.share-copy .section-label span { color: var(--ink); }
.share-card { padding: 36px; border: 1px solid rgba(8,8,7,.28); background: rgba(8,8,7,.95); color: var(--cream); box-shadow: 20px 20px 0 rgba(8,8,7,.13); }
.post-label { color: var(--gold); font: 600 9px/1 var(--mono); letter-spacing: .13em; }
.share-card blockquote { margin: 24px 0 32px; font-size: 21px; font-weight: 600; line-height: 1.48; letter-spacing: -.02em; }
.share-card .button-ghost { background: var(--ink); }
.share-note { margin: 18px 0 0; color: var(--muted); font-size: 10px; }

.community { padding-top: 150px; padding-bottom: 150px; }
.community-card { position: relative; overflow: hidden; min-height: 560px; padding: clamp(45px, 8vw, 96px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; border: 1px solid var(--line); background: radial-gradient(circle at 84% 50%, rgba(231,184,68,.13), transparent 28%), var(--panel); }
.community-card::after { content: "EGO"; position: absolute; right: -32px; bottom: -80px; color: rgba(231,184,68,.035); font: 900 230px/1 var(--display); letter-spacing: -.12em; pointer-events: none; }
.community-crown { position: absolute; top: 42px; right: 58px; color: var(--gold); font-size: 120px; opacity: .85; }
.community-card h2 { position: relative; z-index: 1; }
.community-card > p:not(.eyebrow) { position: relative; z-index: 1; max-width: 560px; margin: 30px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.community-actions { position: relative; z-index: 1; }

.site-footer { min-height: 150px; padding: 38px 32px; display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 30px; align-items: center; border-top: 1px solid var(--line); }
.site-footer p { max-width: 620px; margin: 0 auto; color: var(--muted); text-align: center; font-size: 10px; line-height: 1.6; }
.site-footer > span { justify-self: end; color: var(--muted); font: 500 10px/1 var(--mono); }

.toast { position: fixed; z-index: 30; left: 50%; bottom: 24px; padding: 13px 18px; transform: translate(-50%, 30px); border: 1px solid var(--line); background: var(--cream); color: var(--ink); font: 700 10px/1 var(--mono); letter-spacing: .08em; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes pulse { 50% { opacity: .25; } }
@keyframes slowSpin { to { transform: rotate(360deg); } }

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-throne { min-height: 500px; }
  .market-heading, .doctrine-grid, .crown-grid, .share-grid { grid-template-columns: 1fr; }
  .icons-heading { grid-template-columns: 1fr; }
  .doctrine-copy { max-width: 680px; }
  .coin-heading { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .facts-grid article:nth-child(2) { border-right: 0; }
  .facts-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .share-card { max-width: 650px; }
}

@media (max-width: 680px) {
  .section-shell { width: min(100% - 34px, 1180px); }
  .broadcast-bar { padding: 8px 14px; gap: 8px; font-size: 8px; }
  .broadcast-rule { width: 12px; }
  .site-header { height: 68px; padding: 0 17px; }
  .nav-cta { padding: 10px; font-size: 8px; }
  .hero { padding: 66px 0 60px; gap: 25px; }
  .hero h1 { font-size: clamp(66px, 23vw, 102px); }
  .hero-body { font-size: 14px; }
  .hero-actions .button { flex: 1 1 100%; }
  .contract-block { align-items: flex-end; }
  .contract-block code { font-size: 9px; }
  .hero-throne { min-height: 430px; overflow: hidden; }
  .orbit-one { width: 330px; height: 330px; }
  .orbit-two { width: 260px; height: 260px; }
  .throne-seal { width: 230px; padding: 32px; }
  .throne-caption { bottom: -2px; }
  .principles { grid-template-columns: 1fr; }
  .principles article { min-height: 120px; border-right: 0; border-bottom: 1px solid var(--line); }
  .market-section, .doctrine, .coin, .community { padding-top: 100px; padding-bottom: 100px; }
  .icons-section { padding-top: 0; padding-bottom: 100px; }
  .crown-section, .share-section { padding: 100px 0; }
  .doctrine h2, .icons-heading h2, .crown-copy h2, .coin-heading h2, .share-copy h2, .community h2 { font-size: clamp(43px, 14vw, 70px); }
  .market-heading h2 { font-size: clamp(43px, 14vw, 70px); }
  .chart-shell { margin-top: 44px; box-shadow: 10px 10px 0 rgba(231,184,68,.035); }
  .chart-bar { grid-template-columns: 1fr auto; padding: 0 13px; }
  .dex-brand span { display: none; }
  .market-status { padding: 7px 8px; font-size: 7px; }
  .chart-stage, .dex-chart-frame { min-height: 470px; height: 470px; }
  .chart-grid { background-size: 46px 50px; }
  .pending-message { padding: 24px 18px; }
  .chart-footer { padding: 12px 13px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 7px; }
  .chart-footer span:last-child { align-self: flex-start; }
  .doctrine-copy .lead { font-size: 20px; }
  .icons-grid { grid-template-columns: 1fr; }
  .icon-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .icon-card:last-child { border-bottom: 0; }
  .icon-caption { min-height: auto; }
  .crown-status-card { padding: 22px; }
  .facts-grid { grid-template-columns: 1fr; }
  .facts-grid article { min-height: 165px; border-right: 0; border-bottom: 1px solid var(--line); }
  .facts-grid article:nth-child(2) { border-right: 0; }
  .facts-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .facts-grid article:last-child { border-bottom: 0; }
  .share-card { padding: 26px 20px; box-shadow: 10px 10px 0 rgba(8,8,7,.13); }
  .share-card blockquote { font-size: 17px; }
  .share-actions .button { width: 100%; }
  .community-card { min-height: 600px; padding: 40px 24px; justify-content: flex-end; }
  .community-crown { top: 45px; right: 30px; font-size: 100px; }
  .community-actions .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-mark { margin: 0 auto; }
  .site-footer > span { justify-self: center; }
}

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