:root {
  --bg: #070a14;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.74);
  --muted2: rgba(255, 255, 255, 0.62);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.44);
  --accent: #7c5cff;
  --accent2: #22d3ee;
  --good: #22c55e;
  --warn: #fbbf24;
  --radius: 22px;
  --container: 1120px;
  --font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --ring: 0 0 0 4px rgba(124, 92, 255, 0.24);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1200px 680px at 15% 10%, rgba(124, 92, 255, 0.3), transparent 60%),
    radial-gradient(980px 620px at 85% 10%, rgba(34, 211, 238, 0.18), transparent 55%),
    radial-gradient(900px 650px at 50% 95%, rgba(34, 197, 94, 0.12), transparent 55%),
    radial-gradient(1000px 420px at 50% 0%, rgba(255, 255, 255, 0.06), transparent 60%),
    var(--bg);
}

a {
  color: inherit;
}

.btn:focus-visible,
.nav__link:focus-visible,
.link:focus-visible,
.faq__q:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(7, 10, 20, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.95), rgba(34, 211, 238, 0.75));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.brand__title {
  font-weight: 700;
  line-height: 1.1;
}

.brand__subtitle {
  font-size: 13px;
  color: var(--muted2);
  margin-top: 2px;
}

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

.nav__link {
  font-size: 14px;
  text-decoration: none;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}

.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav__link--cta {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(124, 92, 255, 0.16);
  border: 1px solid rgba(124, 92, 255, 0.24);
}

.nav__link--cta:hover {
  background: rgba(124, 92, 255, 0.22);
}

.hero {
  padding: 62px 0 28px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
}

.hero__title {
  font-size: clamp(34px, 4.4vw, 54px);
  margin: 10px 0 12px;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 58ch;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.1s ease, background 0.12s ease, border-color 0.12s ease,
    box-shadow 0.12s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn:active {
  transform: translateY(0px);
}

.btn--primary {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.98), rgba(34, 211, 238, 0.78));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 40px rgba(124, 92, 255, 0.22);
}

.btn--secondary {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.22);
}

.btn--ghost {
  background: transparent;
}

.btn[aria-disabled="true"] {
  opacity: 0.65;
  cursor: not-allowed;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 14px;
  color: var(--muted2);
  font-size: 13px;
}

.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.trust__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.trust__dot--good {
  background: rgba(34, 197, 94, 0.9);
}

.trust__dot--info {
  background: rgba(34, 211, 238, 0.95);
}

.trust__dot--warn {
  background: rgba(251, 191, 36, 0.95);
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(124, 92, 255, 0.35), transparent 60%);
  transform: rotate(10deg);
  pointer-events: none;
}

.glass__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.glass__title {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: rgba(255, 255, 255, 0.9);
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

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

.stat__k {
  font-size: 12px;
  color: var(--muted2);
  font-weight: 700;
}

.stat__v {
  margin-top: 4px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.mini {
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(124, 92, 255, 0.08);
  border: 1px solid rgba(124, 92, 255, 0.14);
}

.mini__title {
  font-weight: 900;
  margin-bottom: 8px;
}

.mini__list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.card__title {
  font-weight: 800;
  margin-bottom: 10px;
}

.card__list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.card__meta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted2);
  font-size: 13px;
}

.link {
  color: var(--muted);
  text-decoration: none;
}

.link:hover {
  color: var(--text);
  text-decoration: underline;
}

.dot {
  opacity: 0.7;
}

.section {
  padding: 34px 0;
}

.section--muted {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section__title {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.section__sub {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.6;
}

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

.feature {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

.feature:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: linear-gradient(
      135deg,
      rgba(124, 92, 255, 0.22),
      rgba(34, 211, 238, 0.12)
    ),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(124, 92, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
}

.feature__title {
  font-weight: 900;
  margin-top: 12px;
  letter-spacing: -0.01em;
}

.feature__text {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.live {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.live__card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.live__card--accent {
  background: linear-gradient(
      135deg,
      rgba(124, 92, 255, 0.14),
      rgba(34, 211, 238, 0.08)
    ),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(124, 92, 255, 0.22);
}

.live__title {
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.live__list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.live__list li + li {
  margin-top: 8px;
}

.live__fine {
  margin-top: 12px;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.5;
}

.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.faq__q {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  list-style: none;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q {
  position: relative;
  padding-right: 46px;
}

.faq__q::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%) rotate(0deg);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.faq__q::before {
  content: "›";
  position: absolute;
  right: 21px;
  top: 50%;
  transform: translateY(-54%) rotate(90deg);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  transition: transform 0.12s ease;
}

details[open] .faq__q::before {
  transform: translateY(-54%) rotate(-90deg);
}

.faq__a {
  padding: 0 16px 14px;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  padding: 26px 0 34px;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}

.footer__title {
  font-weight: 800;
}

.footer__fine {
  color: var(--muted2);
  font-size: 13px;
  margin-top: 6px;
  max-width: 68ch;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .section__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .live {
    grid-template-columns: 1fr;
  }
}

