:root {
  --bg: #07070a;
  --surface: #111118;
  --text: #f7f5ff;
  --muted: #a8a5b4;
  --purple: #8d39ff;
  --purple-light: #bc68ff;
  --blue: #3948ff;
  --cyan: #6de8ff;
  --line: rgba(255, 255, 255, 0.11);
  --pointer-x: 0px;
  --pointer-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.ambient,
.ambient > span {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ambient {
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 42%, rgba(65, 26, 122, 0.16), transparent 31%),
    linear-gradient(135deg, #07070a 0%, #09090e 48%, #08070d 100%);
}

.ambient__glow {
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.45;
}

.ambient__glow--one {
  width: 42vw;
  height: 42vw;
  left: auto !important;
  top: -24vw !important;
  right: -10vw;
  background: rgba(117, 43, 255, 0.2);
  animation: breathe 9s ease-in-out infinite;
}

.ambient__glow--two {
  width: 28vw;
  height: 28vw;
  top: auto !important;
  right: auto !important;
  left: -12vw;
  bottom: -17vw;
  background: rgba(49, 65, 255, 0.18);
  animation: breathe 11s 2s ease-in-out infinite reverse;
}

.ambient__grid {
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse at 70% 48%, #000 0%, transparent 66%);
  transform: perspective(600px) rotateX(57deg) scale(1.45) translateY(25%);
  transform-origin: center bottom;
}

.ambient__noise {
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header,
.hero,
.site-footer {
  width: calc(100% - 80px);
  max-width: 1440px;
  margin-inline: auto;
}

.site-header {
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: block;
  width: clamp(185px, 17vw, 250px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  color: #c8c4d3;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.status-pill__dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b75cff;
  box-shadow: 0 0 12px 2px rgba(183, 92, 255, 0.6);
}

.status-pill__dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(183, 92, 255, 0.45);
  border-radius: inherit;
  animation: status-pulse 2s ease-out infinite;
}

.hero {
  display: grid;
  grid-template-columns: minmax(470px, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(30px, 5vw, 95px);
  padding-block: 34px 54px;
}

.hero__content {
  position: relative;
  z-index: 4;
  max-width: 680px;
  animation: content-in 0.9s 0.12s both cubic-bezier(.22, 1, .36, 1);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 24px;
  color: #cba8ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-light));
  box-shadow: 0 0 8px var(--purple-light);
}

h1 {
  max-width: 760px;
  margin: 0;
  color: #fbfaff;
  font-size: clamp(3.35rem, 5.2vw, 6.15rem);
  font-weight: 650;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #ffffff 1%, #d9c6ff 32%, #a65aff 64%, #6e62ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 7px 35px rgba(135, 62, 255, 0.22));
}

.hero__description {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  line-height: 1.75;
}

.coming-soon {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-top: 30px;
}

.coming-soon__line {
  width: 2px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--purple-light), var(--blue));
  box-shadow: 0 0 14px rgba(150, 70, 255, 0.65);
}

.coming-soon div {
  display: grid;
  gap: 5px;
}

.coming-soon__label {
  color: #a87cff;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coming-soon strong {
  color: #eeebf4;
  font-size: 0.93rem;
  font-weight: 500;
}

.visual {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: min(670px, 67vh);
  place-items: center;
  animation: visual-in 1.15s 0.18s both cubic-bezier(.22, 1, .36, 1);
}

.visual::before {
  content: "";
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 53, 255, 0.13), rgba(77, 55, 255, 0.035) 38%, transparent 68%);
  filter: blur(5px);
}

.visual__scene {
  position: relative;
  width: min(42vw, 650px);
  aspect-ratio: 1;
  transform: translate3d(var(--pointer-x), var(--pointer-y), 0);
  transition: transform 180ms ease-out;
  transform-style: preserve-3d;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(177, 102, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-15deg);
  box-shadow: inset 0 0 35px rgba(115, 60, 255, 0.025), 0 0 30px rgba(115, 60, 255, 0.025);
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a855ff;
  box-shadow: 0 0 11px 3px rgba(168, 85, 255, 0.62);
}

.orbit::before {
  top: 22%;
  right: 5%;
}

.orbit::after {
  left: 9%;
  bottom: 18%;
  width: 4px;
  height: 4px;
  background: #6872ff;
}

.orbit--outer {
  width: 94%;
  height: 94%;
  animation: orbit-drift 24s linear infinite;
}

.orbit--middle {
  width: 72%;
  height: 72%;
  border-color: rgba(84, 95, 255, 0.22);
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(25deg);
  animation: orbit-drift-reverse 18s linear infinite;
}

.orbit--inner {
  width: 47%;
  height: 47%;
  border-style: dashed;
  border-color: rgba(206, 130, 255, 0.25);
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-4deg);
  animation: orbit-drift 14s linear infinite;
}

