/* ==========================================================================
   Footy Status — Marketing Site Stylesheet
   ========================================================================== */

:root {
  --white: #ffffff;
  --off-white: #f7f8fb;
  --navy: #0a1a3c;
  --navy-800: #0f234f;
  --navy-700: #14306a;
  --royal: #235ed1;
  --royal-600: #1c4bb0;
  --royal-100: #e8f0ff;
  --red: #e02138;
  --red-600: #c11429;
  --star-white: #ffffff;
  --ink: #101828;
  --muted: #5a6478;
  --muted-light: #8892a4;
  --border: #e4e8f1;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(10, 26, 60, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 26, 60, 0.10);
  --shadow-lg: 0 20px 48px rgba(10, 26, 60, 0.16);
  --container: 1180px;
  --nav-h: 76px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* , *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; margin: 0; padding: 0; }

button { font-family: inherit; cursor: pointer; }

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--royal);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ------------------------------ Section basics --------------------------- */

.section {
  padding: 96px 0;
  position: relative;
}

.section--tight { padding: 72px 0; }

.section--alt { background: var(--off-white); }

.section--navy {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-800) 100%);
  color: var(--white);
}

.section-head {
  max-width: 720px;
  margin: 0 0 56px;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section--navy .section-head h2,
.section--navy .eyebrow { color: var(--white); }
.section--navy .eyebrow { color: #ff8a97; }

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section--navy .section-head p { color: rgba(255,255,255,0.78); }

/* --------------------------------- Buttons -------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(224, 33, 56, 0.30);
}
.btn-primary:hover { background: var(--red-600); box-shadow: 0 14px 30px rgba(224, 33, 56, 0.38); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(10, 26, 60, 0.24);
}
.btn-navy:hover { background: var(--navy-700); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-store {
  background: var(--navy);
  color: var(--white);
  gap: 12px;
  padding: 12px 22px;
  opacity: 0.96;
}
.btn-store .store-sub { display: block; font-size: 0.68rem; font-weight: 500; opacity: 0.75; }
.btn-store .store-main { display: block; font-size: 0.92rem; }
.btn-store svg { flex-shrink: 0; }

.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ---------------------------------- Stars --------------------------------- */

.star-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  opacity: 0.55;
}

.star svg { width: 100%; height: 100%; display: block; }

/* ---------------------------------- Navbar -------------------------------- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease;
}

.navbar.is-scrolled { box-shadow: 0 4px 20px rgba(10, 26, 60, 0.08); }

.navbar .container {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  flex-shrink: 0;
}

.brand img { height: 42px; width: auto; }

.navbar .brand {
  padding: 4px 0;
}

.navbar .brand img {
  width: auto;
  height: 52px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.navbar .brand:hover img { transform: translateY(-1px); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--royal-600); }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--red);
  transition: right 0.25s ease;
}

.nav-links a:hover::after { right: 0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta { padding: 11px 22px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-panel {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--white);
  z-index: 190;
  overflow-y: auto;
  padding: 24px;
}

.mobile-panel.is-open { display: block; }

.mobile-panel a {
  display: block;
  padding: 16px 4px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}

.mobile-panel .btn { width: 100%; margin-top: 20px; }

/* ---------------------------------- Hero ---------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 70%);
  padding: 76px 0 60px;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--royal-100);
  color: var(--royal-600);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--navy);
  margin-bottom: 22px;
}

.hero h1 span { color: var(--red); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--muted-light);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mock {
  position: relative;
  width: 280px;
  height: 570px;
  background: var(--navy);
  border-radius: 44px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.phone-mock::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 18px;
  background: var(--navy);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background:
    radial-gradient(circle at top center, rgba(35, 94, 209, 0.08), transparent 38%),
    linear-gradient(180deg, #fbfbfd 0%, #f4f6fb 100%);
  position: relative;
  overflow: hidden;
  color: var(--navy);
  padding: 0;
}

.app-shell {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #1d2130;
}

.app-status-icons {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #1d2130;
}

.signal-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.signal-bars i {
  display: block;
  width: 2px;
  background: currentColor;
  border-radius: 999px;
}

.signal-bars i:nth-child(1) { height: 5px; opacity: 0.45; }
.signal-bars i:nth-child(2) { height: 8px; opacity: 0.7; }
.signal-bars i:nth-child(3) { height: 11px; }

.battery {
  width: 20px;
  height: 10px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 1px;
}

.battery::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 2.25px;
  width: 2px;
  height: 4px;
  border-radius: 0 2px 2px 0;
  background: currentColor;
}

.battery-level {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: 1px;
  background: currentColor;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 18px 14px;
  border-bottom: 1px solid rgba(10, 26, 60, 0.08);
}

.app-wordmark {
  width: 98px;
  height: auto;
}

.app-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-action {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(10, 26, 60, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 6px 14px rgba(10, 26, 60, 0.08);
}

.app-bell span {
  position: absolute;
  top: -4px;
  right: -3px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--navy-700);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    linear-gradient(rgba(5, 8, 18, 0.36), rgba(5, 8, 18, 0.36)),
    linear-gradient(135deg, #6d7488 0%, #23283a 100%);
  box-shadow: 0 6px 14px rgba(10, 26, 60, 0.12);
}

.app-feed {
  flex: 1;
  overflow: hidden;
  padding: 14px 14px 0;
}

.app-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 4px;
  margin-bottom: 10px;
}

.app-section-head h3 {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-700);
}

.app-section-head span {
  font-size: 0.76rem;
  font-weight: 700;
  color: #707991;
}

.app-note,
.app-story {
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid rgba(224, 33, 56, 0.9);
  border-radius: 19px;
  box-shadow: 0 12px 24px rgba(10, 26, 60, 0.08);
}

.app-note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.app-note-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-note strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.78rem;
  color: #17233d;
}

.app-note p {
  font-size: 0.7rem;
  line-height: 1.35;
  color: #6d758b;
}

.app-story {
  padding: 12px 14px 14px;
  margin-bottom: 14px;
}

.app-story-top {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.app-club-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy) 0%, #214898 100%);
  color: var(--white);
  font-size: 0.52rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-story-top strong {
  font-size: 0.76rem;
  color: #17233d;
}

.app-story-top span {
  font-size: 0.68rem;
  font-weight: 700;
  color: #8089a0;
}

.app-story-body {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
}

.app-thumb {
  min-height: 76px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.app-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, transparent 45%, rgba(9, 18, 42, 0.2) 100%);
}

.app-thumb-match {
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 191, 82, 0.65), transparent 18%),
    linear-gradient(180deg, #f19e56 0%, #7e95d6 42%, #1d5b24 43%, #329245 100%);
}

.app-thumb-tryout {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 243, 160, 0.7), transparent 16%),
    linear-gradient(120deg, #d7dd8a 0 26%, #537d2f 26% 34%, #a9bc69 34% 55%, #2b6d2e 55% 100%);
}

.app-story-copy h4 {
  font-size: 0.82rem;
  line-height: 1.28;
  color: #17233d;
  margin-bottom: 6px;
}

.app-story-copy p {
  font-size: 0.7rem;
  line-height: 1.4;
  color: #6f7890;
  margin-bottom: 8px;
}

.app-story-copy time {
  font-size: 0.65rem;
  font-weight: 700;
  color: #8c95aa;
}

.app-tabbar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 10px 8px 14px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(10, 26, 60, 0.08);
}

.app-tabbar button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #7c8397;
  font-size: 0.62rem;
  font-weight: 700;
  background: transparent;
  border: 0;
  padding: 0;
}

.app-tabbar button.is-active {
  color: var(--navy-700);
}

.app-tabbar button:nth-child(2),
.app-tabbar button:nth-child(3),
.app-tabbar button:nth-child(4),
.app-tabbar button:nth-child(5) {
  color: rgba(224, 33, 56, 0.88);
}

.app-tabbar button.is-active:nth-child(1) {
  color: var(--navy-700);
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  z-index: 2;
}

.float-card.card-1 { top: 6%; left: -8%; }
.float-card.card-2 { bottom: 10%; right: -10%; }
.float-card .icon-dot {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--royal-100);
  color: var(--royal-600);
  flex-shrink: 0;
}

/* ------------------------------- Purpose ---------------------------------- */

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.purpose-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.purpose-copy p:last-child { margin-bottom: 0; }

.purpose-list {
  display: grid;
  gap: 16px;
}

.purpose-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.purpose-item .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.purpose-item strong { display: block; color: var(--navy); margin-bottom: 4px; font-size: 0.98rem; }
.purpose-item span { color: var(--muted); font-size: 0.9rem; }

/* -------------------------------- Steps ----------------------------------- */

.steps {
  display: grid;
  gap: 22px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.step-num {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--royal) 0%, var(--navy) 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
}

.step h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--muted); }

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.step-tags span {
  background: var(--royal-100);
  color: var(--royal-600);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

/* ------------------------------- Feature grid ------------------------------ */

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.feature-card h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.9rem; }

