:root {
  --bg: #020714;
  --bg-deep: #01030a;
  --panel: rgba(5, 18, 34, 0.78);
  --panel-solid: #071728;
  --panel-bright: rgba(14, 46, 75, 0.64);
  --text: #eef8ff;
  --muted: #92a9bb;
  --soft: #c8d8e7;
  --line: rgba(102, 205, 255, 0.24);
  --line-strong: rgba(170, 227, 255, 0.5);
  --accent: #45c7ff;
  --accent-2: #9cecff;
  --gold: #f0ad55;
  --ink: #04111d;
  --radius: 8px;
  --shadow: 0 34px 110px rgba(0, 18, 42, 0.56);
  --display: "Avenir Next Condensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  --body: "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "SFMono-Regular", "Cascadia Mono", Consolas, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 50% -18%, rgba(38, 152, 230, 0.38), transparent 48%),
    radial-gradient(ellipse at 18% 90%, rgba(240, 173, 85, 0.14), transparent 34%),
    linear-gradient(180deg, #030a18 0%, var(--bg) 45%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(rgba(118, 208, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 208, 255, 0.055) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 112%, transparent 37%, rgba(56, 180, 255, 0.3) 38%, transparent 41%),
    radial-gradient(ellipse at 50% 112%, rgba(53, 157, 220, 0.22), transparent 54%);
  background-size: 64px 64px, 64px 64px, 100% 100%, 100% 100%;
  mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  left: 50%;
  bottom: -36vh;
  z-index: -3;
  width: 140vw;
  height: 58vh;
  pointer-events: none;
  transform: translateX(-50%);
  border-top: 1px solid rgba(101, 208, 255, 0.46);
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(ellipse at center top, rgba(64, 194, 255, 0.22), transparent 47%),
    linear-gradient(90deg, transparent, rgba(240, 173, 85, 0.14), transparent);
  box-shadow: 0 -18px 70px rgba(57, 177, 255, 0.2);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.5) 0 1px, transparent 1.5px),
    radial-gradient(circle at 74% 26%, rgba(140, 218, 255, 0.48) 0 1px, transparent 1.5px),
    radial-gradient(circle at 32% 76%, rgba(240, 173, 85, 0.4) 0 1px, transparent 1.5px),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-size: 360px 360px, 480px 480px, 420px 420px, 260px 260px;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 12px;
  transform: translateY(-150%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel-solid);
  color: var(--text);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(12, 35, 57, 0.88), rgba(2, 7, 20, 0.84)),
    rgba(2, 7, 20, 0.8);
  box-shadow: 0 20px 80px rgba(0, 20, 44, 0.46), inset 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(156, 236, 255, 0.48);
  border-radius: var(--radius);
  background: #03101d;
  box-shadow: 0 0 24px rgba(69, 199, 255, 0.28), inset 0 0 18px rgba(156, 236, 255, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  max-width: 220px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
}

.nav a,
.footer-links a {
  text-decoration: none;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--accent-2);
  text-shadow: 0 0 18px rgba(69, 199, 255, 0.34);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  height: 44px;
  border: 1px solid rgba(156, 236, 255, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(238, 248, 255, 0.96), rgba(137, 218, 255, 0.88));
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(69, 199, 255, 0.2);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.72fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100dvh - 88px);
  padding: 72px 0 86px;
}

.hero::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 5%;
  z-index: -1;
  height: 44%;
  pointer-events: none;
  background:
    linear-gradient(32deg, transparent 0 26%, rgba(69, 199, 255, 0.28) 26.2%, transparent 27%),
    linear-gradient(147deg, transparent 0 39%, rgba(69, 199, 255, 0.22) 39.2%, transparent 40%),
    linear-gradient(92deg, transparent 0 53%, rgba(240, 173, 85, 0.18) 53.2%, transparent 54%);
  opacity: 0.72;
}

.hero-copy {
  min-width: 0;
}

