@font-face {
  font-family: "Source Sans 3";
  src: url("/site-assets/SourceSans3-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("/site-assets/SourceSans3-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("/site-assets/SourceSans3-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #080b11;
  --ink-soft: #0e141e;
  --panel: rgba(20, 27, 38, 0.72);
  --panel-solid: #141b25;
  --line: rgba(255, 209, 72, 0.18);
  --line-soft: rgba(255, 255, 255, 0.08);
  --gold: #ffd33d;
  --gold-light: #fff1a8;
  --orange: #f59b13;
  --cream: #fff6d5;
  --white: #f7f8fb;
  --muted: #99a2af;
  --success: #7df0b3;
  --page: min(1180px, calc(100% - 40px));
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 188, 26, 0.1), transparent 25rem),
    radial-gradient(circle at 92% 42%, rgba(61, 92, 133, 0.16), transparent 30rem),
    linear-gradient(180deg, #090c12 0%, #101722 50%, #080b11 100%);
  color: var(--white);
  font-family: "Source Sans 3", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
  content: "";
  pointer-events: none;
}

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

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

img {
  max-width: 100%;
}

.starfield {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ambient-glow {
  position: fixed;
  z-index: -1;
  width: 54vw;
  height: 54vw;
  border-radius: 50%;
  background: rgba(255, 184, 22, 0.055);
  filter: blur(80px);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

.ambient-glow.one {
  top: -30vw;
  right: -18vw;
}

.ambient-glow.two {
  bottom: -30vw;
  left: -26vw;
  background: rgba(74, 114, 163, 0.07);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-soft);
  background: rgba(8, 11, 17, 0.78);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  width: var(--page);
  min-height: var(--header-height);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 211, 61, 0.32);
  border-radius: 50%;
  background: rgba(255, 197, 24, 0.08);
  box-shadow: 0 0 20px rgba(255, 184, 20, 0.12);
}

.brand-mark img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  filter: drop-shadow(0 2px 3px rgba(76, 35, 0, 0.72));
}

.brand em {
  color: var(--gold);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: #b8bec8;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--cream);
}

.nav-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 208, 60, 0.48);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe36b 0%, #ffbf25 48%, #ef8e08 100%);
  box-shadow: 0 9px 34px rgba(229, 139, 7, 0.18), inset 0 1px rgba(255, 255, 255, 0.5);
  color: #211400;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 0 20px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nav-action:hover,
.button:hover {
  box-shadow: 0 13px 42px rgba(229, 139, 7, 0.28), inset 0 1px rgba(255, 255, 255, 0.6);
  filter: saturate(1.08);
  transform: translateY(-2px);
}

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

.button.secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
  color: var(--white);
}

.button.secondary:hover {
  border-color: rgba(255, 211, 61, 0.36);
  background: rgba(255, 211, 61, 0.075);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.7px;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(255, 211, 61, 0.9);
  content: "";
  animation: pulse-dot 2.2s ease-in-out infinite;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(110deg, #fff4bb 0%, #ffd338 48%, #ef9410 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero {
  position: relative;
  display: grid;
  width: var(--page);
  min-height: 760px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 76px) 0 86px;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(30px, 7vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero h1 {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -4.2px;
  line-height: 0.92;
}

.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: #abb2bd;
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.55;
}

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

.hero-note {
  display: flex;
  margin-top: 28px;
  align-items: center;
  gap: 12px;
  color: #7f8896;
  font-size: 13px;
}

.hero-note .avatars {
  display: flex;
}

.hero-note .avatars i {
  display: grid;
  width: 28px;
  height: 28px;
  margin-left: -7px;
  place-items: center;
  border: 2px solid #0b1018;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe676, #b76400);
  color: #301900;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
}

.hero-note .avatars i:first-child {
  margin-left: 0;
}

.cosmos-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin: auto;
  contain: layout paint;
  perspective: 900px;
  transform: rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transition: transform 260ms ease-out;
}

.cosmos-halo,
.cosmos-halo::before,
.cosmos-halo::after {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  content: "";
}

.cosmos-halo {
  background: radial-gradient(circle, rgba(255, 196, 26, 0.18), rgba(255, 166, 0, 0.03) 48%, transparent 69%);
  box-shadow: 0 0 100px rgba(255, 170, 0, 0.11);
  animation: breathe 4s ease-in-out infinite;
}

.cosmos-halo::before {
  inset: -15%;
  border: 1px solid rgba(255, 215, 85, 0.11);
  box-shadow: 0 0 0 28px rgba(255, 207, 63, 0.018), 0 0 0 72px rgba(255, 207, 63, 0.012);
}

