/*
  PadelTap (padeltap.app) Marketing Site Styling.
  High-end athletic visual aesthetics, dark OLED court design,
  real-code Apple Watch & iPhone 16 Pro device chassis lookalikes,
  interactive live scoring simulator, match momentum ribbons, and skill rings.
*/

:root {
  /* ── PadelTap Colors (Court & Ball Tokens) ────────────────────────────── */
  --ink-1000: #000000;
  --ink-950: #050605;
  --ink-900: #0b0d0b;
  --ink-800: #141714;
  --ink-700: #1e221d;
  --ink-600: #2c312a;
  --ink-500: #3e453b;
  --ink-400: #5a6354;

  --chalk-500: #ffffff;
  --chalk-400: #eef2eb;
  --chalk-300: #d5dad1;
  --chalk-200: #b3baad;
  --chalk-100: #8e968a;

  --ball-300: #e6ff8a;
  --ball-400: #d8fb55;
  --ball-500: #c6f833; /* The signature neon padel ball lime */
  --ball-600: #a9dc1c;
  --ball-glow: rgba(198, 248, 51, 0.35);
  --ball-dim: rgba(198, 248, 51, 0.12);

  --court-400: #4fd4ff;
  --court-500: #12b6e8;
  --court-600: #0a87ae;

  --flag-red: #ff3b30;
  --flag-amber: #ffb020;
  --flag-green: #2fd46a;

  /* Semantic mappings */
  --bg: var(--ink-1000);
  --surface: var(--ink-900);
  --surface-card: var(--ink-800);
  --surface-card-hover: var(--ink-700);
  --surface-inset: var(--ink-950);
  --surface-accent: var(--ball-500);
  --border: var(--ink-700);
  --border-light: rgba(255, 255, 255, 0.08);

  --text-primary: var(--chalk-500);
  --text-body: var(--chalk-300);
  --text-muted: var(--chalk-100);
  --text-lime: var(--ball-500);

  /* Typography */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --font-score: 'Archivo', 'Bebas Neue', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout & Radii */
  --container: 1180px;
  --container-narrow: 800px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-card: 0 4px 24px -2px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 28px rgba(198, 248, 51, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

:where(a, button, input, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--ball-500);
  outline-offset: 2px;
  border-radius: 6px;
}

.visually-hidden-focusable {
  position: absolute;
  left: -9999px;
  top: auto;
}

.visually-hidden-focusable:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  background: var(--ball-500);
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

::selection {
  background: var(--ball-500);
  color: #000;
}

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

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

@media (min-width: 640px) {
  .container,
  .container-narrow {
    padding: 0 36px;
  }
}

main {
  flex: 1;
}

.text-center {
  text-align: center;
}

.text-white { color: #fff; }
.text-lime { color: var(--ball-500); }
.text-chalk { color: var(--chalk-300); }
.text-muted { color: var(--chalk-100); }
.text-red { color: var(--flag-red); }
.font-mono { font-family: var(--font-mono); }

/* ── Header & Navigation ─────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 10, 9, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.brand:hover {
  opacity: 0.9;
}

.brand-img-logo {
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.brand-stack {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 11px;
  font-weight: 600;
  color: var(--ball-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 860px) {
  .header-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.btn-primary {
  background: var(--ball-500);
  color: #000000;
  box-shadow: 0 2px 14px rgba(198, 248, 51, 0.3);
}

.btn-primary:hover {
  background: var(--ball-400);
  box-shadow: 0 4px 20px rgba(198, 248, 51, 0.5);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--surface-card);
  color: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
  border-color: var(--ball-500);
  color: var(--ball-500);
  background: var(--ink-800);
  transform: translateY(-1px);
}

/* ── Live Pulse & Live Navigation Buttons ─────────────────────────────────── */

.live-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--flag-red);
  box-shadow: 0 0 8px var(--flag-red);
  animation: pulse 1.4s infinite;
  display: inline-block;
  flex-shrink: 0;
}

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

.btn-header-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s ease;
}

.btn-header-live:hover {
  background: rgba(255, 59, 48, 0.15);
  border-color: rgba(255, 59, 48, 0.45);
  color: #ffffff;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  background: var(--ball-500);
  color: #000000;
  text-decoration: none;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 8px rgba(198, 248, 51, 0.25);
}

.btn-header-cta:hover {
  background: var(--ball-400);
  box-shadow: 0 2px 14px rgba(198, 248, 51, 0.45);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .header-container {
    height: 56px;
  }
  .brand-name {
    font-size: 16px;
  }
  .header-action {
    gap: 8px;
  }
  .btn-header-live {
    padding: 4px 10px;
    font-size: 11.5px;
    gap: 5px;
  }
  .btn-header-cta {
    padding: 0 12px;
    font-size: 12px;
    height: 29px;
  }
}

