:root {
  color-scheme: dark;
  --ink: #050a05;
  --forest-950: #071006;
  --forest-900: #0a1709;
  --forest-800: #11250e;
  --forest-700: #1d3b13;
  --acid: #bdff00;
  --acid-soft: #d8ff70;
  --gold: #e6ae38;
  --cream: #f4edcf;
  --muted: #99a991;
  --line: rgba(196, 255, 76, 0.18);
  --panel: rgba(10, 22, 8, 0.82);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --radius: 22px;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--forest-950);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 15% 20%, rgba(108, 169, 18, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 60%, rgba(189, 255, 0, 0.07), transparent 34rem),
    var(--forest-950);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--ink);
  background: var(--acid);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

#arrow-field {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.68;
}

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

.cursor-glow {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(189, 255, 0, 0.095), rgba(189, 255, 0, 0.025) 35%, transparent 70%);
  filter: blur(8px);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 300ms ease;
}

.cursor-glow.is-active {
  opacity: 1;
}

body.modal-open {
  overflow: hidden;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(211, 255, 113, 0.15);
  border-radius: 18px;
  background: rgba(6, 14, 6, 0.69);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(125%);
  transform: translateX(-50%);
  transition: top 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
  top: 8px;
  border-color: rgba(211, 255, 113, 0.25);
  background: rgba(5, 12, 5, 0.91);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(189, 255, 0, 0.72);
  border-radius: 11px;
  box-shadow: 0 0 22px rgba(189, 255, 0, 0.18);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  color: #c8d1bf;
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-links a,
.section-heading > a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.section-heading > a:hover {
  color: var(--acid);
}

.nav-buy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  color: #101b07;
  background: var(--acid);
  box-shadow: 0 0 28px rgba(189, 255, 0, 0.18);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-buy:hover {
  box-shadow: 0 0 34px rgba(189, 255, 0, 0.34);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 820px;
  padding: 132px 0 76px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero-backdrop,
.hero-backdrop img,
.hero-shade {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-backdrop img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) contrast(1.08) brightness(0.72);
  transform: scale(1.035);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 10, 4, 0.98) 0%, rgba(4, 10, 4, 0.82) 43%, rgba(4, 10, 4, 0.26) 73%, rgba(4, 10, 4, 0.62) 100%),
    linear-gradient(0deg, var(--forest-950) 0%, transparent 30%, rgba(2, 6, 2, 0.28) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16%;
  left: -11%;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(173, 255, 0, 0.12), transparent 68%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--acid-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 14px var(--acid);
  animation: signal 1.8s ease-in-out infinite;
}

.hero h1,
.story-copy h2,
.final-inner h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 9.4vw, 8.7rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 em,
.story-copy h2 em,
.final-inner h2 em {
  color: var(--acid);
  font-style: normal;
  text-shadow: 0 0 45px rgba(189, 255, 0, 0.2);
}

.hero-lede {
  max-width: 610px;
  margin: 30px 0 0;
  color: #bdc8b6;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.72;
}

.hero-lede strong {
  color: var(--cream);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.88rem;
  font-family: var(--body);
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button-arrow {
  border-color: rgba(230, 174, 56, 0.35);
  color: #f4d991;
  background: rgba(58, 39, 8, 0.46);
}

.button-arrow:hover,
.button-arrow.is-fired {
  border-color: var(--gold);
  color: #1e1403;
  background: var(--gold);
  box-shadow: 0 14px 35px rgba(230, 174, 56, 0.22);
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: #101806;
  background: var(--acid);
  box-shadow: 0 12px 34px rgba(149, 211, 0, 0.18);
}

.button-primary:hover {
  box-shadow: 0 16px 42px rgba(189, 255, 0, 0.3);
}

.button-ghost {
  border-color: rgba(225, 239, 210, 0.2);
  background: rgba(13, 25, 11, 0.66);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: rgba(189, 255, 0, 0.45);
  background: rgba(24, 45, 17, 0.82);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 34px 0 0;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px solid rgba(228, 239, 213, 0.13);
  color: #e4eadf;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-tags li {
  display: flex;
  gap: 7px;
}

.hero-tags span {
  color: #70806b;
}

.hero-mark {
  position: relative;
  justify-self: end;
  width: min(430px, 100%);
  padding: 14px;
  border: 1px solid rgba(205, 255, 97, 0.23);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(41, 67, 24, 0.84), rgba(6, 14, 6, 0.88));
  box-shadow: var(--shadow), 0 0 70px rgba(189, 255, 0, 0.11);
  transform: rotate(2deg);
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border-radius: 21px;
  background: var(--acid);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.hero-mark:hover .portrait-frame img {
  transform: scale(1.035);
}

.portrait-glint {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.17) 47%, transparent 58%);
  transform: translateX(-120%);
  animation: glint 5.5s ease-in-out infinite 1s;
}

