:root {
  /* Brand anchors */
  --navy: #0b2640;
  --navy-dark: #071627;
  --red: #c43732;

  /* Refreshed surfaces (cool, modern) */
  --surface-0: #ffffff;
  --surface-1: #f6f8fb;
  --surface-2: #eef2f7;
  --ink: #0d1b2a;
  --ink-muted: #4a5b6e;

  /* Legacy aliases — kept for any rules still referencing them */
  --cream: var(--surface-1);
  --sand: var(--surface-2);
  --white: #ffffff;

  /* Accents */
  --accent-glow: #ff5b54;
  --accent-mint: #2dd4bf;
  --accent-amber: #f5b942;

  /* Elevation */
  --shadow: 0 18px 40px rgba(7, 22, 39, 0.16);
  --shadow-soft: 0 10px 24px rgba(7, 22, 39, 0.10);
  --shadow-sm: 0 4px 14px rgba(7, 22, 39, 0.08);
  --shadow-md: 0 18px 40px rgba(7, 22, 39, 0.14);
  --shadow-lg: 0 30px 80px rgba(7, 22, 39, 0.22);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.62);
  --glass-border: rgba(11, 38, 64, 0.08);
  --glass-blur: 14px;

  /* Radii */
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 180ms;
  --t-med: 320ms;

  --max-width: 1120px;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  background: radial-gradient(900px 600px at 12% 0%, rgba(196, 55, 50, 0.10), transparent 60%),
    radial-gradient(1100px 700px at 88% 8%, rgba(11, 38, 64, 0.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--surface-1) 60%, var(--surface-2) 100%);
  min-height: 100vh;
}

/* Scoreboard pixel grid — reads stadium dot-matrix while keeping data-product feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 38, 64, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 38, 64, 0.075) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px;
  background-position: 0 0, 0 0;
  opacity: 0.85;
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at center top, black 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 60% at center top, black 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
  pointer-events: none;
  z-index: -2;
}

/* Decorative sport-icon layer: faint baseball stitches + diamond + bat watermarks */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.12;
  background-repeat: no-repeat;
  background-position:
    calc(100% - 32px) calc(100% - 32px),  /* baseball bottom-right */
    16px calc(100% - 90vh),               /* diamond upper-left, off main copy */
    calc(100% - 80px) 50vh;               /* bat mid-right */
  background-size: 72px 72px, 110px 110px, 70px 70px;
  background-image:
    /* Baseball with curved stitches */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 96'><circle cx='48' cy='48' r='44' fill='none' stroke='%230b2640' stroke-width='1.2' opacity='0.35'/><path d='M 18 22 Q 48 36 78 22' fill='none' stroke='%23c43732' stroke-width='1.2' stroke-dasharray='3 3' opacity='0.55'/><path d='M 18 74 Q 48 60 78 74' fill='none' stroke='%23c43732' stroke-width='1.2' stroke-dasharray='3 3' opacity='0.55'/></svg>"),
    /* Diamond outline (home → 1st → 2nd → 3rd) with bases as small squares */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 140'><polygon points='70,16 124,70 70,124 16,70' fill='none' stroke='%230b2640' stroke-width='1.2' opacity='0.35'/><rect x='66' y='118' width='8' height='8' transform='rotate(45 70 122)' fill='%230b2640' opacity='0.35'/><rect x='118' y='66' width='8' height='8' transform='rotate(45 122 70)' fill='%230b2640' opacity='0.35'/><rect x='66' y='14' width='8' height='8' transform='rotate(45 70 18)' fill='%230b2640' opacity='0.35'/><rect x='14' y='66' width='8' height='8' transform='rotate(45 18 70)' fill='%230b2640' opacity='0.35'/><circle cx='70' cy='70' r='3' fill='%23c43732' opacity='0.5'/></svg>"),
    /* Bat at angle */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 90'><g transform='rotate(-30 45 45)'><rect x='14' y='42' width='62' height='6' rx='3' fill='%230b2640' opacity='0.30'/><circle cx='12' cy='45' r='5' fill='%230b2640' opacity='0.30'/></g></svg>");
}

