html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange-1: #ff9b34;
  --orange-2: #ef6f17;
  --orange-3: #b84a09;
  --blue-1: #3d6fc0;
  --blue-2: #20488a;
  --blue-3: #122c57;

  --dark-1: #0f131c;
  --dark-2: #151a25;
  --dark-3: #1d2330;

  --light-1: #f7f9fc;
  --light-2: #edf2f8;
  --light-3: #dce5f0;

  --text: #ffffff;
  --text-dark: #152033;
  --text-soft: #58657c;
  --muted: #a9b4c8;

  --border-light: rgba(255, 255, 255, 0.1);
  --border-dark: rgba(20, 30, 50, 0.1);

  --shadow-soft: 0 8px 24px rgba(16, 22, 34, 0.1), 0 2px 6px rgba(16, 22, 34, 0.06);
  --shadow-dark: 0 18px 38px rgba(0, 0, 0, 0.28);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --max-width: 1240px;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #0e121c;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 5px 5px;
  opacity: 0.18;
  z-index: 0;
}

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

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

button,
input,
select {
  font: inherit;
}

.section-inner,
.nav-inner,
.hero-inner,
.stats-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-spacing {
  padding: 78px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: #ffffff;
  color: #111827;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  z-index: 2000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading-light {
  color: #fff;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange-2);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-description {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--text-soft);
  font-weight: 500;
}

.section-heading-light .section-description {
  color: #d4dbea;
}

/* NAV */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(14px);
  background: rgba(10, 14, 22, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  width: 235px;
  height: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: #eff3fb;
  font-size: 0.98rem;
  font-weight: 700;
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffbc69;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-1), var(--orange-2));
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-login {
  color: #d8e0ef;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-login:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle-label span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-dark);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-sm {
  min-height: 48px;
  padding: 0 22px;
  font-size: 0.98rem;
}

.btn-primary {
  min-height: 58px;
  padding: 0 30px;
  color: #fff;
  background: linear-gradient(180deg, var(--orange-1) 0%, var(--orange-2) 58%, var(--orange-3) 100%);
}

.btn-secondary {
  min-height: 58px;
  padding: 0 30px;
  color: #fff;
  background: linear-gradient(180deg, var(--blue-1) 0%, var(--blue-2) 58%, var(--blue-3) 100%);
}

/* HERO */
.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 56px 0 96px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(rgba(10, 12, 20, 0.42), rgba(10, 12, 20, 0.76)),
    url("../images/hero3.png") center/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.12), transparent 12%),
    radial-gradient(circle at 82% 22%, rgba(255, 215, 160, 0.16), transparent 14%),
    radial-gradient(circle at center, rgba(255, 140, 31, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(8, 10, 16, 0.28) 0%, rgba(7, 10, 15, 0.42) 45%, rgba(0, 0, 0, 0.54) 100%);
  z-index: 1;
}

.hero-inner {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 880px;
  text-align: center;
}

.hero-content-panel {
  max-width: 920px;
  padding: 36px 34px 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(10, 14, 22, 0.34), rgba(10, 14, 22, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #ffd59b;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.1rem);
  line-height: 0.94;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.44);
}

.hero-content h1 span {
  display: block;
  color: #ffbc69;
}

.hero-subtext {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.75;
  color: #f4f7fc;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-trust-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f5f7fb;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.hero-trust-row i {
  color: #ffbc69;
}

.launch-text {
  margin-top: 20px;
  color: #ffd58b;
  font-size: 0.95rem;
  font-weight: 800;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.36);
}

/* STATS BAR */
.stats-bar {
  position: relative;
  margin-top: -42px;
  z-index: 10;
}

.stats-shell {
  padding: 18px 24px 10px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(14, 18, 28, 0.96) 0%, rgba(20, 25, 36, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
}

.stats-header {
  margin-bottom: 18px;
  text-align: center;
  color: #aab5c8;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  min-height: 112px;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.stat-item h3 {
  font-size: 1.5rem;
  line-height: 1.1;
  color: #ff9c36;
  font-weight: 900;
}

.stat-item p {
  margin-top: 4px;
  color: #eef3fb;
  font-size: 0.97rem;
  font-weight: 700;
}

/* APP PREVIEW SECTION */
.app-preview-section {
  background: linear-gradient(180deg, rgba(13, 18, 28, 0.98), rgba(18, 24, 36, 0.96));
  position: relative;
  z-index: 2;
}

.app-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.app-preview-copy h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.95;
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}