.kicker,
.section-code {
  margin: 0 0 18px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 96px;
  line-height: 0.92;
}

h2 {
  margin-bottom: 20px;
  font-size: 60px;
  line-height: 0.96;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.12;
}

p {
  max-width: 65ch;
  color: var(--muted);
  line-height: 1.66;
  text-wrap: pretty;
}

.hero-subtitle {
  max-width: 620px;
  color: #d7e8f5;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.button:focus-visible,
.nav-cta:focus-visible,
.contract-panel button:focus-visible,
.footer-links a:focus-visible,
.nav a:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.button:active,
.nav-cta:active,
.contract-panel button:active {
  transform: translateY(1px) scale(0.99);
}

.button-primary {
  border: 1px solid rgba(156, 236, 255, 0.6);
  background:
    linear-gradient(180deg, rgba(171, 239, 255, 0.98), rgba(48, 180, 247, 0.94));
  color: var(--ink);
  box-shadow: 0 0 38px rgba(69, 199, 255, 0.28), inset 0 1px rgba(255, 255, 255, 0.72);
}

.button-primary:hover {
  box-shadow: 0 0 52px rgba(69, 199, 255, 0.38), inset 0 1px rgba(255, 255, 255, 0.8);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(7, 23, 40, 0.76);
  color: var(--text);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(13, 42, 68, 0.82);
}

.contract-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(650px, 100%);
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(10, 42, 70, 0.62), rgba(2, 7, 20, 0.7));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.contract-panel span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.contract-panel code {
  min-width: 0;
  overflow: hidden;
  color: #e6f6ff;
  font-family: var(--mono);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-panel button {
  border: 1px solid rgba(156, 236, 255, 0.48);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: rgba(156, 236, 255, 0.92);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.hero-card {
  position: relative;
  min-width: 0;
  min-height: 560px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(15, 52, 84, 0.78), rgba(3, 11, 23, 0.78)),
    radial-gradient(circle at 50% 22%, rgba(69, 199, 255, 0.22), transparent 42%);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.12), inset 0 0 80px rgba(69, 199, 255, 0.07);
}

.hero-card::before,
.system-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(170, 227, 255, 0.16);
  border-radius: var(--radius);
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(156, 236, 255, 0.12) 48.2% 48.6%, transparent 48.8%),
    linear-gradient(0deg, transparent 0 62%, rgba(156, 236, 255, 0.1) 62.2% 62.6%, transparent 62.8%);
  opacity: 0.52;
}

.emblem-frame {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(310px, 84%);
  aspect-ratio: 1;
  margin: 48px auto 36px;
  border: 1px solid rgba(156, 236, 255, 0.38);
  border-radius: var(--radius);
  background:
    radial-gradient(circle, rgba(156, 236, 255, 0.22), transparent 63%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
  box-shadow: 0 0 48px rgba(69, 199, 255, 0.26), inset 0 0 42px rgba(69, 199, 255, 0.1);
}

.emblem-frame::before,
.emblem-frame::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(156, 236, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.emblem-frame::before {
  inset: 8%;
}

.emblem-frame::after {
  inset: 20%;
}

.emblem-frame img {
  position: relative;
  z-index: 1;
  width: 82%;
  height: 82%;
  border-radius: var(--radius);
  object-fit: cover;
  filter: drop-shadow(0 18px 32px rgba(0, 8, 20, 0.72));
}

.ledger-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ledger-grid div,
.dossier-table div,
.allocation-list div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(1, 9, 20, 0.42);
}

.ledger-grid span,
.dossier-table span,
.allocation-list span,
.supply-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ledger-grid strong,
.dossier-table strong,
.allocation-list strong {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.hero-stamp {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 2;
  max-width: calc(100% - 56px);
  padding: 9px 12px;
  border: 1px solid rgba(240, 173, 85, 0.46);
  border-radius: var(--radius);
  color: #ffd28a;
  font-size: 12px;
  font-weight: 850;
  background: rgba(3, 11, 23, 0.56);
}

.ticker {
  contain: layout paint;
  overflow: hidden;
  overflow: clip;
  max-width: 100vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(2, 9, 19, 0.74);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 32s linear infinite;
}

.ticker span {
  flex: 0 0 auto;
  padding: 18px 28px;
  color: rgba(200, 216, 231, 0.58);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.mandate-grid {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 74px;
  padding: 128px 0 94px;
}

.section-heading {
  min-width: 0;
}

.mandate-copy p {
  color: #d7e8f5;
  font-size: 24px;
  line-height: 1.46;
}

.thesis-section,
.tokenomics-section,
.buy-section {
  padding: 82px 0;
}

.section-heading.compact {
  max-width: 720px;
  margin-bottom: 36px;
}

.thesis-cards {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
}

.thesis-cards article,
.steps article,
.supply-card {
  position: relative;
  min-width: 0;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(12, 37, 60, 0.72), rgba(3, 11, 23, 0.78));
  box-shadow: 0 20px 70px rgba(0, 18, 42, 0.32), inset 0 1px rgba(255, 255, 255, 0.08);
}

.thesis-cards article::before,
.steps article::before,
.supply-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent 62%, var(--gold));
  opacity: 0.74;
}