/* Hero-only diamond corner accent */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -260px;
  width: 420px;
  height: 420px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320'><defs><radialGradient id='g' cx='50%25' cy='50%25' r='50%25'><stop offset='0%25' stop-color='%23c43732' stop-opacity='0.08'/><stop offset='70%25' stop-color='%230b2640' stop-opacity='0.02'/><stop offset='100%25' stop-color='%230b2640' stop-opacity='0'/></radialGradient></defs><circle cx='160' cy='160' r='150' fill='url(%23g)'/><polygon points='160,40 280,160 160,280 40,160' fill='none' stroke='%230b2640' stroke-width='1' opacity='0.22'/><polygon points='160,80 240,160 160,240 80,160' fill='none' stroke='%23c43732' stroke-width='1' opacity='0.18' stroke-dasharray='4 4'/><circle cx='160' cy='160' r='4' fill='%23c43732' opacity='0.30'/></svg>");
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
  display: none;
}

@media (min-width: 1100px) {
  .hero::after { display: block; }
}

.hero > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  body::after {
    opacity: 0.08;
    background-size: 56px 56px, 80px 80px, 52px 52px;
    background-position:
      calc(100% - 16px) calc(100% - 16px),
      8px calc(100% - 96vh),
      120% 50vh;
  }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
}

.container {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
}

/* ── Site Header ─────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(11, 38, 64, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
}

.logo img {
  height: 68px;
  width: auto;
  transition: opacity 0.2s ease;
}

.logo:hover img {
  opacity: 0.85;
}

/* ── Navigation ──────────────────────────────────────────── */

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  align-items: center;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.nav-active,
.nav-links a[aria-current="page"] {
  border-bottom-color: var(--red);
  color: var(--navy);
}

/* ── Hamburger toggle ────────────────────────────────────── */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  z-index: 60;
}

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

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* ── Hero ────────────────────────────────────────────────── */

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 4.4vw, 5rem);
  letter-spacing: 0.02em;
  margin: 14px 0 18px;
  line-height: 1.05;
  background: linear-gradient(180deg, var(--navy) 0%, #143a64 70%, var(--red) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--navy);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 600;
  font-size: 0.75rem;
  margin: 0;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

.subhead {
  font-size: 1.15rem;
  line-height: 1.65;
  margin: 0 0 28px;
  color: var(--ink-muted);
  max-width: 56ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Buttons ─────────────────────────────────────────────── */

.btn {
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-family: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out),
              opacity var(--t-fast) var(--ease-out);
  cursor: pointer;
  border: none;
  position: relative;
  isolation: isolate;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, #143a64 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(11, 38, 64, 0.28),
              inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary:hover:not(.btn-disabled) {
  background: linear-gradient(135deg, #143a64 0%, #1a4778 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(11, 38, 64, 0.34),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(11, 38, 64, 0.16);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover:not(.btn-disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 38, 64, 0.32);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-amber) 0%, #ffce5c 100%);
  color: var(--navy-dark);
  box-shadow: 0 10px 24px rgba(245, 185, 66, 0.35);
}

.btn-accent:hover:not(.btn-disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(245, 185, 66, 0.45);
}

.btn-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

/* ── Hero visual ─────────────────────────────────────────── */

.logo-stack {
  display: grid;
  gap: 18px;
  position: relative;
  isolation: isolate;
}

/* Decorative gradient ring behind hero ball */
.logo-stack::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: conic-gradient(from 220deg,
    rgba(196, 55, 50, 0.35),
    rgba(245, 185, 66, 0.30),
    rgba(45, 212, 191, 0.30),
    rgba(11, 38, 64, 0.30),
    rgba(196, 55, 50, 0.35));
  filter: blur(48px);
  opacity: 0.55;
  border-radius: 50%;
  z-index: -1;
  animation: ringDrift 18s linear infinite;
}

@keyframes ringDrift {
  to { transform: translateX(-50%) rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-stack::before { animation: none; }
}

.hero-ball {
  width: min(220px, 60vw);
  margin: 0 auto;
  filter: drop-shadow(0 22px 36px rgba(11, 38, 64, 0.28));
  transition: filter var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
}

.hero-ball:hover {
  filter: drop-shadow(0 30px 44px rgba(11, 38, 64, 0.36));
  transform: translateY(-3px) scale(1.02);
}

.logo-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}

.logo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.logo-card img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(11, 38, 64, 0.18);
}

.logo-meta p {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
}

.logo-meta span {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* Live-data chips above the device */
.hero-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 4px;
}

.hero-chips .chip {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-chips .chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-mint);
  box-shadow: 0 0 10px var(--accent-mint);
  animation: chipPulse 1.6s ease-in-out infinite;
}