/* ── Hero Actions & Sleek Live Bar ─────────────────────────────────────── */

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 20px;
  width: 100%;
  max-width: 480px;
}

.hero-cta-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-live-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-live-form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(18, 20, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 4px 5px 4px 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.hero-live-form:focus-within {
  border-color: var(--ball-500);
  box-shadow: 0 0 14px rgba(198, 248, 51, 0.2);
}

.hero-live-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-live-input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  width: 148px;
  min-width: 140px;
  flex-shrink: 0;
}

.hero-live-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-core);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: normal;
}

.btn-hero-live-go {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--ball-500);
  color: #000000;
  border: none;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.btn-hero-live-go:hover {
  background: var(--ball-400);
}

.btn-hero-demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11.5px;
  padding: 5px 11px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-hero-demo-pill strong {
  color: var(--ball-500);
  font-family: var(--font-mono);
}

.btn-hero-demo-pill:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.hero-trust-bar .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── Spectator Section Badges Grid ───────────────────────────────────────── */

.spectator-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 24px 0 28px;
}

.spec-mini-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.spec-mini-card:hover {
  border-color: rgba(198, 248, 51, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.spec-mini-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ball-500);
  background: rgba(198, 248, 51, 0.12);
  border-radius: 4px;
  padding: 2px 5px;
  line-height: 1;
  margin-top: 2px;
}

.spec-mini-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.spec-mini-text strong {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.spec-mini-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.35;
}

/* ── Spectator Section PIN Input Form ──────────────────────────────────── */

.spectator-pin-form {
  margin-top: 24px;
}

.spectator-pin-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.spectator-pin-field-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink-900);
  border: 1.5px solid var(--ink-700);
  border-radius: 12px;
  padding: 4px 14px;
  transition: all 0.18s;
}

.spectator-pin-field-wrap:focus-within {
  border-color: var(--ball-500);
  box-shadow: 0 0 18px rgba(198, 248, 51, 0.2);
  background: #000;
}

.spectator-pin-field {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 0;
  width: 210px;
}

.spectator-pin-field::placeholder {
  color: var(--chalk-100);
  font-family: var(--font-core);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: normal;
}

.btn-spectator-submit {
  padding: 12px 22px;
}

/* ── Final CTA PIN Group ────────────────────────────────────────────────── */

.final-cta-live-box {
  margin-top: 40px;
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.cta-live-tag-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--flag-red);
  text-transform: uppercase;
}
.cta-live-p {
  font-size: 13px;
  color: var(--chalk-300);
  max-width: 440px;
  margin: 0;
  line-height: 1.5;
}

.final-cta-pin-form {
  margin-top: 8px;
  width: 100%;
  max-width: 360px;
}

.final-pin-group {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ink-800);
  border: 1.5px solid var(--ink-600);
  border-radius: 14px;
  padding: 4px 6px 4px 14px;
  transition: all 0.18s;
}

.final-pin-group:focus-within {
  border-color: var(--ball-500);
  background: #000;
  box-shadow: 0 0 20px rgba(198, 248, 51, 0.2);
}

.final-pin-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.final-pin-input::placeholder {
  color: var(--chalk-100);
  font-family: var(--font-core);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: normal;
}

.btn-cta-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.hero {
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 10%, rgba(198, 248, 51, 0.07) 0%, transparent 60%);
}

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

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ball-500);
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ball-500);
  box-shadow: 0 0 8px var(--ball-500);
}

.hero-title {
  font-size: 42px;
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 54px;
  }
}

@media (min-width: 1040px) {
  .hero-title {
    font-size: 60px;
  }
}

