﻿:root {
  --bg: #070a16;
  --bg-soft: #0f1426;
  --bg-alt: #131a31;
  --ink: #f7f9ff;
  --ink-soft: #aab2d4;
  --line: #273153;
  --orange: #ff9328;
  --orange-deep: #ff6e32;
  --mint: #39d6c3;
  --berry: #ff4f8f;
  --sky: #51a8ff;
  --violet: #7f7bff;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow: 0 16px 42px rgba(2, 5, 14, 0.45);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -12%, rgba(255, 112, 51, 0.34) 0%, rgba(255, 112, 51, 0) 40%),
    radial-gradient(circle at 100% 10%, rgba(81, 168, 255, 0.28) 0%, rgba(81, 168, 255, 0) 36%),
    radial-gradient(circle at 70% 90%, rgba(255, 79, 143, 0.2) 0%, rgba(255, 79, 143, 0) 48%),
    var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: #ffffff;
  color: #0d1020;
  padding: 8px 10px;
  border-radius: 8px;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.06;
  background-image: radial-gradient(#d7ddff 0.65px, transparent 0.65px);
  background-size: 8px 8px;
  pointer-events: none;
}

.bg-shape {
  position: fixed;
  z-index: -2;
  filter: blur(68px);
  opacity: 0.3;
  pointer-events: none;
  animation: drift 16s ease-in-out infinite alternate;
}

.bg-shape-a {
  width: 330px;
  height: 330px;
  top: 12%;
  left: -90px;
  border-radius: 999px;
  background: var(--orange);
}

.bg-shape-b {
  width: 420px;
  height: 420px;
  right: -130px;
  top: 35%;
  border-radius: 999px;
  background: var(--sky);
  animation-delay: 2s;
}

@keyframes drift {
  from {
    transform: translateY(-8px) translateX(-9px);
  }
  to {
    transform: translateY(20px) translateX(14px);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(50, 64, 104, 0.7);
  backdrop-filter: blur(10px);
  background: rgba(8, 12, 27, 0.76);
}

.header-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-logo {
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.brand span {
  color: #f4f7ff;
}

.brand strong {
  color: #fff;
  background: linear-gradient(120deg, var(--orange) 0%, var(--berry) 100%);
  border-radius: 999px;
  padding: 0.16rem 0.52rem;
  font-size: 0.78rem;
}

.nav-links {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.94rem;
  color: #b8c2e9;
  padding: 0.38rem 0.52rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(114, 132, 199, 0.2);
}

.menu-toggle {
  display: none;
  border: 1px solid #3a4670;
  background: #171f39;
  color: var(--ink);
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
  padding: 0.42rem 0.74rem;
}

.hero {
  padding: 4.7rem 0 3.3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.eyebrow {
  display: inline-block;
  margin: 0;
  background: linear-gradient(90deg, rgba(255, 147, 40, 0.28) 0%, rgba(127, 123, 255, 0.28) 100%);
  border: 1px solid rgba(154, 129, 255, 0.5);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f4eeff;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4.6vw, 3.75rem);
  text-wrap: balance;
}

.hero .lead {
  margin: 1rem 0 1.4rem;
  max-width: 64ch;
  color: #b4bfdf;
  font-size: 1.04rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.64rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(132deg, var(--orange) 0%, var(--berry) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 102, 74, 0.35);
}

.btn-soft {
  background: #1a2342;
  color: #d8e0ff;
  border-color: #32406d;
}

.hero-card,
.card,
.status-wrap {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(19, 28, 52, 0.95) 0%, rgba(14, 20, 39, 0.95) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(10, 15, 31, 0.5) 0%, rgba(8, 12, 25, 0.65) 100%);
  border-top: 1px solid #222f55;
  border-bottom: 1px solid #222f55;
}

.section-head {
  margin-bottom: 1.1rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.1vw, 2.35rem);
}

.section-head p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  max-width: 64ch;
}

.cards {
  display: grid;
  gap: 1rem;
}

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

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

.snapshot-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.snapshot-grid > .card {
  flex: 0 1 calc((100% - 2rem) / 3);
}

.card {
  padding: 1rem;
}

.card h3 {
  font-size: 1.14rem;
  margin-bottom: 0.54rem;
  color: #f3f7ff;
}