.hero-chips .chip.red::before { background: var(--accent-glow); box-shadow: 0 0 10px var(--accent-glow); }
.hero-chips .chip.amber::before { background: var(--accent-amber); box-shadow: 0 0 10px var(--accent-amber); }

@keyframes chipPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-chips .chip::before { animation: none; }
}

/* ── Section heads ───────────────────────────────────────── */

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 3.2vw, 3.2rem);
  margin: 0 0 12px;
  color: var(--navy);
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  letter-spacing: 0.01em;
}

.section-head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--red), var(--accent-amber));
  border-radius: 4px;
}

.section-head p {
  color: var(--ink-muted);
  font-size: 1.05rem;
  margin: 8px auto 0;
  max-width: 60ch;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--red);
  margin: 0 0 10px;
  display: inline-block;
}

/* ── Apps section ────────────────────────────────────────── */

.apps {
  padding: 60px 0 80px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.app-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
  display: grid;
  gap: 18px;
  transition: transform var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out);
  position: relative;
  overflow: hidden;
}

/* Gradient top edge — visible at rest, intensifies on hover */
.app-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red) 50%, var(--accent-amber));
  opacity: 0.85;
  transition: opacity var(--t-med) var(--ease-out);
}

/* Soft inner glow on hover */
.app-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px 200px at 0% 0%, rgba(196, 55, 50, 0.10), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease-out);
}

.app-card:hover {
  transform: translateY(-6px) rotate(-0.25deg);
  box-shadow: var(--shadow-lg);
}

.app-card:hover::before { opacity: 1; }
.app-card:hover::after { opacity: 1; }

.app-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-card-header img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
}

.app-tag {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
}

.app-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.app-rating .stars {
  color: #f5a623;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.app-rating .rating-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(11, 38, 64, 0.7);
}

.app-price {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 10px;
  background: #2a7d3f;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

/* ── Screenshots carousel ────────────────────────────────── */

.screenshots {
  padding: 40px 0 80px;
}

.carousel {
  position: relative;
  margin-top: 24px;
}

.carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 46px 20px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  min-width: clamp(220px, 38vw, 360px);
  background: var(--surface-0);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  scroll-snap-align: center;
  display: grid;
  transition: transform var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out);
}

.carousel-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-item figcaption {
  padding: 12px 16px 16px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  width: 46px;
  height: 46px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: background var(--t-fast) var(--ease-out),
              color var(--t-fast) var(--ease-out),
              transform var(--t-fast) var(--ease-out);
}

.carousel-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-55%) scale(1.08);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

/* ── Social Proof ────────────────────────────────────────── */

.social-proof {
  padding: 40px 0 80px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.proof-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius-md);
  padding: 32px 24px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}

.proof-card::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 4.5rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--red);
  opacity: 0.2;
  pointer-events: none;
}

.proof-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.proof-card p {
  margin: 0;
  font-style: italic;
  line-height: 1.65;
  color: var(--navy-dark);
  padding-top: 8px;
}