.hero-title-sub {
  color: var(--ball-500);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95em;
  letter-spacing: 0.02em;
  display: block;
  margin-top: 4px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--chalk-300);
  max-width: 520px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #080a08;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  padding: 8px 18px;
  border-radius: 14px;
  min-height: 52px;
  box-sizing: border-box;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.store-badge:hover {
  border-color: var(--ball-500);
  box-shadow: 0 0 16px rgba(198, 248, 51, 0.3);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Before launch: the same badge, not a link, with the date in lime. */
.store-badge.is-coming-soon {
  cursor: default;
  border-color: rgba(198, 248, 51, 0.45);
}

.store-badge.is-coming-soon:hover {
  transform: none;
  border-color: rgba(198, 248, 51, 0.45);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.store-badge.is-coming-soon .store-badge-eyebrow {
  color: var(--ball-500);
}

.store-badge.watch-badge-link {
  border-color: rgba(198, 248, 51, 0.32);
}

.store-badge.watch-badge-link:hover {
  border-color: var(--ball-500);
  box-shadow: 0 0 18px rgba(198, 248, 51, 0.35);
}

.watch-badge-svg {
  color: var(--ball-500);
  transition: transform 0.2s ease;
}

.store-badge.watch-badge-link:hover .watch-badge-svg {
  transform: scale(1.08);
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-badge-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--chalk-200);
  line-height: 1.2;
}

.store-badge-name {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

@media (min-width: 640px) {
  .hero-trust-bar {
    grid-template-columns: repeat(2, auto);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--chalk-300);
}

/* ── Hero Dual Visual (Watch + Phone) ────────────────────────────────────── */

.hero-visual-dual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.hero-watch-wrap {
  position: relative;
  z-index: 10;
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

@media (min-width: 768px) {
  .hero-watch-wrap {
    transform: scale(0.98) translateX(-55px);
  }
}

@media (min-width: 960px) {
  .hero-watch-wrap {
    transform: scale(1.02) translateX(-72px);
  }
}

.watch-interactive-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid var(--ball-500);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ball-500);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 14px rgba(198, 248, 51, 0.3);
}

.hero-phone-wrap {
  display: none;
}

@media (min-width: 768px) {
  .hero-phone-wrap {
    display: block;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(4deg);
    z-index: 5;
    opacity: 0.95;
    transition: all 0.3s ease;
  }

  .hero-phone-wrap:hover {
    opacity: 1;
    transform: translateY(-52%) rotate(1deg);
  }
}

@media (min-width: 960px) {
  .hero-phone-wrap {
    right: -24px;
    transform: translateY(-50%) rotate(4deg);
  }

  .hero-phone-wrap:hover {
    opacity: 1;
    transform: translateY(-52%) rotate(1deg);
  }
}

/* ── Section Headings & Dividers ─────────────────────────────────────────── */

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

.section-divider {
  border-top: 1px solid var(--border);
}

.section-court-bg {
  position: relative;
  background-color: var(--ink-950);
  background-image:
    linear-gradient(rgba(30, 34, 29, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 34, 29, 0.4) 1px, transparent 1px);
  background-size: 40px 40px;
}

.bg-darker {
  background: #030403;
}

.bg-alt {
  background: var(--ink-950);
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ball-500);
  margin-bottom: 8px;
}

.section-heading {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}

@media (min-width: 640px) {
  .section-heading {
    font-size: 40px;
  }
}

.section-heading.centered {
  text-align: center;
}

.section-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--chalk-300);
  max-width: 620px;
  margin: 0 0 32px;
}

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

/* ══════════════════════════════════════════════════════════════════════════ */
/* APPLE WATCH HARDWARE CHASSIS COMPONENT                                     */
/* ══════════════════════════════════════════════════════════════════════════ */

.device-watch {
  width: 250px;
  position: relative;
  user-select: none;
}

.device-watch.watch-sm {
  width: 210px;
}

.device-watch.has-glow .watch-chassis {
  box-shadow:
    0 20px 50px -10px rgba(0, 0, 0, 0.9),
    0 0 32px rgba(198, 248, 51, 0.15);
}

/* Straps */
.watch-strap-top {
  width: 120px;
  height: 24px;
  background: #111311;
  border: 1px solid #1E221D;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  margin: 0 auto;
}

.watch-strap-bottom {
  width: 120px;
  height: 24px;
  background: #111311;
  border: 1px solid #1E221D;
  border-top: none;
  border-radius: 0 0 8px 8px;
  margin: 0 auto;
}