.app-preview-copy .section-description {
  color: #d3dced;
}

.app-preview-points {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.app-preview-points p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #eef3fb;
  font-weight: 700;
  line-height: 1.5;
}

.app-preview-points i {
  color: #77d34c;
}

/* APP PREVIEW PHONES */
.app-preview-phones {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}

.phone-shot {
  position: absolute;
  width: 245px;
  height: 500px;
  border-radius: 38px;
  background: linear-gradient(180deg, #1c2330 0%, #0d121b 100%);
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.42),
    0 10px 20px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -2px 8px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  padding: 14px;
}

.phone-shot::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 24px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, #0a0d14, #171d28);
  z-index: 5;
  box-shadow:
    inset 0 -1px 2px rgba(255, 255, 255, 0.05),
    0 1px 2px rgba(0, 0, 0, 0.35);
}

.phone-shot::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  z-index: 5;
}

.phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  position: relative;
  z-index: 1;
}

.phone-shot-front {
  z-index: 3;
  transform: translateY(0) rotate(0deg);
}

.phone-shot-back {
  left: 12px;
  z-index: 1;
  transform: rotateY(18deg) rotateZ(-11deg) translateY(18px);
  opacity: 0.92;
}

.phone-shot-side {
  right: 12px;
  z-index: 2;
  transform: rotateY(-18deg) rotateZ(11deg) translateY(18px);
  opacity: 0.95;
}

/* LIGHT INFO SECTION */
.info-section {
  background: url("../images/lightGray.png") center bottom / cover no-repeat;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}

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

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #eef3f9 100%);
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(16, 22, 34, 0.12), 0 4px 10px rgba(16, 22, 34, 0.08);
}

.card-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.card-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.card-header span {
  position: relative;
  z-index: 2;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
}

.playerBG {
  background: url("../images/playerBG.png") center/cover no-repeat;
}

.voBG {
  background: url("../images/voBG.png") center/cover no-repeat;
}

.sportBG {
  background: url("../images/sportsBG.png") center/cover no-repeat;
}

.card-body {
  padding: 22px 22px 18px;
  flex: 1;
}

.card-list,
.sports-grid {
  list-style: none;
}

.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.55;
  color: #273246;
  font-weight: 700;
}

.card-list i {
  color: var(--orange-2);
  margin-top: 3px;
}

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

.sports-grid li {
  padding: 14px 12px;
  border-radius: 14px;
  background: rgba(24, 36, 60, 0.05);
  border: 1px solid rgba(24, 36, 60, 0.08);
  color: #253046;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sports-grid strong {
  color: var(--orange-2);
  font-size: 0.92rem;
}

.card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin: 0 22px 22px;
  border-radius: 14px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.card-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.card-cta-orange {
  background: linear-gradient(180deg, var(--orange-1) 0%, var(--orange-2) 58%, var(--orange-3) 100%);
}

.card-cta-blue {
  background: linear-gradient(180deg, var(--blue-1) 0%, var(--blue-2) 58%, var(--blue-3) 100%);
}

/* HOW IT WORKS */
.how-section {
  background: linear-gradient(180deg, rgba(15, 18, 27, 0.98) 0%, rgba(9, 12, 18, 0.99) 100%);
}

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

.how-card {
  min-height: 100%;
  padding: 28px 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, #232a38 0%, #141a25 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-dark);
  transition: transform 0.2s ease;
}

.how-card:hover {
  transform: translateY(-4px);
}

.how-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 18px;
  font-size: 1.45rem;
  font-weight: 900;
  color: #fff;
  border: 3px solid var(--orange-2);
  background: linear-gradient(180deg, #2b3345, #161d2b);
}

.how-card h3 {
  margin-bottom: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 0.98;
  font-weight: 800;
  color: #fff;
}

.how-card p {
  color: #d9e0ee;
  line-height: 1.7;
  font-weight: 500;
}

.how-preview-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 20px;
}

.how-preview-card {
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, #232a38 0%, #141a25 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding: 16px;
}

