:root {
  --ink: #12203a;
  --muted: #5d6b84;
  --paper: #f7f9ff;
  --paper-deep: #eef3fb;
  --wine: #0b2a6b;
  --wine-dark: #06122c;
  --rose: #1d6cff;
  --rose-bright: #4d9fff;
  --gold: #e8a020;
  --gold-light: #ffd56a;
  --line: #0b2a6b24;
  --font-sans: "Segoe UI", Arial, Helvetica, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--wine-dark);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  text-rendering: optimizelegibility;
  margin: 0;
  line-height: 1.65;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }

::selection {
  background: var(--rose);
  color: #fff;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 100;
  background: var(--gold);
  color: var(--wine-dark);
  padding: 8px 12px;
  font-weight: 800;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  z-index: 50;
  color: #fff;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: #06122cf0;
  border-bottom: 1px solid #ffffff1a;
  position: sticky;
  top: 0;
}

.header-inner {
  align-items: center;
  gap: 28px;
  width: min(1180px, 100% - 40px);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
}

.brand { flex: none; }
.brand img {
  object-fit: contain;
  width: 158px;
  height: 46px;
}

.main-nav {
  align-items: center;
  gap: 24px;
  margin-left: auto;
  display: flex;
}

.main-nav a {
  color: #d9e4f5;
  letter-spacing: 0.01em;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: #fff;
}

.header-actions {
  display: flex;
  gap: 8px;
  flex: none;
}