.cosmos-halo::after {
  inset: 20%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at 36% 28%, #fff5a4 0 2%, #ffc319 11%, #a94c00 58%, #1b1002 76%);
  box-shadow: inset -18px -20px 30px rgba(45, 18, 0, 0.68), 0 0 40px rgba(255, 184, 17, 0.42);
}

.hero-star {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 26%;
  filter: drop-shadow(0 8px 7px rgba(70, 29, 0, 0.8)) drop-shadow(0 0 20px rgba(255, 209, 48, 0.34));
  transform: translate(-50%, -50%);
  animation: star-float 4.4s ease-in-out infinite;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 217, 94, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff4b6;
  box-shadow: 0 0 15px #ffd12e;
  content: "";
}

.orbit.one {
  width: 62%;
  height: 44%;
  animation: orbit-one 9s linear infinite;
}

.orbit.two {
  width: 78%;
  height: 57%;
  transform: translate(-50%, -50%) rotate(38deg);
  animation: orbit-two 14s linear infinite reverse;
}

.orbit.three {
  width: 90%;
  height: 70%;
  transform: translate(-50%, -50%) rotate(70deg);
  animation: orbit-three 19s linear infinite;
}

.float-chip {
  position: absolute;
  z-index: 6;
  display: flex;
  min-width: 150px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 211, 61, 0.18);
  border-radius: 16px;
  background: rgba(15, 21, 30, 0.74);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  padding: 12px 14px;
  color: #d8dce2;
  font-size: 13px;
  animation: chip-float 5s ease-in-out infinite;
}

.float-chip b {
  display: block;
  color: var(--cream);
  font-size: 14px;
}

.float-chip small {
  color: #7f8895;
}

.float-chip .chip-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 198, 28, 0.1);
  color: var(--gold);
  font-size: 17px;
}

.float-chip.chip-one {
  top: 17%;
  left: -2%;
}

.float-chip.chip-two {
  right: -3%;
  bottom: 18%;
  animation-delay: -2.4s;
}

.metrics {
  display: grid;
  width: var(--page);
  margin: -18px auto 0;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: rgba(17, 23, 33, 0.68);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  grid-template-columns: repeat(3, 1fr);
}

.metric {
  padding: 24px clamp(18px, 4vw, 42px);
  border-left: 1px solid var(--line-soft);
}

.metric:first-child {
  border-left: 0;
}

.metric strong {
  display: block;
  color: var(--cream);
  font-size: clamp(25px, 3vw, 36px);
}

.metric span {
  color: #7f8895;
  font-size: 13px;
}

.section {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  padding: 130px 0;
}

.section-head {
  display: grid;
  margin-bottom: 52px;
  align-items: end;
  grid-template-columns: 1fr minmax(280px, 0.68fr);
  gap: 40px;
}

.section h2 {
  max-width: 760px;
  margin: 15px 0 0;
  font-size: clamp(40px, 5.3vw, 68px);
  line-height: 0.98;
  letter-spacing: -2.4px;
}

.section-description {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.gateway-grid,
.feature-grid,
.utility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 44%),
    rgba(18, 25, 35, 0.78);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
  contain: paint;
}

.glass-card::before {
  position: absolute;
  top: -40%;
  right: -18%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 191, 26, 0.075);
  filter: blur(44px);
  content: "";
  pointer-events: none;
}

.gateway-card {
  min-height: 390px;
  padding: clamp(28px, 4vw, 48px);
  transition: border-color 250ms ease, transform 250ms ease;
}

.gateway-card:hover {
  border-color: rgba(255, 211, 61, 0.24);
  transform: translateY(-5px);
}

.gateway-number {
  color: rgba(255, 211, 61, 0.48);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.gateway-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-top: 44px;
  place-items: center;
  border: 1px solid rgba(255, 211, 61, 0.2);
  border-radius: 20px;
  background: rgba(255, 195, 25, 0.085);
  box-shadow: 0 0 30px rgba(255, 174, 0, 0.08);
  color: var(--gold);
  font-size: 27px;
}

.gateway-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 7px 8px rgba(0, 0, 0, 0.34));
}

.gateway-card h3 {
  margin: 22px 0 0;
  font-size: 30px;
  letter-spacing: -0.8px;
}

