:root {
  --ink: #f7fbff;
  --muted: #b8c7df;
  --navy: #071b46;
  --deep: #03102a;
  --panel: rgba(8, 31, 76, 0.84);
  --line: rgba(255, 255, 255, 0.14);
  --orange: #ff6a13;
  --orange-2: #ff9e18;
  --cyan: #21d4ff;
  --green: #24df8c;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 12%, rgba(33, 212, 255, 0.28), transparent 28rem),
    radial-gradient(circle at 86% 6%, rgba(255, 106, 19, 0.32), transparent 30rem),
    linear-gradient(180deg, #071b46 0%, #041232 48%, #020817 100%);
  font-family: "Trebuchet MS", "Aptos", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 76%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 16, 42, 0.8);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.site-header[data-scrolled] {
  background: rgba(3, 16, 42, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 44px;
}

.brand-logo {
  display: block;
  width: 154px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.26));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.desktop-nav a:hover {
  color: var(--white);
}

.header-cta {
  min-height: 42px;
  padding: 12px 18px;
  border-radius: var(--radius);
  color: #071b46;
  font-weight: 900;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 38px;
  width: min(1180px, calc(100% - 32px));
  min-height: 610px;
  margin: 0 auto;
  padding: 44px 0 34px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}

.orb-one {
  width: 260px;
  height: 260px;
  right: 15%;
  top: 12%;
  background: radial-gradient(circle, rgba(255, 106, 19, 0.46), transparent 66%);
}

.orb-two {
  width: 220px;
  height: 220px;
  left: 30%;
  bottom: 9%;
  background: radial-gradient(circle, rgba(33, 212, 255, 0.36), transparent 68%);
}

.chip,
.ball {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
  animation: float 6s ease-in-out infinite;
}

.chip {
  width: 86px;
  height: 86px;
  border: 10px dashed rgba(255, 255, 255, 0.72);
  background: var(--orange);
  box-shadow: var(--shadow);
}

.chip-one {
  right: 5%;
  top: 14%;
}

.chip-two {
  left: 3%;
  bottom: 14%;
  animation-delay: -2s;
}

.ball {
  width: 58px;
  height: 58px;
  color: #081f4c;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.34));
}

.ball-football {
  right: 32%;
  top: 5%;
  animation-delay: -1s;
}

.ball-basket {
  right: 0;
  bottom: 16%;
}

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

.hero-logo {
  display: block;
  width: min(260px, 78vw);
  height: auto;
  margin: 0 0 22px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.34));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.lead {
  max-width: 670px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover,
.intent-card:hover,
.feature-card:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #1d0b00;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: 0 18px 42px rgba(255, 106, 19, 0.34);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  color: var(--white);
  background: var(--deep);
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mini-proof span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.07);
}

.phone-stage {
  display: grid;
  justify-items: center;
}

.phone {
  width: min(318px, 90vw);
  padding: 12px;
  border: 8px solid #08142d;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 22%),
    #09265c;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: rotate(3deg);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.phone-logo {
  width: 124px;
  height: auto;
  object-fit: contain;
}

.live-dot {
  padding: 6px 10px;
  border-radius: 999px;
  color: #02140b;
  font-size: 12px;
  font-weight: 900;
  background: var(--green);
}

.app-hero-card {
  min-height: 110px;
  padding: 15px;
  border-radius: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 34%, rgba(255, 255, 255, 0.3), transparent 18%),
    linear-gradient(135deg, #ff7b19, #b51e00 72%);
}

.app-hero-card small,
.app-hero-card strong,
.app-hero-card a {
  display: block;
}

.app-hero-card small {
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
}

.app-hero-card strong {
  margin: 6px 0 15px;
  font-size: 24px;
}

.app-hero-card a {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  color: #0c1f4b;
  font-weight: 900;
  background: var(--white);
}

.app-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0;
}

.app-tabs span {
  padding: 10px 4px;
  border-radius: 999px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}

.app-tabs .active {
  color: #061638;
  font-weight: 900;
  background: var(--cyan);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.game-grid article {
  min-height: 90px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    #0c3676;
}

.game-icon,
.game-grid b,
.game-grid em {
  display: block;
}

.game-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.24));
}

.game-grid b {
  margin-top: 8px;
}

.game-grid em {
  color: var(--orange-2);
  font-size: 12px;
  font-style: normal;
}

