:root {
  --navy: #0f2742;
  --navy-2: #15395f;
  --teal: #1aa6a6;
  --teal-dark: #0c7f82;
  --charcoal: #1f2937;
  --muted: #64748b;
  --light: #f5f7fb;
  --white: #ffffff;
  --border: #dce3ee;
  --shadow: 0 20px 50px rgba(15, 39, 66, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

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

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

.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 48px 0;
}

.bg-light {
  background: var(--light);
}

.bg-navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 12px 24px rgba(26, 166, 166, 0.22);
}


.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: block;
  box-shadow: 0 12px 24px rgba(26, 166, 166, 0.22);
}

.brand-text {
  font-size: 1rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
  padding: 0;
  margin: 0;
  color: var(--navy);
  font-weight: 600;
}

.nav-menu a:hover {
  color: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  margin: 5px auto;
}

.hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(26, 166, 166, 0.18), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}

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

h1, h2, h3 {
  line-height: 1.12;
  margin: 0;
  color: var(--navy);
}

.bg-navy h2,
.bg-navy h3,
.bg-navy .eyebrow {
  color: var(--white);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.25rem;
}

.hero-lead,
.section-heading p,
.contact-grid p,
.content-stack p,
.trust-grid p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-lead {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: 1.2rem;
}

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

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

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 14px 28px rgba(12, 127, 130, 0.22);
}

.btn-primary:hover {
  background: var(--teal);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--border);
}

.hero-card {
  display: grid;
  gap: 16px;
}

.metric-card,
.service-card,
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.metric-card.accent {
  border-color: rgba(26, 166, 166, 0.35);
  transform: translateX(-24px);
}

.metric-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-weight: 800;
}

.metric-card p,
.service-card p,
.why-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid,
.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.content-stack p:first-child {
  margin-top: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

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

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

.service-card {
  box-shadow: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(26, 166, 166, 0.35);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(26, 166, 166, 0.1);
  color: var(--teal-dark);
  font-weight: 800;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-grid div {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.why-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-note {
  margin-top: 28px;
  padding: 20px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--charcoal);
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(26, 166, 166, 0.16);
  border-color: var(--teal);
}

.form-footnote {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-content p {
  margin: 0;
}

.footer-content a {
  font-weight: 700;
  color: var(--white);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    display: block;
    padding: 13px 14px;
  }

  .hero-grid,
  .trust-grid,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric-card.accent {
    transform: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section-pad {
    padding: 68px 0;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .brand-text {
    max-width: 205px;
    line-height: 1.1;
  }

  .hero-actions,
  .footer-content {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}


.app-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.app-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.app-card h3 {
  font-size: 1.65rem;
  margin: 10px 0 12px;
}

.app-card p {
  color: var(--muted);
}

.app-icon,
.game-icon-large {
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 16px 36px rgba(26, 166, 166, 0.22);
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-size: 1.2rem;
}

.app-icon.shock,
.game-icon-large.shock {
  background: linear-gradient(135deg, #27124d, #1aa6a6);
}

.feature-app {
  display: grid;
  gap: 12px;
}

.feature-list {
  margin: 8px 0 22px;
  padding-left: 20px;
  color: var(--muted);
}

.text-link {
  color: var(--teal-dark);
  font-weight: 800;
}

.text-link:hover {
  color: var(--teal);
}

.center-actions {
  margin-top: 32px;
  text-align: center;
}

.game-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(26, 166, 166, 0.24), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.game-hero.shockwave {
  background:
    radial-gradient(circle at 82% 18%, rgba(26, 166, 166, 0.24), transparent 34%),
    radial-gradient(circle at 22% 28%, rgba(39, 18, 77, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.game-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.game-preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
}

.game-preview-card p {
  color: var(--muted);
}

.game-icon-large {
  width: 136px;
  height: 136px;
  border-radius: 34px;
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(26, 166, 166, 0.12);
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .app-card-grid,
  .game-hero-grid {
    grid-template-columns: 1fr;
  }
}


.app-icon-img {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(26, 166, 166, 0.22);
}

.game-icon-img {
  width: 156px;
  height: 156px;
  border-radius: 36px;
  display: block;
  object-fit: cover;
  margin: 0 auto 24px;
  box-shadow: 0 18px 42px rgba(15, 39, 66, 0.24);
}


.thank-you-page {
  min-height: 55vh;
  padding-top: 96px;
  padding-bottom: 140px;
}

.thank-you-page .container {
  max-width: 860px;
}

@media (max-width: 760px) {
  .thank-you-page {
    padding-top: 72px;
    padding-bottom: 110px;
  }
}
