:root {
  --bg: #07101d;
  --bg-2: #0b1627;
  --panel: rgba(11, 24, 41, 0.72);
  --panel-strong: rgba(12, 28, 48, 0.92);
  --panel-border: rgba(125, 194, 255, 0.16);
  --text: #f4f7fb;
  --muted: #adc1d9;
  --muted-2: #7f96b0;
  --gold: #ffc94a;
  --gold-2: #ffab19;
  --cyan: #4edbff;
  --cyan-2: #1bbce9;
  --green: #72f2bb;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(78, 219, 255, 0.15), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 201, 74, 0.15), transparent 30%),
    radial-gradient(circle at bottom left, rgba(114, 242, 187, 0.08), transparent 18%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 38%, #0f1b2d 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(12px);
  z-index: 0;
}

body::before {
  top: 80px;
  left: -52px;
  width: 230px;
  height: 230px;
  background: rgba(255, 201, 74, 0.1);
}

body::after {
  right: -40px;
  bottom: 96px;
  width: 250px;
  height: 250px;
  background: rgba(78, 219, 255, 0.12);
}

a {
  color: inherit;
}

.page {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 48px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 201, 74, 0.22), rgba(78, 219, 255, 0.09)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark span {
  position: relative;
  z-index: 1;
  font-size: 24px;
}

.brand-copy strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link,
.button,
.button-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.nav-link,
.button-soft {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.button {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #0c1522;
  box-shadow: 0 20px 36px rgba(255, 171, 25, 0.28);
}

.button-soft:hover,
.button:hover,
.nav-link:hover {
  transform: translateY(-2px);
}

.button-soft:hover,
.nav-link:hover {
  border-color: rgba(78, 219, 255, 0.34);
  background: rgba(78, 219, 255, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 32%);
  pointer-events: none;
}

.hero-copy {
  padding: 42px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  margin: 18px 0 14px;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

h1 span {
  color: var(--gold);
}

.lead {
  max-width: 620px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

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

.highlight-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.highlight-card strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.hero-side {
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(78, 219, 255, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(255, 201, 74, 0.14), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coin-stage {
  min-height: 340px;
  position: relative;
}

.coin {
  position: absolute;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 8px 16px rgba(255, 255, 255, 0.26),
    0 22px 48px rgba(0, 0, 0, 0.34);
  animation: floatY 5.5s ease-in-out infinite;
}

.coin-star {
  top: 14px;
  left: 16px;
  width: 194px;
  height: 194px;
  background: linear-gradient(145deg, #ffd86f 0%, #ffb726 100%);
  color: #18243a;
  font-size: 62px;
}

.coin-ton {
  right: 12px;
  top: 126px;
  width: 148px;
  height: 148px;
  background: linear-gradient(145deg, #81e9ff 0%, #28c4f4 100%);
  color: #0d2131;
  font-size: 54px;
  animation-delay: -1.7s;
}

.coin-ring {
  left: 126px;
  bottom: 30px;
  width: 134px;
  height: 134px;
  border: 14px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  animation-delay: -0.9s;
}

.status-card {
  margin-top: 18px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(5, 12, 23, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.status-card strong {
  display: block;
  font-size: 21px;
  margin-bottom: 10px;
}

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

.status-list span {
  color: var(--muted);
  line-height: 1.55;
}

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

.card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.card h2,
.card h3 {
  margin: 0 0 12px;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.68;
}

.eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
}

.steps b {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(78, 219, 255, 0.12);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 17px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.faq details {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 18px 18px 20px;
  font-weight: 800;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq .answer {
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.68;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 22px 24px;
}

.footer-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-copy strong {
  color: var(--text);
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

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

.link-card {
  display: block;
  padding: 18px;
  border-radius: 18px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(78, 219, 255, 0.34);
  background: rgba(78, 219, 255, 0.08);
}

.link-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

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

.document-wrap {
  max-width: 900px;
}

.document-hero {
  padding: 28px;
  margin-bottom: 18px;
}

.document-body {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.document-body section {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.document-body h2 {
  margin: 0 0 12px;
}

.document-body p,
.document-body li {
  color: var(--muted);
  line-height: 1.72;
}

.document-body ul {
  margin: 0;
  padding-left: 18px;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 980px) {
  .hero,
  .section-grid,
  .trust-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .coin-stage {
    min-height: 280px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 18px, 100%);
    padding-top: 18px;
  }

  .nav,
  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-actions,
  .footer-links,
  .cta-row {
    flex-direction: column;
  }

  .hero-copy,
  .hero-side,
  .card,
  .document-hero,
  .document-body {
    padding: 22px;
  }

  .button,
  .button-soft,
  .nav-link {
    width: 100%;
  }

  .coin-star {
    width: 162px;
    height: 162px;
    font-size: 52px;
  }

  .coin-ton {
    width: 126px;
    height: 126px;
    top: 116px;
    font-size: 48px;
  }
}