.proof-card footer {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  opacity: 0.7;
}

/* ── Waitlist section ────────────────────────────────────── */

.waitlist {
  padding: 40px 0 80px;
}

.waitlist-inner {
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(196, 55, 50, 0.30), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(45, 212, 191, 0.18), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, #0f3357 60%, #142f56 100%);
  border-radius: var(--radius-lg);
  padding: 56px 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.waitlist-inner::after {
  content: "⚾";
  position: absolute;
  right: -20px;
  bottom: -50px;
  font-size: 16rem;
  opacity: 0.04;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.waitlist-copy h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 8px;
  color: var(--white);
  letter-spacing: 0.03em;
}

.waitlist-copy > p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.waitlist-benefits {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.waitlist-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.waitlist-benefits li::before {
  content: "\2713";
  color: #5fd47a;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.waitlist-form input[type="email"] {
  min-width: min(300px, 80vw);
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.waitlist-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.waitlist-form .btn-primary {
  background: var(--red);
  color: var(--white);
}

.waitlist-form .btn-primary:hover {
  background: #a82f2a;
}

.form-status {
  min-height: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  width: 100%;
}

/* ── Support grid ────────────────────────────────────────── */

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 24px;
}

.support-card {
  align-self: start;
}

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

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  font-weight: 600;
  color: var(--navy);
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(11, 38, 64, 0.2);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy-dark);
  transition: border-color 0.2s ease;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}

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

.support-list {
  margin: 0;
  padding-left: 20px;
  line-height: 1.7;
}

.support-list li + li {
  margin-top: 6px;
}

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

/* ── Features section ────────────────────────────────────── */

.features {
  padding: 40px 0 80px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.feature {
  background: var(--surface-0);
  color: var(--ink);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
  transition: transform var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 38, 64, 0.04), transparent 40%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease-out);
  pointer-events: none;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 38, 64, 0.16);
}

.feature:hover::before { opacity: 1; }

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 14px;
  font-size: 1.6rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #143a64 60%, var(--red) 130%);
  box-shadow: 0 10px 24px rgba(11, 38, 64, 0.30),
              inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.feature h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.feature p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* ── FAQ section ─────────────────────────────────────────── */

.faq {
  padding: 40px 0 80px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-0);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: box-shadow var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 38, 64, 0.16);
}

.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--navy);
  user-select: none;
  transition: background 0.15s ease;
}

.faq-item summary:hover {
  background: rgba(11, 38, 64, 0.03);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--red);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  overflow: hidden;
}

.faq-item p {
  padding: 0 22px 18px;
  margin: 0;
  line-height: 1.65;
  color: rgba(11, 38, 64, 0.8);
}

.faq-item p a {
  color: var(--red);
  text-decoration: underline;
}

/* ── CTA Band ────────────────────────────────────────────── */

.cta-band {
  padding: 60px 0 90px;
}

.cta-inner {
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(245, 185, 66, 0.18), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(196, 55, 50, 0.20), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, #0f3357 60%, #1a3c6e 100%);
  color: var(--white);
  padding: 56px 44px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-inner::after {
  content: "⚾";
  position: absolute;
  right: -30px;
  bottom: -60px;
  font-size: 20rem;
  opacity: 0.04;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.cta-inner > * {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 8px;
  letter-spacing: 0.03em;
}

.cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.cta-inner .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-inner .btn-secondary:hover:not(.btn-disabled) {
  background: rgba(255, 255, 255, 0.25);
}

/* Disabled buttons on dark backgrounds need stronger contrast */
.cta-inner .btn-disabled,
.waitlist-inner .btn-disabled {
  opacity: 0.75;
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
}

/* ── Footer ──────────────────────────────────────────────── */

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(11, 38, 64, 0.1);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  justify-content: space-between;
}

.footer-inner img {
  height: 48px;
  width: auto;
}

.footer-inner > div:first-child p {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: rgba(11, 38, 64, 0.55);
}

.footer-links {
  display: flex;
  gap: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
  border-bottom-color: var(--red);
  color: var(--red);
}

.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-social a {
  color: var(--navy);
  opacity: 0.6;
  transition: opacity 0.2s ease, color 0.2s ease;
  display: grid;
  place-items: center;
}

.footer-social a:hover {
  opacity: 1;
  color: var(--red);
}

/* ── Utility classes ─────────────────────────────────────── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

/* ── Inline status notes (privacy / draft sections) ──────── */

.status-note {
  display: block;
  margin: 0 0 18px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(245, 185, 66, 0.18), rgba(245, 185, 66, 0.08));
  border: 1px solid rgba(245, 185, 66, 0.45);
  border-left: 4px solid var(--accent-amber);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.55;
}

