/* ============ Fonts ============ */
@font-face {
  font-family: "Archivo Expanded";
  src: url("fonts/archivo-expanded-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo Expanded";
  src: url("fonts/archivo-expanded-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Geist";
  src: url("fonts/geist-var.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Geist Mono";
  src: url("fonts/geist-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============ Tokens ============ */
:root {
  --bg-0: #03060f;
  --bg-1: #050914;
  --bg-2: #0a1330;
  --ink: #eef5ff;
  --ink-2: #b7c8e3;
  --ink-3: #8397b8;
  --ice: #a9dcff;
  --ice-2: #6cc4ff;
  --blue: #2f8cff;
  --blue-deep: #1747c9;
  --green: #74ff62;
  --red: #d42a52;
  --line: rgba(160, 205, 255, 0.12);
  --line-2: rgba(160, 210, 255, 0.24);
  --panel: linear-gradient(180deg, rgba(150, 200, 255, 0.075), rgba(110, 160, 255, 0.022));
  --panel-solid: rgba(10, 18, 40, 0.72);
  --radius: 22px;
  --radius-sm: 14px;
  /* The safe-area term folds in automatically wherever --nav-h is used
     (scroll-padding-top, hero padding-top, the sticky Freeze Code header)
     so a Dynamic-Island/notched phone in portrait never needs a second fix. */
  --nav-h: calc(76px + env(safe-area-inset-top, 0px));
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --font-display: "Archivo Expanded", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

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

html {
  color-scheme: dark;
  background: var(--bg-0);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(1100px 760px at 85% -8%, rgba(38, 104, 255, 0.24), transparent 62%),
    radial-gradient(900px 700px at -10% 18%, rgba(24, 74, 200, 0.16), transparent 60%),
    linear-gradient(180deg, #071029 0%, #050a1a 22%, #040815 55%, #03060f 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  background: url("assets/grain.svg") repeat;
  opacity: 0.05;
}

img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }
picture { display: contents; }

body.nav-lock { width: 100%; overflow: hidden; }

a, button {
  /* No default WebKit tap-flash (it clashes with the ice/blue glass theme —
     every interactive element already has its own themed hover/active
     state) and no 300ms double-tap-to-zoom delay on any tappable element. */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, p, figure, blockquote, dl, dd, ol, ul { margin: 0; }
ol, ul { padding: 0; list-style: none; }
strong { font-weight: 600; color: var(--ink); }

::selection { background: rgba(108, 196, 255, 0.35); color: #fff; }

:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 3px;
  border-radius: 8px;
}

[hidden] { display: none !important; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ice);
  color: #03101f;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-copy {
  position: fixed;
  top: 0; left: 0;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ============ Glass ============ */
.glass {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 60px -34px rgba(0, 0, 0, 0.7);
}
/* top light edge */
.glass::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(150, 215, 255, 0.55), transparent);
  pointer-events: none;
}
/* pointer spotlight edge */
[data-spot]::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 0%), rgba(120, 200, 255, 0.75), rgba(47, 140, 255, 0.18) 40%, transparent 65%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
[data-spot]:hover::before { opacity: 1; }

/* ============ Type ============ */
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 1.15rem + 3.1vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #e4f4ff 0%, #8fd0ff 55%, #3f95ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ice);
}
.eyebrow__num {
  display: inline-grid;
  place-items: center;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(108, 196, 255, 0.08);
  color: var(--ink);
  letter-spacing: 0.08em;
}

.lede {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 34em;
  text-wrap: pretty;
}

.section { position: relative; isolation: isolate; padding-block: clamp(72px, 8.5vw, 120px); }
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.levels::after, .sell::after, .code::after, .token::after, .buy::after, .roadmap::after, .community::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(var(--container), 88%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(140, 200, 255, 0.2), transparent);
  pointer-events: none;
}
.lore::before { background: radial-gradient(55% 45% at 50% 48%, rgba(47, 140, 255, 0.12), transparent 70%); }
.code::before {
  background:
    radial-gradient(38% 50% at 88% 55%, rgba(47, 140, 255, 0.14), transparent 70%),
    radial-gradient(30% 40% at 6% 18%, rgba(23, 71, 201, 0.14), transparent 70%);
}
.token::before {
  background:
    radial-gradient(45% 55% at 50% 60%, rgba(47, 140, 255, 0.12), transparent 70%),
    repeating-linear-gradient(90deg, rgba(140, 200, 255, 0.045) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(140, 200, 255, 0.045) 0 1px, transparent 1px 72px);
  -webkit-mask: radial-gradient(60% 70% at 50% 55%, #000 30%, transparent 80%);
  mask: radial-gradient(60% 70% at 50% 55%, #000 30%, transparent 80%);
}
.buy::before { background: radial-gradient(40% 50% at 15% 60%, rgba(23, 71, 201, 0.16), transparent 70%), radial-gradient(35% 45% at 90% 30%, rgba(47, 140, 255, 0.1), transparent 70%); }
.community::before { background: radial-gradient(55% 60% at 50% 80%, rgba(47, 140, 255, 0.2), transparent 70%); }

.section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  align-items: end;
  gap: 24px 64px;
}
.section-head--split .lede { justify-self: end; }
.section-head--center { text-align: center; display: grid; justify-items: center; }
.section-head--center .lede { margin-top: 20px; }

@media (max-width: 860px) {
  .section-head--split { grid-template-columns: minmax(0, 1fr); }
  .section-head--split .lede { justify-self: start; }
}

/* ============ Buttons ============ */
.btn {
  --h: 50px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--h);
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.005em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--sm { --h: 42px; padding: 0 16px; font-size: 14px; border-radius: 12px; }
.btn--lg { --h: 56px; padding: 0 26px; font-size: 16px; border-radius: 16px; }
.btn__icon { width: 18px; height: 18px; flex: none; }

.btn--primary {
  color: #031126;
  background: linear-gradient(180deg, #d4efff 0%, #8fd2ff 42%, #4ba6ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -2px 6px rgba(20, 90, 220, 0.35),
    0 0 0 1px rgba(140, 210, 255, 0.55),
    0 12px 32px -10px rgba(47, 140, 255, 0.75);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -2px 6px rgba(20, 90, 220, 0.35),
    0 0 0 1px rgba(170, 225, 255, 0.8),
    0 18px 44px -10px rgba(47, 140, 255, 0.95);
}

.btn--glass {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(160, 210, 255, 0.12), rgba(160, 210, 255, 0.04));
  box-shadow: inset 0 0 0 1px var(--line-2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.btn--glass:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(160, 210, 255, 0.18), rgba(160, 210, 255, 0.07));
  box-shadow: inset 0 0 0 1px rgba(160, 215, 255, 0.45), 0 14px 34px -14px rgba(47, 140, 255, 0.6);
}

.btn--buy {
  color: #03140a;
  background: linear-gradient(180deg, #c9ffc0 0%, #86ff74 45%, #3fd84a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 0 0 1px rgba(150, 255, 140, 0.55), 0 12px 32px -10px rgba(80, 230, 90, 0.6);
}
.btn--buy:hover { transform: translateY(-2px); }

.btn__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #0b3d8f;
  box-shadow: 0 0 0 3px rgba(11, 61, 143, 0.18);
  flex: none;
}
body[data-state="live"] .btn__dot { background: #148a2a; box-shadow: 0 0 0 3px rgba(20, 138, 42, 0.2); }

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  background: rgba(160, 210, 255, 0.07);
  box-shadow: inset 0 0 0 1px var(--line);
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { background: rgba(160, 210, 255, 0.14); box-shadow: inset 0 0 0 1px rgba(160, 215, 255, 0.42); transform: translateY(-1px); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ice);
  background: rgba(108, 196, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(108, 196, 255, 0.28);
  white-space: nowrap;
}
.pill__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ice-2);
  box-shadow: 0 0 10px var(--ice-2);
  animation: pulse 2.2s ease-in-out infinite;
}
[data-ca-state="live"] .pill { color: var(--green); background: rgba(116, 255, 98, 0.08); box-shadow: inset 0 0 0 1px rgba(116, 255, 98, 0.3); }
[data-ca-state="live"] .pill__dot { background: var(--green); box-shadow: 0 0 10px var(--green); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}

/* ============ Nav ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: max(12px, env(safe-area-inset-top)) max(var(--gutter), env(safe-area-inset-right)) 0 max(var(--gutter), env(safe-area-inset-left));
  pointer-events: none;
}
.nav__bar {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: calc(var(--container) + 24px);
  height: 60px;
  margin-inline: auto;
  padding: 0 10px 0 12px;
  border-radius: 18px;
  background: rgba(8, 15, 34, 0.35);
  box-shadow: inset 0 0 0 1px rgba(160, 205, 255, 0.08);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav.is-scrolled .nav__bar {
  background: rgba(6, 12, 28, 0.78);
  box-shadow: inset 0 0 0 1px rgba(160, 205, 255, 0.14), 0 18px 40px -20px rgba(0, 0, 0, 0.8);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: none;
  border-radius: 12px;
}
.brand__logo {
  width: 36px; height: 36px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(140, 200, 255, 0.35), 0 0 18px rgba(47, 140, 255, 0.45);
}
.brand__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
}
.brand__word-2 { color: var(--ice-2); }

.nav__links { margin-inline: auto; }
.nav__links ul { display: flex; gap: 2px; }
.nav__links a:not(.btn) {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
}
.nav__links a:not(.btn):hover { color: var(--ink); background: rgba(160, 210, 255, 0.07); }
.nav__links a[aria-current="true"] { color: var(--ink); background: rgba(160, 210, 255, 0.09); box-shadow: inset 0 0 0 1px var(--line); }
.nav__menu-cta { display: none; }

.nav__actions { display: flex; align-items: center; gap: 8px; flex: none; }
.nav__toggle { display: none; }
.nav__toggle-lines,
.nav__toggle-lines::before,
.nav__toggle-lines::after {
  display: block;
  width: 18px; height: 1.8px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav__toggle-lines { position: relative; }
.nav__toggle-lines::before, .nav__toggle-lines::after { content: ""; position: absolute; left: 0; }
.nav__toggle-lines::before { top: -6px; }
.nav__toggle-lines::after { top: 6px; }
.nav__toggle[aria-expanded="true"] .nav__toggle-lines { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggle-lines::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-lines::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1120px) {
  .nav__links a:not(.btn) { padding: 0 9px; font-size: 13.5px; }
}

@media (max-width: 1020px) {
  .nav__toggle { display: inline-grid; }
  .nav__links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    margin: 0;
    padding: 10px;
    border-radius: 18px;
    background: rgba(6, 12, 28, 0.94);
    box-shadow: inset 0 0 0 1px rgba(160, 205, 255, 0.14), 0 30px 60px -20px rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    backdrop-filter: blur(18px) saturate(150%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0.25s;
  }
  .nav.is-open .nav__links {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s;
  }
  .nav__links ul { flex-direction: column; gap: 2px; }
  .nav__links a:not(.btn) { display: flex; height: 48px; padding: 0 14px; font-size: 16px; color: var(--ink); }
  .nav__menu-cta { display: flex; width: 100%; margin-top: 8px; }
  .nav__actions { margin-left: auto; }
}

@media (max-width: 560px) {
  .nav__cta { display: none; }
  .nav__bar { gap: 10px; height: 58px; }
  .icon-btn { width: 40px; height: 40px; }
}
@media (max-width: 380px) {
  .brand__word-2 { display: none; }
}

/* ============ Hero ============ */
.hero {
  --px: 0;
  --py: 0;
  --sy: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(100svh, 960px);
  padding: calc(var(--nav-h) + clamp(28px, 5vw, 64px)) 0 clamp(72px, 8vw, 112px);
  display: flex;
  align-items: center;
}
.hero__snow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.hero__aurora {
  position: absolute;
  inset: -10% -10% 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(40% 50% at 72% 38%, rgba(47, 140, 255, 0.34), transparent 70%),
    radial-gradient(28% 36% at 78% 30%, rgba(140, 215, 255, 0.18), transparent 70%),
    radial-gradient(38% 42% at 18% 70%, rgba(23, 71, 201, 0.22), transparent 70%),
    conic-gradient(from 210deg at 70% 40%, transparent 0deg, rgba(60, 150, 255, 0.08) 60deg, transparent 140deg);
  transform: translate3d(calc(var(--px) * -14px), calc(var(--py) * -10px), 0);
}
.hero__floor {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42%;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent, rgba(3, 6, 15, 0.9)),
    repeating-linear-gradient(90deg, rgba(140, 200, 255, 0.05) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(140, 200, 255, 0.05) 0 1px, transparent 1px 80px);
  -webkit-mask: linear-gradient(180deg, transparent, #000 40%, #000 60%, transparent);
  mask: linear-gradient(180deg, transparent, #000 40%, #000 60%, transparent);
  transform: perspective(600px) rotateX(58deg);
  transform-origin: 50% 100%;
  opacity: 0.7;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 34px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: rgba(160, 210, 255, 0.07);
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.status-chip [data-status-text] { color: var(--ice); }
body[data-state="live"] .status-chip [data-status-text] { color: var(--green); }
.status-chip__dot {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ice-2);
  box-shadow: 0 0 12px var(--ice-2);
}
.status-chip__dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--ice-2);
  animation: ping 2.4s var(--ease) infinite;
}
body[data-state="live"] .status-chip__dot { background: var(--green); box-shadow: 0 0 12px var(--green); }
body[data-state="live"] .status-chip__dot::after { border-color: var(--green); }
.status-chip__sep { width: 1px; height: 12px; background: var(--line-2); }

@keyframes ping {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}

.wordmark {
  --fx: 30%;
  --fy: 25%;
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.1rem, 0.9rem + 7.4vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: #dff1ff;
  background:
    radial-gradient(22vw circle at var(--fx) var(--fy), rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 70%),
    url("assets/ice.svg") 0 0 / 520px 260px repeat,
    linear-gradient(180deg, #f6fbff 0%, #d6efff 34%, #93d2ff 62%, #3d8fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 28px rgba(47, 140, 255, 0.38)) drop-shadow(0 2px 0 rgba(3, 10, 30, 0.35));
}
.wordmark__line { display: block; }
.wordmark__line + .wordmark__line { padding-left: 0.06em; }

.slogan {
  margin-top: clamp(22px, 2.6vw, 30px);
  max-width: 30em;
  padding-left: 18px;
  border-left: 2px solid;
  border-image: linear-gradient(180deg, var(--ice), rgba(47, 140, 255, 0.1)) 1;
}
.slogan p {
  font-size: clamp(1.08rem, 0.98rem + 0.45vw, 1.34rem);
  line-height: 1.5;
  color: var(--ink-2);
  text-wrap: pretty;
}
.slogan strong { color: var(--ink); font-weight: 600; }
.slogan span, .slogan strong { white-space: nowrap; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(26px, 3vw, 36px);
}

/* ============ Contract address box ============ */
.ca {
  margin-top: 22px;
  max-width: 580px;
  padding: 16px 16px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(150, 200, 255, 0.09), rgba(110, 160, 255, 0.03));
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
}
.ca__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.ca__label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.ca__field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 6px 6px 6px 14px;
  border-radius: 14px;
  background: rgba(2, 6, 18, 0.62);
  box-shadow: inset 0 0 0 1px rgba(160, 205, 255, 0.1), inset 0 8px 24px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.ca__icon {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  flex: none;
  border-radius: 9px;
  color: var(--ice);
  background: rgba(108, 196, 255, 0.1);
}
.ca__icon svg { width: 16px; height: 16px; }
.ca__value {
  position: relative;
  z-index: 1;
  min-width: 0;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
}
[data-ca-state="pending"] .ca__value { flex: none; }
.ca__ice {
  display: flex;
  gap: 5px;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, #000 0%, #000 40%, transparent 100%);
  mask: linear-gradient(90deg, #000 0%, #000 40%, transparent 100%);
}
.ca__ice i {
  flex: none;
  width: 44px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(160, 215, 255, 0.16), rgba(200, 235, 255, 0.34), rgba(160, 215, 255, 0.16));
  background-size: 200% 100%;
  animation: ice-shimmer 2.8s linear infinite;
}
.ca__ice i:nth-child(2n) { width: 30px; animation-delay: -0.4s; }
.ca__ice i:nth-child(3n) { width: 56px; animation-delay: -0.9s; }
@keyframes ice-shimmer { to { background-position: -200% 0; } }

.ca__copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  margin-left: auto;
  padding: 0 14px;
  flex: none;
  border: 0;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: var(--ink-2);
  background: rgba(160, 210, 255, 0.08);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.ca__copy svg { width: 16px; height: 16px; }
.ca__copy[aria-disabled="true"] { cursor: not-allowed; }
.ca__copy[aria-disabled="true"]:hover { color: var(--ink); }
.ca__note {
  margin-top: 11px;
  padding-inline: 2px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-3);
}

