:root {
  color-scheme: dark;
  --ink: #f8fbff;
  --muted: #b9c7db;
  --deep: #070718;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --line: rgba(255, 255, 255, 0.18);
  --cyan: #18d8ff;
  --blue: #185cff;
  --violet: #7135ff;
  --magenta: #c000ff;
  --pink: #ff4ad8;
  --mint: #6df5c3;
  --gold: #ffd166;
  --coral: #ff6b6b;
  --shadow: 0 24px 70px rgba(2, 8, 32, 0.28);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(24, 216, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 84% 8%, rgba(255, 74, 216, 0.16), transparent 32rem),
    linear-gradient(145deg, #050517 0%, #090a25 45%, #111327 100%);
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0;
  line-height: 1.5;
  min-width: 320px;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(115deg, rgba(13, 228, 241, 0.08), rgba(91, 72, 255, 0.12), rgba(255, 52, 205, 0.07));
  background-size: 180% 180%;
  animation: lumi-gradient 18s ease-in-out infinite alternate;
}

body:after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 62%);
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  left: 16px;
  top: 16px;
  z-index: 100;
  border-radius: var(--radius);
  background: #ffffff;
  color: #08091d;
  padding: 10px 14px;
  font-weight: 900;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 5, 18, 0.84);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.nav {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 1240px;
  min-height: 76px;
  padding: 12px 28px;
}

.brand-link,
.nav-panel,
.nav-actions,
.hero-actions,
.final-cta div {
  align-items: center;
  display: flex;
}

.brand-link {
  background: transparent;
  border: 0;
  box-shadow: none;
  justify-content: center;
  min-width: 104px;
  transition: opacity 160ms ease;
}

.brand-link:hover {
  opacity: 0.88;
}

.brand-mark {
  display: block;
  height: auto;
  width: 104px;
}

.nav-panel {
  gap: 20px;
  justify-content: flex-start;
}

.nav-panel a {
  color: rgba(248, 251, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 850;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  color: #ffffff;
}

.nav-actions,
.hero-actions,
.final-cta div {
  gap: 10px;
}

.language-toggle,
.menu-toggle {
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
}

.language-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  min-height: 40px;
  padding: 0 12px;
  font-size: 0.86rem;
  font-weight: 900;
}

.menu-toggle {
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-toggle span:not(.sr-only) {
  background: #ffffff;
  border-radius: 999px;
  display: block;
  height: 2px;
  margin: 4px auto;
  width: 18px;
}

.button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  font-weight: 950;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue) 45%, var(--magenta));
  box-shadow: 0 12px 30px rgba(70, 95, 255, 0.28);
  color: #ffffff;
}

.button-soft {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--line);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.06);
}

.button-light {
  background: #ffffff;
  color: #090a23;
}

.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.hero {
  min-height: min(780px, 100vh);
  padding: 104px 22px 54px;
  display: grid;
  align-items: center;
}

.hero-content,
.section,
.split-section,
.coins-section,
.trust-section,
.final-cta,
.footer {
  margin: 0 auto;
  max-width: 1220px;
  width: 100%;
}

.hero-content {
  max-width: 840px;
  text-align: center;
}

.eyebrow {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.8rem, 8vw, 6.7rem);
  line-height: 0.95;
  margin: 0;
  max-width: 840px;
}

h2 {
  font-size: clamp(2.3rem, 6vw, 5.4rem);
  line-height: 0.94;
  margin: 0;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.1;
  margin: 0;
}

