:root {
  --navy-950: #020817;
  --navy-900: #061331;
  --navy-800: #08235a;
  --blue: #087cff;
  --blue-bright: #18c4ff;
  --lime: #a8ff18;
  --lime-soft: #d9ff67;
  --gold: #ffd326;
  --gold-deep: #f4a400;
  --paper: #f7f2df;
  --white: #fffdf4;
  --ink: #071023;
  --muted: #97a6c8;
  --border: rgba(255, 255, 255, 0.18);
  --shadow-hard: 7px 7px 0 #010612;
  --font-display: "Archivo Black", Impact, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;
  --shell: min(1380px, calc(100vw - 64px));
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--lime) var(--navy-950);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background: var(--navy-950);
  font-family: var(--font-mono);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

img,
svg {
  display: block;
}

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

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  color: var(--ink);
  background: var(--lime);
  font-weight: 700;
  white-space: nowrap;
}

.skip-link:focus-visible {
  width: auto;
  height: auto;
  padding: 12px 16px;
  overflow: visible;
  clip: auto;
  clip-path: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(2, 8, 23, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 8, 23, 0.93);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  min-height: 54px;
}

.brand__mark {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: var(--navy-950);
  box-shadow: 0 0 0 4px rgba(168, 255, 24, 0.12), 0 0 28px rgba(24, 196, 255, 0.24);
  transition: transform 180ms ease;
}

.brand:hover .brand__mark {
  transform: rotate(-7deg) scale(1.04);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__copy {
  display: grid;
  line-height: 1;
}

.brand__copy strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand__copy small {
  margin-top: 7px;
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(4, 16, 42, 0.66);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  color: #cdd8f2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease;
}

.main-nav a span {
  margin-right: 7px;
  color: #7082aa;
  font-size: 0.58rem;
}

.main-nav a:hover,
.main-nav a[aria-current="true"] {
  color: var(--ink);
  background: var(--lime);
}

.main-nav a:hover span,
.main-nav a[aria-current="true"] span {
  color: #375600;
}

.header-buy {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  min-height: 50px;
  padding: 5px 15px 5px 7px;
  border: 2px solid var(--gold);
  border-radius: 14px;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.55);
  font-family: var(--font-display);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.header-buy img {
  width: 40px;
  height: 40px;
  margin-right: 7px;
  object-fit: contain;
}

.header-buy span:last-child {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 1rem;
}

.header-buy:hover {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.55);
  transform: translate(2px, 2px);
}

section {
  scroll-margin-top: calc(var(--header-height) - 1px);
}

.hero {
  position: relative;
  display: grid;
  min-height: max(780px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950);
}

.hero__art,
.hero__art img,
.hero__veil,
.hero__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__art {
  z-index: -4;
}

.hero__art img {
  object-fit: cover;
  object-position: 52% center;
  transform: scale(1.025) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform 800ms cubic-bezier(.2, .8, .2, 1);
}

.hero__veil {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(1, 7, 22, 0.98) 0%, rgba(1, 9, 29, 0.92) 31%, rgba(1, 9, 29, 0.54) 49%, rgba(2, 8, 23, 0.05) 71%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.35), transparent 36%, rgba(2, 8, 23, 0.72));
}

.hero__grid {
  z-index: -2;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 63%);
}

.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-height) + 88px) 122px;
}

.hero__content {
  width: min(690px, 55vw);
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation: hero-in 650ms 120ms forwards;
}

.eyebrow__slash {
  color: #6881b6;
}

.live-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px var(--lime);
}

.live-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--lime);
  border-radius: inherit;
  content: "";
  animation: pulse-ring 1.8s infinite;
}

.hero__title {
  display: grid;
  margin: 0 0 24px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(4.7rem, 9.2vw, 9rem);
  letter-spacing: -0.075em;
  line-height: 0.76;
  text-transform: uppercase;
}

.hero__title span {
  width: max-content;
  opacity: 0;
  filter: drop-shadow(8px 8px 0 rgba(0, 0, 0, 0.42));
  animation: hero-in 780ms 220ms forwards;
}

.hero__title .hero__title-gold {
  color: var(--gold);
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.18);
  animation-delay: 300ms;
}

.hero__lede {
  max-width: 630px;
  margin: 0 0 24px;
  color: #dce6fb;
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  opacity: 0;
  animation: hero-in 650ms 400ms forwards;
}