/* live state */
[data-ca-state="live"] .ca__ice { display: none; }
[data-ca-state="live"] .ca__icon { color: var(--green); background: rgba(116, 255, 98, 0.1); }
[data-ca-state="live"] .ca__value { flex: 1 1 auto; white-space: normal; overflow-wrap: anywhere; line-height: 1.35; user-select: all; }
.ca:not(.ca--wide)[data-ca-state="live"] .ca__value { font-size: 13.5px; letter-spacing: 0; }
[data-ca-state="live"] .ca__copy {
  color: #031126;
  background: linear-gradient(180deg, #d4efff, #6cc4ff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 6px 18px -8px rgba(47, 140, 255, 0.8);
}
[data-ca-state="live"] .ca__copy:hover { filter: brightness(1.06); }
.ca__copy.is-copied { color: #03140a !important; background: linear-gradient(180deg, #c9ffc0, #74ff62) !important; }

.ca--wide {
  max-width: none;
  margin: 0 0 16px;
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: var(--radius);
}
.ca--wide .ca__head { margin-bottom: 16px; }
.ca--wide .ca__field { min-height: 66px; padding-left: 16px; }
.ca--wide .ca__value { font-size: clamp(14px, 1.1vw + 8px, 17px); }
.ca--wide .ca__note { font-size: 14px; margin-top: 14px; }
.ca__icicles {
  position: absolute;
  left: 22px; right: 22px;
  top: -2px;
  height: 18px;
  background: url("assets/icicles.svg") 0 0 / 150px 25px repeat-x;
  opacity: 0.4;
  pointer-events: none;
  -webkit-mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

/* ============ Hero art ============ */
.hero__art {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1;
  justify-self: center;
}
.orb {
  position: relative;
  display: grid;
  place-items: center;
  width: 78%;
  aspect-ratio: 1;
  transform:
    translate3d(calc(var(--px) * 12px), calc(var(--py) * 10px + var(--sy) * 60px), 0)
    rotateX(calc(var(--py) * -5deg))
    rotateY(calc(var(--px) * 6deg));
  transform-style: preserve-3d;
  will-change: transform;
}
.orb__halo {
  position: absolute;
  inset: -34%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(47, 140, 255, 0.45), rgba(47, 140, 255, 0.12) 55%, transparent 75%);
  pointer-events: none;
}
.orb__ring {
  position: absolute;
  inset: -7%;
  border-radius: 50%;
  padding: 1.5px;
  background: conic-gradient(from var(--ring, 0deg), rgba(170, 225, 255, 0) 0deg, rgba(170, 225, 255, 0.95) 60deg, rgba(47, 140, 255, 0.35) 120deg, rgba(170, 225, 255, 0) 200deg, rgba(47, 140, 255, 0.3) 300deg, rgba(170, 225, 255, 0) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  animation: ring-spin 14s linear infinite;
}
@property --ring {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes ring-spin { to { --ring: 360deg; } }
.orb__disc {
  position: absolute;
  inset: -3.5%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(160deg, rgba(160, 215, 255, 0.14), rgba(40, 90, 200, 0.06));
  box-shadow:
    inset 0 0 0 1px rgba(170, 220, 255, 0.22),
    inset 0 -20px 60px rgba(47, 140, 255, 0.18),
    0 40px 90px -30px rgba(10, 60, 180, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.orb__logo {
  position: relative;
  width: 80%;
  max-width: 360px;
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 18px 40px rgba(0, 20, 70, 0.7));
  transform: translateZ(30px);
}

/* rotating text ring (sits in the glass rim between logo and disc edge) */
.orb__text {
  position: absolute;
  top: -3.5%;
  left: -3.5%;
  width: 107%;
  height: 107%;
  max-width: none;
  overflow: visible;
  pointer-events: none;
  animation: orb-text-spin 90s linear infinite;
}
@keyframes orb-text-spin { to { rotate: 360deg; } }
.orb__text-band { fill: none; stroke: rgba(3, 9, 26, 0.34); stroke-width: 36; }
.orb__text-line { fill: none; stroke: rgba(170, 222, 255, 0.24); stroke-width: 1; vector-effect: non-scaling-stroke; }
.orb__text-line--dash { stroke: rgba(170, 222, 255, 0.3); stroke-dasharray: 1.5 7; }
.orb__text-copy {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 16px;
  white-space: pre;
  fill: rgba(190, 228, 255, 0.8);
}
.orb__text-sep { fill: var(--ice-2); }
.orb__text-tick { fill: #f2f8ff; }

.shard {
  position: absolute;
  display: block;
  background: linear-gradient(135deg, rgba(230, 246, 255, 0.75), rgba(120, 190, 255, 0.18) 60%, rgba(60, 140, 255, 0.05));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  pointer-events: none;
  animation: float 9s ease-in-out infinite;
  transform: translate3d(calc(var(--px) * var(--d) * 1px), calc(var(--py) * var(--d) * 1px), 0) rotate(var(--r));
}
.shard--1 { --d: -26; --r: 18deg;  width: 34px; height: 46px; top: 8%;  left: 10%; clip-path: polygon(50% 0, 100% 38%, 64% 100%, 0 70%); }
.shard--2 { --d: 18;  --r: -24deg; width: 22px; height: 30px; top: 16%; right: 8%; clip-path: polygon(30% 0, 100% 20%, 70% 100%, 0 60%); animation-delay: -3s; }
.shard--3 { --d: -14; --r: 40deg;  width: 18px; height: 22px; bottom: 20%; left: 4%; clip-path: polygon(0 0, 100% 30%, 50% 100%); animation-delay: -5s; }
.shard--4 { --d: 30;  --r: -8deg;  width: 42px; height: 34px; bottom: 9%; right: 14%; clip-path: polygon(10% 20%, 70% 0, 100% 60%, 40% 100%); animation-delay: -1.5s; }
.shard--5 { --d: 10;  --r: 60deg;  width: 14px; height: 20px; top: 46%; right: 1%; clip-path: polygon(50% 0, 100% 100%, 0 80%); animation-delay: -7s; }
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.float-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  border-radius: 16px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(20, 36, 72, 0.72), rgba(10, 20, 44, 0.66));
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  animation: float 8s ease-in-out infinite;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.float-chip--status { top: -34px; left: -3%; }
.float-chip--sell { bottom: -46px; right: -3%; animation-delay: -4s; }
.float-chip--sell:hover { border-color: rgba(160, 215, 255, 0.45); }
.float-chip__icon {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 11px;
  color: #031126;
  background: linear-gradient(180deg, #d4efff, #6cc4ff);
}
.float-chip__icon svg { width: 20px; height: 20px; }
.float-chip__text { display: grid; line-height: 1.2; }
.float-chip__text small {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.float-chip__text b { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.float-chip__sell {
  position: relative;
  display: grid;
  place-items: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  color: #eaf6ff;
  background: linear-gradient(180deg, rgba(212, 42, 82, 0.55), rgba(168, 20, 58, 0.55));
  box-shadow: inset 0 0 0 1px rgba(200, 235, 255, 0.55), inset 0 0 14px rgba(170, 220, 255, 0.55);
  overflow: hidden;
}
.float-chip__sell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(220, 242, 255, 0.55), rgba(120, 190, 255, 0.2) 50%, rgba(220, 242, 255, 0.4));
}

/* ============ Marquee ============ */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(23, 71, 201, 0.12), rgba(80, 170, 255, 0.16) 50%, rgba(23, 71, 201, 0.12));
}
.marquee__row { overflow: hidden; }
.marquee__row--main { padding: 20px 0; }
.marquee__row--sub {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 18, 0.5);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee__track--reverse { animation-duration: 60s; animation-direction: reverse; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 34px);
  padding-right: clamp(20px, 2.4vw, 34px);
  flex: none;
}
.marquee__row--main span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 1.2rem + 1.3vw, 38px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
}
.marquee__row--main span.is-outline {
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(170, 222, 255, 0.85);
}
.marquee__row--main span.marquee__emoji { font-family: var(--font-body); letter-spacing: 0.08em; }
.marquee__row--main i {
  width: 12px; height: 12px;
  flex: none;
  transform: rotate(45deg);
  border-radius: 2px;
  background: linear-gradient(135deg, #eaf7ff, #4ba6ff);
  box-shadow: 0 0 14px rgba(108, 196, 255, 0.8);
}
.marquee__row--sub span,
.marquee__row--sub b {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-3);
}
.marquee__row--sub b { color: var(--ice-2); }
@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }

/* ============ Lore ============ */
.lore__frame {
  position: relative;
  padding: clamp(8px, 1vw, 12px);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(180deg, rgba(150, 205, 255, 0.14), rgba(90, 150, 255, 0.04));
  box-shadow:
    inset 0 0 0 1px rgba(160, 210, 255, 0.18),
    0 50px 100px -40px rgba(8, 40, 140, 0.8),
    0 0 80px -30px rgba(47, 140, 255, 0.5);
}
.lore__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 1;
  background: #071026;
}
.lore__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1.02 + var(--hover, 0) * 0.02));
  transition: transform 0.9s var(--ease);
}
.lore__frame:hover { --hover: 1; }
.lore__corner {
  position: absolute;
  width: 26px; height: 26px;
  border: 2px solid rgba(200, 235, 255, 0.75);
  pointer-events: none;
}
.lore__corner--tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; border-top-left-radius: 8px; }
.lore__corner--br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; border-bottom-right-radius: 8px; }
.lore__caption {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 8px 4px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.lore__caption span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.lore__caption svg { width: 14px; height: 14px; color: var(--ice); }
.lore__caption-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line-2), transparent); }