.hero-text {
  color: rgba(248, 251, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  margin: 20px auto 0;
  max-width: 650px;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.section,
.split-section,
.coins-section,
.trust-section,
.final-cta,
.footer {
  padding-left: 22px;
  padding-right: 22px;
}

.section {
  padding-bottom: 84px;
  padding-top: 84px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.4fr);
  margin-bottom: 34px;
}

.live-section {
  padding-bottom: clamp(80px, 7vw, 108px);
  padding-top: clamp(80px, 7vw, 108px);
}

.live-section .section-heading {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  justify-items: center;
  margin: 0 auto 32px;
  max-width: 900px;
  text-align: center;
}

.live-section .section-heading .eyebrow {
  margin-bottom: 0;
}

.live-section h2 {
  max-width: 860px;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

.feature-track {
  display: grid;
  align-items: stretch;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-track article,
.split-section article,
.steps-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-track article {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  overflow: hidden;
  padding: clamp(20px, 2.2vw, 28px);
  position: relative;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.feature-track article:before {
  background: linear-gradient(90deg, rgba(24, 216, 255, 0.24), rgba(255, 74, 216, 0.22));
  content: "";
  filter: blur(28px);
  height: 96px;
  inset: auto -18% -52% -18%;
  position: absolute;
}

.feature-track article:hover,
.feature-track article:focus-within {
  background-color: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-2px);
}

.feature-track span {
  color: var(--gold);
  display: block;
  font-weight: 950;
  margin-bottom: clamp(34px, 5vw, 54px);
}

.feature-track p,
.split-section li,
.coins-section p,
.coins-section li,
.steps-grid li,
.trust-grid span,
.footer p,
.footer a,
.footer span,
.footer-button,
.policy-links p {
  color: rgba(248, 251, 255, 0.76);
}

.feature-track p {
  margin: 10px 0 0;
  max-width: 24rem;
}

.category-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 30px;
}

.category-grid span {
  align-items: center;
  aspect-ratio: 1.15;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  font-size: 1.05rem;
  font-weight: 950;
  justify-content: center;
  padding: 16px;
  text-align: center;
}

.split-section {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 90px;
  padding-top: 36px;
}

.split-section article {
  min-height: 560px;
  padding: clamp(28px, 5vw, 48px);
}

.split-section ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.split-section li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 850;
  padding-bottom: 14px;
}

.seller-panel {
  background:
    linear-gradient(160deg, rgba(24, 216, 255, 0.18), rgba(192, 0, 255, 0.12)),
    rgba(255, 255, 255, 0.08);
}

.seller-panel .button {
  margin-top: 32px;
}

.coins-section {
  align-items: center;
  background:
    linear-gradient(120deg, rgba(24, 216, 255, 0.32), rgba(24, 92, 255, 0.26), rgba(192, 0, 255, 0.30)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  overflow: hidden;
  padding-bottom: clamp(64px, 6vw, 88px);
  padding-top: clamp(64px, 6vw, 88px);
  position: relative;
}

.coins-copy,
.coins-actions {
  min-width: 0;
}

.coins-section h2 {
  max-width: 700px;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.coins-section p {
  font-size: 1.13rem;
  margin: 18px 0 0;
  max-width: 560px;
}

.coins-actions {
  align-content: center;
  display: grid;
  gap: 22px;
  justify-items: start;
}

.coins-section ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
}

.steps-section {
  padding-bottom: clamp(72px, 7vw, 96px);
  padding-top: clamp(72px, 7vw, 96px);
}

.steps-section .section-heading {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  justify-items: center;
  margin: 0 auto 32px;
  max-width: 900px;
  text-align: center;
}

.steps-section .section-heading .eyebrow {
  margin-bottom: 0;
}

.steps-section h2 {
  max-width: 860px;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.steps-grid ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
}

.steps-grid {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.steps-grid article {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: clamp(26px, 3.2vw, 38px);
}

.steps-grid h3 {
  margin-bottom: 22px;
}

.steps-grid li {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 950;
  line-height: 1;
  padding: 10px 0;
}

.trust-section {
  padding-bottom: 90px;
  padding-top: 30px;
}

.trust-section h2 {
  max-width: 760px;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-grid span {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  padding: 12px 16px;
}

.final-cta {
  align-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 36%, var(--violet) 70%, var(--pink));
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 80px;
  padding-bottom: 48px;
  padding-top: 48px;
}

.final-cta h2 {
  max-width: 760px;
}

.footer {
  padding-bottom: 46px;
}

.footer-grid {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 1.4fr repeat(4, minmax(120px, 1fr));
  padding-top: 38px;
}

.footer h2,
.footer h3 {
  font-size: 0.95rem;
  margin: 0 0 12px;
}

.footer p {
  margin: 0;
  max-width: 380px;
}

.footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer a,
.footer span,
.footer-button {
  font-size: 0.9rem;
}

.footer-button {
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: left;
}

.footer-button:hover,
.footer a:hover {
  color: #ffffff;
}

.policy-links {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: grid;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
}

.policy-links p,
.copyright {
  font-size: 0.86rem;
}

.policy-links strong {
  color: var(--ink);
}

.copyright {
  color: rgba(248, 251, 255, 0.58);
  margin: 26px 0 0;
}

.modal-backdrop {
  align-items: center;
  background: rgba(5, 5, 18, 0.72);
  display: grid;
  inset: 0;
  justify-items: center;
  padding: max(18px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  position: fixed;
  z-index: 50;
  backdrop-filter: blur(16px);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    #10112b;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-height: min(86vh, 620px);
  max-width: 440px;
  overflow-y: auto;
  padding: 28px;
  position: relative;
  width: min(100%, 440px);
}

.modal h2 {
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  line-height: 1;
  margin: 0;
}

.modal p {
  color: rgba(248, 251, 255, 0.78);
  margin: 14px 0 22px;
}

.modal-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  font-size: 1.35rem;
  height: 38px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
}

@keyframes lumi-gradient {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@media (max-width: 1040px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-panel,
  .nav-actions {
    display: none;
  }

  .site-header.is-open .nav-panel,
  .site-header.is-open .nav-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-header.is-open .nav-panel,
  .site-header.is-open .nav-actions,
  .hero-actions,
  .final-cta,
  .final-cta div {
    flex-wrap: wrap;
  }

  .section-heading,
  .coins-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .coins-section {
    align-items: start;
    gap: 28px;
    padding-bottom: 56px;
    padding-top: 56px;
  }

  .section {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .live-section,
  .steps-section {
    padding-bottom: 76px;
    padding-top: 76px;
  }

  .coins-actions {
    justify-items: stretch;
  }

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

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

@media (max-width: 740px) {
  .nav {
    padding: 12px 16px;
  }

  .brand-link {
    min-width: 84px;
  }

  .brand-mark {
    height: auto;
    width: 84px;
  }

  .site-header.is-open .nav-panel,
  .site-header.is-open .nav-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-panel a,
  .nav-actions a,
  .nav-actions button,
  .language-toggle {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: calc(104px + env(safe-area-inset-top)) 16px 54px;
  }

  .split-section,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.05rem, 12vw, 3.4rem);
  }

  .feature-track,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .live-section,
  .steps-section {
    padding-bottom: 56px;
    padding-top: 56px;
  }

  .live-section .section-heading,
  .steps-section .section-heading {
    margin-bottom: 24px;
  }

  .coins-section {
    padding-bottom: 34px;
    padding-top: 34px;
  }

  .category-grid span {
    aspect-ratio: auto;
    min-height: 80px;
  }

  .split-section article,
  .steps-grid article {
    min-height: auto;
  }

  .section,
  .split-section,
  .coins-section,
  .trust-section,
  .final-cta,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .button {
    width: 100%;
  }

  .modal .button,
  .modal-close {
    width: auto;
  }
}

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