.token-line {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(168, 255, 24, 0.28);
  border-radius: 7px;
  color: #a9b9da;
  background: rgba(1, 9, 29, 0.6);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0;
  animation: hero-in 650ms 460ms forwards;
}

.token-line__ticker {
  color: var(--lime);
  font-weight: 700;
}

.token-line__divider {
  width: 1px;
  height: 14px;
  margin-inline: 11px;
  background: rgba(255, 255, 255, 0.18);
}

.token-line__contract {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(650px, 100%);
  gap: 12px;
}

.action-card {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  min-height: 76px;
  padding: 9px 14px 9px 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(3, 12, 34, 0.76);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(18px);
  animation: action-in 540ms forwards;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.action-card:nth-child(1) { animation-delay: 520ms; }
.action-card:nth-child(2) { animation-delay: 580ms; }
.action-card:nth-child(3) { animation-delay: 640ms; }
.action-card:nth-child(4) { animation-delay: 700ms; }

.action-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--blue-bright);
  content: "";
}

.action-card--buy::before { background: var(--gold); }
.action-card--chart::before { background: var(--lime); }

.action-card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.action-card__icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.action-card__icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.action-card__icon--brand {
  color: var(--navy-950);
  background: var(--white);
}

.action-card__icon--telegram {
  color: white;
  background: #229ed9;
}

.action-card__copy {
  display: grid;
  padding-inline: 11px 7px;
  line-height: 1.1;
}

.action-card__copy small {
  margin-bottom: 7px;
  color: #8799bf;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.action-card__copy strong {
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.action-card__arrow {
  color: #8194bb;
  font-size: 1.15rem;
}

.action-card:hover {
  border-color: var(--lime);
  background: rgba(8, 35, 90, 0.9);
  box-shadow: 0 0 0 1px rgba(168, 255, 24, 0.16), 0 14px 36px rgba(0, 0, 0, 0.34);
  transform: translateY(-3px);
}

.action-card:hover .action-card__arrow {
  color: var(--lime);
}

.action-card.is-disabled,
.header-buy.is-disabled,
.market-link.is-disabled {
  cursor: not-allowed;
  opacity: 0.52;
  pointer-events: none;
}

.hero__note {
  margin: 18px 0 0;
  color: #8194bb;
  font-size: 0.66rem;
  text-transform: uppercase;
}

.hero__stamp {
  position: absolute;
  right: 0;
  bottom: 88px;
  display: grid;
  width: 164px;
  height: 164px;
  place-content: center;
  border: 3px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(2, 8, 23, 0.44);
  box-shadow: inset 0 0 0 7px rgba(168, 255, 24, 0.08), 0 0 32px rgba(168, 255, 24, 0.16);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-9deg);
  backdrop-filter: blur(6px);
}

.hero__stamp::before,
.hero__stamp::after {
  position: absolute;
  left: 50%;
  width: 115px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}

.hero__stamp::before { top: 49px; }
.hero__stamp::after { bottom: 48px; }

.hero__stamp span {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero__stamp strong {
  margin-block: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.scroll-cue {
  position: absolute;
  bottom: 31px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #91a2c5;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span:last-child {
  color: var(--lime);
  font-size: 1rem;
  animation: scroll-bob 1.5s infinite;
}

.ticker {
  position: relative;
  z-index: 4;
  width: 100%;
  overflow: hidden;
  border-block: 2px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  transform: rotate(-1deg) scale(1.02);
  transform-origin: center;
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  padding-block: 13px;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.4vw, 1.2rem);
  white-space: nowrap;
  animation: ticker-move 24s linear infinite;
}

.ticker__track span {
  padding-inline: 25px;
}

.ticker__track i {
  color: var(--blue);
  font-style: normal;
}

.ticker:hover .ticker__track,
.ticker:focus-within .ticker__track {
  animation-play-state: paused;
}

.roadmap {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.roadmap__grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(7, 16, 35, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 16, 35, 0.11) 1px, transparent 1px);
  background-size: 42px 42px;
}

.roadmap__grid::after {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 520px;
  height: 520px;
  border: 70px solid rgba(255, 211, 38, 0.55);
  border-radius: 50%;
  content: "";
}

.roadmap__inner {
  position: relative;
  padding-block: 140px 120px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 90px;
}