/* -------------------------------- Next Up ---------------------------------- */

.nextup {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.nextup-visual {
  display: flex;
  justify-content: center;
}

.reel-mock {
  width: 240px;
  height: 480px;
  border-radius: 34px;
  background: var(--navy);
  padding: 10px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.reel-screen {
  width: 100%; height: 100%;
  border-radius: 26px;
  background: linear-gradient(200deg, var(--red) 0%, var(--navy) 55%, var(--navy-800) 100%);
  position: relative;
  overflow: hidden;
}

.reel-chip {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.reel-info {
  position: absolute;
  left: 16px; right: 16px; bottom: 20px;
  color: var(--white);
}

.reel-info strong { display: block; font-size: 0.95rem; }
.reel-info span { font-size: 0.75rem; opacity: 0.8; }

.nextup-copy p { color: var(--muted); font-size: 1.05rem; margin-bottom: 22px; }

.tier-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.tier-box {
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--border);
}

.tier-box.pro {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 100%);
  color: var(--white);
  border: none;
}

.tier-box h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; color: var(--royal-600); }
.tier-box.pro h4 { color: #ffd166; }

.tier-box ul { display: grid; gap: 10px; }
.tier-box li { font-size: 0.9rem; display: flex; gap: 8px; align-items: flex-start; color: var(--muted); }
.tier-box.pro li { color: rgba(255,255,255,0.9); }

.review-note {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--royal-100);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 0.88rem;
  color: var(--navy);
}

