:root {
  --primary-blue: #4f8dff;
  --deep-navy: #071326;
  --premium-gold: #dca62d;
  --light-gold: #f4cf72;
  --sky-blue: #55c2ff;
  --soft-bg: #08111f;
  --card-white: #0f1c31;
  --muted: #93a6c4;
  --border: rgba(130, 158, 206, 0.2);
  --success: #24b47e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --container-width: 1280px;
  --surface: rgba(13, 24, 43, 0.88);
  --surface-strong: #0c1729;
  --surface-alt: #101f37;
  --text: #edf3ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(79, 141, 255, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(220, 166, 45, 0.1), transparent 24%),
    linear-gradient(180deg, #050b14 0%, #08111f 46%, #091423 100%);
  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;
  min-height: 76px;
  padding: 14px 0;
  background: rgba(5, 11, 20, 0.72);
  border-bottom: 1px solid rgba(130, 158, 206, 0.14);
  backdrop-filter: blur(18px);
}

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

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container-width));
  margin: 0 auto;
  padding: 0 0 48px;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: #dbe7ff;
  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: #041120 !important;
  background: var(--primary-blue);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(79, 141, 255, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(13, 24, 43, 0.92);
}

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

.hero {
  position: relative;
  display: block;
  min-height: calc(100vh - 124px);
  width: 100vw;
  margin-top: 0;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 13, 24, 0.88) 0%, rgba(6, 13, 24, 0.74) 38%, rgba(6, 13, 24, 0.3) 68%, rgba(6, 13, 24, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 10, 19, 0.18), rgba(5, 10, 19, 0.64)),
    url("assets/hero-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 0;
  box-shadow: var(--shadow);
}

.hero-inner {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 124px);
  padding: clamp(56px, 8vw, 112px) 0 clamp(44px, 6vw, 80px);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 82px;
  background: linear-gradient(to bottom, rgba(8, 17, 31, 0), rgba(8, 17, 31, 0.92));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.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: #dce8ff;
  background: rgba(16, 31, 55, 0.82);
  border: 1px solid rgba(130, 158, 206, 0.18);
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.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;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(24px, 5vw, 72px);
  margin-top: 24px;
  background: var(--surface);
  border: 1px solid rgba(130, 158, 206, 0.16);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.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: linear-gradient(180deg, rgba(10, 20, 36, 0.94), rgba(11, 23, 40, 0.9));
}

.games-section {
  background: linear-gradient(180deg, rgba(11, 23, 40, 0.96), rgba(9, 18, 33, 0.94));
}

.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(0, 0, 0, 0.24);
}

.game-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #08111f;
}

.game-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.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: linear-gradient(180deg, rgba(11, 23, 40, 0.96), rgba(9, 18, 33, 0.94));
}

.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, rgba(16, 31, 55, 0.98), rgba(12, 23, 41, 0.98));
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
}

.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: #041120;
  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.22), transparent 26%),
    linear-gradient(135deg, #08152a 0%, #0f2e61 64%, #123874 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.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 800;
}

.trust-section {
  background: linear-gradient(180deg, rgba(11, 23, 40, 0.96), rgba(9, 18, 33, 0.94));
}

.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: linear-gradient(180deg, rgba(10, 20, 36, 0.94), rgba(11, 23, 40, 0.92));
}

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

.device-frame {
  position: relative;
  width: min(320px, 76vw);
  aspect-ratio: 9 / 16;
  padding: 16px;
  background: linear-gradient(180deg, #11284a, #081426);
  border: 1px solid rgba(130, 158, 206, 0.24);
  border-radius: 42px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
}

.device-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 34%;
  height: 8px;
  background: rgba(4, 11, 20, 0.82);
  border-radius: 999px;
  transform: translateX(-50%);
}

.device-screen {
  height: 100%;
  overflow: hidden;
  background: #08111f;
  border-radius: 30px;
  box-shadow: inset 0 0 0 1px rgba(130, 158, 206, 0.12);
}

.device-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.tech-list span {
  padding: 14px;
  color: #e4edff;
  background: rgba(16, 31, 55, 0.92);
  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: 24px 0 0;
  padding: clamp(34px, 5vw, 60px);
  color: #fff;
  background:
    radial-gradient(circle at 92% 20%, rgba(246, 211, 107, 0.26), transparent 24%),
    linear-gradient(135deg, #08152a, #0f2e61 68%, #875f15);
  border: 1px solid rgba(130, 158, 206, 0.18);
  border-radius: 30px;
  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 {
  padding: 30px 0 40px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
}

.site-footer img {
  width: 170px;
  filter: brightness(0) invert(1) 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;
}

@media (max-width: 1040px) {
  .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-top: 24px;
  }
}

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

  .container,
  .page-shell {
    width: min(calc(100% - 20px), var(--container-width));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 10px;
    left: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(12, 23, 41, 0.98);
    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 {
    width: auto;
    margin-right: -10px;
    margin-left: -10px;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 44px;
  }

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

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

  .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 {
    padding-bottom: 28px;
  }

  .footer-inner {
    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;
  }
}