.beats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(40px, 5vw, 64px);
  counter-reset: beat;
}
.beat {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.beat::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 48px; height: 1px;
  background: var(--ice);
  box-shadow: 0 0 12px var(--ice-2);
}
.beat__num {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ice);
}
.beat h3 { font-size: 1.25rem; margin-bottom: 10px; }
.beat p { color: var(--ink-2); max-width: 30em; }
.beat:last-child::before { background: var(--green); box-shadow: 0 0 12px rgba(116, 255, 98, 0.7); }

@media (max-width: 760px) {
  .beats { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .lore__media { aspect-ratio: 1200 / 630; }
  .lore__corner { width: 18px; height: 18px; }
  .lore__corner--tl { top: 10px; left: 10px; }
  .lore__corner--br { bottom: 10px; right: 10px; }
  .lore__caption span:last-child { display: none; }
}

/* ============ Sell gag ============ */
.sell { overflow: hidden; }
.sell__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 55% at 72% 50%, rgba(47, 140, 255, 0.2), transparent 70%),
    radial-gradient(30% 40% at 20% 30%, rgba(23, 71, 201, 0.14), transparent 70%);
}
.sell__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}
.sell__copy .lede { margin-top: 22px; }
.sell__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 190px));
  gap: 14px;
  margin-top: 34px;
}
.sell__stat {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(160, 210, 255, 0.05);
  box-shadow: inset 0 0 0 1px var(--line);
}
.sell__stat dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.sell__stat dd {
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.sell__stat--zero dd { color: var(--ice-2); }
.sell__stat dd.is-bump { animation: bump 0.4s var(--ease); }
@keyframes bump { 40% { transform: scale(1.18); color: var(--ice); } }

.swap {
  width: 100%;
  max-width: 500px;
  justify-self: center;
  padding: 18px;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(22, 38, 78, 0.78), rgba(10, 18, 42, 0.82));
  box-shadow:
    inset 0 0 0 1px rgba(160, 210, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 60px 120px -50px rgba(10, 60, 200, 0.85),
    0 0 0 8px rgba(120, 190, 255, 0.03);
}
.swap__icicles {
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 24px;
  background: url("assets/icicles.svg") 12px 0 / 180px 30px repeat-x;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.swap__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6px 16px;
}
.swap__title { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.swap__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ice);
  background: rgba(108, 196, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(108, 196, 255, 0.28);
}
.swap__tag svg { width: 14px; height: 14px; }
.swap__field {
  position: relative;
  padding: 14px 16px 16px;
  border-radius: 18px;
  background: rgba(2, 6, 18, 0.5);
  box-shadow: inset 0 0 0 1px rgba(160, 205, 255, 0.08);
}
.swap__label {
  font-size: 13px;
  color: var(--ink-3);
}
.swap__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}
.swap__amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.8rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}
.swap__amount--muted { color: var(--ink-2); }
.token-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 14px 0 8px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  background: rgba(160, 210, 255, 0.1);
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.token-pill img { width: 22px; height: 22px; border-radius: 50%; }
.token-pill--muted { padding-left: 12px; color: var(--ink-2); }
.swap__switch {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  margin: -12px auto;
  border-radius: 12px;
  color: var(--ice);
  background: #0c1733;
  box-shadow: inset 0 0 0 1px var(--line-2), 0 0 0 5px rgba(14, 26, 58, 1);
}
.swap__switch svg { width: 18px; height: 18px; }