.section-kicker {
  grid-column: 1 / -1;
  color: #315f00;
}

.section-heading h2,
.market__intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6.8vw, 7rem);
  letter-spacing: -0.07em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-heading h2 em,
.market__intro h2 em {
  color: var(--blue);
  font-style: normal;
}

.section-heading > p:last-child {
  max-width: 470px;
  margin: 0 0 7px;
  color: #44506a;
  font-size: 0.95rem;
}

.roadmap-plot {
  position: relative;
  min-height: 510px;
}

.roadmap-plot__line {
  position: absolute;
  z-index: 0;
  inset: 10px 0 auto;
  width: 100%;
  height: 390px;
  overflow: visible;
}

.roadmap-plot__line path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.roadmap-plot__shadow {
  stroke: var(--ink);
  stroke-width: 18;
  opacity: 0.12;
}

.roadmap-plot__path {
  stroke: var(--blue);
  stroke-width: 8;
  stroke-dasharray: 1900;
  stroke-dashoffset: 1900;
}

.roadmap.is-visible .roadmap-plot__path {
  animation: draw-chart 1.8s 200ms cubic-bezier(.2, .8, .2, 1) forwards;
}

.roadmap-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  gap: 18px;
  list-style: none;
}

.phase {
  position: relative;
  min-height: 300px;
  padding: 24px;
  border: 3px solid var(--ink);
  background: rgba(247, 242, 223, 0.94);
  box-shadow: var(--shadow-hard);
}

.phase:nth-child(2) { margin-top: 74px; }
.phase:nth-child(3) { margin-top: 24px; }
.phase:nth-child(4) { margin-top: -38px; }

.phase::after {
  position: absolute;
  top: -12px;
  left: 28px;
  width: 19px;
  height: 19px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px var(--ink);
  content: "";
}

.phase__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.phase__meta > span {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}

.phase__meta strong {
  padding: 5px 8px;
  border: 1px solid var(--ink);
  background: var(--lime);
  font-size: 0.56rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.phase:nth-child(3) .phase__meta strong { background: var(--gold); }
.phase:nth-child(4) .phase__meta strong { color: white; background: var(--blue); }

.phase h3 {
  margin: 0 0 15px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.phase p {
  margin: 0 0 19px;
  color: #4d5669;
  font-size: 0.76rem;
}

.phase ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 7px;
  list-style: none;
}

.phase li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.phase li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.roadmap__disclaimer {
  margin: 45px 0 0;
  color: #667086;
  font-size: 0.65rem;
  text-align: right;
  text-transform: uppercase;
}

.market {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 22%, rgba(8, 124, 255, 0.24), transparent 26%),
    linear-gradient(180deg, #071331, var(--navy-950));
}

.market::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image: linear-gradient(rgba(65, 103, 180, 0.35) 1px, transparent 1px), linear-gradient(90deg, rgba(65, 103, 180, 0.35) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 75%);
}

.market__orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 58px solid rgba(168, 255, 24, 0.08);
  border-radius: 50%;
  filter: blur(1px);
}

.market__orb--one { top: -210px; right: -130px; }
.market__orb--two { bottom: -270px; left: -170px; border-color: rgba(8, 124, 255, 0.12); }

.market__inner {
  position: relative;
  padding-block: 140px;
}

.market__intro {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 64px;
  margin-bottom: 54px;
}

.section-kicker--dark {
  margin-bottom: 22px;
  color: var(--lime);
}

.market__intro h2 em {
  color: var(--gold);
}