/* Titanium Case Chassis */
.watch-chassis {
  position: relative;
  background: linear-gradient(145deg, #242823, #151814, #2A3028);
  border-radius: 46px;
  padding: 10px;
  box-shadow:
    0 24px 60px -8px rgba(0, 0, 0, 0.9),
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    inset 0 -1px 2px rgba(0, 0, 0, 0.8);
  border: 1px solid #323830;
}

/* Hardware Digital Crown on Right */
.watch-crown {
  position: absolute;
  right: -9px;
  top: 50px;
  width: 9px;
  height: 44px;
  background: linear-gradient(to right, #1A1D19, #2D332B, #1A1D19);
  border-radius: 0 4px 4px 0;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.crown-accent-ring {
  width: 2px;
  height: 30px;
  background: var(--ball-500);
  border-radius: 1px;
}

/* Side button */
.watch-side-button {
  position: absolute;
  right: -5px;
  top: 110px;
  width: 5px;
  height: 32px;
  background: #242922;
  border-radius: 0 3px 3px 0;
}

/* Inner OLED Screen */
.watch-screen {
  background: #000000;
  border-radius: 36px;
  height: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.watch-sm .watch-screen {
  height: 236px;
  border-radius: 30px;
}

/* Screen top status line */
.watch-status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 4px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--chalk-100);
}

.watch-clock {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

.watch-clock-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--flag-red);
  box-shadow: 0 0 6px var(--flag-red);
}

.watch-set-results {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.watch-set-prev {
  color: var(--chalk-100);
}

.watch-set-current {
  color: #ffffff;
  background: var(--ink-800);
  padding: 1px 5px;
  border-radius: 4px;
  border: 1px solid var(--ink-700);
}

/* 50/50 Split Score Tap Zones */
.watch-score-zones {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  position: relative;
}

.watch-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 6px;
  transition: background 0.12s ease;
  position: relative;
}

.watch-zone:active,
.watch-zone.zone-flash {
  background: rgba(198, 248, 51, 0.16) !important;
}

.watch-zone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.watch-zone-sub {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk-100);
}

.watch-zone-us .watch-zone-sub {
  color: var(--ball-500);
}

.watch-score-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin: 6px 0;
}

.watch-zone-tap {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--chalk-100);
  opacity: 0.8;
}

/* Center Net Divider & Ball */
.watch-net-divider {
  background: var(--ink-700);
  position: relative;
  height: 100%;
}

.watch-serve-ball {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--ball-500);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--ball-500);
  top: 14px;
  left: -12px;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Watch bottom bar */
.watch-bar-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 12px 8px;
  border-top: 1px solid var(--ink-800);
  background: #050605;
}

.watch-tool-btn {
  background: none;
  border: none;
  color: var(--chalk-100);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.15s;
}

.watch-tool-btn:hover {
  color: var(--ball-500);
}

.watch-haptic-pill {
  font-size: 8px;
  font-weight: 800;
  color: var(--chalk-100);
  opacity: 0.6;
  letter-spacing: 0.06em;
}

/* Watch Won Screen Variant */
.watch-won-screen {
  padding: 16px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.won-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.won-trophy {
  font-size: 20px;
}

.won-title {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--ball-500);
  margin: 0;
  letter-spacing: 0.04em;
}

.won-sets {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
}

.won-vitals-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--ink-900);
  padding: 8px 4px;
  border-radius: 10px;
  border: 1px solid var(--ink-700);
}

.won-vital-val {
  font-size: 13px;
  font-weight: 800;
  display: block;
}

.won-vital-lbl {
  font-size: 8px;
  color: var(--chalk-100);
  text-transform: uppercase;
}

.won-action-pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ball-500);
  background: rgba(198, 248, 51, 0.12);
  padding: 4px 8px;
  border-radius: 999px;
  align-self: center;
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* IPHONE 16 PRO HARDWARE FRAME COMPONENT                                     */
/* ══════════════════════════════════════════════════════════════════════════ */

.device-phone {
  width: 320px;
  height: 630px;
  margin: 0 auto;
  position: relative;
  user-select: none;
  flex-shrink: 0;
}

.device-phone.is-large {
  width: 320px;
  height: 630px;
}

.device-inner {
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 46px;
  border: 4px solid #1E221D;
  box-shadow:
    0 24px 60px -10px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 30px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.ios-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 6px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

.ios-dynamic-island {
  width: 84px;
  height: 22px;
  background: #000000;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
}

.island-camera {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #090B0E;
  border: 1px solid #1E221D;
}

.ios-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ios-battery {
  width: 20px;
  height: 10px;
  border: 1px solid #ffffff;
  border-radius: 3px;
  padding: 1px;
  display: flex;
}

.ios-battery-fill {
  width: 70%;
  height: 100%;
  background: #ffffff;
  border-radius: 1.5px;
}

.ios-tab-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 12px;
  background: #0A0D0A;
  border-top: 1px solid var(--ink-700);
  z-index: 10;
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 9px;
  font-weight: 700;
  color: var(--chalk-100);
}

.tab-item.is-active {
  color: var(--ball-500);
}

.ios-home-indicator {
  width: 110px;
  height: 4px;
  background: #ffffff;
  border-radius: 999px;
  margin: 4px auto 8px;
  opacity: 0.6;
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* IPHONE SCREENS: MATCH CANVAS, STATS & SHARING                              */
/* ══════════════════════════════════════════════════════════════════════════ */

.app-screen {
  padding: 12px 14px;
  background: #000000;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-sizing: border-box;
}

/* ── Screen 1: Match Canvas (Momentum Ribbon & Head to Head) ─────────────── */

.canvas-header-card {
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.canvas-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--chalk-100);
}