.status-note strong {
  color: var(--navy);
}

/* ── Scroll reveal ───────────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 900px) {
  .cta-inner,
  .waitlist-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: rgba(11, 38, 64, 0.08);
  }

  /* Header becomes solid navy when menu is open */
  .site-header.nav-open {
    background: #0b2640;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
  }

  /* Full-screen nav overlay — solid opaque background */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #0b2640;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    z-index: 55;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 96px 32px 48px;
    padding: calc(96px + env(safe-area-inset-top)) 32px calc(48px + env(safe-area-inset-bottom));
  }

  .nav-links.is-open {
    display: flex;
  }

  /* Links animate in while background stays solid */
  .nav-links.is-open a {
    animation: linkFadeIn 0.3s ease both;
  }
  .nav-links.is-open a:nth-child(1) { animation-delay: 0.04s; }
  .nav-links.is-open a:nth-child(2) { animation-delay: 0.08s; }
  .nav-links.is-open a:nth-child(3) { animation-delay: 0.12s; }
  .nav-links.is-open a:nth-child(4) { animation-delay: 0.16s; }
  .nav-links.is-open a:nth-child(5) { animation-delay: 0.20s; }
  .nav-links.is-open a:nth-child(6) { animation-delay: 0.24s; }

  @keyframes linkFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-links a {
    color: #ffffff;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    border-bottom: 2px solid transparent;
    padding: 14px 24px;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a.nav-active,
  .nav-links a[aria-current="page"] {
    border-bottom-color: var(--red);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }

  /* Hamburger bars turn white when menu is open */
  .nav-toggle[aria-expanded="true"] span {
    background: #ffffff;
  }

  /* X button sits above the overlay */
  .nav-toggle[aria-expanded="true"] {
    position: fixed;
    top: 16px;
    right: 20px;
    z-index: 60;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
  }

  .header-inner {
    padding: 10px 0;
  }

  .hero {
    padding: 60px 0 48px;
  }

  .cta-row,
  .app-actions,
  .waitlist-form {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  /* Reduce section padding on mobile */
  .apps,
  .screenshots,
  .social-proof,
  .features,
  .faq,
  .waitlist {
    padding: 36px 0 52px;
  }

  .cta-band {
    padding: 36px 0 60px;
  }

  /* Single-column grids on mobile */
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

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

  .section-head {
    margin-bottom: 32px;
  }

  /* Carousel */
  .carousel-btn {
    display: none;
  }

  .carousel-track {
    padding: 8px 0 20px;
  }

  .carousel-item {
    min-width: 75vw;
  }

  /* CTA / Waitlist compact on mobile */
  .waitlist-inner {
    padding: 32px 20px;
  }

  .cta-inner {
    padding: 32px 20px;
  }

  /* Footer stacks vertically on mobile */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-inner > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-social {
    gap: 20px;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Support form mobile tweaks */
  .support-actions {
    flex-direction: column;
  }

  /* Logo slightly smaller on mobile */
  .logo img {
    height: 52px;
  }

  /* FAQ touch-friendly tap targets */
  .faq-item summary {
    padding: 16px 18px;
    font-size: 0.95rem;
  }
}
