:root {
  --bg: #101216;
  --panel: #171a20;
  --card: #1c2028;
  --ink: #f4f6f8;
  --mute: #9aa3b2;
  --line: rgba(59, 155, 255, 0.16);
  --cyan: #3b9bff;
  --cyan-d: #1d6fd4;
  --gold: #ffd24a;
  --mint: #3dd68c;
  --font: "Outfit", "Segoe UI", sans-serif;
  --display: "Sora", "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

img {
  max-width: 100%;
}

.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(70vw 46vw at 100% -10%, rgba(59, 155, 255, 0.16), transparent 55%),
    radial-gradient(55vw 40vw at 0% 80%, rgba(59, 155, 255, 0.08), transparent 50%);
}

.header,
main,
.footer,
.nav-scrim {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(16, 18, 22, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  display: block;
  height: 50px;
  width: auto;
}

.footer .brand img {
  height: 64px;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #c5ccd6;
}

.nav a {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.nav a:hover,
.nav .is-on {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.header__cta {
  flex-shrink: 0;
}

.nav .nav__cta {
  display: none;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--ink);
}

.kicker {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero {
  padding: 56px 0 28px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.hero__copy {
  max-width: 720px;
}

.hero h1,
.section-head h2,
.split h2,
.app h2,
.faq h2 {
  font-family: var(--display);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  max-width: 16ch;
  margin-bottom: 18px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: #1a1e26;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pill--live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(61, 214, 140, 0.16);
}

.pill--star::before {
  content: "★";
  color: var(--gold);
  font-size: 12px;
}

.hero__lead {
  max-width: 52ch;
  color: var(--mute);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero__lead strong {
  color: var(--cyan);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-lg {
  height: 52px;
  padding: 0 22px;
  font-size: 15px;
}

.btn-fill {
  background: var(--cyan);
  color: #081018;
  box-shadow: 0 10px 28px rgba(59, 155, 255, 0.22);
}

.btn-fill:hover {
  background: #5aadff;
}

.btn-line {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #16191f;
  color: #fff;
}

.verify {
  color: #7d8696;
  font-size: 13px;
  line-height: 1.5;
}

.verify b {
  color: #d7dde7;
  font-weight: 700;
}

.panel,
.tile {
  background: var(--panel);
  border: 1px solid rgba(59, 155, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(59, 155, 255, 0.04), 0 18px 50px rgba(0, 0, 0, 0.28);
}

.tile h3 {
  color: var(--gold);
}

.panel p,
.tile p,
.section-head p,
.app p,
.faq p,
.steps p {
  color: var(--mute);
  line-height: 1.55;
}

.tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag--gold {
  background: rgba(255, 210, 74, 0.16);
  color: var(--gold);
}

.tag--cyan {
  background: rgba(59, 155, 255, 0.16);
  color: #8cc6ff;
}

.tag--mint {
  background: rgba(61, 214, 140, 0.14);
  color: var(--mint);
}

.checks {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.checks li {
  position: relative;
  padding-left: 26px;
  color: #d5dbe4;
  font-size: 14px;
}

.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(61, 214, 140, 0.16);
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.trust {
  padding: 10px 0 48px;
}

.trust__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: #16191f;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust__row > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust__ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(59, 155, 255, 0.1);
  flex-shrink: 0;
}

.trust__ico svg {
  width: 20px;
  height: 20px;
}

.trust strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.trust p {
  color: var(--mute);
  font-size: 12px;
}

.split,
.bonuses,
.app,
.guides,
.about,
.faq {
  padding: 28px 0 56px;
}

.split__grid,
.app__grid,
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.panel {
  padding: 28px;
}

.panel .btn,
.tile .btn {
  margin-top: 20px;
}

.section-head {
  margin-bottom: 22px;
  max-width: 62ch;
}

.section-head h2,
.split h2,
.app h2,
.faq h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 10px;
}

.bonus-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tile,
.steps article {
  padding: 24px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tile h3 {
  font-size: 22px;
  margin: 12px 0 8px;
}

.steps article {
  min-height: 210px;
}

.steps span {
  font-family: var(--display);
  color: var(--cyan);
  font-size: 13px;
}

.steps h3 {
  margin: 18px 0 8px;
  font-size: 20px;
}

.app {
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 28px;
  margin-top: 22px;
}

.facts dt {
  color: var(--mute);
  font-size: 12px;
  margin-bottom: 4px;
}

.facts dd {
  font-family: var(--display);
  font-size: 20px;
}

.app__stage {
  display: grid;
  place-items: center;
  min-height: 520px;
}

.device {
  width: 250px;
  padding: 10px;
  border-radius: 36px;
  background: #1f1f1f;
  border: 1px solid #3d3d3d;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  position: relative;
  animation: phoneFloat 5.6s ease-in-out infinite;
}

.device__island {
  position: absolute;
  left: 50%;
  top: 16px;
  width: 90px;
  height: 22px;
  border-radius: 20px;
  background: #000;
  transform: translateX(-50%);
  z-index: 2;
}

.device__screen {
  height: 500px;
  border-radius: 28px;
  overflow: hidden;
  background: #222;
}

.device__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq__list details {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 4px 18px;
  margin-bottom: 10px;
}

.faq__list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
}

.faq__list summary::-webkit-details-marker {
  display: none;
}

.faq__list details p {
  padding-bottom: 16px;
}

.footer {
  padding: 40px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer strong {
  display: block;
  margin-bottom: 10px;
}

.footer a,
.footer p {
  display: block;
  margin-top: 6px;
  color: var(--mute);
  line-height: 1.55;
}

.footer .legal {
  margin-top: 14px;
  color: #6d7582;
}

.nav-scrim {
  display: none;
}

@media (max-width: 980px) {
  .trust__row,
  .split__grid,
  .app__grid,
  .faq__grid,
  .bonus-grid,
  .steps,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .header__cta {
    display: none;
  }

  .trust__row > div {
    padding: 6px 0;
  }

  .app__stage {
    min-height: 0;
    padding-top: 12px;
  }
}

@media (max-width: 720px) {
  .burger {
    display: block;
  }

  .brand img {
    height: 42px;
  }

  .nav-scrim {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 30;
  }

  .nav-scrim.is-on {
    opacity: 1;
    pointer-events: auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    background: #1c2028;
    border: 1px solid rgba(59, 155, 255, 0.22);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    z-index: 41;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    padding: 13px 14px;
  }

  .nav .nav__cta {
    display: inline-flex;
    margin-top: 6px;
  }

  .facts {
    gap: 16px;
  }

  .device {
    width: 220px;
  }

  .device__screen {
    height: 440px;
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .device,
  html {
    animation: none;
    scroll-behavior: auto;
  }
}