.thesis-cards article:first-child {
  background:
    radial-gradient(circle at 12% 0%, rgba(69, 199, 255, 0.26), transparent 36%),
    linear-gradient(180deg, rgba(18, 58, 91, 0.82), rgba(3, 11, 23, 0.78));
}

.thesis-cards span,
.steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  border: 1px solid rgba(156, 236, 255, 0.56);
  border-radius: var(--radius);
  background: rgba(69, 199, 255, 0.14);
  color: var(--accent-2);
  font-family: var(--mono);
  font-weight: 950;
}

.data-strip {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: 1px;
  min-width: 0;
  margin-top: 28px;
  margin-bottom: 54px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.data-strip div {
  min-width: 0;
  padding: 26px;
  background: rgba(3, 13, 26, 0.96);
}

.metric {
  display: block;
  color: var(--accent-2);
  font-family: var(--display);
  font-size: 58px;
  font-variant-numeric: tabular-nums;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 0 22px rgba(69, 199, 255, 0.28);
}

.data-strip small {
  color: var(--muted);
  line-height: 1.5;
}

.system-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) 1fr;
  align-items: center;
  gap: 74px;
  padding: 92px 0;
}

.system-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(37deg, transparent 0 35%, rgba(69, 199, 255, 0.28) 35.2%, transparent 36%),
    linear-gradient(142deg, transparent 0 44%, rgba(69, 199, 255, 0.22) 44.2%, transparent 45%),
    radial-gradient(circle at center, rgba(69, 199, 255, 0.22), transparent 34%),
    rgba(4, 16, 31, 0.84);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.system-visual::after {
  content: "";
  position: absolute;
  inset: 82px;
  border: 1px solid rgba(156, 236, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(156, 236, 255, 0.025);
  pointer-events: none;
}

.node,
.core-node {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  font-weight: 900;
}

.node {
  width: 126px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(3, 11, 23, 0.88);
  color: #e6f6ff;
  font-size: 13px;
}

.node-a {
  left: 34px;
  top: 94px;
}

.node-b {
  right: 28px;
  top: 130px;
}

.node-c {
  left: 68px;
  bottom: 88px;
}

.node-d {
  right: 44px;
  bottom: 104px;
}

.core-node {
  left: 50%;
  top: 50%;
  width: 138px;
  height: 138px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(156, 236, 255, 0.65);
  background:
    radial-gradient(circle, rgba(156, 236, 255, 0.94), rgba(52, 181, 248, 0.9));
  color: var(--ink);
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: 0;
  box-shadow: 0 0 48px rgba(69, 199, 255, 0.38);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 23, 40, 0.62);
  color: #d8eaf6;
}