.trust-strip,
.logo-wall,
.intent-panel,
.steps-section,
.showcase,
.payments,
.faq,
.bonus-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 24px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.logo-wall {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 106, 19, 0.12), rgba(33, 212, 255, 0.1)),
    rgba(5, 22, 56, 0.72);
}

.logo-wall p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-wall div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.logo-wall img {
  display: block;
  width: 100%;
  height: 54px;
  object-fit: contain;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(2, 8, 23, 0.48);
}

.trust-strip div {
  padding: 20px;
  background: rgba(5, 22, 56, 0.86);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--orange-2);
  font-size: 26px;
}

.trust-strip span {
  color: var(--muted);
}

.intent-panel,
.steps-section,
.showcase,
.payments,
.faq {
  padding: 72px 0;
}

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

.intent-grid,
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.intent-card,
.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease;
}

.intent-card {
  display: block;
  min-height: 210px;
  padding: 24px;
}

.intent-card.hot {
  border-color: rgba(255, 106, 19, 0.5);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 106, 19, 0.3), transparent 36%),
    var(--panel);
}

.intent-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.55), transparent 34%),
    linear-gradient(135deg, rgba(255, 158, 24, 0.98), rgba(255, 79, 18, 0.92));
  box-shadow: 0 14px 28px rgba(255, 106, 19, 0.24);
}

.intent-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.intent-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
}

.intent-card p,
.feature-card p,
.steps-copy p,
.faq p,
.bonus-band p,
.fine-note,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.steps-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 28px;
  align-items: start;
}

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

.steps-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.steps-list span {
  color: var(--orange-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 900;
}

.steps-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 26px;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 106, 19, 0.2);
}

.feature-art {
  display: grid;
  width: 86px;
  height: 86px;
  margin-bottom: 52px;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.feature-art img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.22));
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--orange-2);
  font-weight: 900;
}

.bonus-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px;
  border-radius: var(--radius);
  color: #061638;
  background:
    radial-gradient(circle at 90% 16%, rgba(255, 255, 255, 0.4), transparent 22%),
    linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: 0 26px 70px rgba(255, 106, 19, 0.26);
}

.bonus-band .eyebrow,
.bonus-band p {
  color: rgba(6, 22, 56, 0.76);
}

.bonus-band h2 {
  margin-bottom: 8px;
}

.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 16px;
}

.payment-list span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

summary {
  cursor: pointer;
  padding: 20px;
  font-size: 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.site-footer {
  padding: 46px 0 90px;
  background: #020817;
}

.footer-main,
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.footer-main p {
  max-width: 640px;
  margin: 16px 0 0;
}

.footer-links {
  display: grid;
  gap: 10px;
  min-width: 210px;
}

.footer-links a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 16, 42, 0.92);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-cta a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #1d0b00;
  font-weight: 900;
  background: var(--orange-2);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 700ms ease forwards;
}

[data-reveal]:nth-child(2) {
  animation-delay: 140ms;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }

  50% {
    transform: translateY(-18px) rotate(10deg);
  }
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .steps-section {
    grid-template-columns: 1fr;
  }

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

  .phone {
    transform: none;
  }

  .trust-strip,
  .intent-grid,
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(90px + env(safe-area-inset-bottom));
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .trust-strip,
  .logo-wall,
  .intent-panel,
  .steps-section,
  .showcase,
  .payments,
  .faq,
  .bonus-band,
  .footer-main,
  .footer-bottom {
    width: calc(100% - 20px);
  }

  .hero {
    min-height: auto;
    padding: 28px 0 24px;
    overflow: hidden;
  }

  .phone-stage {
    display: none;
  }

  .hero-copy {
    z-index: 2;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 35px;
    line-height: 1.05;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-logo {
    width: min(220px, 72vw);
    margin-bottom: 18px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

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

  .btn {
    width: 100%;
  }

  .logo-wall div,
  .intent-grid,
  .showcase-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip div {
    padding: 16px;
  }

  .trust-strip strong {
    font-size: 23px;
  }

  .intent-panel,
  .steps-section,
  .showcase,
  .payments,
  .faq {
    padding: 46px 0;
  }

  .steps-list li {
    grid-template-columns: 1fr;
  }

  .phone {
    width: 286px;
  }

  .mobile-cta {
    display: grid;
  }
}

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