.wanted-stamp {
  position: absolute;
  z-index: 2;
  top: -32px;
  right: -22px;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 3px double #211407;
  border-radius: 50%;
  color: #251708;
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
  font-family: Georgia, serif;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-align: center;
  transform: rotate(12deg);
}

.coin-seal {
  position: absolute;
  right: 28px;
  bottom: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 126px;
  height: 58px;
  padding: 0 18px;
  border: 2px solid #6b4207;
  border-radius: 999px;
  color: #271702;
  background: linear-gradient(180deg, #ffda68, #c48312);
  box-shadow: inset 0 0 0 3px rgba(255, 238, 160, 0.38), 0 12px 30px rgba(0, 0, 0, 0.35);
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.035em;
}

.coin-seal span {
  font-size: 1.65rem;
}

.battle-cry {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-block: 1px solid #668d11;
  color: #0b1205;
  background: var(--acid);
  transform: rotate(-1deg) scale(1.01);
}

.battle-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  min-height: 54px;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.055em;
  animation: ticker 24s linear infinite;
}

.battle-track i {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-style: normal;
}

.contract-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: end;
  gap: clamp(40px, 7vw, 90px);
  padding-block: 130px 90px;
}

.contract-intro h2,
.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.contract-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(201, 255, 80, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(189, 255, 0, 0.06), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
}

.contract-card::after {
  content: "➶";
  position: absolute;
  right: 20px;
  bottom: -28px;
  color: rgba(189, 255, 0, 0.06);
  font-family: Georgia, serif;
  font-size: 10rem;
  transform: rotate(-24deg);
}

.contract-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #768471;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contract-meta strong {
  color: var(--acid-soft);
}

.contract-card code {
  position: relative;
  z-index: 1;
  display: block;
  margin: 26px 0 24px;
  overflow-wrap: anywhere;
  color: var(--cream);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.95rem, 1.6vw, 1.24rem);
  line-height: 1.6;
}

.copy-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(189, 255, 0, 0.32);
  border-radius: 10px;
  color: var(--acid-soft);
  background: rgba(189, 255, 0, 0.075);
  cursor: pointer;
  font: 800 0.78rem/1 var(--body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.copy-button:hover,
.copy-button.is-copied {
  border-color: var(--acid);
  color: var(--ink);
  background: var(--acid);
}

.copy-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.market-section,
.chart-section {
  padding-block: 70px 110px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading > a {
  color: #9cab95;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

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

.stat-card {
  position: relative;
  min-height: 168px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(216, 255, 130, 0.13);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(20, 43, 14, 0.82), rgba(8, 18, 7, 0.92));
  transition: transform 180ms ease, border-color 180ms ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44%;
  height: 2px;
  background: linear-gradient(90deg, var(--acid), transparent);
}

.stat-card:hover {
  border-color: rgba(189, 255, 0, 0.32);
  transform: translateY(-4px);
}

.stat-card > span,
.stat-card small {
  display: block;
  color: #7f8e79;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin: 28px 0 12px;
  overflow: hidden;
  color: #eef4e8;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  letter-spacing: 0.015em;
  text-overflow: ellipsis;
}

.stat-card small.is-positive {
  color: #a7e544;
}

.stat-card small.is-negative {
  color: #ff806f;
}

.burn-bridge-section {
  position: relative;
  padding: 132px 0;
  overflow: hidden;
  border-block: 1px solid rgba(189, 255, 0, 0.16);
  background:
    linear-gradient(110deg, rgba(189, 255, 0, 0.055), transparent 38%),
    radial-gradient(circle at 82% 30%, rgba(189, 255, 0, 0.095), transparent 32rem),
    #050d05;
  isolation: isolate;
}

.burn-bridge-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(189, 255, 0, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(189, 255, 0, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, black, transparent 58%);
}

.bridge-halo {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(189, 255, 0, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.bridge-halo::before,
.bridge-halo::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 22px var(--acid);
}

.bridge-halo::before { top: 12%; left: 19%; }
.bridge-halo::after { right: 11%; bottom: 24%; }

.bridge-halo-one {
  top: -290px;
  right: -220px;
  width: 720px;
  height: 720px;
  animation: orbit-spin 32s linear infinite;
}

.bridge-halo-two {
  bottom: -260px;
  left: -210px;
  width: 520px;
  height: 520px;
  animation: orbit-spin 25s linear infinite reverse;
}

.bridge-arrow-line {
  position: absolute;
  z-index: -1;
  top: 49%;
  left: 0;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189, 255, 0, 0.17), transparent);
  transform: rotate(-8deg);
}

.bridge-arrow-line i {
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px var(--acid);
  animation: route-pulse 4s linear infinite;
}

.bridge-arrow-line i:nth-child(2) { animation-delay: -1.35s; }
.bridge-arrow-line i:nth-child(3) { animation-delay: -2.7s; }

.bridge-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.83fr);
  align-items: center;
  gap: clamp(54px, 7vw, 105px);
}