.swap__arena {
  position: relative;
  display: grid;
  place-items: center;
  height: 132px;
  margin-top: 14px;
  border-radius: 18px;
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(47, 140, 255, 0.12), transparent 70%),
    repeating-linear-gradient(135deg, rgba(160, 210, 255, 0.035) 0 10px, transparent 10px 20px);
  box-shadow: inset 0 0 0 1px rgba(160, 205, 255, 0.07);
}
.sell-btn {
  --dx: 0px;
  --dy: 0px;
  position: relative;
  width: min(100%, 290px);
  height: 58px;
  border: 0;
  border-radius: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(180deg, #d42a52 0%, #a8143a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -3px 8px rgba(80, 0, 20, 0.35),
    0 0 0 1px rgba(255, 120, 150, 0.35),
    0 16px 34px -12px rgba(212, 42, 82, 0.75);
  transform: translate3d(var(--dx), var(--dy), 0);
  transition:
    transform 0.42s cubic-bezier(0.3, 1.5, 0.5, 1),
    background 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    color 0.4s;
  touch-action: manipulation;
}
.sell-btn:focus-visible { outline-offset: 4px; }
.sell-btn__label { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; }
.sell-btn::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px;
  top: calc(100% - 3px);
  height: 22px;
  background: url("assets/icicles.svg") 0 0 / 150px 25px repeat-x;
  opacity: 0;
  transform: scaleY(0.2);
  transform-origin: top;
  transition: opacity 0.35s, transform 0.5s var(--ease);
  pointer-events: none;
}
.sell-btn.is-frozen {
  color: #062145;
  background: linear-gradient(180deg, #f1faff 0%, #bfe5ff 45%, #7cc0ff 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.9),
    inset 0 -10px 18px rgba(70, 150, 255, 0.45),
    inset 0 6px 12px rgba(255, 255, 255, 0.7),
    0 0 34px rgba(120, 200, 255, 0.65);
}
.sell-btn.is-frozen::after { opacity: 0.95; transform: none; }
.swap.is-shaking .sell-btn { animation: shake 0.38s linear; }
@keyframes shake {
  0%, 100% { translate: 0 0; }
  20% { translate: -5px 0; }
  40% { translate: 4px 0; }
  60% { translate: -3px 0; }
  80% { translate: 2px 0; }
}

.swap__foot {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 6px 4px;
}
.swap__msg {
  min-height: 3em;
  display: flex;
  align-items: center;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-2);
  text-wrap: balance;
}
.swap.is-frozen .swap__msg { color: var(--ink); font-weight: 600; }
.swap__hold {
  flex: none;
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  background: rgba(160, 210, 255, 0.08);
  box-shadow: inset 0 0 0 1px var(--line-2);
  transition: background-color 0.2s, box-shadow 0.2s;
}
.swap__hold:hover { background: rgba(160, 210, 255, 0.14); box-shadow: inset 0 0 0 1px rgba(160, 215, 255, 0.45); }