.card p {
  margin: 0;
  color: #acb8dd;
}

.card.feature {
  border-top: 4px solid #4ec9f7;
}

.stats-grid .stat-card {
  position: relative;
  overflow: hidden;
}

.stats-grid .stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 147, 40, 0.12) 0%, rgba(81, 168, 255, 0.08) 55%, rgba(255, 79, 143, 0.12) 100%);
  pointer-events: none;
}

.stats-grid .stat-card-last-center {
  grid-column: 2 / 3;
}

.stat-card span {
  position: relative;
  z-index: 1;
  display: block;
  color: #9fb0e3;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-card strong {
  position: relative;
  z-index: 1;
  margin-top: 0.38rem;
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.82rem);
  color: #ffffff;
}

.stats-note {
  margin: 0.9rem 0 0;
  color: #93a6db;
  font-size: 0.92rem;
}

.stats-note a {
  color: #7ec6ff;
}

.stats-note.is-error {
  color: #ff9fb0;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tokenomics-grid-bottom {
  margin-top: 1rem;
}

.tokenomics-card h3 {
  margin-bottom: 0.7rem;
}

.tokenomics-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #d8e4ff;
}

.tokenomics-list li + li {
  margin-top: 0.44rem;
}

.tokenomics-list strong {
  color: #ffffff;
}

.tokenomics-formula {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: #f7fbff;
}

.tokenomics-formula + .tokenomics-formula {
  margin-top: 0.42rem;
}

.tokenomics-note {
  margin: 0.72rem 0 0;
  color: #a7b8e6;
}

.tokenomics-table-card {
  margin-top: 1rem;
}

.tokenomics-table-wrap {
  margin-top: 0.6rem;
  overflow-x: auto;
}

.tokenomics-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #324471;
}

.tokenomics-table th,
.tokenomics-table td {
  text-align: left;
  padding: 0.62rem 0.72rem;
}

.tokenomics-table thead th {
  background: linear-gradient(135deg, rgba(81, 168, 255, 0.24) 0%, rgba(255, 147, 40, 0.2) 100%);
  color: #f7fbff;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.tokenomics-table tbody tr {
  border-top: 1px solid #2d3f6e;
}

.tokenomics-table tbody tr:nth-child(even) {
  background: rgba(28, 40, 74, 0.45);
}

.tokenomics-table tbody tr:nth-child(odd) {
  background: rgba(19, 29, 56, 0.45);
}

.tokenomics-table td {
  color: #d8e4ff;
}

.tokenomics-source {
  margin: 1rem 0 0;
  color: #9eb1e5;
  font-size: 0.92rem;
}

.tokenomics-source a {
  color: #86cbff;
}

.status-wrap {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.1rem;
  align-items: start;
}

.status-wrap h2 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.status-wrap p {
  margin-top: 0.7rem;
  color: var(--ink-soft);
}

.status-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.status-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: #deebff;
  background: #172240;
  border: 1px solid #334474;
  border-radius: 12px;
  padding: 0.58rem 0.7rem;
}

.status-list .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--mint), #1fae9d);
  flex-shrink: 0;
}

.status-list .release-inline {
  font-weight: 700;
  color: #f7fbff;
}

.link-card {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-2px);
  border-color: #4862ab;
}

.cards-2 .link-card-last-center {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, calc((100% - 1rem) / 2));
}

.site-footer {
  padding: 1.1rem 0 1.4rem;
  border-top: 1px solid #27335a;
  background: rgba(8, 12, 24, 0.8);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-row p {
  margin: 0;
  color: #98a8da;
  font-size: 0.93rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.56s ease, transform 0.56s ease;
}

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

@media (max-width: 980px) {
  .hero {
    padding-top: 3.7rem;
  }

  .hero-grid,
  .tokenomics-grid,
  .status-wrap,
  .cards-3,
  .cards-2 {
    grid-template-columns: 1fr;
  }

  .cards-2 .link-card-last-center {
    grid-column: auto;
    justify-self: stretch;
    width: auto;
  }

  .snapshot-grid > .card {
    flex-basis: 100%;
  }

  .stats-grid .stat-card-last-center {
    grid-column: auto;
  }

}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 1rem 1rem;
    background: #0f1730;
    border-bottom: 1px solid #2a3864;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
