:root {
  --bg: #070A12;
  --panel: rgba(255, 255, 255, .06);
  --panel2: rgba(255, 255, 255, .08);
  --text: #EAF0FF;
  --muted: rgba(234, 240, 255, .72);
  --line: rgba(255, 255, 255, .12);
  --shadow: 0 18px 60px rgba(0, 0, 0, .35);
  --r: 18px;
  --r2: 26px;
  --max: 1100px;
  --a: #7C5CFF;
  --b: #27D7FF;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(1200px 700px at 10% 5%, rgba(124, 92, 255, .28), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(39, 215, 255, .20), transparent 55%),
    linear-gradient(180deg, var(--bg), #0B1030);
  color: var(--text);
}

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

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

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto
}

.small {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7
}

.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: #0F1740;
  border: 1px solid var(--line);
  border-radius: 12px;
  z-index: 9999;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 10, 18, .62);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

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

.brand__logo {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(124, 92, 255, 1), rgba(39, 215, 255, 1));
  color: #070A12;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(124, 92, 255, .20);
}

.brand__name {
  font-weight: 900;
  letter-spacing: .2px
}

.brand__name span {
  color: rgba(39, 215, 255, .95)
}

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

.nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
}

.nav a:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--text)
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--r2);
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .18);
}

.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 800;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
  transition: transform .08s ease, background .2s ease, filter .2s ease;
}

.btn:hover {
  background: rgba(255, 255, 255, .10);
  transform: translateY(-1px)
}

.btn--primary {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(124, 92, 255, 1), rgba(39, 215, 255, 1));
  color: #070A12;
}

.btn--ghost {
  background: rgba(255, 255, 255, .02)
}

.btn--small {
  padding: 10px 12px;
  font-size: 14px
}

.hero {
  padding: 22px 0 0
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items: stretch;
}

.hero__left {
  padding: 18px
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: var(--muted);
  font-size: 13px;
}

h1 {
  margin: 12px 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.6px;
}

.lede {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px
}

.cta--center {
  justify-content: center
}

.ticks {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 14px
}

.ticks li {
  display: flex;
  gap: 8px;
  align-items: center
}

.ticks li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(39, 215, 255, .16);
  border: 1px solid rgba(39, 215, 255, .20);
  color: #C9FAFF;
  font-weight: 900;
  font-size: 12px;
}

.notice {
  margin-top: 14px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(124, 92, 255, .22);
  background: rgba(124, 92, 255, .10);
  color: rgba(234, 240, 255, .86);
  font-size: 13px;
  line-height: 1.6;
}

.heroMedia {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.heroMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.heroMedia__fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 20% 10%, rgba(39, 215, 255, .18), transparent 55%),
    linear-gradient(180deg, rgba(7, 10, 18, .20), rgba(7, 10, 18, .65));
}

.heroMedia__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .25);
  color: rgba(234, 240, 255, .88);
  font-size: 13px;
  backdrop-filter: blur(8px);
}

.section {
  padding: 18px;
  margin-top: 14px
}

.section__head {
  margin-bottom: 10px
}

h2 {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: -.25px
}

h3 {
  margin: 0 0 6px;
  letter-spacing: -.1px
}

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

.mini {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .04);
  padding: 14px;
}

.mini:hover {
  background: rgba(255, 255, 255, .06)
}

.ctaMid .ctaMid__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ctaBottom {
  text-align: center
}

.prose p {
  margin: 10px 0 0
}

.faq {
  margin-top: 10px;
  display: grid;
  gap: 10px
}

.faq__item {
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  padding: 12px 14px;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 900
}

.faq__item p {
  margin: 10px 0 0
}

.legal {
  margin-top: 8px;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  padding: 12px 14px;
}

.footer {
  margin: 14px 0 26px;
  text-align: center;
  padding: 18px;
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
}

/* Responsive */
@media (max-width: 920px) {
  .hero__grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 760px) {
  .nav {
    display: none
  }

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

  .ctaMid .ctaMid__row {
    flex-direction: column;
    align-items: flex-start
  }
}

.hero {
  padding-top: 24px;
}

.hero__center {
  text-align: center;
  padding: 24px;
}

.hero__center .lede {
  margin-left: auto;
  margin-right: auto;
}

.heroImage {
  position: relative;
  margin-top: 22px;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--line);
}

.heroImage img {
  width: 100%;
  height: auto;
  display: block;
}

.heroImage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(7, 10, 18, .15),
      rgba(7, 10, 18, .65));
}

.heroImage__badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(8px);
  color: rgba(234, 240, 255, .9);
}

@media (max-width: 600px) {
  .hero__center {
    padding: 18px;
  }
}