.bridge-intro h2 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 7.2vw, 7.15rem);
  font-weight: 900;
  line-height: 0.83;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.bridge-intro h2 em {
  color: var(--acid);
  font-style: normal;
  text-shadow: 0 0 44px rgba(189, 255, 0, 0.18);
}

.bridge-lede {
  max-width: 640px;
  margin: 30px 0 0;
  color: #a6b3a0;
  font-size: 1rem;
  line-height: 1.75;
}

.bridge-route-map {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
}

.bridge-route-map article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(214, 255, 126, 0.14);
  border-radius: 14px;
  background: rgba(11, 24, 9, 0.72);
}

.bridge-route-map article > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #101807;
  background: var(--acid);
  font-family: var(--display);
  font-size: 0.92rem;
}

.bridge-route-map small,
.bridge-route-map strong {
  display: block;
}

.bridge-route-map small {
  margin-bottom: 5px;
  color: #71806c;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bridge-route-map strong {
  font-size: 0.7rem;
  line-height: 1.25;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.bridge-route-map > b {
  color: var(--acid);
  font-size: 0.9rem;
  opacity: 0.7;
}

.bridge-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.bridge-facts > div {
  padding: 15px 16px;
  border: 1px solid rgba(214, 255, 126, 0.11);
  border-radius: 13px;
  background: rgba(7, 16, 6, 0.62);
}

.bridge-facts span,
.bridge-facts strong {
  display: block;
}

.bridge-facts strong b {
  font: inherit;
}

.bridge-facts span {
  margin-bottom: 6px;
  color: #6f7c6a;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bridge-facts strong {
  color: var(--acid-soft);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.bridge-safety-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 13px;
  margin-top: 16px;
  padding: 15px 17px;
  border: 1px solid rgba(189, 255, 0, 0.22);
  border-radius: 14px;
  background: rgba(31, 67, 17, 0.2);
}

.bridge-safety-note > span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(189, 255, 0, 0.4);
  border-radius: 50%;
  color: var(--acid);
  font: 900 0.8rem/1 var(--body);
}

.bridge-safety-note p {
  margin: 0;
  color: #9d9a85;
  font-size: 0.76rem;
  line-height: 1.55;
}

.bridge-safety-note strong { color: #e7dfc0; }
.bridge-safety-note code { color: var(--acid-soft); }

.burn-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(208, 255, 110, 0.24);
  border-radius: 25px;
  background:
    linear-gradient(145deg, rgba(23, 44, 16, 0.88), rgba(6, 15, 6, 0.97) 52%),
    #071006;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.54), 0 0 70px rgba(189, 255, 0, 0.07);
}

.burn-console::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 54%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--acid));
  box-shadow: 0 0 18px rgba(189, 255, 0, 0.45);
}

.burn-console::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189, 255, 0, 0.105), transparent 68%);
  pointer-events: none;
}

.burn-console-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 102px;
  padding: 23px 25px;
  border-bottom: 1px solid rgba(216, 255, 132, 0.12);
}

.console-eyebrow,
.burn-order-heading > div > span {
  display: block;
  margin-bottom: 6px;
  color: #72806d;
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.burn-console h3,
.burn-order h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.gas-status,
.order-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(189, 255, 0, 0.2);
  border-radius: 999px;
  color: #b7caac;
  background: rgba(4, 11, 4, 0.64);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gas-status i,
.order-state i,
.console-footer > span:first-child i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
}

.gas-status.is-loading i { animation: signal 1.3s ease-in-out infinite; }

.gas-status.is-paused {
  border-color: rgba(230, 174, 56, 0.3);
  color: #d5bb7c;
}

.gas-status.is-paused i,
.order-state.is-warn i {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(230, 174, 56, 0.8);
}

.order-state.is-bad i {
  background: #ff7368;
  box-shadow: 0 0 12px rgba(255, 115, 104, 0.8);
}

.burn-form,
.burn-order {
  position: relative;
  z-index: 1;
  padding: 24px 25px 25px;
}

.burn-field {
  display: block;
}

.burn-field + .burn-field {
  margin-top: 20px;
}

