:root {
  --primary-blue: #0057d9;
  --deep-navy: #071a3d;
  --premium-gold: #d9a21b;
  --light-gold: #f6d36b;
  --sky-blue: #32a8ff;
  --soft-bg: #f7faff;
  --card-white: #ffffff;
  --muted: #61708a;
  --border: #dce6f5;
  --success: #24b47e;
  --shadow: 0 20px 70px rgba(7, 26, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--deep-navy);
  background: var(--soft-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 64px);
  background: rgba(247, 250, 255, 0.86);
  border-bottom: 1px solid rgba(220, 230, 245, 0.72);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(150px, 18vw, 220px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: #243555;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.nav-cta {
  min-height: 42px;
  padding: 10px 18px;
  color: #fff !important;
  background: var(--primary-blue);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 87, 217, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--deep-navy);
  border-radius: 2px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 112px) clamp(20px, 6vw, 88px) clamp(44px, 6vw, 80px);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(246, 211, 107, 0.26), transparent 28%),
    radial-gradient(circle at 86% 82%, rgba(50, 168, 255, 0.18), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f7faff 50%, #eef5ff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 82px;
  background: linear-gradient(to bottom, rgba(247, 250, 255, 0), var(--soft-bg));
  pointer-events: none;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-lede,
.section-heading p,
.split-copy p,
.tech-copy p,
.about-copy p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 28px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--primary-blue);
  box-shadow: 0 16px 34px rgba(0, 87, 217, 0.24);
}

.button.secondary {
  color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 87, 217, 0.28);
}

.button.secondary.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.proof-list li {
  position: relative;
  min-height: 46px;
  padding: 12px 14px 12px 34px;
  color: #253757;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(220, 230, 245, 0.9);
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(7, 26, 61, 0.06);
}

.proof-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 14px;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--success), var(--sky-blue));
  border-radius: 999px;
}

.hero-stage {
  min-height: clamp(430px, 55vw, 680px);
  border-radius: 42% 58% 49% 51% / 45% 40% 60% 55%;
  background:
    linear-gradient(135deg, rgba(7, 26, 61, 0.96), rgba(0, 87, 217, 0.94) 58%, rgba(217, 162, 27, 0.92)),
    var(--deep-navy);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.24), transparent 18%);
  pointer-events: none;
}

.hero-logo {
  position: absolute;
  right: 5%;
  bottom: 10%;
  z-index: 2;
  width: min(82%, 560px);
  filter: drop-shadow(0 28px 34px rgba(7, 26, 61, 0.36));
}

.orbit {
  position: absolute;
  width: 78%;
  height: 34%;
  border: 2px solid rgba(246, 211, 107, 0.48);
  border-right-color: transparent;
  border-bottom-color: rgba(50, 168, 255, 0.38);
  border-radius: 50%;
  transform: rotate(-22deg);
}

.orbit-one {
  top: 18%;
  left: 4%;
}

.orbit-two {
  right: -12%;
  bottom: 22%;
  transform: rotate(18deg);
}

.marble,
.spark {
  position: absolute;
  border-radius: 50%;
}

.marble {
  z-index: 3;
  box-shadow: inset -10px -14px 20px rgba(7, 26, 61, 0.28), inset 8px 8px 18px rgba(255, 255, 255, 0.62), 0 18px 36px rgba(7, 26, 61, 0.3);
  animation: float 6s ease-in-out infinite;
}

