:root {
  --bg: #06111f;
  --bg-deep: #030812;
  --panel: rgba(14, 29, 48, 0.78);
  --panel-solid: #0d1d30;
  --panel-soft: #10243b;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(84, 223, 201, 0.45);
  --text: #f4f7fb;
  --muted: #aeb9c8;
  --soft: #7f8ea3;
  --accent: #53dec9;
  --accent-strong: #36c6b7;
  --accent-dark: #082b32;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  background-color: var(--bg);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg);
  background:
    radial-gradient(circle at 12% 10%, rgba(83, 222, 201, 0.14), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(68, 112, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, var(--bg), var(--bg-deep) 58%, #02050b);
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 72%);
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

.site-header,
.site-footer,
.section,
.hero {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(24px + env(safe-area-inset-top)) 0 24px;
  position: relative;
  z-index: 2;
}

.brand,
.nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  box-shadow: 0 10px 32px rgba(83, 222, 201, 0.26);
}

.nav {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 64px;
  align-items: center;
  padding: 70px 0 52px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.hero-text {
  max-width: 640px;
  font-size: clamp(1.12rem, 2vw, 1.32rem);
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 18px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: #041018;
  background: linear-gradient(135deg, var(--accent), #70ead9);
  box-shadow: 0 18px 44px rgba(83, 222, 201, 0.22);
}

.button.secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.trust-note {
  font-size: 0.95rem;
  color: var(--soft);
}

.phone-shell {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 48px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.phone-screen {
  position: relative;
  min-height: 690px;
  padding: 34px 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at 70% 0%, rgba(83, 222, 201, 0.12), transparent 16rem),
    linear-gradient(180deg, #081625, #050b14);
}

.phone-screen::before {
  position: absolute;
  inset: -40% -10% auto auto;
  width: 260px;
  height: 260px;
  content: "";
  background: rgba(83, 222, 201, 0.08);
  border-radius: 999px;
  filter: blur(8px);
}

.status-dot {
  width: 28px;
  height: 28px;
  margin-left: auto;
  margin-bottom: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.screen-kicker {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-screen h2 {
  margin-bottom: 24px;
  font-size: 2.15rem;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--line);
  background: rgba(13, 29, 48, 0.75);
}

.feature-card.compact {
  padding: 16px;
  border-radius: 22px;
  margin-bottom: 12px;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.icon,
.card-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  border-radius: 16px;
  background: rgba(83, 222, 201, 0.12);
  border: 1px solid rgba(83, 222, 201, 0.24);
}

.screen-button {
  margin-top: 28px;
  padding: 16px;
  color: #041018;
  text-align: center;
  font-weight: 900;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), #70ead9);
}

.section {
  padding: 76px 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
}

.proof-strip div {
  padding: 22px;
  border-radius: 18px;
  background: rgba(13, 29, 48, 0.58);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.split h2,
.section-heading h2,
.pro-panel h2,
.not-gambling h2,
.final-cta h2,
.legal-page h1 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article,
.card,
.pro-panel,
.not-gambling,
.faq details,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(13, 29, 48, 0.62);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  padding: 22px;
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--accent);
  font-weight: 900;
  border-radius: 14px;
  background: rgba(83, 222, 201, 0.1);
  grid-row: 1 / span 2;
}

.steps h3,
.card h3 {
  margin-bottom: 6px;
}

.steps h3,
.steps p {
  grid-column: 2;
}

.card p {
  margin-bottom: 0;
}

.steps p {
  margin-bottom: 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

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

.card {
  padding: 26px;
}

.card-icon {
  margin-bottom: 22px;
}

.pro-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(circle at 85% 15%, rgba(83, 222, 201, 0.16), transparent 20rem),
    rgba(13, 29, 48, 0.7);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 16px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.check-list li::before {
  position: absolute;
  left: 18px;
  top: 22px;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(83, 222, 201, 0.12);
}

.not-gambling {
  padding: clamp(28px, 5vw, 54px);
  border-color: rgba(83, 222, 201, 0.28);
  background: linear-gradient(135deg, rgba(83, 222, 201, 0.12), rgba(13, 29, 48, 0.76));
}

.not-gambling p {
  max-width: 850px;
  margin-bottom: 0;
}

.faq {
  max-width: 860px;
}

.faq details {
  margin-bottom: 12px;
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
}

.faq details p {
  margin: 14px 0 0;
}

.final-cta {
  margin-bottom: 44px;
  padding: clamp(34px, 6vw, 70px);
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 0%, rgba(83, 222, 201, 0.18), transparent 28rem),
    rgba(13, 29, 48, 0.66);
}

.final-cta p {
  max-width: 600px;
  margin-inline: auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 0 44px;
  color: var(--soft);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.footer-entity {
  display: grid;
  gap: 6px;
  max-width: 620px;
}

.footer-entity p:first-child {
  color: var(--text);
  font-weight: 700;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--text);
}

.legal-page {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 80px;
}

.legal-card {
  padding: clamp(24px, 5vw, 48px);
}

.legal-card h2 {
  margin-top: 34px;
  letter-spacing: -0.02em;
}

.legal-card li {
  margin-bottom: 10px;
  color: var(--muted);
}

.legal-card a {
  color: var(--accent);
}

.updated {
  color: var(--soft);
}

@media (max-width: 900px) {
  .hero,
  .split,
  .pro-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .phone-shell {
    max-width: 430px;
    margin-inline: auto;
  }

  .proof-strip,
  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header,
  .site-footer,
  .section,
  .hero {
    width: min(100% - 32px, var(--max-width));
  }

  .site-header {
    align-items: center;
    padding: calc(18px + env(safe-area-inset-top)) 0 18px;
  }

  .nav {
    display: none;
  }

  .brand {
    gap: 12px;
    font-size: 1.02rem;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .hero {
    gap: 38px;
    padding: 34px 0 36px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3.1rem, 16vw, 4.65rem);
  }

  .hero-text {
    font-size: 1.06rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .phone-shell {
    width: min(100%, 380px);
    padding: 9px;
    border-radius: 40px;
  }

  .phone-screen {
    min-height: 575px;
    padding: 28px 20px;
    border-radius: 32px;
  }

  .status-dot {
    width: 22px;
    height: 22px;
    margin-bottom: 34px;
  }

  .phone-screen h2 {
    font-size: 1.78rem;
  }

  .feature-card.compact {
    padding: 14px;
    border-radius: 18px;
  }

  .icon,
  .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .section {
    padding: 54px 0;
  }

  .proof-strip {
    padding: 12px;
  }

  .proof-strip div,
  .card,
  .steps article {
    padding: 20px;
  }

  .steps article {
    grid-template-columns: 46px 1fr;
    column-gap: 14px;
  }

  .pro-panel,
  .not-gambling,
  .final-cta,
  .legal-card {
    border-radius: 24px;
  }

  .legal-page {
    width: min(100% - 32px, 900px);
    padding: 34px 0 60px;
  }

  .site-footer {
    flex-direction: column;
    gap: 18px;
    padding-bottom: 34px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px 16px;
  }

  .footer-entity {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(2.82rem, 15vw, 3.8rem);
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.11em;
  }

  .phone-screen {
    min-height: 545px;
  }

  .screen-button {
    margin-top: 20px;
  }
}