.canvas-result-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.canvas-badge-won {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ball-500);
  line-height: 1;
  letter-spacing: 0.04em;
}

.canvas-score-sets {
  display: flex;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 24px;
}

.set-score-won { color: #ffffff; }
.set-score-lost { color: var(--chalk-100); }

.canvas-players-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--chalk-300);
  padding-top: 6px;
  border-top: 1px solid var(--ink-800);
}

.pip-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.pip-dot.lime { background: var(--ball-500); box-shadow: 0 0 6px var(--ball-500); }
.pip-dot.grey { background: var(--chalk-100); }
.canvas-vs { color: var(--chalk-100); font-size: 9px; }

/* Segmented Nav */
.canvas-segmented-nav {
  display: flex;
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: 8px;
  padding: 2px;
}

.seg-item {
  flex: 1;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 6px;
  color: var(--chalk-100);
}

.seg-item.is-active {
  background: var(--ink-800);
  color: #fff;
  border: 1px solid var(--border-light);
}

/* Momentum Flow Ribbon */
.canvas-ribbon-card {
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: 14px;
  padding: 10px 12px;
}

.ribbon-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--chalk-100);
  margin-bottom: 8px;
}

.dot-lime { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--ball-500); }
.dot-grey { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--chalk-100); }

.ribbon-chart-wrap {
  position: relative;
}

.ribbon-svg {
  width: 100%;
  height: 78px;
  display: block;
}

.ribbon-set-markers {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 700;
  color: var(--chalk-100);
  margin-top: 4px;
}

/* Head to Head Duel Bars */
.canvas-section-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk-100);
  margin-top: 4px;
}

.duel-bars-card {
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.duel-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.duel-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
}

.duel-label {
  font-size: 8px;
  letter-spacing: 0.1em;
  color: var(--chalk-100);
}

.duel-bar-track {
  height: 6px;
  background: var(--ink-800);
  border-radius: 999px;
  display: flex;
  overflow: hidden;
}

.duel-bar-us {
  background: var(--ball-500);
  height: 100%;
}

.duel-bar-them {
  background: var(--chalk-100);
  height: 100%;
}

/* Vitals Card */
.vitals-card {
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: 14px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.vital-block {
  background: var(--ink-800);
  border: 1px solid var(--ink-700);
  border-radius: 10px;
  padding: 8px;
}

.vital-icon {
  font-size: 12px;
  margin-bottom: 2px;
}

.vital-icon.heart-red { color: var(--flag-red); }
.vital-icon.energy-orange { color: var(--flag-amber); }

.vital-num {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  display: block;
}

.vital-name {
  font-size: 9px;
  color: var(--chalk-100);
  text-transform: uppercase;
}

.vital-peak {
  font-size: 8px;
  color: var(--ball-500);
  font-weight: 700;
}

/* ── Screen 2: Home Stats & Skill Rings ──────────────────────────────────── */

.home-live-pill {
  background: rgba(198, 248, 51, 0.12);
  border: 1px solid var(--ball-500);
  border-radius: 999px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
}

.live-dot-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--flag-red);
  box-shadow: 0 0 6px var(--flag-red);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.home-hero-card {
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.win-ring-box {
  position: relative;
  width: 76px;
  height: 76px;
  flex-shrink: 0;
}

.win-gauge-svg {
  width: 100%;
  height: 100%;
}

.win-ring-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.win-percent {
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
  line-height: 1;
}

.win-label {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--chalk-100);
}

.record-meta-box {
  display: flex;
  flex-direction: column;
}

.record-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--chalk-100);
}

.record-numbers {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 2px 0 4px;
}

.record-won { color: var(--ball-500); }
.record-sep { color: var(--chalk-100); margin: 0 2px; }
.record-lost { color: var(--flag-red); }

.streak-chip {
  font-size: 9px;
  font-weight: 700;
  color: var(--ball-500);
  background: rgba(198, 248, 51, 0.12);
  padding: 3px 8px;
  border-radius: 999px;
  align-self: flex-start;
}