.marble-blue {
  background: radial-gradient(circle at 30% 26%, #ffffff, #32a8ff 28%, #0057d9 72%);
}

.marble-gold {
  background: radial-gradient(circle at 30% 26%, #fff6bd, #f6d36b 30%, #d9a21b 78%);
}

.marble-sky {
  background: radial-gradient(circle at 30% 26%, #ffffff, #7ed3ff 30%, #32a8ff 78%);
}

.marble-green {
  background: radial-gradient(circle at 30% 26%, #ffffff, #65e6ad 30%, #24b47e 78%);
}

.marble-a {
  top: 14%;
  left: 17%;
  width: 88px;
  height: 88px;
}

.marble-b {
  top: 34%;
  right: 14%;
  width: 64px;
  height: 64px;
  animation-delay: -1.4s;
}

.marble-c {
  right: 34%;
  bottom: 22%;
  width: 46px;
  height: 46px;
  animation-delay: -2.7s;
}

.marble-d {
  top: 50%;
  left: 14%;
  width: 38px;
  height: 38px;
  animation-delay: -3.2s;
}

.spark {
  z-index: 4;
  width: 12px;
  height: 12px;
  background: var(--light-gold);
  box-shadow: 0 0 24px rgba(246, 211, 107, 0.8);
  transform: rotate(45deg);
}

.spark-one {
  top: 18%;
  right: 28%;
}

.spark-two {
  bottom: 32%;
  left: 26%;
}

.spark-three {
  right: 10%;
  bottom: 18%;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 88px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.intro-band,
.about-section {
  background: var(--soft-bg);
}

.games-section {
  background: #fff;
}

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

.game-card {
  overflow: hidden;
  background: var(--card-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(7, 26, 61, 0.07);
}

.game-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 20%, rgba(246, 211, 107, 0.42), transparent 22%),
    linear-gradient(135deg, var(--deep-navy), var(--primary-blue));
}

.game-media::before,
.game-media::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.game-media::before {
  inset: 20% 14% auto;
  height: 44%;
  border: 2px solid rgba(246, 211, 107, 0.52);
  border-right-color: transparent;
  border-bottom-color: rgba(50, 168, 255, 0.36);
  transform: rotate(-16deg);
}

.game-media::after {
  right: 10%;
  bottom: -18%;
  width: 48%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.1);
}

.game-media span {
  position: absolute;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: inset -8px -10px 16px rgba(7, 26, 61, 0.28), inset 8px 8px 14px rgba(255, 255, 255, 0.58), 0 14px 28px rgba(7, 26, 61, 0.24);
}

.game-media span:nth-child(1) {
  top: 24%;
  left: 18%;
  background: radial-gradient(circle at 30% 25%, #fff, #32a8ff 30%, #0057d9 78%);
}

.game-media span:nth-child(2) {
  top: 40%;
  right: 24%;
  width: 36px;
  height: 36px;
  background: radial-gradient(circle at 30% 25%, #fff7c4, #f6d36b 30%, #d9a21b 78%);
}

.game-media span:nth-child(3) {
  right: 42%;
  bottom: 18%;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at 30% 25%, #fff, #65e6ad 30%, #24b47e 78%);
}

.game-media-two {
  background:
    radial-gradient(circle at 16% 16%, rgba(50, 168, 255, 0.32), transparent 24%),
    linear-gradient(135deg, #06142f, #0057d9 66%, #d9a21b);
}

.game-media-three {
  background:
    radial-gradient(circle at 80% 22%, rgba(246, 211, 107, 0.5), transparent 24%),
    linear-gradient(145deg, #071a3d, #0f55cf 58%, #32a8ff);
}

.game-media-four {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.2), transparent 18%),
    linear-gradient(135deg, #102858, #0057d9 58%, #f6d36b);
}

.game-media-five {
  background:
    radial-gradient(circle at 28% 28%, rgba(36, 180, 126, 0.36), transparent 24%),
    linear-gradient(135deg, #071a3d, #0057d9 62%, #24b47e);
}

.game-media-six {
  background:
    radial-gradient(circle at 74% 24%, rgba(246, 211, 107, 0.44), transparent 26%),
    linear-gradient(135deg, #071a3d, #32a8ff 62%, #d9a21b);
}

.game-body {
  padding: 22px;
}

.game-status {
  margin-bottom: 10px;
  color: var(--premium-gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-body p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-grid article {
  background: var(--card-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(7, 26, 61, 0.07);
}

.benefit-list span,
.trust-grid p,
.process-summary p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  background: #fff;
}

.split-copy {
  position: sticky;
  top: 110px;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list div {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.benefit-list strong {
  color: var(--primary-blue);
  font-size: 1.02rem;
}

.process-summary {
  margin-top: 34px;
  padding: 28px;
  background: linear-gradient(135deg, #ffffff, #f7faff);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(7, 26, 61, 0.07);
}

.process-summary h3 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

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

.process-steps div {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.process-steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: #fff;
  background: var(--primary-blue);
  border-radius: 50%;
  font-weight: 900;
}

.process-steps strong {
  display: block;
  margin-bottom: 8px;
}

.process-steps p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.capabilities-section {
  color: #fff;
  background:
    radial-gradient(circle at 18% 15%, rgba(246, 211, 107, 0.28), transparent 26%),
    linear-gradient(135deg, var(--deep-navy) 0%, var(--primary-blue) 64%, #0a6eef 100%);
}

.capabilities-section .eyebrow,
.final-cta .eyebrow {
  color: var(--light-gold);
}

.capabilities-section .section-heading p,
.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.capability-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.capability-grid span {
  padding: 12px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 800;
}

.trust-section {
  background: #fff;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: 28px;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid article {
  padding: 24px;
  border-top: 4px solid var(--success);
}

.tech-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  background: var(--soft-bg);
}

.tech-visual {
  display: grid;
  place-items: center;
  min-height: 480px;
}

.device-frame {
  width: min(300px, 74vw);
  aspect-ratio: 9 / 16;
  padding: 18px;
  background: #06142f;
  border: 10px solid #102858;
  border-radius: 42px;
  box-shadow: 0 26px 80px rgba(7, 26, 61, 0.24);
}

.mini-game {
  position: relative;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 30%, rgba(246, 211, 107, 0.2), transparent 28%),
    linear-gradient(180deg, #0f55cf, #071a3d);
  border-radius: 28px;
}

.mini-game::before,
.mini-game::after {
  content: "";
  position: absolute;
  left: 14%;
  width: 72%;
  height: 2px;
  background: rgba(246, 211, 107, 0.74);
  transform: rotate(-17deg);
}

.mini-game::before {
  top: 34%;
}

.mini-game::after {
  top: 62%;
  transform: rotate(19deg);
}

.mini-game span {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: inset -8px -10px 16px rgba(7, 26, 61, 0.3), inset 8px 8px 14px rgba(255, 255, 255, 0.55);
}

.mini-game span:nth-child(1) {
  top: 16%;
  left: 24%;
  background: radial-gradient(circle at 30% 25%, #fff, #32a8ff 30%, #0057d9 78%);
}

.mini-game span:nth-child(2) {
  top: 38%;
  right: 20%;
  background: radial-gradient(circle at 30% 25%, #fff7c4, #f6d36b 30%, #d9a21b 78%);
}

.mini-game span:nth-child(3) {
  bottom: 23%;
  left: 24%;
  background: radial-gradient(circle at 30% 25%, #fff, #65e6ad 30%, #24b47e 78%);
}

.mini-game span:nth-child(4) {
  right: 28%;
  bottom: 10%;
  background: radial-gradient(circle at 30% 25%, #fff, #7ed3ff 30%, #32a8ff 78%);
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.tech-list span {
  padding: 14px;
  color: #243555;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 800;
}

.about-section {
  padding-top: clamp(56px, 7vw, 96px);
}

.about-copy {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 clamp(20px, 6vw, 88px) clamp(56px, 7vw, 88px);
  padding: clamp(34px, 5vw, 60px);
  color: #fff;
  background:
    radial-gradient(circle at 92% 20%, rgba(246, 211, 107, 0.34), transparent 24%),
    linear-gradient(135deg, var(--deep-navy), var(--primary-blue) 68%, var(--premium-gold));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p {
  max-width: 820px;
  margin-bottom: 0;
}

.text-link {
  color: #fff;
  font-weight: 900;
  border-bottom: 2px solid var(--light-gold);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--deep-navy);
}

.site-footer img {
  width: 170px;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.24));
}

.site-footer p {
  max-width: 560px;
  margin: 0;
}

.site-footer a {
  color: var(--light-gold);
  font-weight: 800;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -18px, 0);
  }
}

@media (max-width: 1040px) {
  .hero,
  .split-section,
  .tech-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .split-copy {
    position: static;
  }

  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta {
    margin-right: 20px;
    margin-left: 20px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-radius: 8px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.25rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-stage {
    min-height: 400px;
    border-radius: 8px;
  }

  .hero-logo {
    right: 4%;
    bottom: 9%;
    width: 88%;
  }

  .proof-list,
  .game-grid,
  .trust-grid,
  .process-steps,
  .tech-list {
    grid-template-columns: 1fr;
  }

  .benefit-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .trust-panel {
    grid-template-columns: 1fr;
  }

  .tech-visual {
    min-height: 380px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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