:root {
  --bg: #06060b;
  --bg-soft: #0c0d14;
  --bg-card: rgba(17, 18, 31, 0.72);
  --bg-card-strong: rgba(15, 17, 29, 0.92);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f7f8fc;
  --text-soft: #b8bfd3;
  --text-dim: #8a91a8;
  --primary: #a76cff;
  --primary-2: #7c4dff;
  --primary-3: #d8c5ff;
  --green: #3ddc97;
  --blue: #6bc5ff;
  --orange: #ffb65c;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(167, 108, 255, 0.18), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(90, 120, 255, 0.14), transparent 30%),
    radial-gradient(circle at 50% 75%, rgba(167, 108, 255, 0.10), transparent 34%),
    linear-gradient(180deg, #06060b 0%, #090913 35%, #06060b 100%);
  z-index: -2;
}

.site-noise {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(calc(100% - 44px), 1480px);
  margin: 0 auto;
}

.section {
  padding: 92px 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.center {
  text-align: center;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(7, 8, 14, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(167, 108, 255, 0.25), rgba(124, 77, 255, 0.18)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(167, 108, 255, 0.35);
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.22);
}

.brand-mark-inner {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.brand-text {
  font-size: 1.05rem;
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--text-soft);
  font-size: 0.96rem;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 20px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 8, 14, 0.96);
}

.mobile-menu a {
  color: var(--text-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-lg {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 14px 34px rgba(124, 77, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(124, 77, 255, 0.42);
}

.btn-secondary,
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.10);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover,
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero {
  padding-top: 40px;
  padding-bottom: 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(460px, 560px) minmax(860px, 1fr);
  gap: 18px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--primary-3);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(61, 220, 151, 0.12);
}

.hero-copy {
  max-width: 560px;
  min-width: 0;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(3.2rem, 4.8vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
  max-width: 8.8ch;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #d8c5ff 35%, #a76cff 75%, #7c4dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  margin: 0;
  max-width: 56ch;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}

.dashboard-shell {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(18, 20, 33, 0.95), rgba(10, 11, 19, 0.98));
  box-shadow: var(--shadow);
}

.dashboard-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.20);
}

.dashboard-title {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 128px 1fr;
  min-height: 470px;
}

.dashboard-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 12px;
  background: rgba(255, 255, 255, 0.02);
}

.side-logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}

.dashboard-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard-sidebar li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 12px;
  color: var(--text-soft);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.dashboard-sidebar li.active,
.dashboard-sidebar li:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.dashboard-main {
  padding: 16px;
}

.dash-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.dash-grid-2 {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.dash-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 15px;
  backdrop-filter: blur(12px);
}

.stat-card {
  min-height: 108px;
}

.stat-label {
  display: block;
  color: var(--text-dim);
  font-size: 0.82rem;
  margin-bottom: 12px;
  line-height: 1.25;
}

.stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
  white-space: nowrap;
}

.stat-card small {
  color: var(--text-soft);
  display: block;
  line-height: 1.4;
  font-size: 0.88rem;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.card-head h3 {
  margin: 0;
  font-size: 1rem;
}

.status-good,
.muted {
  font-size: 0.82rem;
}

.status-good {
  color: var(--green);
  font-weight: 700;
}

.muted {
  color: var(--text-dim);
}

.chart-card {
  min-height: 220px;
}

.chart-bars {
  height: 132px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.chart-bars span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(167, 108, 255, 0.95), rgba(124, 77, 255, 0.24));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.feed-card {
  min-height: 220px;
}

.event-feed {
  list-style: none;
  margin: 0;
  padding: 0;
}

.event-feed li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-soft);
  line-height: 1.5;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}

.event-feed li:last-child {
  border-bottom: 0;
}

.event-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  margin-top: 8px;
  box-shadow: 0 0 0 6px rgba(167, 108, 255, 0.12);
  flex: 0 0 auto;
}

.domain-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.domain-line {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  flex: 1 1 420px;
}

.domain-label {
  color: var(--text-dim);
  font-size: 0.82rem;
}