.market__intro-copy {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.market__intro-copy p {
  margin: 0;
  color: #acbad8;
  font-size: 0.88rem;
}

.market-link {
  display: inline-grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  min-height: 58px;
  padding: 6px 15px 6px 7px;
  gap: 10px;
  border: 1px solid rgba(168, 255, 24, 0.45);
  border-radius: 12px;
  color: var(--lime);
  background: rgba(168, 255, 24, 0.06);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.market-link img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.market-link:hover {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.terminal {
  overflow: hidden;
  border: 2px solid var(--lime);
  border-radius: 18px;
  background: #020714;
  box-shadow: 0 0 0 8px rgba(168, 255, 24, 0.05), 0 30px 90px rgba(0, 0, 0, 0.52), 0 0 55px rgba(8, 124, 255, 0.14);
}

.terminal__bar,
.terminal__footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 58px;
  padding-inline: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #07122a;
}

.terminal__controls {
  display: flex;
  gap: 8px;
}

.terminal__controls i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff6257;
}

.terminal__controls i:nth-child(2) { background: var(--gold); }
.terminal__controls i:nth-child(3) { background: var(--lime); }

.terminal__pair {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.terminal__pair span:first-child { color: var(--gold); }
.terminal__pair span:last-child { color: #7f94bd; }
.terminal__pair i { color: #445b87; font-style: normal; }

.terminal__live {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  color: var(--lime);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terminal__live span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.terminal__screen {
  position: relative;
  height: clamp(540px, 62vw, 720px);
  background: #080d18;
}

.terminal__screen iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  background: #080d18;
  transition: opacity 300ms ease;
}

.terminal.is-loaded .terminal__screen iframe {
  opacity: 1;
}

.terminal__empty {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 24px;
  color: #a7b8dc;
  background: radial-gradient(circle at 50% 40%, rgba(42, 91, 176, 0.34), transparent 56%), #071638;
  text-align: center;
}

.terminal__empty[hidden] {
  display: none;
}

.terminal__empty strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.terminal__empty span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.terminal__loader {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  color: #8495b7;
  background:
    linear-gradient(rgba(10, 44, 99, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 44, 99, 0.18) 1px, transparent 1px),
    #080d18;
  background-size: 46px 46px;
  text-align: center;
}

.terminal__loader-mark {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 3px solid rgba(168, 255, 24, 0.18);
  border-top-color: var(--lime);
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

.terminal__loader strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
}

.terminal__loader small {
  margin-top: 6px;
  font-size: 0.65rem;
}

.terminal__footer {
  grid-template-columns: 1fr 1fr;
  min-height: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  color: #5f7299;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terminal__footer span:last-child {
  justify-self: end;
  color: var(--lime);
}

.site-footer {
  border-top: 1px solid rgba(7, 16, 35, 0.18);
  color: var(--ink);
  background: var(--gold);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 112px;
  gap: 24px;
}

.brand--footer .brand__mark {
  border-color: var(--ink);
  background: var(--navy-950);
  box-shadow: 4px 4px 0 rgba(7, 16, 35, 0.25);
}

.brand--footer .brand__copy small { color: #244500; }

.site-footer p {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer p:nth-child(2) { text-align: center; }
.site-footer p:last-child { justify-self: end; }

.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .8, .2, 1);
}

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

.js .phase:nth-child(2) { transition-delay: 90ms; }
.js .phase:nth-child(3) { transition-delay: 180ms; }
.js .phase:nth-child(4) { transition-delay: 270ms; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes action-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-ring {
  0% { opacity: 0.9; transform: scale(0.55); }
  70%, 100% { opacity: 0; transform: scale(1.35); }
}

@keyframes scroll-bob {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

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

@keyframes draw-chart {
  to { stroke-dashoffset: 0; }
}

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

@media (max-width: 1120px) {
  :root { --shell: min(100% - 40px, 1100px); }

  .site-header__inner {
    grid-template-columns: 190px 1fr 142px;
    gap: 12px;
  }

  .main-nav a { padding-inline: 11px; }
  .brand__copy strong { font-size: 0.88rem; }
  .hero__content { width: min(630px, 60vw); }
  .hero__stamp { display: none; }
  .roadmap-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .phase:nth-child(n) { min-height: 270px; margin-top: 0; }
  .roadmap-plot { min-height: auto; }
  .roadmap-plot__line { display: none; }
}

@media (max-width: 820px) {
  :root {
    --header-height: 118px;
    --shell: min(100% - 32px, 760px);
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: 72px 46px;
    gap: 0 14px;
  }

  .brand__mark { width: 48px; height: 48px; }
  .header-buy { min-height: 46px; }
  .header-buy img { width: 36px; height: 36px; }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
    height: 38px;
    margin-bottom: 8px;
    overflow-x: auto;
    border-radius: 10px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar { display: none; }
  .main-nav a { min-height: 30px; padding-inline: 12px; white-space: nowrap; }

  .hero {
    min-height: 920px;
  }

  .hero__art img {
    object-position: 65% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(1, 7, 22, 0.97) 0%, rgba(1, 9, 29, 0.78) 56%, rgba(1, 9, 29, 0.28)),
      linear-gradient(180deg, rgba(2, 8, 23, 0.32), transparent 32%, rgba(2, 8, 23, 0.88));
  }

  .hero__inner {
    align-items: start;
    padding-top: calc(var(--header-height) + 76px);
  }

  .hero__content { width: min(630px, 100%); }
  .hero__title { font-size: clamp(4.1rem, 18vw, 7rem); }
  .section-heading,
  .market__intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading { margin-bottom: 60px; }
  .roadmap__inner,
  .market__inner { padding-block: 105px; }
  .market__intro-copy { max-width: 560px; }
  .terminal__screen { height: 610px; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; padding-block: 24px; }
  .site-footer p:nth-child(2) { grid-column: 1 / -1; grid-row: 2; text-align: left; }
}

@media (max-width: 580px) {
  :root { --shell: calc(100% - 28px); }

  .brand__copy strong { font-size: 0.76rem; }
  .brand__copy small { font-size: 0.52rem; }
  .header-buy { padding-right: 11px; font-size: 0.74rem; }
  .header-buy span:last-child { display: none; }
  .main-nav a { padding-inline: 8px; font-size: 0.59rem; }
  .main-nav a span { margin-right: 5px; }

  .hero {
    min-height: 1080px;
  }

  .hero__art {
    inset: var(--header-height) 0 auto;
    height: 350px;
  }

  .hero__art img {
    object-position: 69% center;
    transform: scale(1.02);
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(1, 7, 22, 0.12), rgba(1, 9, 29, 0.02)),
      linear-gradient(180deg, rgba(2, 8, 23, 0.05) 0, rgba(2, 8, 23, 0.08) 300px, rgba(2, 8, 23, 0.93) 455px, var(--navy-950) 570px);
  }

  .hero__inner {
    align-items: start;
    padding-top: calc(var(--header-height) + 348px);
    padding-bottom: 84px;
  }

  .hero__eyebrow {
    max-width: 330px;
    font-size: 0.59rem;
    flex-wrap: wrap;
  }

  .hero__title {
    margin-top: 14px;
    font-size: clamp(3.55rem, 18.5vw, 5rem);
  }

  .hero__lede {
    max-width: 430px;
    margin-top: 26px;
    font-size: 0.82rem;
  }

  .token-line { width: 100%; }
  .hero-actions { gap: 9px; }

  .action-card {
    grid-template-columns: 42px 1fr;
    min-height: 72px;
    padding: 8px;
    border-radius: 13px;
  }

  .action-card__icon { width: 42px; height: 42px; border-radius: 10px; }
  .action-card__icon img { width: 40px; height: 40px; }
  .action-card__copy { padding-inline: 8px 2px; }
  .action-card__copy small { font-size: 0.51rem; }
  .action-card__copy strong { font-size: 0.72rem; }
  .action-card__arrow { display: none; }
  .hero__note { max-width: 290px; }
  .scroll-cue { display: none; }

  .roadmap__inner,
  .market__inner { padding-block: 82px; }
  .section-heading h2,
  .market__intro h2 { font-size: clamp(2.75rem, 14.4vw, 4.3rem); }
  .section-heading > p:last-child { font-size: 0.82rem; }
  .roadmap-list { grid-template-columns: 1fr; gap: 20px; }
  .phase:nth-child(n) { min-height: auto; }
  .js .phase:nth-child(n) { opacity: 1; transform: none; transition: none; }
  .phase p { font-size: 0.8rem; }
  .phase li { font-size: 0.69rem; }
  .roadmap__disclaimer { text-align: left; }

  .terminal { border-radius: 12px; }
  .terminal__bar { grid-template-columns: 1fr auto; min-height: 52px; padding-inline: 13px; }
  .terminal__controls { display: none; }
  .terminal__pair { font-size: 0.6rem; }
  .terminal__screen { height: 560px; }
  .terminal__footer { padding-inline: 12px; }
  .terminal__footer span:first-child { display: none; }
  .terminal__footer span:last-child { grid-column: 1 / -1; justify-self: start; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 14px; }
  .site-footer p:nth-child(2) { grid-column: auto; grid-row: auto; }
  .site-footer p:last-child { justify-self: start; }
}

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

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

  .ticker__track { animation: none; }
  .roadmap-plot__path { stroke-dashoffset: 0; }
}