.how-preview-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.how-preview-stack {
  display: grid;
  gap: 12px;
  align-content: start;
}

/* WHY */
.why-section {
  background:
    linear-gradient(180deg, rgba(247, 249, 252, 0.96), rgba(236, 241, 247, 0.96)),
    url("../images/lightGray.png") center bottom / cover no-repeat;
  color: var(--text-dark);
}

.why-heading {
  margin-bottom: 42px;
}

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

.why-grid-refined {
  gap: 20px;
}

.why-box {
  position: relative;
  padding: 28px 18px 24px;
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 245, 251, 0.98) 100%);
  border: 1px solid rgba(20, 30, 50, 0.08);
  box-shadow:
    0 10px 26px rgba(16, 22, 34, 0.08),
    0 2px 8px rgba(16, 22, 34, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-box:hover {
  transform: translateY(-5px);
  box-shadow:
    0 16px 30px rgba(16, 22, 34, 0.1),
    0 4px 12px rgba(16, 22, 34, 0.06);
}

.why-icon-wrap {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #eef3fa);
  border: 1px solid rgba(21, 32, 51, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.why-icon-wrap img {
  max-width: 64px;
  max-height: 64px;
  object-fit: contain;
}

.why-box h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  line-height: 1.15;
  font-weight: 900;
  color: #182235;
}

.why-box p {
  color: #536077;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 600;
}

.trust-panel {
  margin-top: 30px;
  padding: 30px 24px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(180deg, rgba(12, 16, 25, 0.96), rgba(20, 25, 36, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
}

.trust-panel-refined {
  margin-top: 34px;
  padding: 32px 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(12, 16, 25, 0.98), rgba(18, 23, 34, 0.95));
}

.trust-panel-header {
  text-align: center;
  margin-bottom: 20px;
}

.trust-panel-header .section-kicker {
  margin-bottom: 8px;
}

.trust-panel h3 {
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 0.95;
  margin-bottom: 18px;
  font-weight: 800;
}

.trust-panel-header h3 {
  margin-bottom: 0;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-top: 6px;
}

.trust-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  line-height: 1.5;
}

.trust-list i {
  color: #77d34c;
}

/* FORMS */
.forms-section {
  background:
    linear-gradient(180deg, rgba(14, 18, 28, 0.98) 0%, rgba(8, 11, 17, 1) 100%),
    url("../images/black.png") center bottom / cover no-repeat;
}

.forms-section h2 span {
  color: #ffbc69;
}

.forms-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-box {
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #eef3f9 100%);
  color: #1a2436;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-dark);
}

.form-header {
  position: relative;
  padding: 24px 20px 20px;
  color: #fff;
  text-align: center;
}

.form-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% -40%, rgba(255, 255, 255, 0.2), transparent 44%);
  pointer-events: none;
}

.form-orange .form-header {
  background: linear-gradient(180deg, var(--orange-1) 0%, var(--orange-2) 58%, var(--orange-3) 100%);
}

.form-blue .form-header {
  background: linear-gradient(180deg, var(--blue-1) 0%, var(--blue-2) 58%, var(--blue-3) 100%);
}