/* 4 Skill Rings Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.skill-card {
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.skill-gauge-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}

.skill-gauge {
  width: 100%;
  height: 100%;
}

.skill-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
}

.skill-title {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--chalk-100);
  text-transform: uppercase;
}

.skill-sub {
  font-size: 6px;
  color: var(--chalk-100);
  opacity: 0.7;
}

/* Mini matches list */
.mini-matches-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mini-match-item {
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.match-badge-won {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--ball-500);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.match-meta {
  display: flex;
  flex-direction: column;
  margin-left: 8px;
  flex: 1;
}

.match-teams {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}

.match-sub {
  font-size: 8px;
  color: var(--chalk-100);
}

.match-score {
  font-size: 11px;
  font-weight: 800;
}

/* ── Screen 3: Live Share & Spectator QR ─────────────────────────────────── */

.share-nav-header {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  color: var(--chalk-100);
}

.share-hero-box {
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}

.share-hero-tag {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ball-500);
  text-transform: uppercase;
}

.share-match-names {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin: 4px 0 2px;
}

.share-live-score {
  font-size: 12px;
  font-weight: 800;
  color: var(--ball-500);
}

.share-pin-container {
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}

.share-pin-eyebrow {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--ball-500);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.share-pin-digits {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

.share-pin-box {
  width: 38px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-800);
  border: 1.5px solid var(--ball-500);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(198, 248, 51, 0.15);
}

.share-pin-hint {
  font-size: 8.5px;
  color: var(--chalk-300);
  margin: 0;
  line-height: 1.3;
}
.share-pin-hint strong {
  color: var(--ball-500);
}

.share-qr-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-code-svg-wrap {
  width: 130px;
  height: 130px;
}

.qr-svg {
  width: 100%;
  height: 100%;
}

.qr-scan-hint {
  font-size: 10px;
  font-weight: 700;
  color: #000000;
  margin-top: 6px;
}

.share-link-box {
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
}

.share-link-url {
  font-family: var(--font-mono);
  color: var(--chalk-300);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 180px;
}

.btn-copy-link {
  background: var(--ball-500);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.share-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 9px;
  color: var(--chalk-100);
}

.s-benefit {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* WATCH FEATURES SECTION ("BUILT FOR THE COURT")                            */
/* ══════════════════════════════════════════════════════════════════════════ */

.watch-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .watch-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .watch-features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

.watch-feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.watch-feature-card:hover {
  border-color: var(--ball-500);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(198, 248, 51, 0.12);
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  color: var(--ball-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--chalk-300);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* INTERACTIVE SHOWCASE CAROUSEL SECTION                                      */
/* ══════════════════════════════════════════════════════════════════════════ */

.showcase-section {
  position: relative;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}

@media (min-width: 960px) {
  .showcase-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  outline: none;
}

.showcase-card:hover {
  background: var(--surface-card);
}

.showcase-card.is-active {
  background: var(--surface-card);
  border-color: var(--ball-500);
  box-shadow: 0 0 24px rgba(198, 248, 51, 0.18);
}

.showcase-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ball-500);
  margin-bottom: 6px;
}

.showcase-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px;
}

.showcase-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--chalk-300);
  margin: 0;
}

.showcase-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.showcase-phone-wrapper {
  position: relative;
  width: 320px;
  height: 630px;
  margin: 0 auto;
}

.showcase-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.showcase-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  position: absolute;
}

.showcase-dots {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.dot-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink-700);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.dot-btn.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--ball-500);
  box-shadow: 0 0 10px var(--ball-500);
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* HEALTHKIT & PHYSICAL PERFORMANCE SECTION                                   */
/* ══════════════════════════════════════════════════════════════════════════ */

.vitals-banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 960px) {
  .vitals-banner-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.vitals-metrics-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

@media (min-width: 640px) {
  .vitals-metrics-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.v-metric {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}

.v-val {
  font-family: var(--font-display);
  font-size: 28px;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.v-val small {
  font-size: 12px;
  font-family: var(--font-sans);
  color: var(--chalk-100);
}

.v-lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--chalk-100);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vitals-privacy-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--chalk-100);
}

.vitals-card-glow {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.9);
}

.vitals-card-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--chalk-100);
}

.hr-graph-wrap {
  width: 100%;
}

.hr-sparkline {
  width: 100%;
  height: 80px;
}

.hr-zones-label {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  color: var(--chalk-100);
  margin-top: 6px;
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* THE PROBLEM ON COURT (01, 02, 03)                                         */
/* ══════════════════════════════════════════════════════════════════════════ */

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
}

.problem-card.highlight {
  border-color: var(--ball-500);
  box-shadow: 0 0 28px rgba(198, 248, 51, 0.18);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(198, 248, 51, 0.04) 100%);
}

.problem-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--ball-500);
  line-height: 1;
  margin-bottom: 16px;
}