.gateway-card p {
  max-width: 470px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.gateway-footer {
  position: absolute;
  right: clamp(28px, 4vw, 48px);
  bottom: 32px;
  left: clamp(28px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #747e8b;
  font-size: 13px;
}

.gateway-footer b {
  color: var(--gold-light);
}

.world-layout {
  display: grid;
  min-height: 560px;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
}

.planet-graphic {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  margin: auto;
  contain: paint;
}

.planet-shell {
  position: absolute;
  inset: 13%;
  overflow: hidden;
  border: 1px solid rgba(255, 222, 120, 0.25);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.18), transparent 8%),
    radial-gradient(circle at 40% 38%, #273242 0%, #151d29 42%, #090d14 78%);
  box-shadow: inset -34px -24px 70px rgba(0, 0, 0, 0.75), 0 0 70px rgba(255, 180, 20, 0.12);
}

.planet-shell::before,
.planet-shell::after {
  position: absolute;
  inset: -15%;
  background-image: url("/site-assets/star-small.png");
  background-position: 18px 26px;
  background-size: 48px 48px;
  content: "";
  opacity: 0.9;
  transform: rotate(-8deg);
  animation: planet-drift 18s linear infinite;
}

.planet-shell::after {
  inset: -28%;
  background-position: 4px 8px;
  background-size: 28px 28px;
  opacity: 0.5;
  animation-duration: 27s;
  animation-direction: reverse;
}

.planet-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 98%;
  height: 29%;
  border: 1px solid rgba(255, 207, 55, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(255, 185, 14, 0.08);
  transform: translate(-50%, -50%) rotate(-13deg);
}

.world-copy h3 {
  margin: 18px 0 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -2px;
}

.world-copy > p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.world-points {
  display: grid;
  margin-top: 34px;
  gap: 13px;
}

.world-point {
  display: grid;
  padding: 14px 16px;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.world-point i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 205, 41, 0.09);
  color: var(--gold);
  font-style: normal;
  font-size: 13px;
}

.world-point b {
  display: block;
  color: #e8eaf0;
  font-size: 15px;
}

.world-point span {
  color: #76808d;
  font-size: 13px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  min-height: 255px;
  padding: 30px;
}

.feature-card .feature-symbol {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 9px 11px rgba(0, 0, 0, 0.38));
  transition: transform 260ms ease;
}

.feature-card:hover .feature-symbol {
  transform: translateY(-3px) rotate(-3deg) scale(1.04);
}

.feature-card h3 {
  margin: 22px 0 0;
  font-size: 23px;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.roadmap-line {
  position: relative;
  display: grid;
  margin-top: 52px;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.roadmap-line::before {
  position: absolute;
  top: 22px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 211, 61, 0.12));
  content: "";
}

.roadmap-item {
  position: relative;
  z-index: 1;
}

.roadmap-node {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(255, 211, 61, 0.32);
  border-radius: 50%;
  background: #101720;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 0 22px rgba(255, 185, 20, 0.08);
}

.roadmap-item.is-live .roadmap-node {
  background: var(--gold);
  color: #1d1300;
  box-shadow: 0 0 28px rgba(255, 198, 24, 0.26);
}

.roadmap-item h3 {
  margin: 25px 0 8px;
  font-size: 19px;
}

.roadmap-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.roadmap-status {
  display: inline-block;
  margin-top: 13px;
  color: #687381;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.roadmap-item.is-live .roadmap-status {
  color: var(--success);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  width: var(--page);
  margin: 40px auto 120px;
  padding: clamp(48px, 8vw, 88px);
  border: 1px solid rgba(255, 211, 61, 0.19);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 202, 38, 0.13), transparent 22rem),
    linear-gradient(135deg, rgba(30, 38, 51, 0.96), rgba(13, 18, 26, 0.96));
  text-align: center;
}

.cta-panel::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 211, 61, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 211, 61, 0.02), 0 0 0 130px rgba(255, 211, 61, 0.012);
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-star {
  width: 64px;
  filter: drop-shadow(0 8px 6px rgba(71, 29, 0, 0.8));
  animation: cta-star-float 4s ease-in-out infinite;
}

.cta-panel h2 {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1;
  letter-spacing: -2px;
}

.cta-panel p {
  max-width: 580px;
  margin: 18px auto 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(5, 8, 12, 0.66);
}

.footer-shell {
  display: grid;
  width: var(--page);
  min-height: 150px;
  margin: 0 auto;
  padding: 36px 0;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 30px;
}

.footer-copy {
  margin-top: 10px;
  color: #68717e;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: #8d96a3;
  font-size: 13px;
}

/* Token page */
.token-hero {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
}

.token-symbol-visual {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1;
  margin: auto;
  contain: paint;
}