.header-cta,
.header-cta-secondary {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta {
  color: #1a1408;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.header-cta-secondary {
  color: #fff;
  background: #ffffff14;
  border: 1px solid #ffffff38;
}

.nav-toggle {
  display: none;
  color: #fff;
  background: #ffffff14;
  border: 1px solid #ffffff38;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  color: #fff;
  background:
    radial-gradient(circle at 84% 30%, #1d6cff3d, #0000 28%),
    radial-gradient(circle at 55% 110%, #e8a02029, #0000 35%),
    linear-gradient(135deg, #06122c 0%, #0b2a6b 55%, #071530 100%);
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 72px;
  min-height: 720px;
  padding: 90px max(24px, 50vw - 590px) 82px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(#ffffff0b 1px, #0000 1px),
    linear-gradient(90deg, #ffffff0b 1px, #0000 1px);
  background-size: 52px 52px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#000, #0000 88%);
  mask-image: linear-gradient(#000, #0000 88%);
}

.hero-copy,
.hero-product {
  z-index: 1;
  position: relative;
}

.eyebrow {
  color: var(--rose);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 850;
}

.hero .eyebrow,
.download-band .eyebrow,
.banking-panel .eyebrow {
  color: var(--gold-light);
}

.hero h1,
.page-intro h1 {
  font-family: var(--font-display);
  letter-spacing: -0.045em;
  margin: 0;
  font-size: clamp(46px, 5.7vw, 78px);
  font-weight: 500;
  line-height: 0.99;
}

.hero-lead {
  color: #dce6f5;
  max-width: 720px;
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 1.8;
}

.hero-lead strong { color: #fff; }

.button-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  display: flex;
}

.button {
  border: 1px solid #0000;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 12px 21px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  display: inline-flex;
}

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

.button-primary {
  color: #1a1408;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 28px #e8a02033;
}

.button-secondary {
  color: var(--wine);
  border-color: var(--line);
  background: #fff;
}

.hero .button-secondary,
.download-band .button-secondary {
  color: #fff;
  background: #ffffff14;
  border-color: #ffffff38;
}

.hero-note {
  color: #93a3c0;
  margin: 14px 0 0;
  font-size: 12px;
}

.hero-product {
  place-items: center;
  min-height: 510px;
  display: grid;
}

.glow-orbit {
  border: 1px solid #ffd56a47;
  border-radius: 50%;
  width: 470px;
  height: 470px;
  position: absolute;
  box-shadow:
    inset 0 0 90px #1d6cff14,
    0 0 90px #1d6cff17;
}

.glow-orbit:before,
.glow-orbit:after {
  content: "";
  border: 1px solid #ffffff1a;
  border-radius: 50%;
  position: absolute;
}
.glow-orbit:before { inset: 44px; }
.glow-orbit:after { inset: 92px; }

.hero-banner {
  z-index: 2;
  width: min(520px, 100%);
  position: relative;
  filter: drop-shadow(0 28px 50px #00000080);
}

.floating-stat {
  z-index: 3;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #06122cc7;
  border: 1px solid #ffffff29;
  border-radius: 16px;
  min-width: 140px;
  padding: 13px 16px;
  position: absolute;
  box-shadow: 0 18px 42px #0000004d;
}

.floating-stat strong,
.floating-stat span { display: block; }

.floating-stat strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.1;
}

.floating-stat span {
  color: #c5d2e6;
  font-size: 11px;
}

.stat-one { top: 62px; left: 10px; }
.stat-two { bottom: 72px; right: 0; }

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.proof-strip div {
  border-right: 1px solid var(--line);
  text-align: center;
  padding: 24px 28px;
}
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong,
.proof-strip span { display: block; }
.proof-strip strong {
  color: var(--wine);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}
.proof-strip span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
  padding: 104px 0;
}

.split-section {
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 84px;
  display: grid;
}

.section h2,
.download-band h2 {
  color: var(--wine);
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.08;
}

.section-lead,
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 16px;
}

.text-link {
  color: var(--wine);
  border-bottom: 1px solid #0b2a6b4d;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
}
.text-link span { color: var(--rose); }
.text-link.light {
  color: #fff;
  border-color: #ffffff4d;
}

.platform-stack { border-top: 1px solid var(--line); }

.platform-row {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 52px 1fr 32px;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  display: grid;
}

.platform-number {
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 22px;
}

.platform-row h3 {
  color: var(--wine);
  margin: 0 0 4px;
  font-size: 17px;
}
.platform-row p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
}
.platform-row > a {
  color: #fff;
  background: var(--wine);
  border-radius: 50%;
  place-items: center;
  width: 32px;
  height: 32px;
  text-decoration: none;
  display: grid;
}

.journey-section {
  background: var(--paper-deep);
  width: 100%;
  padding-left: max(24px, 50vw - 590px);
  padding-right: max(24px, 50vw - 590px);
}

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

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.journey-grid {
  border: 1px solid var(--line);
  background: #ffffff80;
  grid-template-columns: repeat(3, 1fr);
  margin: 42px 0 34px;
  display: grid;
}

.journey-grid article {
  border-right: 1px solid var(--line);
  min-height: 260px;
  padding: 36px;
}
.journey-grid article:last-child { border-right: 0; }
.journey-grid span {
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 27px;
}
.journey-grid h3 {
  color: var(--wine);
  font-family: var(--font-display);
  margin: 42px 0 8px;
  font-size: 27px;
}
.journey-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.banking-preview {
  color: #fff;
  background: var(--wine);
  grid-template-columns: 1fr 280px;
  width: 100%;
  padding-left: max(24px, 50vw - 590px);
  padding-right: max(24px, 50vw - 590px);
  display: grid;
}

.banking-panel {
  max-width: 750px;
  padding-right: 80px;
}
.banking-panel h2 { color: #fff; }
.banking-panel > p:not(.eyebrow) { color: #c9d6ea; }

.method-list {
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0;
  display: flex;
}
.method-list span {
  color: #eef3fb;
  background: #ffffff0e;
  border: 1px solid #ffffff29;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
}

.banking-aside {
  border-left: 1px solid #ffffff24;
  flex-direction: column;
  justify-content: center;
  padding-left: 42px;
  display: flex;
}

.currency-mark {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 84px;
  line-height: 1;
}

.banking-aside p {
  color: #c9d6ea;
  font-size: 13px;
}

.game-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.game-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  min-height: 300px;
  padding: 28px;
}
.game-card > span {
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 22px;
}
.game-card h3 {
  color: var(--wine);
  font-family: var(--font-display);
  margin: 70px 0 8px;
  font-size: 25px;
}
.game-card p {
  min-height: 66px;
  color: var(--muted);
  font-size: 13px;
}
.game-card a {
  color: var(--wine);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.identity-section {
  border-top: 1px solid var(--line);
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
  display: grid;
}

.identity-mark {
  color: var(--wine);
  font-family: var(--font-display);
  letter-spacing: -0.08em;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.9;
}
.identity-mark span { color: var(--gold); }
.identity-section p:not(.eyebrow) { color: var(--muted); }

.faq-preview { border-top: 1px solid var(--line); }
.faq-list { max-width: 900px; }
.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  color: var(--wine);
  font-family: var(--font-display);
  cursor: pointer;
  padding: 22px 44px 22px 0;
  font-size: 21px;
  list-style: none;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:after {
  content: "+";
  color: var(--rose);
  font-family: var(--font-sans);
  font-size: 22px;
  position: absolute;
  right: 8px;
}
.faq-list details[open] summary:after { content: "−"; }
.faq-list details p {
  max-width: 760px;
  color: var(--muted);
  margin: -4px 0 22px;
}

.download-band {
  color: #fff;
  background: linear-gradient(135deg, #0b2a6b, #06122c);
  border-radius: 28px;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  width: min(1180px, 100% - 40px);
  margin: 0 auto 80px;
  padding: 48px 52px;
  display: flex;
  box-shadow: 0 28px 70px #06122c2e;
}

.download-band.compact { margin-top: 72px; }
.download-band h2 {
  color: #fff;
  max-width: 700px;
  font-size: clamp(29px, 3vw, 42px);
}
.download-band p:not(.eyebrow) {
  color: #c9d6ea;
  margin-bottom: 0;
}
.download-band .button-row {
  flex: none;
  margin-top: 0;
}

.breadcrumbs {
  width: min(1040px, 100% - 40px);
  color: var(--muted);
  gap: 9px;
  margin: 0 auto;
  padding: 28px 0 0;
  font-size: 12px;
  display: flex;
}
.breadcrumbs a {
  color: var(--wine);
  text-decoration: none;
}

.page-intro {
  border-bottom: 1px solid var(--line);
  width: min(1040px, 100% - 40px);
  margin: 0 auto;
  padding: 74px 0 60px;
}
.page-intro h1 {
  max-width: 920px;
  color: var(--wine);
  font-size: clamp(43px, 6vw, 72px);
}
.page-lead {
  max-width: 780px;
  color: var(--muted);
  margin-top: 24px;
  font-size: 18px;
}
.page-intro .button-row {
  margin-top: 28px;
}
.page-lead p { margin: 0; }

.article-shell {
  width: min(1040px, 100% - 40px);
  margin: 0 auto;
  padding: 64px 0 96px;
}

.article-grid {
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 78px;
  display: grid;
}

.article-main h2 {
  color: var(--wine);
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  margin: 58px 0 16px;
  font-size: clamp(30px, 3.5vw, 43px);
  font-weight: 500;
  line-height: 1.1;
}
.article-main h2:first-child { margin-top: 0; }
.article-main h3 {
  color: var(--wine);
  margin: 30px 0 9px;
  font-size: 18px;
}
.article-main p,
.article-main li { color: #536178; }
.article-main a {
  color: var(--rose);
  font-weight: 700;
}
.article-main a.button {
  font-weight: 800;
}
.article-main a.button-primary {
  color: #1a1408;
}
.article-main a.button-secondary {
  color: var(--wine);
}
.article-main ul,
.article-main ol { padding-left: 21px; }
.article-main li { margin-bottom: 9px; }

.article-aside {
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
  position: sticky;
  top: 108px;
}
.article-aside h2 {
  color: var(--wine);
  font-family: var(--font-display);
  margin: 0 0 12px;
  font-size: 23px;
}
.article-aside p,
.article-aside li {
  color: var(--muted);
  font-size: 13px;
}
.article-aside ul { padding-left: 18px; }
.article-aside .button {
  width: 100%;
  margin-top: 10px;
}
.article-aside img {
  width: 100%;
  margin-bottom: 14px;
}

.content-note {
  border-left: 3px solid var(--gold);
  color: #4d5a70;
  background: #fff6df;
  margin: 28px 0;
  padding: 20px 22px;
}
.content-note strong { color: var(--wine); }

.data-table {
  border-collapse: collapse;
  width: 100%;
  margin: 24px 0;
  font-size: 14px;
}
.data-table th {
  color: #fff;
  background: var(--wine);
  text-align: left;
  padding: 13px 15px;
}
.data-table td {
  border: 1px solid var(--line);
  vertical-align: top;
  padding: 15px;
}
.data-table tr:nth-child(2n) td { background: #fff; }

.step-list {
  counter-reset: step;
  margin: 26px 0;
  list-style: none;
  padding: 0 !important;
}
.step-list li {
  border-top: 1px solid var(--line);
  counter-increment: step;
  min-height: 72px;
  padding: 18px 18px 18px 70px;
  position: relative;
}
.step-list li:last-child { border-bottom: 1px solid var(--line); }
.step-list li:before {
  content: counter(step, decimal-leading-zero);
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 23px;
  position: absolute;
  top: 16px;
  left: 10px;
}

.cards-three {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0;
  display: grid;
}

.info-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px;
}
.info-card h3 { margin-top: 0; }

.chip-row {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}
.chip-row span {
  border: 1px solid var(--line);
  color: var(--wine);
  background: #fff;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 700;
}

.site-footer {
  color: #c9d6ea;
  background: var(--wine-dark);
  padding: 64px max(24px, 50vw - 590px) 28px;
}

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

.footer-brand img {
  object-fit: contain;
  object-position: left center;
  width: 168px;
  height: 48px;
}

.footer-brand p {
  color: #8fa0bd;
  max-width: 360px;
  font-size: 13px;
}

.footer-grid h2 {
  color: #fff;
  font-family: var(--font-display);
  margin: 12px 0 16px;
  font-size: 18px;
  font-weight: 500;
}

.footer-grid > div:not(.footer-brand) a {
  color: #a8b8d0;
  margin: 8px 0;
  font-size: 13px;
  text-decoration: none;
  display: block;
}

.footer-grid a:hover { color: #fff; }

.age-note {
  color: var(--gold-light);
  font-size: 12px;
}

.footer-bottom {
  color: #7d8eaa;
  border-top: 1px solid #ffffff1a;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 20px;
  font-size: 11px;
  display: flex;
}

.mobile-nav {
  display: none;
  background: #06122c;
  border-bottom: 1px solid #ffffff1a;
  padding: 8px 20px 18px;
}
.mobile-nav a {
  color: #d9e4f5;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #ffffff14;
}
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] { color: #fff; }
body.nav-open .mobile-nav { display: block; }

@media (max-width: 1040px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .header-actions { margin-left: 0; }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }
  .hero-product { min-height: 420px; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-strip div:nth-child(2) { border-right: 0; }
  .proof-strip div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  .header-inner {
    width: min(100% - 28px, 1180px);
    min-height: 68px;
    gap: 10px;
  }
  .brand img { width: 128px; height: 38px; }
  .header-cta { padding: 9px 14px; }
  .header-cta-secondary { display: none; }
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    min-height: auto;
    padding: 60px 20px 64px;
  }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-lead { font-size: 15px; }
  .hero-product {
    min-height: 320px;
    margin: -10px 0;
  }
  .glow-orbit { width: 320px; height: 320px; }
  .stat-one { left: -6px; }
  .stat-two { right: -6px; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-strip div { padding: 18px 12px; }
  .section {
    width: min(100% - 32px, 1180px);
    padding: 72px 0;
  }
  .split-section,
  .identity-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .journey-section,
  .banking-preview {
    width: 100%;
    padding: 72px 20px;
  }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: auto;
  }
  .journey-grid article:last-child { border-bottom: 0; }
  .journey-grid h3 { margin-top: 18px; }
  .banking-preview { grid-template-columns: 1fr; }
  .banking-panel { padding-right: 0; }
  .banking-aside {
    border-top: 1px solid #ffffff24;
    border-left: 0;
    margin-top: 40px;
    padding: 34px 0 0;
  }
  .game-grid { grid-template-columns: 1fr; }
  .game-card { min-height: 230px; }
  .game-card h3 { margin-top: 32px; }
  .identity-mark { font-size: 72px; }
  .download-band {
    border-radius: 22px;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 32px);
    margin-bottom: 56px;
    padding: 36px 26px;
  }
  .download-band .button-row { width: 100%; }
  .download-band .button { flex: 180px; }
  .page-intro,
  .breadcrumbs,
  .article-shell { width: calc(100% - 32px); }
  .page-intro { padding: 54px 0 42px; }
  .article-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .article-aside { position: static; }
  .cards-three { grid-template-columns: 1fr; }
  .data-table { display: block; overflow-x: auto; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1/-1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, :before, :after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