.form-header h3 {
  position: relative;
  z-index: 1;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-header p {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  color: #22304a;
  font-size: 0.95rem;
  font-weight: 800;
}

form input,
form select {
  min-height: 54px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid #cfdae9;
  background: #fff;
  color: #1e2a3f;
  font-size: 1rem;
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.btn-submit-orange,
.btn-submit-blue {
  min-height: 56px;
  border: none;
  border-radius: 14px;
  color: white;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-submit-orange:hover,
.btn-submit-blue:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn-submit-orange {
  background: linear-gradient(180deg, var(--orange-1) 0%, var(--orange-2) 58%, var(--orange-3) 100%);
}

.btn-submit-blue {
  background: linear-gradient(180deg, var(--blue-1) 0%, var(--blue-2) 58%, var(--blue-3) 100%);
}

.form-footer {
  text-align: center;
  color: #3f4d63;
  font-size: 0.94rem;
  font-weight: 700;
}

.form-footer a {
  color: #1b2740;
  text-decoration: underline;
  font-weight: 900;
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, rgba(9, 12, 18, 1), rgba(7, 9, 14, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 42px 0 28px;
}

.footer-inner {
  color: #eef3fb;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 14px;
  color: #b7c1d4;
  line-height: 1.7;
  font-weight: 500;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.footer-links h4 {
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
}

.footer-links ul {
  list-style: none;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: #c0cada;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 26px 0 18px;
}

.copyright {
  text-align: center;
  color: #94a0b6;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ACCESSIBILITY / FOCUS */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
label:focus-visible {
  outline: 3px solid #ffbc69;
  outline-offset: 2px;
}

form input:focus,
form select:focus {
  border-color: #7fa0d8;
  box-shadow: 0 0 0 4px rgba(61, 111, 192, 0.14);
  outline: none;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-top,
  .app-preview-grid,
  .how-preview-strip {
    grid-template-columns: 1fr;
  }

  .app-preview-phones {
    min-height: 480px;
  }
}

@media (max-width: 980px) {
  .nav-toggle-label {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    background: rgba(13, 18, 28, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow-dark);
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-toggle:checked ~ .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta-group {
    margin-left: auto;
  }

  .stats-container,
  .forms-container,
  .how-grid,
  .trust-list {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    justify-content: flex-start;
  }

  .stat-item:nth-child(2n) {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 760px) {
  .section-spacing {
    padding: 62px 0;
  }

  .nav-inner {
    min-height: 82px;
  }

  .logo img {
    width: 190px;
  }

  .nav-login {
    display: none;
  }

  .btn-sm {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 82px;
  }

  .hero-content-panel {
    padding: 24px 18px 22px;
    border-radius: 22px;
  }

  .hero-content h1 {
    font-size: 3.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .cards-grid,
  .forms-container,
  .how-grid,
  .why-grid,
  .trust-list,
  .stats-container,
  .footer-links,
  .input-row {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    justify-content: flex-start;
  }

  .stat-item:first-child {
    border-top: none !important;
  }

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

  .hero-trust-row {
    gap: 10px;
  }

  .hero-trust-row span {
    width: 100%;
    justify-content: center;
  }

  .how-card h3,
  .form-header h3 {
    font-size: 1.7rem;
  }

  .why-box {
    padding: 24px 16px 22px;
  }

  .trust-panel-refined,
  .trust-panel {
    padding: 24px 18px;
  }

  .app-preview-phones {
    min-height: 420px;
  }

  .phone-shot {
    width: 180px;
    height: 365px;
    border-radius: 28px;
    padding: 10px;
  }

  .phone-shot::before {
    top: 9px;
    width: 82px;
    height: 18px;
    border-radius: 0 0 12px 12px;
  }

  .phone-shot::after {
    bottom: 8px;
    width: 72px;
    height: 4px;
  }

  .phone-shot img {
    border-radius: 20px;
  }

  .phone-shot-back {
    left: 0;
    transform: rotateY(16deg) rotateZ(-8deg) translateY(10px);
  }

  .phone-shot-side {
    right: 0;
    transform: rotateY(-16deg) rotateZ(8deg) translateY(10px);
  }
}

@media (max-width: 540px) {
  .section-inner,
  .nav-inner,
  .hero-inner,
  .stats-shell {
    width: min(calc(100% - 22px), var(--max-width));
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .section-heading h2 {
    font-size: 2.4rem;
  }

  .card-body,
  form {
    padding: 20px 18px;
  }

  .card-cta {
    margin: 0 18px 18px;
  }

  .app-preview-phones {
    min-height: 320px;
  }

  .phone-shot {
    width: 145px;
    height: 290px;
    border-radius: 24px;
    padding: 8px;
  }

  .phone-shot::before {
    top: 7px;
    width: 66px;
    height: 14px;
  }

  .phone-shot::after {
    width: 56px;
    height: 3px;
    bottom: 7px;
  }

  .phone-shot img {
    border-radius: 16px;
  }
}
.sports-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
}

.sports-checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cfdae9;
  border-radius: 12px;
  background: #fff;
  color: #22304a;
  font-size: 0.95rem;
  font-weight: 700;
}

.sports-checkbox-grid input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.input-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 760px) {
  .sports-checkbox-grid,
  .input-row-3 {
    grid-template-columns: 1fr;
  }
}