.problem-title {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}

.problem-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--chalk-300);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* SPECTATOR LIVE BROADCAST SECTION                                           */
/* ══════════════════════════════════════════════════════════════════════════ */

.spectator-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 960px) {
  .spectator-split-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.spectator-features-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spectator-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--chalk-300);
}

.spectator-features-list svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.spectator-features-list strong {
  color: #ffffff;
}

.spectator-phone {
  display: flex;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* FAQ ACCORDION SECTION                                                      */
/* ══════════════════════════════════════════════════════════════════════════ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--border-light);
  background: var(--surface-card);
}

.faq-summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  list-style: none;
}

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

.faq-icon {
  font-size: 20px;
  color: var(--ball-500);
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.faq-answer {
  padding: 0 24px 24px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--chalk-300);
}

.faq-answer p {
  margin: 0 0 10px;
}

.faq-answer ul {
  margin: 0;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 6px;
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* FINAL CTA & FOOTER                                                         */
/* ══════════════════════════════════════════════════════════════════════════ */

.final-cta-section {
  background: radial-gradient(circle at 50% 100%, rgba(198, 248, 51, 0.09) 0%, transparent 60%);
}

.final-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-logo-bounce {
  margin-bottom: 24px;
}

.cta-app-icon {
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(198, 248, 51, 0.45);
  border: 2px solid var(--border);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--chalk-300);
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Site Footer */
.site-footer {
  background: var(--ink-950);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (min-width: 860px) {
  .footer-top {
    grid-template-columns: 1.2fr 1.8fr;
  }
}

.footer-blurb {
  font-size: 14px;
  line-height: 1.6;
  color: var(--chalk-100);
  max-width: 420px;
  margin: 16px 0 20px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  color: var(--chalk-300);
}

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

@media (min-width: 640px) {
  .footer-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col h2 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--chalk-100);
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--ball-500);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--chalk-100);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copy {
  margin: 0;
}

.footer-domain-tag {
  display: flex;
  align-items: center;
  gap: 6px;
}

.domain-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ball-500);
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* LEGAL ARTICLE STYLES (Privacy, Terms, Support, Data Deletion)              */
/* ══════════════════════════════════════════════════════════════════════════ */

.legal-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  background: var(--ink-950);
}

.legal-header .container-narrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-back {
  font-size: 13px;
  font-weight: 700;
  color: var(--ball-500);
}

.legal-article {
  padding: 48px 24px 80px;
}

.legal-article h1 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.legal-updated {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chalk-100);
  margin: 0 0 36px;
}

.legal-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--chalk-300);
}

.legal-body h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 36px 0 12px;
}

.legal-body h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 24px 0 8px;
}

.legal-body p {
  margin: 0 0 14px;
}

.legal-body ul,
.legal-body ol {
  margin: 0 0 16px;
  padding-left: 24px;
}

.legal-body li {
  margin-bottom: 6px;
}

.legal-body strong {
  color: #ffffff;
}

.legal-body a {
  color: var(--ball-500);
  text-decoration: underline;
}

.legal-body code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--ink-800);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ball-500);
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.legal-body th,
.legal-body td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.legal-body th {
  background: var(--ink-800);
  color: #ffffff;
  font-weight: 800;
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* ATHLETIC TICKER & CLUB TRUST STRIP (Strava / Cal AI Architecture)         */
/* ══════════════════════════════════════════════════════════════════════════ */

/* Nav Tag Badge for Pricing */
.nav-link-pricing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-tag-badge {
  background: rgba(198, 248, 51, 0.15);
  border: 1px solid rgba(198, 248, 51, 0.4);
  color: var(--ball-500);
  font-size: 9.5px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Athletic Ticker Strip */
.athletic-ticker-strip {
  background: #060806;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.ticker-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 28px;
}

.ticker-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ticker-pulse-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ball-500);
  box-shadow: 0 0 8px var(--ball-500);
  animation: pulseDot 2s ease infinite;
}

.ticker-number {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.ticker-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--chalk-200);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ticker-divider {
  color: var(--ink-700);
  font-weight: 700;
  user-select: none;
}

@media (max-width: 768px) {
  .ticker-divider {
    display: none;
  }
  .ticker-inner {
    gap: 12px 18px;
    justify-content: center;
  }
}

/* Trust Clubs Strip */
.trust-clubs-bar {
  padding: 32px 0;
  background: var(--ink-950);
  border-bottom: 1px solid var(--border);
}

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

.trust-clubs-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chalk-100);
}

.trust-clubs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.club-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: 12px;
  padding: 8px 16px;
  transition: all 0.2s ease;
}