.check-list li::before {
  content: "◆";
  margin-right: 10px;
  color: var(--gold);
  font-size: 11px;
}

.dossier-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
  padding: 84px 0;
}

.dossier-copy {
  position: sticky;
  top: 120px;
}

.dossier-table {
  display: grid;
  min-width: 0;
  gap: 12px;
}

.dossier-table div {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(7, 23, 40, 0.62);
}

.dossier-table strong {
  color: var(--accent-2);
  text-align: right;
}

.token-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 14px;
  min-width: 0;
}

.supply-card strong {
  display: block;
  margin: 8px 0 22px;
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.allocation-list {
  display: grid;
  min-width: 0;
  gap: 12px;
}

.allocation-list div {
  min-height: 78px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.steps article {
  min-height: 250px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 34px;
  border: 1px solid rgba(240, 173, 85, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(240, 173, 85, 0.14), rgba(10, 42, 70, 0.58)),
    rgba(3, 11, 23, 0.78);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.final-cta h2 {
  margin-bottom: 8px;
  font-size: 50px;
}

.final-cta p {
  margin: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 52px 0 34px;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  font-family: var(--display);
  font-size: 24px;
}

.site-footer p {
  max-width: 640px;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

.disclaimer {
  grid-column: 1 / -1;
  padding-top: 22px;
  color: rgba(146, 169, 187, 0.84);
  font-size: 12px;
  line-height: 1.65;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 60;
  padding: 12px 16px;
  transform: translate(-50%, 20px);
  border: 1px solid rgba(156, 236, 255, 0.5);
  border-radius: var(--radius);
  background: rgba(156, 236, 255, 0.94);
  color: var(--ink);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

@keyframes tickerMove {
  to {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 76px;
  }

  h2 {
    font-size: 52px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .mandate-grid,
  .system-section,
  .dossier-section,
  .token-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-card {
    min-height: 500px;
  }

  .mandate-grid,
  .system-section,
  .dossier-section {
    gap: 34px;
    padding: 72px 0;
  }

  .dossier-copy {
    position: static;
  }

  .thesis-cards,
  .data-strip,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  body::after {
    left: 0;
    width: 100vw;
    transform: none;
  }

  .section-shell,
  .site-header {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 8px;
    grid-template-columns: 1fr;
    min-height: 68px;
    margin-top: 8px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 48px;
    line-height: 0.98;
  }

  h2 {
    font-size: 38px;
    line-height: 1;
  }

  h3 {
    font-size: 21px;
  }

  .hero-subtitle,
  .mandate-copy p {
    font-size: 17px;
  }

  .hero {
    gap: 44px;
    padding: 52px 0 70px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .contract-panel {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .contract-panel button {
    grid-column: 1 / -1;
  }

  .hero-card {
    min-height: 460px;
    padding: 18px;
  }

  .hero-stamp {
    left: 18px;
    right: 18px;
    text-align: center;
  }

  .emblem-frame {
    width: min(260px, 88%);
    margin-top: 70px;
  }

  .ledger-grid,
  .thesis-cards,
  .data-strip,
  .steps {
    grid-template-columns: 1fr;
  }

  .metric {
    font-size: 44px;
  }

  .system-visual {
    min-height: 430px;
  }

  .node {
    width: 112px;
  }

  .node-a {
    left: 18px;
    top: 64px;
  }

  .node-b {
    right: 16px;
    top: 94px;
  }

  .node-c {
    left: 24px;
    bottom: 58px;
  }

  .node-d {
    right: 18px;
    bottom: 72px;
  }

  .dossier-table div,
  .final-cta,
  .site-footer {
    display: block;
  }

  .dossier-table strong {
    margin-top: 8px;
    text-align: left;
  }

  .supply-card strong {
    font-size: 34px;
  }

  .final-cta .button {
    margin-top: 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    margin-top: 22px;
  }
}