.burn-field > span,
.deposit-network > span {
  display: block;
  margin-bottom: 9px;
  color: #8a9984;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.select-shell {
  position: relative;
}

.select-shell select,
.burn-field input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(213, 255, 127, 0.17);
  border-radius: 13px;
  color: #edf5e8;
  background: rgba(4, 11, 4, 0.76);
  font: 750 0.9rem/1 var(--body);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.select-shell select {
  appearance: none;
  padding: 0 48px 0 16px;
  cursor: pointer;
}

.select-shell > b {
  position: absolute;
  top: 50%;
  right: 17px;
  color: var(--acid);
  pointer-events: none;
  transform: translateY(-56%);
}

.burn-field input {
  padding: 0 16px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.79rem;
}

.select-shell select:focus,
.burn-field input:focus {
  border-color: rgba(189, 255, 0, 0.54);
  outline: 0;
  background: rgba(8, 19, 7, 0.9);
  box-shadow: 0 0 0 3px rgba(189, 255, 0, 0.075);
}

.select-shell select:disabled {
  color: #657060;
  cursor: wait;
}

.burn-field > small,
.burn-field-hint,
.deposit-warning {
  display: block;
  margin: 8px 2px 0;
  color: #6f7d6a;
  font-size: 0.66rem;
  line-height: 1.45;
}

.burn-route-preview {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 9px;
  margin: 16px 0 0;
  padding: 13px;
  border: 1px solid rgba(212, 255, 124, 0.11);
  border-radius: 13px;
  background: rgba(8, 18, 7, 0.63);
}