.swap__frost {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(120% 100% at 50% 50%, transparent 52%, rgba(190, 230, 255, 0.24) 100%),
    url("assets/ice.svg") center / 640px 320px repeat;
  box-shadow: inset 0 0 70px rgba(170, 220, 255, 0.35), inset 0 0 0 1px rgba(210, 240, 255, 0.5);
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.swap.is-frozen .swap__frost { opacity: 0.55; }
.swap__crack {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: drop-shadow(0 0 3px rgba(130, 205, 255, 0.95));
  transition: opacity 0.8s var(--ease);
}
.swap.is-thawing .swap__crack { opacity: 0; }
.crack path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: crack-draw 0.55s var(--ease) var(--delay, 0s) forwards;
}
.crack .crack__ray { stroke: rgba(240, 250, 255, 0.95); stroke-width: 1.4; }
.crack .crack__branch { stroke: rgba(215, 240, 255, 0.65); stroke-width: 0.9; }
.crack .crack__ring { stroke: rgba(215, 240, 255, 0.6); stroke-width: 1; }
.crack circle { fill: rgba(235, 248, 255, 0.9); animation: impact 0.6s var(--ease) forwards; transform-box: fill-box; transform-origin: center; }
@keyframes crack-draw { to { stroke-dashoffset: 0; } }
@keyframes impact { from { opacity: 1; transform: scale(0.2); } to { opacity: 0; transform: scale(3); } }

.shatter {
  position: absolute;
  z-index: 5;
  width: var(--s, 12px);
  height: calc(var(--s, 12px) * 1.3);
  pointer-events: none;
  background: linear-gradient(135deg, rgba(240, 250, 255, 0.95), rgba(130, 200, 255, 0.35));
  clip-path: polygon(50% 0, 100% 40%, 60% 100%, 0 65%);
  animation: shatter 0.85s cubic-bezier(0.1, 0.7, 0.3, 1) forwards;
}
@keyframes shatter {
  from { transform: translate(-50%, -50%) rotate(0deg); opacity: 1; }
  to { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) rotate(var(--rot)); opacity: 0; }
}

/* ============ Freeze Code ============ */
.code__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.code__head { position: sticky; top: calc(var(--nav-h) + 40px); }
.code__head .lede { margin-top: 22px; }
.code__art { width: min(240px, 60%); margin-top: 28px; }
.rules { display: grid; gap: 16px; }
.rule {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
}
.rule__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 2rem + 3vw, 5rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.3px rgba(150, 212, 255, 0.7);
  background: linear-gradient(180deg, rgba(200, 235, 255, 0.22), rgba(47, 140, 255, 0));
  -webkit-background-clip: text;
  background-clip: text;
}
.rule h3 { font-size: clamp(1.2rem, 1rem + 0.8vw, 1.6rem); margin: 4px 0 12px; }
.rule p { color: var(--ink-2); max-width: 36em; }
.rule:nth-child(2) { margin-left: clamp(0px, 3vw, 40px); }
.rule:nth-child(3) { margin-left: clamp(0px, 6vw, 80px); }

@media (max-width: 900px) {
  .code__grid { grid-template-columns: minmax(0, 1fr); }
  .code__head { position: static; }
  .rule:nth-child(n) { margin-left: 0; }
}
@media (max-width: 480px) {
  .rule { grid-template-columns: minmax(0, 1fr); gap: 14px; }
}

/* ============ Token facts ============ */
.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.fact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 128px;
  padding: 22px 24px;
  border-radius: 18px;
}
.fact dt {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.fact dd {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.fact.is-pending dd {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
  color: var(--ice);
}
.fact__lock { width: 15px; height: 15px; flex: none; opacity: 0.85; }
.fact:not(.is-pending) .fact__lock { display: none; }
.fact[data-live-ca] dd { font-family: var(--font-mono); font-weight: 500; font-size: 13px; letter-spacing: 0; line-height: 1.4; }

@media (max-width: 560px) {
  .facts { grid-template-columns: minmax(0, 1fr); gap: 0; border-radius: 18px; overflow: hidden; box-shadow: inset 0 0 0 1px var(--line); background: var(--panel); }
  .fact {
    flex-direction: row;
    align-items: center;
    min-height: 60px;
    padding: 14px 18px;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }
  .fact + .fact { border-top: 1px solid var(--line); }
  .fact::after { display: none; }
  .fact dd { justify-content: flex-end; text-align: right; font-size: 1.05rem; }
}

/* ============ How to buy ============ */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px 26px;
}
.step__num {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  margin-bottom: 10px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ice);
  background: linear-gradient(180deg, rgba(108, 196, 255, 0.18), rgba(47, 140, 255, 0.06));
  box-shadow: inset 0 0 0 1px rgba(108, 196, 255, 0.35), 0 0 24px -6px rgba(47, 140, 255, 0.6);
}
.step__num svg { width: 22px; height: 22px; }
.step h3 { font-size: 1.1rem; }
.step p { font-size: 15px; color: var(--ink-2); }
.step a {
  color: var(--ice);
  text-decoration: underline;
  text-decoration-color: rgba(169, 220, 255, 0.4);
  text-underline-offset: 3px;
  border-radius: 4px;
}
.step a:hover { text-decoration-color: currentColor; }
.step__ca {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px !important;
  line-height: 1.4;
  color: var(--ice) !important;
  background: rgba(2, 6, 18, 0.5);
  box-shadow: inset 0 0 0 1px var(--line);
  overflow-wrap: anywhere;
}
.step__ca svg { width: 14px; height: 14px; flex: none; }
.step--freeze .step__num {
  color: #03140a;
  background: linear-gradient(180deg, #c9ffc0, #74ff62);
  box-shadow: 0 0 0 1px rgba(150, 255, 140, 0.5), 0 0 26px -4px rgba(116, 255, 98, 0.65);
}

.buy__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  margin-top: 16px;
  padding: 18px 18px 18px 22px;
}
.buy__warn { display: flex; align-items: center; gap: 16px; max-width: 640px; }
.buy__warn p { font-size: 15px; color: var(--ink-2); }
.buy__warn-icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  flex: none;
  border-radius: 14px;
  color: #ffd27a;
  background: rgba(255, 190, 80, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 200, 110, 0.3);
}
.buy__warn-icon svg { width: 22px; height: 22px; }
.buy__actions { display: flex; flex-wrap: wrap; gap: 10px; }

@media (max-width: 1080px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .buy__bar { flex-direction: column; align-items: stretch; }
  .buy__actions .btn { flex: 1 1 auto; }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: minmax(0, 1fr); }
  .step { display: grid; grid-template-columns: auto minmax(0, 1fr); column-gap: 16px; row-gap: 8px; padding: 20px; }
  .step__num { grid-row: span 3; margin: 0; }
  .buy__warn { align-items: flex-start; }
}