/* -------------------------------- Pricing ---------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.best {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-700) 60%, var(--royal-600) 130%);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.best-badge {
  position: absolute;
  top: -14px; right: 28px;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(224,33,56,0.35);
}

.price-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; }
.price-card.best h3 { color: var(--white); }

.price-card .price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  margin: 10px 0 4px;
}
.price-card.best .price { color: var(--white); }

.price-card .price-period { font-size: 0.95rem; font-weight: 600; color: var(--muted-light); }
.price-card.best .price-period { color: rgba(255,255,255,0.7); }

.price-card ul { display: grid; gap: 12px; margin: 26px 0 30px; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--muted); }
.price-card.best li { color: rgba(255,255,255,0.92); }
.price-card li svg { flex-shrink: 0; margin-top: 2px; color: var(--royal); }
.price-card.best li svg { color: #ffd166; }

.price-card .btn { margin-top: auto; width: 100%; }

.pricing-note {
  margin-top: 30px;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.pro-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--royal-100);
  color: var(--royal-600);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* ---------------------------- Account types -------------------------------- */

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

.account-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.account-card:hover { background: var(--royal-100); transform: translateY(-3px); }

.account-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.account-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.account-card p { font-size: 0.9rem; color: var(--muted); }

/* ------------------------------ Paired leagues ------------------------------ */

.league-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 40px 0 36px;
}

.league-slot {
  aspect-ratio: 1.4 / 1;
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-light);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  padding: 8px;
}

.league-cta {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}

.league-cta p { color: var(--muted); max-width: 560px; margin: 0 auto 22px; }

/* -------------------------------- Safety ------------------------------------ */

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 10px;
}

.safety-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}

.safety-card .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--royal-100);
  color: var(--royal-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.safety-card h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.safety-card p { font-size: 0.85rem; color: var(--muted); }

.safety-disclaimer {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--muted-light);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* ------------------------------- Coming soon -------------------------------- */

.coming-soon {
  text-align: center;
  position: relative;
  z-index: 1;
}

.coming-soon h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 16px; }
.coming-soon .lede { max-width: 620px; margin: 0 auto 34px; color: rgba(255,255,255,0.82); font-size: 1.05rem; }