.energy-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 38%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 25%, rgba(255, 255, 255, 0.24), transparent 22%),
    radial-gradient(circle at 50% 60%, #7141ff 0%, #32105c 42%, #0a0910 72%);
  box-shadow:
    inset -15px -20px 35px rgba(9, 6, 16, 0.9),
    inset 12px 10px 22px rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) rotate(-9deg);
  animation: core-float 5.5s ease-in-out infinite;
}

.energy-core::before,
.energy-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.energy-core::before {
  inset: 6%;
  border: 2px solid rgba(219, 177, 255, 0.38);
  border-right-color: rgba(102, 81, 255, 0.2);
  box-shadow: inset 0 0 20px rgba(201, 131, 255, 0.14);
}

.energy-core::after {
  inset: -7%;
  border: 1px solid rgba(173, 95, 255, 0.35);
  border-top-color: rgba(255, 255, 255, 0.85);
  filter: drop-shadow(0 0 6px #9f5cff);
  animation: spin 8s linear infinite;
}

.energy-core__halo {
  display: none;
}

.energy-core__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 56%;
  height: auto;
  overflow: visible;
  transform: rotate(8deg);
  filter:
    drop-shadow(-3px 5px 1px rgba(43, 10, 92, 0.65))
    drop-shadow(0 0 9px rgba(255, 255, 255, 0.38));
}

.coin {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.48));
}

.coin__body {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.18), transparent 23%),
    linear-gradient(145deg, #262430, #08080d 67%);
  box-shadow:
    inset 0 0 0 6px rgba(6, 6, 10, 0.75),
    inset 0 0 0 8px rgba(255, 255, 255, 0.14),
    inset -12px -14px 18px #030305,
    inset 10px 8px 18px rgba(255, 255, 255, 0.09),
    0 0 0 1px rgba(0, 0, 0, 0.75);
}

.coin__body::after {
  content: "";
  position: absolute;
  inset: -50% 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: rotate(28deg);
  animation: coin-shine 5.5s ease-in-out infinite;
}

.coin__body span {
  position: relative;
  z-index: 1;
  font-weight: 800;
  line-height: 1;
  text-shadow: -3px 5px 8px rgba(0, 0, 0, 0.72);
}

.coin--bitcoin {
  top: 9%;
  right: 3%;
  width: 20%;
  aspect-ratio: 1;
  animation: coin-float-one 6s ease-in-out infinite;
}

.coin--bitcoin .coin__body {
  border-color: rgba(255, 182, 77, 0.66);
  box-shadow:
    inset 0 0 0 6px rgba(17, 9, 3, 0.72),
    inset 0 0 0 8px rgba(255, 177, 71, 0.45),
    inset -12px -14px 18px #070402,
    inset 10px 8px 18px rgba(255, 211, 148, 0.12),
    0 0 25px rgba(255, 138, 37, 0.22);
}

.coin--bitcoin span {
  color: #ffac3d;
  font-size: clamp(2rem, 4.6vw, 4rem);
  text-shadow: -2px 4px 0 #713908, 0 0 15px rgba(255, 151, 41, 0.55);
}

.coin--ethereum {
  bottom: 12%;
  left: 2%;
  width: 17%;
  aspect-ratio: 1;
  animation: coin-float-two 7s 0.8s ease-in-out infinite;
}

.coin--ethereum .coin__body {
  border-color: rgba(95, 163, 255, 0.55);
  box-shadow:
    inset 0 0 0 5px rgba(4, 8, 18, 0.76),
    inset 0 0 0 7px rgba(74, 122, 255, 0.38),
    inset -12px -14px 18px #030509,
    inset 10px 8px 18px rgba(145, 178, 255, 0.12),
    0 0 24px rgba(60, 97, 255, 0.25);
}

.coin--ethereum .eth-symbol {
  width: 32%;
  height: 52%;
  filter: drop-shadow(-3px 5px 2px #26366f) drop-shadow(0 0 7px rgba(132, 165, 255, 0.52));
}

.coin--ethereum .eth-symbol::before,
.coin--ethereum .eth-symbol::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #d5dfff, #7798ff 58%, #4964c4);
}

.coin--ethereum .eth-symbol::before {
  top: 0;
  height: 71%;
  clip-path: polygon(50% 0, 100% 62%, 50% 82%, 0 62%);
}

.coin--ethereum .eth-symbol::after {
  bottom: 0;
  height: 31%;
  clip-path: polygon(0 0, 50% 23%, 100% 0, 50% 100%);
}

.coin--dex {
  right: 9%;
  bottom: 3%;
  width: 14%;
  aspect-ratio: 1;
  animation: coin-float-three 5.5s 1.2s ease-in-out infinite;
}

