﻿:root {
  --ink: #12100d;
  --paper: #f2e7cc;
  --paper-bright: #fff5dc;
  --red: #d92b1e;
  --red-dark: #9c160f;
  --gold: #f0b82e;
  --jade: #4c8f7a;
  --line: 2px solid var(--ink);
  --shadow: 7px 7px 0 var(--ink);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "IBM Plex Mono", monospace;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .08;
  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='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

::selection { color: var(--paper-bright); background: var(--red); }

a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 84px;
  padding: 10px clamp(18px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  color: var(--paper-bright);
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 34px 100%,
    linear-gradient(135deg, #173f36 0%, #0f302a 58%, #183b34 100%);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 0 var(--red-dark), 0 12px 28px rgba(18, 16, 13, .2);
  backdrop-filter: blur(10px);
  isolation: isolate;
  transition: min-height .25s ease, box-shadow .25s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: radial-gradient(circle at center, transparent 0 8px, rgba(240,184,46,.48) 9px 10px, transparent 11px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, transparent, black 22%, black 78%, transparent);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--red-dark), var(--gold) 30%, var(--gold) 70%, var(--red-dark));
}

.site-header.scrolled { min-height: 72px; box-shadow: 0 3px 0 var(--red-dark), 0 9px 22px rgba(18, 16, 13, .18); }
.brand, .primary-nav, .header-buy, .menu-toggle { position: relative; z-index: 1; }

.brand::before,
.primary-nav a::before,
.header-buy::before,
.menu-toggle::before {
  content: none;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  color: var(--paper-bright);
  background: none;
  border: 0;
  filter: none;
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--red);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 2px rgba(18,16,13,.65);
  transition: transform .3s ease;
}