/* ============ Community ============ */
.community__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.c-card {
  display: flex;
  flex-direction: column;
  min-height: clamp(260px, 26vw, 340px);
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  isolation: isolate;
  border-radius: 28px;
  text-decoration: none;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.c-card:hover { transform: translateY(-4px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 40px 80px -30px rgba(20, 80, 220, 0.7); }
.c-card--x {
  background:
    radial-gradient(80% 90% at 100% 0%, rgba(200, 230, 255, 0.14), transparent 60%),
    linear-gradient(160deg, rgba(40, 60, 100, 0.55), rgba(8, 14, 32, 0.8));
}
.c-card--tg {
  background:
    radial-gradient(80% 90% at 100% 0%, rgba(80, 175, 255, 0.35), transparent 60%),
    linear-gradient(160deg, rgba(23, 90, 220, 0.55), rgba(8, 20, 60, 0.85));
}
.c-card__bg {
  position: absolute;
  right: -6%;
  bottom: -18%;
  z-index: -1;
  width: 58%;
  height: auto;
  aspect-ratio: 1;
  color: rgba(200, 230, 255, 0.06);
  transition: transform 0.8s var(--ease);
}
.c-card:hover .c-card__bg { transform: rotate(-6deg) scale(1.05); }
.c-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: auto; }
.c-card__icon {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 18px;
  color: #041022;
  background: linear-gradient(180deg, #ffffff, #c9e7ff);
  box-shadow: 0 10px 30px -10px rgba(140, 200, 255, 0.8);
}
.c-card--tg .c-card__icon { color: #fff; background: linear-gradient(180deg, #6cc4ff, #2f7cff); }
.c-card__icon svg { width: 26px; height: 26px; }
.c-card__arrow {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--line-2);
  transition: background-color 0.3s, transform 0.4s var(--ease), color 0.3s;
}
.c-card__arrow svg { width: 20px; height: 20px; }
.c-card:hover .c-card__arrow { background: var(--ink); color: #041022; transform: rotate(45deg); }
.c-card__kicker {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ice);
}
.c-card__title {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.c-card__meta { margin-top: 10px; font-size: 15px; color: var(--ink-2); }

@media (max-width: 720px) {
  .community__grid { grid-template-columns: minmax(0, 1fr); }
  .c-card { min-height: 230px; }
}

/* ============ Nav: responsive labels ============ */
.nav__links a:not(.btn) { white-space: nowrap; }
.nav__menu-only, .nav__short { display: none; }
@media (min-width: 1021px) and (max-width: 1240px) {
  .nav__wide, .nav__long { display: none; }
  .nav__short { display: inline; }
}
@media (min-width: 1021px) and (max-width: 1120px) {
  .nav__bar { gap: 14px; }
}
@media (max-width: 1020px) {
  .nav__menu-only { display: block; }
}

/* ============ Art frames (levels, buy, halls) ============ */
.art {
  position: relative;
  padding: clamp(8px, 1vw, 12px);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(180deg, rgba(150, 205, 255, 0.14), rgba(90, 150, 255, 0.04));
  box-shadow:
    inset 0 0 0 1px rgba(160, 210, 255, 0.18),
    0 50px 100px -40px rgba(8, 40, 140, 0.8),
    0 0 80px -30px rgba(47, 140, 255, 0.5);
}
.art__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  background: #071026;
}
/* Portrait art (e.g. the roadmap trail poster): keep the full composition —
   a square crop would cut off the milestone signposts on one side. */
.art--tall .art__media { aspect-ratio: 4 / 5; }
.art__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1 + var(--hover, 0) * 0.02));
  transition: transform 0.9s var(--ease);
}
.art:hover { --hover: 1; }
.art__tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px 0 11px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(20, 36, 72, 0.74), rgba(10, 20, 44, 0.7));
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
}
.art__tag svg { width: 14px; height: 14px; color: var(--ice); }

/* ============ Levels ============ */
.levels::before {
  background:
    radial-gradient(45% 55% at 26% 50%, rgba(47, 140, 255, 0.16), transparent 70%),
    radial-gradient(30% 40% at 88% 86%, rgba(47, 140, 255, 0.1), transparent 70%);
}
.levels__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(40px, 5.5vw, 88px);
}
.levels__head { margin-bottom: 30px; }
.levels__head .lede { margin-top: 20px; }
.levels__list { display: grid; gap: 12px; }
.level {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 18px;
}
.level__num {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink-2);
  background: rgba(160, 210, 255, 0.06);
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.level:nth-child(2) .level__num {
  color: var(--ice);
  background: linear-gradient(180deg, rgba(108, 196, 255, 0.18), rgba(47, 140, 255, 0.06));
  box-shadow: inset 0 0 0 1px rgba(108, 196, 255, 0.35);
}
.level__num svg { width: 22px; height: 22px; }
.level__kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11.5px;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.level h3 { margin-top: 7px; font-size: 1.2rem; }
.level__body > p:last-child { margin-top: 6px; font-size: 15px; color: var(--ink-2); }
.level--frozen {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(80, 175, 255, 0.3), transparent 60%),
    linear-gradient(160deg, rgba(23, 90, 220, 0.42), rgba(8, 20, 60, 0.72));
  border-color: rgba(160, 215, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 30px 70px -30px rgba(47, 140, 255, 0.75);
}
.level--frozen .level__num {
  color: #031126;
  background: linear-gradient(180deg, #d4efff, #6cc4ff);
  box-shadow: 0 0 26px -4px rgba(108, 196, 255, 0.85);
}
.level--frozen .level__kicker { color: var(--ice); }
.level--frozen h3 { font-weight: 800; font-size: 1.35rem; }
.level--frozen .level__body > p:last-child { color: var(--ink); }
.level__badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--green);
  background: rgba(116, 255, 98, 0.08);
  box-shadow: inset 0 0 0 1px rgba(116, 255, 98, 0.3);
}

@media (max-width: 960px) {
  .levels__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .levels__side { display: contents; }
  .levels__head { order: -2; margin-bottom: 0; }
  .levels__art { order: -1; width: 100%; max-width: 640px; justify-self: center; }
  .levels__list { width: 100%; max-width: 640px; justify-self: center; }
}
@media (max-width: 640px) {
  .levels__grid { gap: 28px; }
  .level { gap: 14px; padding: 18px; }
  .level__num { width: 40px; height: 40px; }
}

/* ============ How to buy: art + steps ============ */
.buy__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  gap: 16px;
}
.buy__art { display: flex; }
.buy__art .art__media { flex: 1 1 auto; aspect-ratio: auto; min-height: 0; }
.buy__art .art__media img { position: absolute; inset: 0; object-position: 50% 50%; }

@media (max-width: 960px) {
  .buy__layout { grid-template-columns: minmax(0, 1fr); }
  .buy__art .art__media { aspect-ratio: 16 / 10; }
  .buy__art .art__media img { object-position: 50% 58%; }
}
@media (max-width: 640px) {
  .buy__art .art__media { aspect-ratio: 4 / 3; }
  .art__tag { left: 12px; bottom: 12px; height: 32px; font-size: 10.5px; }
}

/* ============ Roadmap ============ */
.roadmap { overflow: hidden; }
.roadmap__art { width: min(400px, 100%); margin: 32px auto 40px; }
.roadmap::before {
  background:
    radial-gradient(40% 55% at 88% 20%, rgba(47, 140, 255, 0.16), transparent 70%),
    radial-gradient(35% 45% at 8% 88%, rgba(23, 71, 201, 0.14), transparent 70%);
}
.roadmap__peaks {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: min(1180px, 92%);
  height: 64%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(150, 210, 255, 0.1), rgba(90, 160, 255, 0.03) 60%, transparent);
  clip-path: polygon(0 100%, 14% 74%, 22% 81%, 38% 54%, 46% 61%, 63% 28%, 71% 37%, 86% 4%, 93% 15%, 100% 9%, 100% 100%);
  -webkit-mask: linear-gradient(180deg, #000 35%, transparent 95%);
  mask: linear-gradient(180deg, #000 35%, transparent 95%);
}

.roadmap__list {
  --lift: 36px;
  --gap: 16px;
  --drop: 76px;
  --rail: 22px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--n, 4), minmax(0, 1fr));
  gap: var(--gap);
  padding-top: calc((var(--n, 4) - 1) * var(--lift));
}

/* Milestone trail: a flat list of short checkpoints (no phase cards). A
   wrapping row of numbered chips reads better than n narrow columns and
   scales to any count without a bespoke breakpoint per length. */
