:root {
  color-scheme: light;
  --ink: #12151d;
  --muted: #536070;
  --panel: #ffffff;
  --line: #d9e2ec;
  --blue: #0b67c2;
  --blue-dark: #073d8c;
  --green: #0c9b65;
  --gold: #f3b51b;
  --red: #dc3e49;
  --page: #eef4fb;
  --shadow: 0 22px 70px rgba(16, 32, 54, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--page);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(217, 226, 236, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(16, 32, 54, 0.16);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--blue);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  min-height: calc(100svh - 65px);
  padding: clamp(36px, 6vw, 86px) clamp(18px, 5vw, 64px) 52px;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(11, 103, 194, 0.98), rgba(5, 52, 117, 0.92) 58%, rgba(12, 155, 101, 0.86)),
    url("assets/store-03.png") center / cover;
  color: #ffffff;
}

.hero-copy {
  max-width: 720px;
}

.app-icon {
  width: clamp(74px, 10vw, 112px);
  height: clamp(74px, 10vw, 112px);
  margin-bottom: 28px;
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--gold);
  color: #261700;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.phone-showcase {
  width: min(100%, 410px);
  justify-self: center;
  border-radius: 34px;
  padding: 11px;
  background: #0b1324;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  transform: rotate(2deg);
}

.phone-showcase img {
  width: 100%;
  aspect-ratio: 1242 / 2688;
  object-fit: cover;
  border-radius: 24px;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.section-copy {
  max-width: 760px;
}

.section h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.game-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  background: #ffffff;
}

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

.feature-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f6f9fc);
}

.feature-grid article:nth-child(1) {
  border-top: 5px solid var(--green);
}

.feature-grid article:nth-child(2) {
  border-top: 5px solid var(--red);
}

.feature-grid article:nth-child(3) {
  border-top: 5px solid var(--blue);
}

.feature-grid h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.feature-grid p {
  color: var(--muted);
}

.screenshots-section {
  background: #152033;
  color: #ffffff;
}

.screenshots-section .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.screenshot-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 315px);
  gap: clamp(16px, 3vw, 26px);
  margin-top: 30px;
  overflow-x: auto;
  padding: 0 0 18px;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.16);
}

.screenshot-strip img {
  width: 100%;
  aspect-ratio: 1242 / 2688;
  object-fit: cover;
  border-radius: 24px;
  border: 8px solid #0b1324;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 520px);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(238, 244, 251, 0.94), rgba(238, 244, 251, 0.82)),
    url("assets/store-05.png") right center / contain no-repeat;
}

.direct-email a {
  color: var(--blue-dark);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd8e6;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(11, 103, 194, 0.16);
}

.contact-form .button {
  width: 100%;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.82);
  background: #0b1324;
}

footer p {
  margin: 0;
}

footer a {
  color: #ffffff;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.policy-hero {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 64px) clamp(34px, 5vw, 58px);
  color: #ffffff;
  background:
    linear-gradient(130deg, rgba(11, 103, 194, 0.98), rgba(5, 52, 117, 0.94) 62%, rgba(12, 155, 101, 0.88)),
    url("assets/store-05.png") right center / contain no-repeat;
}

.policy-hero h1 {
  max-width: 920px;
  margin-bottom: 16px;
}

.policy-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.policy-content {
  width: min(100% - 36px, 980px);
  margin: clamp(28px, 5vw, 54px) auto clamp(54px, 8vw, 96px);
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.policy-content h2 {
  margin: 34px 0 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: 0;
}

.policy-content h2:first-of-type {
  margin-top: 18px;
}

.policy-content p {
  color: var(--muted);
  font-size: 1rem;
}

.policy-content a {
  color: var(--blue-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.policy-contact {
  margin-top: 34px;
  padding: 18px;
  border-radius: 8px;
  background: #eef4fb;
}

@media (max-width: 980px) {
  .hero,
  .game-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .phone-showcase {
    width: min(76vw, 360px);
    justify-self: start;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 30px;
  }

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

  .phone-showcase {
    width: min(100%, 330px);
  }

  .screenshot-strip {
    grid-auto-columns: minmax(190px, 76vw);
  }
}