.domain-line code {
  color: #fff;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
  border-radius: 12px;
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.domain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.domain-tags span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.tag.green {
  color: var(--green);
}

.tag.purple {
  color: var(--primary-3);
}

.tag.blue {
  color: var(--blue);
}

.tag.orange {
  color: var(--orange);
}

.floating-badge {
  display: none;
}

.trust-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.trust-row {
  min-height: 72px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.section-heading p {
  margin: 0 auto;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.02rem;
  max-width: 60ch;
}

.feature-grid,
.games-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.games-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.game-card,
.stat-panel,
.mini-panel,
.cta-box,
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card,
.game-card {
  padding: 26px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(167, 108, 255, 0.22), rgba(124, 77, 255, 0.10));
  border: 1px solid rgba(167, 108, 255, 0.22);
  color: var(--primary-3);
  font-size: 1.2rem;
}

.feature-card h3,
.game-card h3 {
  margin: 0 0 12px;
  font-size: 1.14rem;
}

.feature-card p,
.game-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.game-card i {
  font-size: 1.55rem;
  color: var(--primary-3);
  margin-bottom: 16px;
}

.dashboard-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
  gap: 32px;
  align-items: center;
}

.dashboard-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.dashboard-copy p {
  margin: 0 0 24px;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 60ch;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-soft);
}

.check-list i {
  color: var(--green);
  margin-top: 3px;
}

.mini-panel {
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(167, 108, 255, 0.14), transparent 35%),
    var(--bg-card-strong);
}

.mini-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 58px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 12px;
}

.mini-row span:first-child {
  color: #fff;
  font-weight: 600;
}

.mini-graph {
  margin-top: 22px;
  height: 160px;
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-graph span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #ffffff, rgba(167, 108, 255, 0.32));
}

.mini-graph span:nth-child(1)  { height: 24%; }
.mini-graph span:nth-child(2)  { height: 45%; }
.mini-graph span:nth-child(3)  { height: 38%; }
.mini-graph span:nth-child(4)  { height: 52%; }
.mini-graph span:nth-child(5)  { height: 64%; }
.mini-graph span:nth-child(6)  { height: 46%; }
.mini-graph span:nth-child(7)  { height: 74%; }
.mini-graph span:nth-child(8)  { height: 58%; }
.mini-graph span:nth-child(9)  { height: 82%; }
.mini-graph span:nth-child(10) { height: 66%; }
.mini-graph span:nth-child(11) { height: 90%; }
.mini-graph span:nth-child(12) { height: 72%; }

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat-panel {
  padding: 28px 24px;
  text-align: center;
}

.stat-panel strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.stat-panel span {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-panel small {
  color: var(--text-dim);
}

.cta-box {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(167, 108, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(18, 20, 33, 0.95), rgba(12, 13, 22, 0.95));
}

.cta-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.cta-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.cta-form {
  display: grid;
  gap: 14px;
}

.input-group {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  padding: 0 16px;
}

.input-group i {
  color: var(--text-dim);
}

.input-group input {
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  outline: none;
}

.input-group input::placeholder {
  color: #8a91a8;
}

.form-note {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: 0 22px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  min-height: 74px;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 22px;
  color: var(--text-soft);
  line-height: 1.75;
  padding-right: 12px;
}

.footer {
  padding: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 28px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-copy {
  margin: 0;
  max-width: 36ch;
  color: var(--text-soft);
  line-height: 1.8;
}

.footer h4 {
  margin: 6px 0 14px;
  font-size: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer ul a {
  color: var(--text-soft);
}

.footer ul a:hover {
  color: #fff;
}

.footer-bottom {
  min-height: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.1s;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

@media (max-width: 1320px) {
  .hero-grid,
  .dashboard-section-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.8rem, 7vw, 4.8rem);
  }

  .hero-visual {
    justify-content: center;
  }

  .dashboard-shell {
    max-width: 1040px;
    margin: 0 auto;
  }

  .feature-grid,
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .mobile-menu.open {
    display: flex;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dashboard-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .dash-row,
  .dash-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 72px 0;
  }

  .feature-grid,
  .games-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(calc(100% - 24px), 1480px);
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 36px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 11vw, 3.7rem);
    max-width: 100%;
    text-wrap: unset;
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .section-heading h2,
  .dashboard-copy h2,
  .cta-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .dashboard-shell {
    max-width: 100%;
  }

  .trust-row {
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}