.coin--dex .coin__body {
  border-color: rgba(181, 92, 255, 0.58);
  box-shadow:
    inset 0 0 0 5px rgba(13, 4, 21, 0.72),
    inset 0 0 0 7px rgba(170, 74, 255, 0.38),
    inset -10px -12px 16px #050208,
    inset 8px 7px 15px rgba(226, 184, 255, 0.12),
    0 0 25px rgba(168, 73, 255, 0.26);
}

.coin--dex span {
  color: #d6a2ff;
  font-size: clamp(1.45rem, 3.1vw, 2.8rem);
  text-shadow: -2px 4px 0 #5b208f, 0 0 14px rgba(196, 105, 255, 0.55);
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c993ff;
  box-shadow: 0 0 9px 2px rgba(198, 125, 255, 0.65);
  animation: spark-pulse 3s ease-in-out infinite;
}

.spark--one { top: 18%; left: 24%; }
.spark--two { top: 42%; right: 2%; animation-delay: 0.8s; }
.spark--three { right: 26%; bottom: 12%; animation-delay: 1.4s; }
.spark--four { left: 12%; top: 49%; animation-delay: 2s; }

.site-footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #66636f;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  font-size: 0.71rem;
  letter-spacing: 0.04em;
}

.site-footer__separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #6f3db4;
}

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

@keyframes visual-in {
  from { opacity: 0; transform: translateX(35px) scale(0.94); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes breathe {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 0.52; transform: scale(1.08); }
}

@keyframes status-pulse {
  0% { opacity: 1; transform: scale(0.6); }
  100% { opacity: 0; transform: scale(1.65); }
}

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

@keyframes orbit-drift {
  from { transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-15deg); }
  to { transform: translate(-50%, -50%) rotateX(62deg) rotateZ(345deg); }
}

@keyframes orbit-drift-reverse {
  from { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(25deg); }
  to { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-335deg); }
}

@keyframes core-float {
  0%, 100% { transform: translate(-50%, -50%) rotate(-9deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(-6deg) translateY(-10px); }
}

@keyframes coin-float-one {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-15px) rotate(14deg); }
}

@keyframes coin-float-two {
  0%, 100% { transform: translateY(0) rotate(-13deg); }
  50% { transform: translateY(13px) rotate(-6deg); }
}

@keyframes coin-float-three {
  0%, 100% { transform: translateY(0) rotate(12deg); }
  50% { transform: translateY(-11px) rotate(4deg); }
}

@keyframes coin-shine {
  0%, 28% { transform: translateX(-160%) rotate(28deg); }
  58%, 100% { transform: translateX(160%) rotate(28deg); }
}

@keyframes spark-pulse {
  0%, 100% { opacity: 0.2; transform: scale(0.6); }
  50% { opacity: 1; transform: scale(1.35); }
}

@media (max-width: 1080px) {
  .site-header,
  .hero,
  .site-footer {
    width: calc(100% - 48px);
    max-width: 920px;
  }

  .hero {
    grid-template-columns: minmax(400px, 1fr) minmax(390px, 0.9fr);
    gap: 20px;
  }

  .visual__scene {
    width: min(49vw, 520px);
  }
}

@media (max-width: 820px) {
  .page-shell {
    overflow-y: auto;
  }

  .site-header {
    min-height: 98px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-block: 42px 48px;
  }

  .hero__content {
    min-width: 0;
    max-width: 700px;
  }

  h1 {
    font-size: clamp(3.5rem, 11vw, 5.5rem);
  }

  .hero__description {
    max-width: 650px;
  }

  .visual {
    min-height: auto;
    margin: -30px 0 -10px;
  }

  .visual__scene {
    width: min(88vw, 610px);
  }

  .ambient__grid {
    mask-image: radial-gradient(ellipse at 50% 70%, #000 0%, transparent 70%);
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .site-footer {
    width: calc(100% - 36px);
    max-width: 520px;
  }

  .site-header {
    min-height: 84px;
  }

  .brand {
    width: 174px;
  }

  .status-pill {
    padding: 8px 10px;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .hero {
    padding-top: 44px;
  }

  .eyebrow {
    margin-bottom: 19px;
    font-size: 0.65rem;
  }

  h1 {
    font-size: clamp(2.7rem, 11.7vw, 3.4rem);
    line-height: 1.01;
  }

  .hero__description {
    margin-top: 23px;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .coming-soon {
    margin-top: 25px;
  }

  .visual {
    margin-top: -6px;
  }

  .visual__scene {
    width: 106vw;
    margin-left: 11vw;
  }

  .site-footer {
    min-height: 74px;
    justify-content: center;
    font-size: 0.64rem;
    text-align: center;
  }
}