.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.05); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { color: #fff4cf; font-family: "Bowlby One SC", sans-serif; font-size: clamp(.88rem, 1.15vw, 1.05rem); letter-spacing: .045em; text-shadow: 0 2px 0 rgba(0,0,0,.55); }
.brand-copy small { margin-top: 6px; color: var(--gold); font-weight: 600; letter-spacing: .12em; }

.primary-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 42px); }
.primary-nav a { position: relative; min-width: 0; min-height: 0; padding: 9px 0; display: block; color: var(--paper-bright); background: none; border: 0; filter: none; font-size: .68rem; font-weight: 600; text-decoration: none; text-transform: uppercase; letter-spacing: .05em; text-shadow: 0 1px 0 rgba(0,0,0,.45); transition: transform .2s ease, color .2s ease; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.primary-nav a:hover, .primary-nav a.active { color: var(--gold); background: none; transform: translateY(-1px); filter: none; }
.primary-nav a:hover::after, .primary-nav a.active::after { transform: scaleX(1); }

.header-buy {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  min-height: 48px;
  padding: 7px 16px 7px 9px;
  color: var(--paper-bright);
  background: var(--red-dark);
  border: 2px solid var(--gold);
  box-shadow: 4px 4px 0 #081d19;
  filter: none;
  text-decoration: none;
  font-family: "Bowlby One SC", sans-serif;
  font-size: .8rem;
  text-shadow: none;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.header-buy:hover { background: var(--red); transform: translate(2px, 2px); box-shadow: 2px 2px 0 #081d19; filter: none; }
.header-buy img { width: 30px; height: 30px; object-fit: contain; }
.menu-toggle { display: none; }

.section { position: relative; padding: clamp(100px, 10vw, 150px) clamp(20px, 6vw, 96px); }

.hero {
  min-height: 100svh;
  padding-top: 96px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(242,231,204,.98) 0%, rgba(242,231,204,.94) 31%, rgba(242,231,204,.7) 47%, rgba(242,231,204,.05) 72%),
    linear-gradient(0deg, rgba(18,16,13,.18), transparent 35%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 82px 0 0;
  z-index: -1;
  opacity: .22;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0 calc(12.5% - 1px), rgba(18,16,13,.24) calc(12.5% - 1px) 12.5%);
  mask-image: linear-gradient(90deg, black, transparent 58%);
}

.hero-copy { position: relative; z-index: 2; width: min(60vw, 760px); }

.kicker, .section-no {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kicker span { padding: 8px 13px; color: var(--gold); background: var(--red-dark); border: 2px solid var(--gold); box-shadow: 4px 4px 0 var(--ink); clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%); transform: rotate(-1deg); }

h1, h2 { margin: 0; font-family: "Bowlby One SC", sans-serif; font-weight: 400; text-transform: uppercase; letter-spacing: -.055em; line-height: .9; }
h1 { font-size: clamp(4.25rem, 8.2vw, 9.5rem); }
h1 em, h2 em { color: var(--red); font-style: normal; -webkit-text-stroke: 1px var(--ink); text-shadow: 4px 4px 0 var(--ink); }
.hero-lede { max-width: 640px; margin: 30px 0; font-size: clamp(.94rem, 1.15vw, 1.12rem); line-height: 1.75; }

.contract {
  width: min(100%, 720px);
  min-height: 0;
  aspect-ratio: 7.5 / 1;
  margin-bottom: 24px;
  padding: 12px 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  border: 0;
  color: var(--paper-bright);
  background: transparent url("assets/hero-contract-sign-v2.webp") center / 100% 100% no-repeat;
  font: inherit;
  cursor: pointer;
  filter: drop-shadow(0 8px 8px rgba(18,16,13,.28));
  transition: transform .2s ease, filter .2s ease;
}
.contract:hover { transform: translateY(-3px); filter: brightness(1.08) saturate(1.08) drop-shadow(0 11px 10px rgba(18,16,13,.3)); }
.contract span, .contract b { display: grid; place-items: center; padding: 0 10px; color: var(--gold); background: transparent; text-transform: uppercase; font-size: .72rem; text-shadow: 0 2px 2px #2b0604; }
.contract b { background: transparent; }
.contract code { padding: 10px; display: grid; place-items: center; overflow: hidden; color: #fff4cf; text-shadow: 0 2px 2px #2b0604; text-overflow: ellipsis; white-space: nowrap; font-family: inherit; font-size: .72rem; }

.action-grid { width: min(100%, 720px); display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.action {
  --sign-image: url("assets/hero-buy-sign-v2.webp");
  min-height: 0;
  aspect-ratio: 3 / 1;
  padding: 18px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--paper-bright);
  background: transparent var(--sign-image) center / 100% 100% no-repeat;
  border: 0;
  filter: drop-shadow(0 8px 8px rgba(18,16,13,.3));
  text-shadow: 2px 2px 0 #2b0604;
  transition: transform .18s ease, filter .18s ease, color .18s ease;
}
.action:hover { color: #fff2bd; background-color: transparent; transform: translateY(-4px) rotate(var(--hover-tilt, -.35deg)); filter: brightness(1.09) saturate(1.08) drop-shadow(0 12px 10px rgba(18,16,13,.34)); }
.action span { min-width: 0; font-family: "Bowlby One SC", sans-serif; font-size: 1.02rem; line-height: 1.15; text-align: center; white-space: nowrap; }
.action small { display: block; margin-bottom: 5px; overflow: hidden; font-family: "IBM Plex Mono", monospace; font-size: .62rem; letter-spacing: .04em; text-transform: uppercase; text-overflow: ellipsis; text-shadow: none; opacity: .82; }
.action.social-action { grid-template-columns: 42px minmax(0, 1fr); padding-inline: 48px; }
.action.action-with-icon { grid-template-columns: 42px minmax(0, 1fr); padding-inline: 48px; }
.action .social-icon { width: 38px; height: 38px; padding: 8px; color: var(--paper-bright); fill: currentColor; border: 1px solid rgba(240,184,46,.64); border-radius: 50%; background: rgba(18,16,13,.32); box-shadow: 0 2px 0 rgba(43,6,4,.55); }
.action .action-icon { width: 42px; height: 42px; object-fit: contain; filter: drop-shadow(0 2px 1px rgba(18,16,13,.55)); }
.action-buy .action-icon { transform: scale(1.48); }
.action.js-dex-link .action-icon { transform: scale(1.16); }
.action.social-action span,
.action.action-with-icon span { text-align: left; }
.action-buy { --sign-image: url("assets/hero-buy-sign-v2.webp"); --hover-tilt: -.45deg; color: var(--paper-bright); background-color: transparent; }
.action.js-twitter-link { --sign-image: url("assets/hero-x-sign-v2.webp"); --hover-tilt: .35deg; }
.action.js-dex-link { --sign-image: url("assets/hero-dex-sign-v2.webp"); --hover-tilt: -.25deg; }
.action.js-telegram-link { --sign-image: url("assets/hero-telegram-sign-v2.webp"); --hover-tilt: .45deg; }

.hero-art { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: #e8e5de; }
.hero-art::after { content: none; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.9) contrast(1.04); animation: hero-breathe 12s ease-in-out infinite alternate; }
@keyframes hero-breathe { from { transform: translateY(55px) scale(1.045); } to { transform: translateY(60px) scale(1.075); } }
.china-transition { position: relative; z-index: 6; overflow: hidden; }
.transition-clouds { height: 100px; margin-top: -2px; color: var(--gold); background-color: var(--red); background-image: url("data:image/svg+xml,%3Csvg width='180' height='70' viewBox='0 0 180 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-10 48h47c-8-5-10-13-6-21 5-10 18-13 27-7 5-14 25-18 36-7 4 4 6 8 6 13 11-6 25 0 27 12 1 4 0 7-2 10h65' fill='none' stroke='%23f2e7cc' stroke-width='3'/%3E%3Cpath d='M20 58h46c-5-5-5-11-1-16 5-7 16-7 21 0 8-9 23-6 27 5 1 4 1 8-1 11h49' fill='none' stroke='%23f0b82e' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: repeat-x; background-position: center; }
.transition-clouds::before, .transition-clouds::after { content: ""; position: absolute; left: 0; right: 0; height: 4px; background: var(--gold); }
.transition-clouds::before { top: 7px; }.transition-clouds::after { bottom: 7px; }
.transition-clouds span { position: absolute; left: 50%; top: 50%; width: 54px; aspect-ratio: 1; display: grid; place-items: center; transform: translate(-50%,-50%) rotate(45deg); color: var(--red); background: var(--gold); border: 3px solid var(--paper-bright); box-shadow: 0 0 0 4px var(--red), 0 0 0 6px var(--gold); font: 700 1.15rem Georgia, serif; }
.transition-clouds span::first-letter { transform: rotate(-45deg); }

.roadmap { padding-bottom: clamp(120px, 9vw, 150px); background: var(--paper-bright); overflow: hidden; isolation: isolate; }
.roadmap::before { content: "FLY"; position: absolute; right: -5vw; top: 0; color: transparent; font: 28vw/1 "Bowlby One SC", sans-serif; -webkit-text-stroke: 2px rgba(18,16,13,.06); }
.roadmap::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .24; background-image: radial-gradient(circle at center, transparent 0 12px, rgba(217,43,30,.16) 13px 14px, transparent 15px); background-size: 44px 44px; mask-image: linear-gradient(135deg, transparent 5%, black 35%, transparent 76%); }
.road-props { position: absolute; inset: 0; z-index: 0; pointer-events: none; transform: translateY(var(--prop-shift, 0px)); transition: transform .12s linear; }
.prop { position: absolute; object-fit: contain; filter: drop-shadow(18px 22px 20px rgba(18,16,13,.28)); will-change: transform; }
.prop-lanterns { width: clamp(220px, 25vw, 410px); right: -4vw; top: -4%; transform: rotate(4deg); animation: lantern-sway 5s ease-in-out infinite alternate; transform-origin: 50% 0; }
.prop-chopsticks { width: clamp(320px, 24vw, 410px); right: -5vw; bottom: 6px; z-index: 5; transform: rotate(-9deg); filter: drop-shadow(9px 11px 11px rgba(18,16,13,.26)); pointer-events: none; }
@keyframes lantern-sway { from { transform: rotate(1deg); } to { transform: rotate(6deg); } }
.section-heading { display: grid; grid-template-columns: .6fr 2fr; align-items: end; gap: 30px; position: relative; z-index: 2; }
.section-heading .section-no { align-self: start; }
h2 { font-size: clamp(3.6rem, 7.3vw, 8.5rem); }
.flight-path { margin: 72px 12.5% 0; height: 52px; position: relative; border-top: 3px dashed var(--ink); }
.flight-path::after { content: ""; position: absolute; right: -2px; top: -10px; width: 0; height: 0; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 28px solid var(--red); }
.flight-path span { position: absolute; top: -9px; width: 16px; aspect-ratio: 1; border: 3px solid var(--ink); background: var(--gold); transform: rotate(45deg); }
.flight-path span:nth-child(1) { left: 15%; }.flight-path span:nth-child(2) { left: 48%; }.flight-path span:nth-child(3) { left: 79%; }
.roadmap-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; gap: 18px; padding-bottom: 24px; }
.road-card { position: relative; min-height: 420px; padding: 26px; display: flex; flex-direction: column; background: var(--paper); border: var(--line); box-shadow: 6px 6px 0 var(--ink); transition: transform .25s ease, background .25s ease; }
.road-card:nth-child(even), .road-card:nth-child(odd) { margin-top: 0; transform: none; }
.road-card:hover { transform: translateY(-6px); background: #f8d95d; }
.road-card.final { color: var(--paper-bright); background: var(--red); }
.phase { width: max-content; padding: 5px 8px; font-size: .65rem; font-weight: 600; text-transform: uppercase; border: 1px solid currentColor; }
.phase-mark { position: absolute; right: 18px; top: 10px; font: 4rem Georgia, serif; opacity: .12; }
.road-card h3 { margin: 54px 0 16px; font: 400 1.35rem/1.05 "Bowlby One SC", sans-serif; text-transform: uppercase; }
.road-card p { margin: 0; font-size: .78rem; line-height: 1.7; }
.road-card ul { margin: auto 0 0; padding: 22px 0 0; list-style: none; border-top: 1px solid currentColor; }
.road-card li { margin: 8px 0; font-size: .68rem; text-transform: uppercase; }
.road-card li::before { content: "вњ¦"; margin-right: 8px; color: var(--red); }
.road-card.final li::before { color: var(--gold); }
.road-card.has-rice { padding-bottom: 148px; margin-bottom: 0; }
.card-rice { position: absolute; z-index: 5; left: 50%; bottom: -74px; width: min(220px, 78%); max-width: none; transform: translateX(-50%) rotate(3deg); filter: drop-shadow(12px 18px 14px rgba(18,16,13,.28)); pointer-events: none; }

.transition-roof { height: 124px; margin-top: -1px; background: var(--paper-bright); }
.transition-roof::before, .transition-roof::after { content: ""; position: absolute; left: -5%; width: 110%; clip-path: polygon(0 58%, 34% 58%, 42% 42%, 47% 13%, 50% 0, 53% 13%, 58% 42%, 66% 58%, 100% 58%, 100% 100%, 0 100%); }
.transition-roof::before { inset-block: 20px 0; background: var(--red); }
.transition-roof::after { inset-block: 30px 0; background: var(--ink); }
.transition-roof span { position: absolute; z-index: 2; left: 50%; bottom: 23px; width: 52px; aspect-ratio: 1; display: grid; place-items: center; transform: translateX(-50%); color: var(--ink); background: var(--gold); border: 3px solid var(--paper-bright); border-radius: 50%; font: 700 1.2rem Georgia, serif; }

.chart-section { color: var(--paper-bright); background: var(--ink); }
.chart-section::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(var(--paper) 1px, transparent 1px), linear-gradient(90deg, var(--paper) 1px, transparent 1px); background-size: 40px 40px; }
.chart-heading { position: relative; display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; }
.chart-heading .section-no { color: var(--gold); }
.chart-heading h2 em { color: var(--gold); -webkit-text-stroke-color: var(--paper-bright); text-shadow: 4px 4px 0 var(--red); }
.market-status { display: grid; grid-template-columns: auto auto; gap: 3px 8px; align-items: center; padding: 13px 18px; border: 1px solid rgba(255,255,255,.35); }
.market-status i { grid-row: span 2; width: 11px; aspect-ratio: 1; background: #858585; border-radius: 50%; box-shadow: 0 0 0 5px rgba(133,133,133,.15); }
.market-status.is-live i { background: #51d88a; box-shadow: 0 0 0 5px rgba(81,216,138,.15); animation: pulse 1.6s infinite; }
.market-status span { font-size: .57rem; text-transform: uppercase; opacity: .65; }.market-status strong { font-size: .8rem; color: #51d88a; }
@keyframes pulse { 50% { transform: scale(.72); opacity: .6; } }
.chart-shell { position: relative; min-height: 690px; border: 2px solid rgba(255,255,255,.75); background: #0b0d0e; box-shadow: 12px 12px 0 var(--red); }
.chart-toolbar { min-height: 78px; padding: 12px 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,.25); }
.pair { display: flex; align-items: center; gap: 12px; }.pair img { width: 48px; aspect-ratio: 1; border-radius: 50%; border: 1px solid var(--paper); }.pair span { display: grid; }.pair small { margin-top: 5px; opacity: .55; font-size: .62rem; }
.open-chart { width: 218px; min-width: 218px; min-height: 0; aspect-ratio: 3 / 1; padding: 12px 30px; display: grid; place-items: center; color: var(--paper-bright); background: transparent url("assets/chart-dex-sign-v2.webp") center / 100% 100% no-repeat; border: 0; filter: drop-shadow(0 6px 7px rgba(0,0,0,.4)); text-shadow: 2px 2px 0 #2b0604; text-decoration: none; font-size: .68rem; font-weight: 600; text-transform: uppercase; transition: transform .18s ease, filter .18s ease; }
.open-chart:hover { transform: translateY(-3px); filter: brightness(1.09) saturate(1.08) drop-shadow(0 10px 9px rgba(0,0,0,.44)); }
#dexFrame { width: 100%; height: 610px; border: 0; background: #111; }
.chart-placeholder { min-height: 610px; padding: 32px; display: grid; place-items: center; color: rgba(255,255,255,.62); font: 500 .8rem "IBM Plex Mono", monospace; text-align: center; }

footer { min-height: 190px; padding: 40px clamp(20px, 6vw, 96px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; color: var(--paper-bright); background: var(--red); border-top: 3px solid var(--paper); }
.footer-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-family: "Bowlby One SC", sans-serif; }.footer-brand img { width: 66px; border-radius: 50%; border: 2px solid var(--paper); }.footer-brand span { display: grid; }.footer-brand small { margin-top: 7px; font: 600 .7rem "IBM Plex Mono", monospace; color: var(--gold); }
.footer-slogan { font: 400 clamp(1rem, 2vw, 1.5rem) "Bowlby One SC", sans-serif; color: var(--gold); text-align: center; } footer > a:last-child { justify-self: end; font-size: .7rem; font-weight: 600; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.road-card:nth-child(2) { transition-delay: .08s; }.road-card:nth-child(3) { transition-delay: .16s; }.road-card:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .menu-toggle { grid-column: 2; display: grid; place-content: center; gap: 4px; width: 44px; height: 44px; padding: 0; border: 2px solid var(--gold); background: var(--paper-bright); box-shadow: 3px 3px 0 var(--red-dark); filter: none; }
  .menu-toggle span:not(.sr-only) { width: 22px; height: 2px; background: #173f36; box-shadow: none; transition: .2s; }
  .primary-nav { position: absolute; left: 0; right: 0; top: 100%; padding: 16px clamp(20px,6vw,96px) 24px; display: none; align-items: flex-start; flex-direction: column; background: #12362f; border-bottom: 2px solid var(--gold); box-shadow: 0 5px 0 var(--red-dark), 0 12px 25px rgba(18,16,13,.2); }
  .primary-nav a { width: min(100%, 330px); }
  .primary-nav.open { display: flex; }
  .hero-copy { width: min(68vw, 720px); }
  .section-heading { grid-template-columns: .6fr 1.6fr; }
  .roadmap-grid { grid-template-columns: 1fr 1fr; }.road-card:nth-child(even) { margin-top: 0; }
}

@media (max-width: 820px) {
  .site-header { min-height: 76px; padding-inline: 12px; display: block; }.site-header.scrolled { min-height: 70px; }.brand { position: absolute; left: 16px; top: 10px; min-width: 0; width: auto; min-height: 0; padding: 0; justify-content: flex-start; }.brand-copy { display: none; }.brand-mark { width: 48px; flex: 0 0 48px; }.menu-toggle { position: absolute; right: 76px; top: 14px; width: 44px; height: 44px; }.header-buy { position: absolute; right: 14px; top: 12px; min-width: 48px; width: 48px; min-height: 48px; padding: 7px; justify-content: center; gap: 0; overflow: hidden; font-size: 0; }.header-buy img { width: 30px; height: 30px; flex: 0 0 30px; }
  .section { padding-inline: 20px; }
  .hero { min-height: 100svh; padding-top: 120px; padding-bottom: 84px; align-items: flex-end; }.hero::before { background: linear-gradient(90deg, rgba(242,231,204,.96), rgba(242,231,204,.78) 68%, rgba(242,231,204,.25)); }.hero-art img { object-position: 66% top; }.hero-copy { width: 100%; }
  h1 { max-width: 100%; font-size: clamp(3.3rem, 13.8vw, 6.5rem); }.hero-lede { font-size: .88rem; }
  .section-heading { grid-template-columns: 1fr; }.flight-path { margin-inline: 7%; }
  .chart-heading { align-items: start; gap: 26px; flex-direction: column; }.chart-shell { min-height: 600px; }.chart-toolbar { align-items: flex-start; gap: 15px; flex-direction: column; }.open-chart { width: 100%; text-align: center; } #dexFrame { height: 520px; }
  .prop-lanterns { width: 210px; right: -70px; top: 0; opacity: .82; }.prop-chopsticks { width: 320px; right: -105px; bottom: 6px; opacity: 1; }.road-card.has-rice { padding-bottom: 132px; margin-bottom: 0; }.card-rice { width: min(200px, 72%); bottom: -64px; }
  footer { grid-template-columns: 1fr; text-align: center; }.footer-brand { justify-self: center; }.footer-slogan { order: 2; } footer > a:last-child { justify-self: center; }
}

@media (max-width: 560px) {
  .action-grid { grid-template-columns: 1fr; }.contract { aspect-ratio: 5 / 1; padding-inline: 24px; background-image: url("assets/hero-contract-sign-mobile-v2.webp"); }.contract code { max-width: 40vw; }.roadmap-grid { grid-template-columns: 1fr; }.road-card { min-height: 360px; }.road-card.has-rice { margin-bottom: 70px; }.flight-path { display: none; } h2 { font-size: clamp(3.15rem, 15vw, 5rem); }.chart-section { padding-inline: 12px; }.chart-shell { box-shadow: 6px 6px 0 var(--red); }.transition-clouds { height: 82px; }.transition-roof { height: 96px; }
}

@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; }
}

[hidden] { display: none !important; }