.token-coin {
  position: absolute;
  inset: 21%;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 238, 167, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.86) 0 2%, transparent 3%),
    linear-gradient(145deg, #fff09b 0%, #ffc31e 36%, #e78105 72%, #6b3000 100%);
  box-shadow:
    inset -16px -20px 28px rgba(108, 44, 0, 0.42),
    inset 8px 9px 18px rgba(255, 255, 255, 0.34),
    0 0 46px rgba(255, 187, 17, 0.28),
    0 25px 80px rgba(0, 0, 0, 0.34);
  animation: coin-hover 4.8s ease-in-out infinite;
}

.token-coin::before,
.token-coin::after {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(104, 48, 0, 0.4);
  border-radius: 50%;
  content: "";
}

.token-coin::after {
  inset: 13%;
  border-color: rgba(255, 255, 255, 0.26);
}

.token-monogram {
  position: relative;
  z-index: 2;
  color: #2b1700;
  font-size: clamp(46px, 7vw, 74px);
  font-weight: 700;
  letter-spacing: -4px;
  text-shadow: 0 1px rgba(255, 255, 255, 0.4);
}

.token-coin-image {
  position: absolute;
  inset: 16%;
  z-index: 4;
  width: 68%;
  height: 68%;
  object-fit: contain;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 24px rgba(255, 187, 17, 0.18));
  animation: coin-hover 4.8s ease-in-out infinite;
}

.token-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88%;
  height: 52%;
  border: 1px solid rgba(255, 211, 61, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(255, 183, 13, 0.07);
  transform: translate(-50%, -50%) rotate(-18deg);
  animation: token-orbit 12s linear infinite;
}

.token-orbit::after {
  position: absolute;
  top: 50%;
  left: -7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 20px #ffc21f;
  content: "";
}

.token-data-strip {
  display: grid;
  width: var(--page);
  margin: -18px auto 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: rgba(16, 23, 33, 0.8);
  grid-template-columns: repeat(4, 1fr);
}

.token-data {
  min-width: 0;
  padding: 23px 25px;
  border-left: 1px solid var(--line-soft);
}

.token-data:first-child {
  border-left: 0;
}

.token-data span {
  display: block;
  color: #687381;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.token-data strong {
  display: block;
  overflow: hidden;
  margin-top: 7px;
  color: var(--cream);
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.status-live::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(245, 155, 19, 0.7);
  content: "";
}

.utility-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.utility-card {
  min-height: 290px;
  padding: 28px;
}

.utility-index {
  color: rgba(255, 211, 61, 0.52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.utility-icon {
  display: block;
  width: 72px;
  height: 72px;
  margin-top: 30px;
  object-fit: contain;
  filter: drop-shadow(0 9px 12px rgba(0, 0, 0, 0.4));
  transition: transform 260ms ease;
}

.utility-card:hover .utility-icon {
  transform: translateY(-3px) rotate(3deg) scale(1.04);
}

.utility-card h3 {
  margin: 18px 0 0;
  font-size: 22px;
}

.utility-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.52;
}

.contract-panel {
  display: grid;
  padding: clamp(30px, 5vw, 56px);
  align-items: center;
  grid-template-columns: 1fr minmax(300px, 0.75fr);
  gap: 56px;
}

.contract-panel h3 {
  margin: 16px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -1.4px;
}

.contract-panel p {
  max-width: 550px;
  color: var(--muted);
  line-height: 1.58;
}

.contract-box {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 211, 61, 0.15);
  border-radius: 20px;
  background: rgba(3, 6, 10, 0.42);
}

.contract-icon {
  display: block;
  width: 70px;
  height: 70px;
  margin: -4px 0 14px;
  object-fit: contain;
  filter: drop-shadow(0 9px 12px rgba(0, 0, 0, 0.4));
}

.contract-box span {
  display: block;
  color: #687381;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.contract-address {
  display: flex;
  margin-top: 13px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--cream);
  font-size: 15px;
  font-weight: 600;
}

.contract-address b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-address i {
  flex: 0 0 auto;
  color: var(--orange);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 1px;
}

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

.launch-step {
  min-height: 250px;
  padding: 30px;
}

.launch-step b {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1.6px;
}

.launch-step h3 {
  margin: 52px 0 0;
  font-size: 23px;
}

.launch-step p {
  color: var(--muted);
  line-height: 1.55;
}