.club-pill:hover {
  border-color: rgba(198, 248, 51, 0.4);
  background: var(--ink-800);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.club-flag {
  font-size: 20px;
  line-height: 1;
}

.club-meta {
  display: flex;
  flex-direction: column;
}

.club-city {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.club-sub {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--chalk-100);
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* ATHLETE & COACH TESTIMONIALS (Cal AI / Strava Social Proof)                */
/* ══════════════════════════════════════════════════════════════════════════ */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 860px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.review-card:hover {
  border-color: rgba(198, 248, 51, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55), 0 0 24px rgba(198, 248, 51, 0.08);
}

.review-card.is-featured {
  border-color: rgba(198, 248, 51, 0.35);
  background: linear-gradient(180deg, rgba(198, 248, 51, 0.05) 0%, rgba(16, 20, 16, 0.95) 100%);
}

.review-featured-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--ball-500);
  color: #000000;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

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

.review-stars {
  color: var(--ball-500);
  font-size: 16px;
  letter-spacing: 2px;
}

.review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--chalk-200);
}

.review-verified-badge svg {
  color: var(--ball-500);
}

.review-quote {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--chalk-300);
  margin-bottom: 24px;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #ffffff;
  flex-shrink: 0;
}

.author-c1 { background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.author-c2 { background: linear-gradient(135deg, #10B981, #047857); }
.author-c3 { background: linear-gradient(135deg, #F59E0B, #B45309); }

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.author-detail {
  font-size: 11.5px;
  color: var(--chalk-100);
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* PRICING & PRO MEMBERSHIP SECTION (Strava / Cal AI Architecture)            */
/* ══════════════════════════════════════════════════════════════════════════ */

.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 32px 0 20px;
}

.pricing-toggle {
  display: inline-flex;
  background: #000000;
  border: 1.5px solid var(--ink-700);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.toggle-btn {
  background: transparent;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  color: var(--chalk-300);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.toggle-btn.is-active {
  background: var(--ink-800);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.toggle-btn:hover:not(.is-active) {
  color: #ffffff;
}

.save-badge {
  background: var(--ball-500);
  color: #000000;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.web-fee-notice {
  max-width: 640px;
  margin: 0 auto 48px;
  background: rgba(198, 248, 51, 0.06);
  border: 1px solid rgba(198, 248, 51, 0.25);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 12.5px;
  color: var(--chalk-300);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.web-fee-notice svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.web-fee-notice strong {
  color: #ffffff;
}

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

@media (min-width: 960px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr 1.1fr 1fr;
  }
}

.pricing-card {
  background: var(--surface-card);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.pricing-card.is-popular {
  border-color: var(--ball-500);
  background: linear-gradient(180deg, rgba(198, 248, 51, 0.08) 0%, rgba(13, 17, 13, 0.98) 100%);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.7), 0 0 32px rgba(198, 248, 51, 0.12);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ball-500);
  color: #000000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(198, 248, 51, 0.35);
}

.pricing-card-header {
  margin-bottom: 24px;
}

.plan-type {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--chalk-100);
  text-transform: uppercase;
}

.plan-name {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 6px 0 8px;
}

.plan-desc {
  font-size: 13.5px;
  color: var(--chalk-200);
  line-height: 1.5;
}

.plan-price-block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-currency {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}

.plan-amount {
  font-family: var(--font-mono);
  font-size: 46px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.plan-period {
  font-size: 13.5px;
  color: var(--chalk-200);
  font-weight: 600;
}

.plan-custom {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--chalk-300);
}

.plan-features li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.plan-features li.feature-highlight {
  color: #ffffff;
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 1px dashed var(--border);
}

.plan-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
}

.btn-glow {
  box-shadow: 0 0 20px rgba(198, 248, 51, 0.35);
}

.btn-glow:hover {
  box-shadow: 0 0 28px rgba(198, 248, 51, 0.55);
}

.plan-guarantee-note {
  font-size: 11.5px;
  color: var(--chalk-100);
  text-align: center;
  font-weight: 600;
}

/* Feature Comparison Matrix */
.comparison-matrix-wrap {
  margin-top: 80px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
}

.matrix-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
}

.matrix-table-container {
  overflow-x: auto;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.matrix-table th,
.matrix-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.matrix-table th {
  background: var(--ink-900);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--chalk-200);
  font-weight: 800;
}

.matrix-table th.col-pro {
  color: var(--ball-500);
}

.matrix-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.matrix-table td strong {
  color: #ffffff;
}

.check-lime {
  color: var(--ball-500);
  font-weight: 900;
}