.roadmap__list--milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 10px;
  padding-top: 0;
}
@media (min-width: 660px) and (max-width: 800px) {
  /* Unconstrained flex-wrap strands the 10th chip alone on its own row in
     this band (5+4+1); capping the row width forces the same clean 4+4+2
     wrap the layout already gets just below and above this range. */
  .roadmap__list--milestones { max-width: 620px; }
}
.mstone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  background: var(--panel);
  box-shadow: inset 0 0 0 1px var(--line), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.mstone__node {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  background: rgba(160, 210, 255, 0.05);
  box-shadow: inset 0 0 0 1px var(--line);
}
.mstone__check { width: 13px; height: 13px; }
.mstone__label {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-3);
  white-space: nowrap;
}
.mstone--now {
  background: linear-gradient(180deg, rgba(75, 166, 255, 0.16), rgba(75, 166, 255, 0.05));
  box-shadow: inset 0 0 0 1px rgba(108, 196, 255, 0.4), 0 0 26px -10px rgba(47, 140, 255, 0.7);
}
.mstone--now .mstone__node {
  color: #06152e;
  background: linear-gradient(180deg, #e4f4ff, #7fc4ff);
  box-shadow: 0 0 14px -1px rgba(108, 196, 255, 0.75);
}
.mstone--now .mstone__label { color: var(--ink); }
.mstone--done .mstone__node { color: var(--green); background: rgba(116, 255, 98, 0.1); box-shadow: inset 0 0 0 1px rgba(116, 255, 98, 0.35); }
.mstone--done .mstone__label { color: var(--ink-2); }
.mstone--last .mstone__node { color: var(--ice); box-shadow: inset 0 0 0 1px rgba(160, 210, 255, 0.4); }
@media (max-width: 560px) {
  .mstone { padding: 8px 15px 8px 8px; }
  .mstone__node { width: 26px; height: 26px; font-size: 10.5px; }
  .mstone__label { font-size: 12.5px; }
}
.phase {
  --i: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: var(--drop);
  translate: 0 calc(var(--i) * var(--lift) * -1);
}
.phase__card {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 24px;
}
.phase__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 10px;
}
.phase__label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.phase__title { margin-top: 18px; font-size: clamp(1.15rem, 1rem + 0.45vw, 1.38rem); }
.phase__items { display: grid; gap: 9px; margin-top: 14px; }
.phase__items li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.phase__items li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.62em;
  width: 6px; height: 6px;
  border-radius: 1px;
  transform: rotate(45deg);
  background: rgba(169, 220, 255, 0.4);
}
.phase--now .phase__items li::before,
.phase--done .phase__items li::before {
  background: linear-gradient(135deg, #eaf7ff, #4ba6ff);
  box-shadow: 0 0 8px rgba(108, 196, 255, 0.7);
}
.phase--now .phase__card {
  border-color: rgba(160, 215, 255, 0.4);
  background:
    radial-gradient(100% 70% at 50% 0%, rgba(108, 196, 255, 0.16), transparent 70%),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 34px 70px -34px rgba(47, 140, 255, 0.7);
}
.phase--now .phase__items li { color: var(--ink); }

.pill--next { color: var(--ink); background: rgba(160, 210, 255, 0.06); box-shadow: inset 0 0 0 1px var(--line-2); }
.pill--planned { color: var(--ink-3); background: transparent; box-shadow: inset 0 0 0 1px var(--line); }
.pill--done { color: var(--green); background: rgba(116, 255, 98, 0.08); box-shadow: inset 0 0 0 1px rgba(116, 255, 98, 0.3); }
.pill__ring { width: 7px; height: 7px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px currentColor; }
.pill--next .pill__ring { color: var(--ice-2); }
.pill__check { width: 12px; height: 12px; }

/* rail: each phase draws the half before and after its node */
.phase__seg {
  position: absolute;
  top: calc(100% - var(--rail) + var(--i) * var(--lift));
  height: 2px;
  margin-top: -1px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(160, 210, 255, 0.16);
}
.phase__seg--in { left: 0; width: 50%; }
.phase__seg--out { left: 50%; width: calc(50% + var(--gap)); }
.phase:last-child .phase__seg--out { width: 50%; }
.phase__seg.is-filled {
  background: linear-gradient(90deg, #4ba6ff, #bfe6ff);
  box-shadow: 0 0 12px rgba(108, 196, 255, 0.75);
}
.phase:first-child .phase__seg--in.is-filled { background: linear-gradient(90deg, rgba(75, 166, 255, 0), #4ba6ff 45%, #bfe6ff); }
.phase__seg.is-partial { background: linear-gradient(90deg, #bfe6ff, rgba(108, 196, 255, 0.55) 38%, rgba(160, 210, 255, 0.16) 80%); }
.phase__seg.is-partial::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(235, 248, 255, 0.95), transparent);
  animation: rail-flow 2.8s var(--ease) infinite;
}
@keyframes rail-flow { from { transform: translateX(-100%); } to { transform: translateX(300%); } }
@keyframes rail-flow-y { from { transform: translateY(-100%); } to { transform: translateY(300%); } }

.phase__stem {
  position: absolute;
  left: 50%;
  top: calc(100% - var(--drop));
  width: 1px;
  height: calc(var(--drop) - var(--rail) + var(--i) * var(--lift));
  background: repeating-linear-gradient(180deg, rgba(160, 210, 255, 0.3) 0 4px, transparent 4px 9px);
}
.phase--now .phase__stem,
.phase--done .phase__stem { background: linear-gradient(180deg, rgba(169, 220, 255, 0.85), rgba(108, 196, 255, 0.3)); }

.phase__node {
  position: absolute;
  left: 50%;
  top: calc(100% - var(--rail) + var(--i) * var(--lift));
  z-index: 1;
  display: grid;
  place-items: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  translate: -50% -50%;
  color: var(--ink-3);
  background: #081230;
  box-shadow: inset 0 0 0 1.5px rgba(160, 210, 255, 0.3);
}
.phase__node svg { width: 12px; height: 12px; }
.phase--next .phase__node { box-shadow: inset 0 0 0 1.5px var(--ice-2), 0 0 14px -2px rgba(108, 196, 255, 0.6); }
.phase--now .phase__node {
  background: radial-gradient(circle, #f2faff 0 28%, #6cc4ff 32%);
  box-shadow: 0 0 0 4px rgba(108, 196, 255, 0.16), 0 0 22px rgba(108, 196, 255, 0.9);
}
.phase--now .phase__node::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--ice-2);
  animation: ping 2.4s var(--ease) infinite;
}
.phase--done .phase__node {
  width: 22px; height: 22px;
  color: #031126;
  background: linear-gradient(180deg, #d4efff, #6cc4ff);
  box-shadow: 0 0 16px rgba(108, 196, 255, 0.6);
}
.phase--summit .phase__node { width: 32px; height: 32px; border-radius: 11px; color: var(--ice); }
.phase--summit .phase__node svg { width: 17px; height: 17px; }
.phase--summit.phase--done .phase__node { color: #031126; }

.roadmap__note {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 34px auto 0;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-2);
  background: rgba(160, 210, 255, 0.04);
  box-shadow: inset 0 0 0 1px var(--line);
}
.roadmap__note svg { width: 16px; height: 16px; flex: none; color: var(--ice); }
.roadmap__fallback { color: var(--ink-2); }

@media (max-width: 1080px) {
  .roadmap__list { --node-x: 13px; --node-y: 37px; grid-template-columns: minmax(0, 1fr); padding-top: 0; }
  .phase { translate: none; padding: 0 0 0 44px; }
  .phase__stem { display: none; }
  .phase__node { left: var(--node-x); top: var(--node-y); }
  .phase__seg { left: var(--node-x); top: 0; width: 2px; height: var(--node-y); margin: 0 0 0 -1px; }
  .phase__seg--in { display: none; }
  .phase:first-child .phase__seg--in { display: block; }
  .phase__seg--out { top: var(--node-y); width: 2px; height: calc(100% - var(--node-y) + var(--gap)); }
  .phase:last-child .phase__seg--out { display: none; }
  .phase__seg.is-filled { background: linear-gradient(180deg, #4ba6ff, #bfe6ff); }
  .phase:first-child .phase__seg--in.is-filled { background: linear-gradient(180deg, rgba(75, 166, 255, 0), #4ba6ff 60%, #bfe6ff); }
  .phase__seg.is-partial { background: linear-gradient(180deg, #bfe6ff, rgba(108, 196, 255, 0.55) 38%, rgba(160, 210, 255, 0.16) 80%); }
  .phase__seg.is-partial::after { top: 0; right: 0; bottom: auto; left: 0; width: auto; height: 34%; background: linear-gradient(180deg, transparent, rgba(235, 248, 255, 0.95), transparent); animation-name: rail-flow-y; }
  .phase__card { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); align-items: start; column-gap: 32px; padding: 24px 26px; }
  .phase__top, .phase__title { grid-column: 1; }
  .phase__title { margin-top: 14px; }
  .phase__items { grid-column: 2; grid-row: 1 / span 2; margin-top: 0; }
}
@media (max-width: 640px) {
  .roadmap__list { --node-x: 11px; --node-y: 33px; }
  .phase { padding-left: 34px; }
  .phase__card { display: flex; flex-direction: column; padding: 20px; }
  .phase__title { margin-top: 14px; }
  .phase__items { margin-top: 12px; }
  .roadmap__note { align-items: flex-start; margin-top: 28px; }
  .roadmap__note svg { margin-top: 2px; }
}

/* ============ Community: the Halls ============ */
.halls {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(36px, 5vw, 80px);
}
.halls__statement,
.seat__title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.halls__statement { font-size: clamp(1.7rem, 1rem + 1.9vw, 2.6rem); }
.halls__statement em,
.seat__title em {
  font-style: normal;
  background: linear-gradient(180deg, #e4f4ff 0%, #8fd0ff 55%, #3f95ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pillars { display: grid; gap: 12px; margin-top: 28px; }
.pillar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
}
.pillar__icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  color: var(--ice);
  background: linear-gradient(180deg, rgba(108, 196, 255, 0.18), rgba(47, 140, 255, 0.06));
  box-shadow: inset 0 0 0 1px rgba(108, 196, 255, 0.35), 0 0 24px -6px rgba(47, 140, 255, 0.6);
}
.pillar__icon svg { width: 22px; height: 22px; }
.pillar h3 { margin-top: 2px; font-size: 1.1rem; }
.pillar p { margin-top: 4px; font-size: 15px; color: var(--ink-2); }
.halls__seat-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.halls__seat-line svg { width: 18px; height: 18px; flex: none; color: var(--ice); }

.seat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 48px;
  margin: clamp(56px, 7vw, 96px) 0 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.seat__lead { display: flex; align-items: center; gap: 18px; }
.seat__img {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px var(--line-2), 0 14px 30px -14px rgba(8, 40, 140, 0.8);
}
.seat__title { font-size: clamp(1.5rem, 1rem + 1.6vw, 2.3rem); }
.seat__text { max-width: 30em; color: var(--ink-2); }

@media (max-width: 960px) {
  .halls { grid-template-columns: minmax(0, 1fr); }
  .halls__art { width: 100%; max-width: 640px; justify-self: center; }
}
@media (max-width: 760px) {
  .seat { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .pillar { gap: 14px; padding: 16px; }
  .pillar__icon { width: 40px; height: 40px; }
}

/* ============ Footer ============ */
.footer {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 88px) 0 28px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 16, 38, 0.6), rgba(3, 6, 15, 1));
}
.footer .container { position: relative; z-index: 1; }
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 28px 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer .brand__logo { width: 44px; height: 44px; }
.footer .brand__word { font-size: 18px; }
.footer__tag {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer__nav ul { display: flex; flex-wrap: wrap; gap: 4px 8px; }
.footer__nav a { display: inline-flex; align-items: center; min-height: 40px; padding: 8px 6px; font-size: 14.5px; color: var(--ink-2); text-decoration: none; border-radius: 6px; }
.footer__nav a:hover { color: var(--ink); }
.footer__social { display: flex; gap: 8px; }
.footer__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.footer__trust svg { width: 18px; height: 18px; flex: none; color: var(--ice); }
.footer__disclaimer {
  margin-top: 14px;
  max-width: 62em;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-3);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer__bottom a { display: inline-flex; align-items: center; min-height: 40px; padding: 8px 4px; margin: -8px -4px; color: var(--ink-2); text-decoration: none; border-radius: 6px; }
.footer__bottom a:hover { color: var(--ink); }
.footer__mark {
  position: absolute;
  left: 50%;
  bottom: -0.3em;
  z-index: 0;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 22vw, 20rem);
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(140, 200, 255, 0.1);
  background: linear-gradient(180deg, rgba(90, 160, 255, 0.08), transparent 70%);
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1020px) {
  /* Matches the nav's own hamburger breakpoint (1020px) — below 900px this
     row was cramped: the 8-link nav + social icons squeezed the brand
     column enough to wrap the wordmark and the tagline onto 3-4 lines. */
  .footer__top { grid-template-columns: minmax(0, 1fr) auto; }
  .footer__nav { grid-column: 1 / -1; grid-row: 2; }
}

/* ============ Toast ============ */
.toast {
  position: fixed;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 120;
  max-width: calc(100vw - 32px);
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.4;
  text-align: center;
  color: var(--ink);
  background: rgba(10, 20, 44, 0.94);
  box-shadow: inset 0 0 0 1px rgba(160, 215, 255, 0.3), 0 20px 50px -10px rgba(0, 0, 0, 0.8), 0 0 30px -10px rgba(47, 140, 255, 0.6);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s linear 0.3s;
}
.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s;
}
.toast:empty { display: none; }

/* ============ Reveal ============ */
.js .reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--rd, 0s);
}
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal.is-in.c-card:hover { transform: translateY(-4px); }

/* ============ Responsive: hero ============ */
@media (max-width: 960px) {
  .hero { min-height: 0; padding-top: calc(var(--nav-h) + 20px); }
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .hero__art { order: -1; max-width: 380px; margin: 18px 0 52px; }
  .orb__text-copy { font-size: 18px; }
  .hero__copy { display: flex; flex-direction: column; align-items: flex-start; }
  .float-chip--status { top: -30px; left: -4%; }
  .float-chip--sell { bottom: -42px; right: -4%; }
  .sell__grid { grid-template-columns: minmax(0, 1fr); }
  .swap { justify-self: center; max-width: 560px; }
}
@media (max-width: 640px) {
  .hero__art { max-width: 300px; }
  .orb { width: 76%; }
  .float-chip { padding: 7px 12px 7px 7px; gap: 9px; border-radius: 13px; }
  .float-chip__icon, .float-chip__sell { width: auto; min-width: 30px; height: 30px; }
  .float-chip__icon svg { width: 16px; height: 16px; }
  .float-chip__text small { font-size: 9.5px; }
  .float-chip__text b { font-size: 12.5px; }
  .float-chip--status { left: -8%; top: -24px; }
  .float-chip--sell { right: -8%; bottom: -38px; }
  .hero__art { margin-bottom: 48px; }
  .orb__text-copy { font-size: 20px; }
  .wordmark { margin-top: 18px; }
  .hero__ctas { width: 100%; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .ca { width: 100%; }
  .ca__head { flex-wrap: wrap; }
  .ca__field { gap: 10px; padding-left: 10px; }
  .ca__value { font-size: 13.5px; }
  .ca__copy { padding: 0 12px; }
  .sell__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .swap { padding: 14px; border-radius: 24px; }
  .swap__foot { flex-direction: column; align-items: stretch; }
  .swap__hold { align-self: flex-start; }
  .footer__top { grid-template-columns: minmax(0, 1fr); }
  .footer__nav, .footer__social { grid-column: auto; grid-row: auto; }
  .footer__bottom { flex-direction: column; }
}
@media (max-width: 640px) {
  [data-ca-state="pending"] .ca__ice { display: none; }
  /* Wrap, don't truncate: at 320px "Revealed any moment" no longer fits one
     line and ellipsis was cutting off this box's own trust-critical text —
     on the site that repeatedly warns "never trust a CA posted elsewhere". */
  [data-ca-state="pending"] .ca__value { flex: 1 1 auto; white-space: normal; overflow-wrap: anywhere; line-height: 1.35; }
  .ca--wide .ca__field { min-height: 58px; padding-left: 10px; }
  .ca--wide .ca__head { flex-direction: row; }
}
@media (max-width: 400px) {
  .ca__value, .ca--wide .ca__value { font-size: 13px; }
  .ca__head .ca__label { font-size: 10.5px; letter-spacing: 0.12em; }
}
@media (max-width: 380px) {
  .ca__copy-text { display: none; }
  .float-chip--sell { display: none; }
}

/* ============ Motion preferences ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none !important; }
  .orb, .hero__aurora, .shard { transform: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .crack path { stroke-dashoffset: 0; animation: none !important; }
  .orb__text, .phase--now .phase__node::after { animation: none !important; }
  .phase__seg.is-partial::after { display: none; }
  .shatter { display: none; }
}

/* ============ 404 ============ */
.lost { min-height: 100svh; text-align: center; }
.lost__inner { display: flex; flex-direction: column; align-items: center; }
.lost__logo { width: clamp(150px, 30vw, 220px); height: auto; margin-bottom: 28px; border-radius: 50%; filter: drop-shadow(0 20px 50px rgba(47, 140, 255, 0.45)); }
.lost__title { font-size: clamp(2.6rem, 1rem + 6vw, 5.6rem); margin-top: 4px; }
.lost__text { margin-top: 22px; }
.lost__ctas { justify-content: center; }
.lost__trust { justify-content: center; font-size: 14px; color: var(--ink-2); }