.token-disclaimer {
  width: var(--page);
  margin: -72px auto 90px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: #747e8b;
  font-size: 12px;
  line-height: 1.55;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

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

@keyframes pulse-dot {
  50% { opacity: 0.45; transform: scale(0.72); }
}

@keyframes breathe {
  50% { opacity: 0.72; transform: scale(1.04); }
}

@keyframes star-float {
  50% { transform: translate(-50%, calc(-50% - 9px)) rotate(2deg); }
}

@keyframes cta-star-float {
  50% { transform: translate3d(0, -8px, 0) rotate(2deg); }
}

@keyframes chip-float {
  50% { transform: translate3d(0, -8px, 0); }
}

@keyframes orbit-one {
  to { transform: translate(-50%, -50%) rotate(342deg); }
}

@keyframes orbit-two {
  to { transform: translate(-50%, -50%) rotate(398deg); }
}

@keyframes orbit-three {
  to { transform: translate(-50%, -50%) rotate(430deg); }
}

@keyframes planet-drift {
  to { transform: translate3d(42px, -26px, 0) rotate(4deg); }
}

@keyframes coin-hover {
  50% { transform: translate3d(0, -10px, 0) rotateY(5deg); }
}

@keyframes token-orbit {
  to { transform: translate(-50%, -50%) rotate(342deg); }
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 30px, 720px);
  }

  .nav-links {
    display: none;
  }

  .hero,
  .token-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 54px);
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .hero h1 {
    max-width: 730px;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .cosmos-visual,
  .token-symbol-visual {
    width: min(100%, 470px);
    margin-top: -10px;
  }

  .section-head,
  .world-layout,
  .contract-panel {
    grid-template-columns: 1fr;
  }

  .world-layout {
    gap: 34px;
  }

  .world-copy {
    text-align: center;
  }

  .world-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .feature-grid,
  .utility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-line {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 42px;
  }

  .roadmap-line::before {
    display: none;
  }

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

  .token-data:nth-child(3) {
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .token-data:nth-child(4) {
    border-top: 1px solid var(--line-soft);
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 24px);
    --header-height: 66px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 29px;
    height: 29px;
  }

  .nav-action {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 52px);
    padding-bottom: 52px;
  }

  .hero h1 {
    font-size: clamp(47px, 14.5vw, 66px);
    letter-spacing: -2.8px;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
    margin-top: 28px;
  }

  .hero-actions .button {
    flex: 1 1 145px;
  }

  .hero-note {
    align-items: flex-start;
    text-align: left;
  }

  .cosmos-visual,
  .token-symbol-visual {
    width: min(116%, 420px);
    margin-left: -8%;
  }

  .float-chip {
    min-width: 130px;
    padding: 9px 11px;
  }

  .float-chip.chip-one {
    left: 1%;
  }

  .float-chip.chip-two {
    right: 0;
  }

  .metrics {
    margin-top: 0;
    grid-template-columns: 1fr;
  }

  .metric {
    display: flex;
    padding: 17px 20px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .metric:first-child {
    border-top: 0;
  }

  .metric strong {
    font-size: 24px;
  }

  .section {
    padding: 88px 0;
  }

  .section-head {
    margin-bottom: 34px;
    gap: 20px;
  }

  .section h2,
  .world-copy h3 {
    font-size: clamp(37px, 12vw, 52px);
    letter-spacing: -1.6px;
  }

  .gateway-grid,
  .feature-grid,
  .utility-grid,
  .launch-steps {
    grid-template-columns: 1fr;
  }

  .gateway-card {
    min-height: 350px;
    padding: 27px;
  }

  .gateway-footer {
    right: 27px;
    left: 27px;
  }

  .planet-graphic {
    width: min(112%, 410px);
    margin-left: -6%;
  }

  .feature-card,
  .utility-card,
  .launch-step {
    min-height: 220px;
  }

  .utility-card h3,
  .launch-step h3 {
    margin-top: 45px;
  }

  .roadmap-line {
    padding-left: 8px;
    grid-template-columns: 1fr;
  }

  .roadmap-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    column-gap: 17px;
  }

  .roadmap-item h3 {
    margin-top: 3px;
  }

  .roadmap-item p,
  .roadmap-item .roadmap-status {
    grid-column: 2;
  }

  .cta-panel {
    margin-bottom: 80px;
    padding: 46px 22px;
    border-radius: 26px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .token-data-strip {
    grid-template-columns: 1fr;
  }

  .token-data,
  .token-data:nth-child(3),
  .token-data:nth-child(4) {
    display: flex;
    padding: 16px 19px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .token-data:first-child {
    border-top: 0;
  }

  .token-data strong {
    margin-top: 0;
    text-align: right;
  }

  .contract-panel {
    padding: 28px 23px;
    gap: 24px;
  }

  .token-disclaimer {
    margin-top: -52px;
  }
}

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

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

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

body.is-low-power .ambient-glow,
body.is-low-power .glass-card::before {
  filter: none;
}

body.is-low-power .orbit.three,
body.is-low-power .float-chip.chip-two {
  display: none;
}
