:root {
  --bg: #060b12;
  --bg-soft: #0d1624;
  --glass: rgba(12, 22, 36, 0.7);
  --primary: #5cf0f8;
  --accent: #ff7b58;
  --accent-2: #7c6bff;
  --text: #e6f1ff;
  --muted: #9fb2c8;
  --shadow: rgba(6, 10, 20, 0.7);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 0%, #1b2942 0%, transparent 45%),
    radial-gradient(circle at 80% 10%, #2b1b36 0%, transparent 50%),
    linear-gradient(180deg, #05070c 0%, #0b101b 40%, #060b12 100%);
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 1;
}

.glow {
  position: fixed;
  width: 320px;
  height: 320px;
  filter: blur(0);
  opacity: 0.5;
  background: radial-gradient(circle, rgba(92, 240, 248, 0.35), transparent 60%);
  z-index: 0;
}

.glow--left {
  top: 10%;
  left: -80px;
}

.glow--right {
  top: 30%;
  right: -60px;
  background: radial-gradient(circle, rgba(255, 123, 88, 0.35), transparent 60%);
}

.page {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 60px;
  display: grid;
  gap: 64px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero__copy h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  margin: 0 0 16px;
  text-transform: uppercase;
  line-height: 1.05;
}

.hero__copy h1 span {
  background: linear-gradient(120deg, #7c6bff 0%, #5cf0f8 45%, #ff7b58 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero__copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 46ch;
  line-height: 1.6;
  margin: 0 0 24px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  border-radius: 999px;
  border: none;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, #5cf0f8, #7c6bff);
  color: #06101e;
  box-shadow: 0 16px 40px rgba(92, 240, 248, 0.35);
}

.btn--ghost {
  background: rgba(12, 22, 36, 0.8);
  color: var(--text);
  border: 1px solid rgba(92, 240, 248, 0.25);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.hero__stats div {
  background: var(--glass);
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(92, 240, 248, 0.1);
}

.hero__stats span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}

.hero__stats small {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero__panel {
  background: linear-gradient(160deg, rgba(15, 27, 44, 0.9), rgba(7, 12, 22, 0.85));
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px var(--shadow);
}

.feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
  background: linear-gradient(
    140deg,
    rgba(20, 30, 46, 0.95),
    rgba(9, 14, 24, 0.92)
  );
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(6, 10, 20, 0.6);
}

.feature__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 123, 88, 0.18);
  color: #ffd7c6;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.feature__card h2 {
  margin: 16px 0 12px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  text-transform: uppercase;
}

.feature__card h2 span {
  color: #fff0e9;
  background: linear-gradient(120deg, #ff7b58, #5cf0f8 80%);
  -webkit-background-clip: text;
  color: transparent;
}

.feature__card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 22px;
}

.feature__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.feature__art {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(10, 18, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 50px rgba(6, 10, 20, 0.6);
}

.feature__art img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 320px;
}

.feature__art figcaption {
  padding: 12px 16px 16px;
  font-size: 0.9rem;
  color: rgba(230, 241, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.panel__header h2 {
  margin: 0;
  font-size: 1.4rem;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 123, 88, 0.15);
  color: #ffd1c2;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.panel__note {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(10, 18, 32, 0.8);
  color: var(--muted);
  margin-bottom: 18px;
}

.panel__grid {
  display: grid;
  gap: 14px;
}

.trend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(12, 22, 36, 0.75);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.trend__icon {
  font-size: 1.4rem;
  background: rgba(92, 240, 248, 0.14);
  border-radius: 12px;
  padding: 8px 10px;
}

.trend strong {
  display: block;
}

.trend span {
  color: var(--muted);
  font-size: 0.85rem;
}

.trend em {
  font-style: normal;
  color: #9af7ff;
  font-size: 0.8rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--glass);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(6, 10, 20, 0.55);
}

.card--wide {
  grid-column: span 2;
}

.card h3 {
  margin-top: 0;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

.meter {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.meter__bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.meter__bar div {
  height: 100%;
  width: 87%;
  background: linear-gradient(90deg, #5cf0f8, #ff7b58);
}

.meter__value {
  font-weight: 700;
  color: #ffceb8;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(124, 107, 255, 0.2);
  color: #c5bfff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.market {
  display: grid;
  gap: 24px;
}

.market__head h2 {
  margin: 0 0 10px;
  font-family: "Unbounded", sans-serif;
  text-transform: uppercase;
}

.market__body {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 0.7fr);
  gap: 24px;
}

.bubbles {
  position: relative;
  min-height: 260px;
  border-radius: 22px;
  background: rgba(10, 18, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.bubble {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(92, 240, 248, 0.14);
  border: 1px solid rgba(92, 240, 248, 0.2);
  animation: float 6s ease-in-out infinite;
}

.b1 { top: 20%; left: 18%; }
.b2 { top: 10%; right: 20%; animation-delay: 1s; }
.b3 { bottom: 20%; left: 42%; animation-delay: 2s; }
.b4 { bottom: 12%; right: 18%; animation-delay: 1.6s; }
.b5 { top: 55%; left: 65%; animation-delay: 2.4s; }
.b6 { bottom: 30%; left: 12%; animation-delay: 3s; }

.ticker {
  display: grid;
  gap: 12px;
}

.ticker div {
  background: rgba(12, 22, 36, 0.8);
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ticker strong {
  display: block;
}

.ticker span {
  color: var(--muted);
  font-size: 0.85rem;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(120deg, rgba(92, 240, 248, 0.12), rgba(124, 107, 255, 0.2));
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta h2 {
  margin: 0 0 10px;
  font-family: "Unbounded", sans-serif;
}

.cta p {
  color: var(--muted);
  margin: 0;
  max-width: 46ch;
}

.footer {
  display: grid;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-size: 0.7rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 900px) {
  .market__body {
    grid-template-columns: 1fr;
  }

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

  .feature {
    padding: 22px;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 48px 18px 40px;
  }

  .eyebrow {
    letter-spacing: 0.25em;
  }

  .hero__stats {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .card--wide {
    grid-column: span 1;
  }
}

@media (max-width: 560px) {
  .hero__copy h1 {
    font-size: 2.3rem;
  }

  .hero__actions,
  .feature__actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bubble {
    animation: none;
  }
}