.store-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.waitlist-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px;
  border-radius: 999px;
}

.waitlist-form input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.waitlist-form input::placeholder { color: rgba(255,255,255,0.55); }
.waitlist-form input:focus { outline: none; background: rgba(255,255,255,0.08); }

.waitlist-success {
  display: none;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-weight: 700;
}

.waitlist-success.show { display: block; }
.waitlist-form.hide { display: none; }

/* -------------------------------- Contact ------------------------------------ */

.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
}

.contact-info p { color: var(--muted); margin-bottom: 22px; }

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 26px;
}

.contact-reasons { display: grid; gap: 10px; }
.contact-reasons li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.9rem; color: var(--muted);
}
.contact-reasons svg { flex-shrink: 0; color: var(--royal); margin-top: 3px; }

.form-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 34px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
}

.field textarea { resize: vertical; min-height: 120px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--royal);
  box-shadow: 0 0 0 3px var(--royal-100);
}

.form-success {
  display: none;
  background: var(--royal-100);
  color: var(--navy);
  font-weight: 700;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ---------------------------------- FAQ --------------------------------------- */

.faq-list { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

.faq-q .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--royal-100);
  color: var(--royal-600);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-q .plus { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p { padding: 0 24px 20px; color: var(--muted); font-size: 0.94rem; }

/* --------------------------------- Footer -------------------------------------- */

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .brand { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); max-width: 280px; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-socials a:hover { background: var(--red); transform: translateY(-2px); }

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.82); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 28px;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

.footer-badges { display: flex; gap: 12px; }
.footer-badges .badge-store {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
}

/* ------------------------------ Reveal animation -------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------ Responsive -------------------------------- */

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .account-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .league-logos { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { margin-top: 20px; order: -1; }
  .float-card { display: none; }
  .phone-mock { width: min(100%, 320px); }
  .app-section-head,
  .app-story-copy,
  .app-note,
  .app-note p,
  .app-note strong,
  .app-story-top,
  .app-story-copy time,
  .app-tabbar button { text-align: left; }
  .purpose-grid { grid-template-columns: 1fr; }
  .nextup { grid-template-columns: 1fr; }
  .nextup-visual { order: -1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.best { transform: none; }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .nav-cta-desktop { display: none; }
  .nav-toggle { display: flex; }
  .navbar .brand img { height: 46px; }
  .section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .waitlist-form { flex-direction: column; border-radius: var(--radius-md); }
  .waitlist-form input { text-align: center; }
}

@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .account-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .league-logos { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: 1fr; }
  .step-num { margin-bottom: 6px; }
  .tier-compare { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 28px; }
  .hero .container { gap: 28px; }
  .hero-copy { text-align: left; }
  .hero-sub, .hero-note { max-width: none; }
  .hero-ctas { justify-content: flex-start; }
  .hero-badge { margin-bottom: 16px; }
  .phone-mock { width: 240px; height: 490px; }
  .phone-screen { border-radius: 28px; }
  .app-statusbar { padding: 14px 14px 10px; }
  .app-header { padding: 4px 14px 12px; }
  .app-wordmark { width: 92px; }
  .app-feed { padding: 12px 10px 0; }
  .app-note {
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 10px 11px;
    border-radius: 16px;
  }
  .app-note-icon {
    width: 30px;
    height: 30px;
  }
  .app-story {
    padding: 10px 11px 12px;
    border-radius: 18px;
  }
  .app-story-body {
    grid-template-columns: 64px 1fr;
    gap: 10px;
  }
  .app-thumb {
    min-height: 64px;
    border-radius: 14px;
  }
  .app-tabbar { padding: 9px 5px 12px; }
  .reel-mock { width: 210px; height: 420px; }
}

/* multi-page navigation */
.nav-links a.active{color:var(--red)}.nav-links a.active::after{right:0}.mobile-panel a.active{color:var(--red);font-weight:800}main:not(.page-home)>.section:first-child{padding-top:112px}.page-pro #pro,.page-organizations #organizations,.page-support #safety{min-height:calc(100vh - var(--nav-h))}