.route-token {
  display: grid;
  place-items: center;
  min-width: 52px;
  min-height: 35px;
  padding: 0 10px;
  border: 1px solid rgba(213, 255, 126, 0.18);
  border-radius: 10px;
  color: var(--acid-soft);
  background: rgba(17, 35, 12, 0.86);
  font-size: 0.67rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.route-token-eth { color: #f1f4ee; }
.route-token-unc { color: var(--acid); }
.route-token small { margin-left: 3px; font-size: 0.72rem; }

.route-flight {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, rgba(189, 255, 0, 0.08), rgba(189, 255, 0, 0.48), rgba(189, 255, 0, 0.08));
}

.route-flight i {
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
  animation: route-pulse 2.2s linear infinite;
}

.route-flight b {
  position: absolute;
  top: -9px;
  right: 0;
  color: var(--acid);
  font: 1rem/1 Georgia, serif;
}

.burn-confirmation {
  position: relative;
  display: block;
  margin-top: 20px;
  cursor: pointer;
}

.burn-confirmation input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.burn-confirmation > span {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 11px;
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid rgba(212, 255, 124, 0.13);
  border-radius: 13px;
  color: #899584;
  background: rgba(4, 11, 4, 0.62);
  font-size: 0.69rem;
  line-height: 1.4;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.burn-confirmation i {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(212, 255, 124, 0.24);
  border-radius: 8px;
  color: transparent;
  font-style: normal;
}

.burn-confirmation input:checked + span {
  border-color: rgba(189, 255, 0, 0.34);
  color: #cbd5c5;
  background: rgba(20, 39, 14, 0.7);
}

.burn-confirmation input:checked + span i {
  border-color: var(--acid);
  color: #111a08;
  background: var(--acid);
}

.burn-confirmation input:focus-visible + span {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

.burn-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 62px;
  margin-top: 16px;
  padding: 0 12px 0 20px;
  border: 0;
  border-radius: 14px;
  color: #101806;
  background: var(--acid);
  box-shadow: 0 0 34px rgba(189, 255, 0, 0.13);
  cursor: pointer;
  font: 950 0.8rem/1 var(--body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.burn-submit b {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 10px;
  color: var(--acid);
  background: #101806;
  font-size: 1rem;
}

.burn-submit:hover:not(:disabled) {
  box-shadow: 0 0 42px rgba(189, 255, 0, 0.29);
  transform: translateY(-2px);
}

.burn-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.burn-status {
  min-height: 36px;
  margin: 13px 2px 0;
  color: #798575;
  font-size: 0.69rem;
  line-height: 1.5;
}

.burn-status:empty {
  display: none;
}

.burn-status.is-good { color: #afd96f; }
.burn-status.is-warn { color: #d6ba75; }
.burn-status.is-bad { color: #ff8f84; }

.burn-order-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.burn-order h3 {
  font-size: 1.55rem;
}

.deposit-network {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 9px;
}

.deposit-network > span { margin: 0; }

.deposit-network strong {
  color: var(--acid-soft);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.deposit-address {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 66px;
  padding: 10px 10px 10px 15px;
  border: 1px solid rgba(189, 255, 0, 0.27);
  border-radius: 13px;
  color: #e8efe3;
  background: rgba(3, 9, 3, 0.82);
  cursor: copy;
  text-align: left;
}

.deposit-address > span {
  overflow-wrap: anywhere;
  font: 0.72rem/1.45 "SFMono-Regular", Consolas, monospace;
}

.deposit-address b {
  display: grid;
  place-items: center;
  min-width: 64px;
  min-height: 42px;
  border-radius: 9px;
  color: #111a08;
  background: var(--acid);
  font: 900 0.64rem/1 var(--body);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.deposit-address.is-copied b { color: var(--acid); background: #17250f; }

.deposit-warning {
  color: #978f72;
}

.burn-timeline {
  display: grid;
  gap: 7px;
  margin-top: 20px;
}

.burn-timeline > div,
.burn-timeline > a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 45px;
  padding: 9px 11px;
  border: 1px solid rgba(212, 255, 124, 0.09);
  border-radius: 10px;
  background: rgba(9, 19, 7, 0.48);
}

.burn-timeline > a {
  transition: border-color 150ms ease, background-color 150ms ease;
}

.burn-timeline > a:hover {
  border-color: rgba(189, 255, 0, 0.28);
  background: rgba(18, 35, 12, 0.68);
}

.burn-timeline span {
  color: #71806c;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.burn-timeline strong {
  max-width: 240px;
  overflow: hidden;
  color: #cbd5c4;
  font: 0.68rem/1.2 "SFMono-Regular", Consolas, monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.burn-order-actions {
  display: flex;
  gap: 9px;
  margin-top: 16px;
}

.burn-secondary {
  flex: 1 1 0;
  min-height: 46px;
  border: 1px solid rgba(212, 255, 124, 0.16);
  border-radius: 11px;
  color: #a9b6a2;
  background: rgba(7, 16, 6, 0.7);
  cursor: pointer;
  font: 850 0.63rem/1 var(--body);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease;
}

.burn-secondary:hover {
  border-color: rgba(189, 255, 0, 0.38);
  color: var(--acid-soft);
  background: rgba(20, 39, 14, 0.7);
}

.console-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 13px;
  min-height: 54px;
  padding: 11px 25px;
  border-top: 1px solid rgba(216, 255, 132, 0.11);
  color: #63705f;
  background: rgba(3, 9, 3, 0.45);
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.console-footer > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.console-footer b {
  color: #a8b8a1;
  font-weight: 900;
}

.story-section {
  padding-block: 105px;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(189, 255, 0, 0.035), transparent 35%),
    rgba(4, 11, 4, 0.6);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.story-art {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(215, 255, 128, 0.17);
  border-radius: 20px;
  background: rgba(16, 30, 12, 0.65);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.story-art img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 13px;
  object-fit: cover;
  object-position: center;
}

.story-caption {
  position: absolute;
  right: 25px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: calc(100% - 50px);
  padding: 14px 17px;
  border: 1px solid rgba(227, 255, 169, 0.2);
  border-radius: 10px;
  background: rgba(5, 11, 4, 0.82);
  backdrop-filter: blur(12px);
}

.story-caption span {
  color: var(--acid);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-copy h2 {
  font-size: clamp(3.6rem, 6.2vw, 6rem);
}

.story-copy > p:not(.section-kicker) {
  margin: 27px 0 0;
  color: #aab7a4;
  font-size: 1.03rem;
  line-height: 1.75;
}

.story-points {
  display: grid;
  gap: 8px;
  margin-top: 30px;
}

.story-points a {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 14px;
  border: 1px solid rgba(216, 255, 130, 0.11);
  border-radius: 12px;
  background: rgba(15, 29, 11, 0.52);
  transition: border-color 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.story-points a:hover {
  border-color: rgba(189, 255, 0, 0.36);
  background: rgba(31, 55, 20, 0.72);
  transform: translateX(5px);
}

.story-points span {
  color: var(--acid);
  font-family: var(--display);
  font-size: 1.1rem;
}

.story-points strong {
  font-size: 0.89rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.story-points small {
  color: #71806c;
  font-size: 0.7rem;
}

.adventures-section {
  position: relative;
  padding: 125px 0 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(189, 255, 0, 0.025), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(189, 255, 0, 0.07), transparent 27rem);
}

.adventure-orbit {
  position: absolute;
  border: 1px solid rgba(189, 255, 0, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.adventure-orbit::before,
.adventure-orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 16px var(--acid);
}

.adventure-orbit::before {
  top: 16%;
  left: 12%;
}

.adventure-orbit::after {
  right: 8%;
  bottom: 22%;
}

.orbit-one {
  top: 90px;
  right: -220px;
  width: 540px;
  height: 540px;
  animation: orbit-spin 24s linear infinite;
}

.orbit-two {
  bottom: 70px;
  left: -170px;
  width: 390px;
  height: 390px;
  animation: orbit-spin 18s linear infinite reverse;
}

.adventures-heading {
  align-items: end;
}

.adventures-heading > p {
  max-width: 430px;
  margin: 0 0 3px;
  color: #8f9f89;
  font-size: 0.94rem;
  line-height: 1.7;
}

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

.gallery-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 255, 145, 0.16);
  border-radius: 20px;
  color: var(--cream);
  background: #0b1509;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.27);
  cursor: zoom-in;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.gallery-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.2), transparent 28%);
  transition: opacity 180ms ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  z-index: 2;
  border-color: rgba(189, 255, 0, 0.5);
  box-shadow: 0 34px 75px rgba(0, 0, 0, 0.42), 0 0 38px rgba(189, 255, 0, 0.08);
}

.gallery-card:hover::before {
  opacity: 1;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 350ms ease, transform 650ms cubic-bezier(.2,.76,.22,1);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.card-wash {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 7, 2, 0.04) 38%, rgba(2, 7, 2, 0.82) 100%),
    linear-gradient(100deg, rgba(4, 11, 4, 0.16), transparent 48%);
}

.gallery-number,
.gallery-open,
.gallery-caption {
  position: absolute;
  z-index: 2;
  transform: translateZ(28px);
}

.gallery-number {
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(241, 255, 211, 0.28);
  border-radius: 50%;
  color: var(--acid-soft);
  background: rgba(4, 11, 4, 0.63);
  backdrop-filter: blur(9px);
  font-family: var(--display);
  font-size: 0.9rem;
}

.gallery-open {
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #111a08;
  background: var(--acid);
  font-size: 1.2rem;
  opacity: 0;
  transform: translate3d(7px, 7px, 28px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-card:hover .gallery-open,
.gallery-card:focus-visible .gallery-open {
  opacity: 1;
  transform: translate3d(0, 0, 28px);
}

.gallery-caption {
  right: 20px;
  bottom: 20px;
  left: 20px;
  text-align: left;
}

.gallery-caption small,
.gallery-caption strong {
  display: block;
}

.gallery-caption small {
  margin-bottom: 7px;
  color: var(--acid-soft);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-caption strong {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.card-rooftop {
  grid-column: span 5;
  height: clamp(430px, 47vw, 560px);
}

.card-midnight {
  grid-column: span 7;
  height: clamp(430px, 47vw, 560px);
}

.card-midnight img {
  object-position: center;
}

.card-tech,
.card-cruiser,
.card-jetski {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
}

.card-tech img {
  object-position: center 28%;
}

.card-cruiser img {
  object-position: 56% center;
}

.card-jetski img {
  object-position: center;
}

.dispatch-console {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(189, 255, 0, 0.2);
  border-radius: 17px;
  background:
    linear-gradient(90deg, rgba(189, 255, 0, 0.07), transparent 35%),
    rgba(7, 16, 6, 0.86);
  box-shadow: var(--shadow);
}

.dispatch-signal {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
}

.dispatch-signal i {
  position: absolute;
  border: 1px solid rgba(189, 255, 0, 0.55);
  border-radius: 50%;
  animation: radar-ping 2.4s ease-out infinite;
}

.dispatch-signal i:nth-child(1) { width: 10px; height: 10px; background: var(--acid); }
.dispatch-signal i:nth-child(2) { width: 27px; height: 27px; animation-delay: 0.35s; }
.dispatch-signal i:nth-child(3) { width: 48px; height: 48px; animation-delay: 0.7s; }

.dispatch-copy span,
.arrow-score span {
  display: block;
  margin-bottom: 5px;
  color: #788673;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dispatch-copy strong {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.arrow-score {
  min-width: 104px;
  padding-left: 20px;
  border-left: 1px solid rgba(218, 255, 139, 0.15);
}

.arrow-score strong {
  color: var(--acid);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
}

.dispatch-fire {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-height: 52px;
  padding: 0 11px 0 20px;
  border: 0;
  border-radius: 12px;
  color: #101806;
  background: var(--acid);
  cursor: pointer;
  font: 900 0.76rem/1 var(--body);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.dispatch-fire b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: var(--acid);
  background: #101806;
  font: 1.2rem/1 Georgia, serif;
}

.dispatch-fire:hover,
.dispatch-fire.is-fired {
  box-shadow: 0 0 30px rgba(189, 255, 0, 0.25);
  transform: translateY(-2px);
}

.art-lightbox {
  width: min(1080px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(218, 255, 139, 0.24);
  border-radius: 24px;
  color: var(--cream);
  background: #071006;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.75), 0 0 70px rgba(189, 255, 0, 0.08);
}

.art-lightbox[open] {
  animation: lightbox-in 260ms cubic-bezier(.18,.8,.25,1) both;
}

.art-lightbox::backdrop {
  background: rgba(1, 5, 1, 0.88);
  backdrop-filter: blur(14px) saturate(0.7);
}

.lightbox-shell {
  position: relative;
}

.art-lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  max-height: calc(100vh - 34px);
  margin: 0;
}

.art-lightbox figure > img {
  width: 100%;
  min-height: 0;
  max-height: calc(100vh - 150px);
  border-radius: 23px 23px 0 0;
  object-fit: contain;
  background: #030703;
}

.art-lightbox figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 112px;
  padding: 20px 78px 20px 24px;
  border-top: 1px solid rgba(218, 255, 139, 0.13);
}

.art-lightbox figcaption > span {
  color: var(--acid);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.art-lightbox h2 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.art-lightbox p {
  margin: 0;
  color: #899683;
  font-size: 0.85rem;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 1px solid rgba(233, 255, 187, 0.24);
  color: var(--cream);
  background: rgba(5, 13, 5, 0.79);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  color: var(--ink);
  background: var(--acid);
}

.lightbox-close {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.7rem;
}

.lightbox-nav {
  top: 45%;
  width: 48px;
  height: 58px;
  border-radius: 13px;
  font-size: 1.25rem;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.chart-section {
  padding-top: 120px;
}

.chart-heading {
  align-items: center;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #92a28c;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-indicator i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
  animation: signal 1.8s ease-in-out infinite;
}

.chart-frame {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  border: 1px solid rgba(189, 255, 0, 0.17);
  border-radius: var(--radius);
  background: #071007;
  box-shadow: var(--shadow);
}

.chart-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.chart-frame iframe {
  display: block;
  width: 100%;
  min-height: 570px;
  border: 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 135px 0 145px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.final-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 100vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189, 255, 0, 0.13), transparent 66%);
  transform: translate(-50%, -50%);
}

.final-inner {
  position: relative;
}

.final-inner h2 {
  font-size: clamp(4.7rem, 10vw, 9rem);
}

.final-inner > p:not(.section-kicker) {
  max-width: 560px;
  margin: 26px auto 0;
  color: #9aaa93;
  line-height: 1.7;
}

.final-actions {
  justify-content: center;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(212, 255, 119, 0.12);
  background: #040904;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  font-size: 1.35rem;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.footer-inner p {
  max-width: 680px;
  margin: 0 auto;
  color: #687464;
  font-size: 0.7rem;
  line-height: 1.55;
  text-align: center;
}

.footer-inner > span {
  color: #687464;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.18,.78,.25,1);
}

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

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

:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

@keyframes signal {
  0%, 100% { opacity: 0.45; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes glint {
  0%, 60% { transform: translateX(-120%); }
  82%, 100% { transform: translateX(120%); }
}

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

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes radar-ping {
  0% { opacity: 0.25; transform: scale(0.65); }
  55% { opacity: 0.85; }
  100% { opacity: 0; transform: scale(1.12); }
}

@keyframes route-pulse {
  from { left: 0; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  to { left: calc(100% - 5px); opacity: 0; }
}

@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.96) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

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

  .hero-inner {
    grid-template-columns: 1fr minmax(290px, 0.7fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 10vw, 7rem);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contract-section,
  .story-grid,
  .bridge-shell {
    grid-template-columns: 1fr;
  }

  .bridge-shell {
    gap: 54px;
  }

  .bridge-intro {
    max-width: 760px;
  }

  .burn-console {
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .contract-section {
    align-items: start;
  }

  .story-art {
    max-width: 760px;
  }

  .card-rooftop,
  .card-midnight {
    grid-column: span 6;
    height: clamp(380px, 58vw, 520px);
  }

  .card-tech,
  .card-cruiser {
    grid-column: span 6;
  }

  .card-jetski {
    grid-column: 4 / span 6;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 8px;
    width: calc(100% - 18px);
    min-height: 62px;
    padding: 8px 8px 8px 12px;
    border-radius: 15px;
  }

  .brand {
    gap: 8px;
    font-size: 1.35rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-buy {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 0.72rem;
  }

  .hero {
    padding: 108px 0 68px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 10, 4, 0.5), rgba(4, 10, 4, 0.93) 52%, var(--forest-950) 100%),
      linear-gradient(90deg, rgba(4, 10, 4, 0.75), rgba(4, 10, 4, 0.35));
  }

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

  .hero-copy {
    order: 2;
  }

  .hero-mark {
    order: 1;
    justify-self: center;
    width: min(78vw, 355px);
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(4rem, 20vw, 6.7rem);
  }

  .hero-lede {
    margin-top: 24px;
  }

  .button {
    flex: 1 1 220px;
  }

  .hero-tags {
    gap: 12px 18px;
  }

  .battle-track {
    min-height: 48px;
    font-size: 1rem;
  }

  .contract-section {
    padding-block: 95px 55px;
  }

  .market-section,
  .chart-section {
    padding-block: 55px 85px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-card {
    min-height: 148px;
    padding: 20px;
  }

  .story-section {
    padding-block: 80px;
  }

  .burn-bridge-section {
    padding-block: 94px;
  }

  .bridge-intro h2 {
    font-size: clamp(4rem, 15vw, 6.5rem);
  }

  .adventures-section {
    padding-block: 90px;
  }

  .adventures-heading > p {
    max-width: 600px;
  }

  .adventure-grid {
    gap: 10px;
  }

  .card-rooftop,
  .card-midnight,
  .card-tech,
  .card-cruiser,
  .card-jetski {
    grid-column: span 12;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .card-rooftop,
  .card-tech {
    aspect-ratio: 1 / 1;
  }

  .gallery-open {
    opacity: 1;
    transform: translate3d(0, 0, 28px);
  }

  .dispatch-console {
    grid-template-columns: auto 1fr auto;
  }

  .arrow-score {
    display: none;
  }

  .art-lightbox figcaption {
    min-height: 104px;
    padding-right: 24px;
  }

  .story-art img {
    aspect-ratio: 16 / 10;
  }

  .story-points a {
    grid-template-columns: 34px 1fr;
  }

  .story-points small {
    display: none;
  }

  .chart-frame,
  .chart-frame iframe {
    min-height: 500px;
  }

  .final-cta {
    padding: 105px 0 115px;
  }

  .final-inner h2 {
    font-size: clamp(4rem, 19vw, 7rem);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .footer-inner p {
    order: 3;
  }

  .console-footer {
    grid-template-columns: 1fr auto;
  }

  .console-footer > span:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .nav-buy span {
    display: none;
  }

  .wanted-stamp {
    top: -20px;
    right: -12px;
    width: 74px;
    height: 74px;
    font-size: 0.61rem;
  }

  .coin-seal {
    right: 16px;
    bottom: -18px;
    min-width: 105px;
    height: 48px;
    font-size: 1.05rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .bridge-route-map {
    grid-template-columns: 1fr;
  }

  .bridge-route-map > b {
    justify-self: center;
    transform: rotate(90deg);
  }

  .bridge-facts {
    grid-template-columns: 1fr;
  }

  .bridge-facts > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .bridge-facts span {
    margin-bottom: 0;
  }

  .burn-console {
    border-radius: 18px;
  }

  .burn-console-topline,
  .burn-form,
  .burn-order {
    padding-inline: 17px;
  }

  .burn-console-topline {
    align-items: center;
    flex-direction: row;
    min-height: 100px;
  }

  .burn-route-preview {
    gap: 5px;
    padding-inline: 8px;
  }

  .route-token {
    min-width: 45px;
    padding-inline: 7px;
  }

  .burn-order-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .deposit-address {
    grid-template-columns: 1fr;
  }

  .deposit-address b {
    width: 100%;
  }

  .console-footer {
    padding-inline: 17px;
  }

  .stat-card {
    min-height: 135px;
  }

  .story-caption {
    right: 18px;
    bottom: 18px;
  }

  .gallery-caption strong {
    font-size: 1.8rem;
  }

  .dispatch-console {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .dispatch-signal {
    width: 46px;
    height: 46px;
  }

  .dispatch-copy strong {
    font-size: 1.25rem;
  }

  .dispatch-fire {
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
  }

  .art-lightbox {
    width: calc(100% - 14px);
    max-height: calc(100vh - 14px);
    border-radius: 17px;
  }

  .art-lightbox figure > img {
    max-height: calc(100vh - 160px);
    border-radius: 16px 16px 0 0;
  }

  .art-lightbox figcaption {
    grid-template-columns: 1fr;
    gap: 7px;
    min-height: 135px;
    padding: 15px 18px;
  }

  .art-lightbox p {
    line-height: 1.45;
  }

  .lightbox-nav {
    top: 42%;
    width: 42px;
    height: 52px;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .chart-frame,
  .chart-frame iframe {
    min-height: 460px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  #arrow-field {
    display: none;
  }

  .cursor-glow {
    display: none;
  }

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