:root {
  color-scheme: dark;
  --bg: #07111c;
  --panel: rgba(9, 24, 38, 0.82);
  --panel-strong: rgba(12, 34, 52, 0.96);
  --ink: #f2fbff;
  --muted: #a8c4d5;
  --cyan: #31dfff;
  --green: #9af23b;
  --pink: #ff4fc3;
  --amber: #ffcf53;
  --line: rgba(72, 225, 255, 0.24);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(49, 223, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 82% 2%, rgba(255, 79, 195, 0.14), transparent 34rem),
    linear-gradient(145deg, #06101b 0%, #0b1725 47%, #110d20 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(49, 223, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 223, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 72%);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 13, 23, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 0 28px rgba(49, 223, 255, 0.34);
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
}

.nav-links a:hover,
.button:hover {
  border-color: rgba(49, 223, 255, 0.7);
  background: rgba(49, 223, 255, 0.12);
}

.button.primary {
  color: #031018;
  border-color: transparent;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 16px 40px rgba(49, 223, 255, 0.22);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: center;
  gap: 44px;
  padding: 56px 0 40px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 9vw, 6.5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: 1.22rem;
}

.lead {
  max-width: 720px;
  margin: 20px 0 0;
  color: #d8edf6;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.hero-art {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.hero-card {
  width: min(100%, 380px);
  border: 1px solid rgba(49, 223, 255, 0.28);
  border-radius: 26px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-icon {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.orbit {
  position: absolute;
  width: 92px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(3, 12, 22, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.orbit img {
  width: 74%;
}

.orbit.one {
  top: 28px;
  right: 0;
}

.orbit.two {
  left: 4px;
  bottom: 42px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.stat,
.card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.stat {
  padding: 16px;
}

.stat strong {
  display: block;
  color: var(--cyan);
  font-size: 1.3rem;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 76px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.card {
  padding: 24px;
}

.card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 18px;
}

.card p,
.legal-card p,
.legal-card li,
.section-header p {
  color: var(--muted);
}

.release-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  border: 1px solid rgba(154, 242, 59, 0.25);
  border-radius: 22px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(154, 242, 59, 0.1), rgba(49, 223, 255, 0.06)), var(--panel-strong);
}

.release-list {
  display: grid;
  gap: 10px;
}

.release-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
  color: var(--muted);
}

.release-row strong {
  color: var(--ink);
}

.legal-layout {
  padding: 56px 0 80px;
}

.legal-card {
  padding: clamp(22px, 5vw, 44px);
}

.legal-card h1 {
  font-size: clamp(2.5rem, 7vw, 4.8rem);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.legal-card ul {
  padding-left: 1.2rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding: 34px 0;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .nav {
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero,
  .release-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-art {
    min-height: 410px;
  }

  .grid,
  .stats {
    grid-template-columns: 1fr;
  }
}
