:root {
  --bg: #040806;
  --bg-deep: #010302;
  --surface: #0b1110;
  --surface-strong: #101918;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --text: #ffffff;
  --muted: #aab7b2;
  --muted-strong: #d9e2dd;
  --green: #76ff03;
  --green-deep: #39d400;
  --green-soft: rgba(118, 255, 3, 0.16);
  --blue: #39a8ff;
  --blue-soft: rgba(57, 168, 255, 0.18);
  --danger: #ff6b6b;
  --success: #86ff6a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(rgba(118, 255, 3, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 255, 3, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #050907 0%, #020403 48%, #050809 100%);
  background-size: 68px 68px, 68px 68px, 100% 100%;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.1) 52%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(ellipse at 82% 18%, rgba(118, 255, 3, 0.11) 0%, transparent 36%),
    radial-gradient(ellipse at 50% 62%, rgba(57, 168, 255, 0.08) 0%, transparent 44%);
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.12;
  mask-image: linear-gradient(90deg, transparent, black 28%, black 72%, transparent);
  pointer-events: none;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--green);
  color: #061006;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(4, 8, 6, 0.82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(var(--container), calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
}

.brand-icon {
  width: 100px;
  /* height: 40px; */
  object-fit: contain;
  /* border: 1px solid rgba(118, 255, 3, 0.3); */
  /* border-radius: 8px; */
  /* background: #010302; */
  /* box-shadow: 0 0 22px rgba(118, 255, 3, 0.18); */
}

.brand-name {
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1;
}

.brand-name strong {
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.nav-links a {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 42px 20px 8px;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(ellipse at 86% 32%, rgba(118, 255, 3, 0.14), transparent 36%),
    radial-gradient(ellipse at 60% 70%, rgba(57, 168, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(5, 12, 9, 0.96) 0%, rgba(2, 5, 4, 0.98) 100%);
}

.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 8, 6, 0.42) 0%, rgba(4, 8, 6, 0.08) 52%, rgba(4, 8, 6, 0.42) 100%),
    linear-gradient(rgba(118, 255, 3, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 255, 3, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 68px 68px, 68px 68px;
}

.hero-grid,
.section,
.site-footer {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 44px;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.micro-label {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow.blue,
.micro-label.blue {
  color: var(--blue);
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: 5.25rem;
  font-style: italic;
  font-weight: 950;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
  font-weight: 900;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
  font-weight: 850;
}

.hero-statement {
  max-width: 640px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 2rem;
  font-weight: 850;
  line-height: 1.12;
}

.hero-subcopy,
.section-heading p,
.section-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-subcopy {
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.button-primary {
  background: linear-gradient(180deg, var(--green) 0%, #54e100 100%);
  color: #061006;
  box-shadow: 0 12px 32px rgba(118, 255, 3, 0.2);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 620px;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
}

.phone-mockup {
  position: relative;
  width: 292px;
  min-height: 500px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 34px;
  background: linear-gradient(145deg, #0e1715 0%, #050806 62%, #111 100%);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(118, 255, 3, 0.18);
}

.phone-mockup::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(118, 255, 3, 0.22);
  border-radius: 26px;
  pointer-events: none;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  padding: 0 18px;
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 800;
}

.phone-pill {
  width: 74px;
  height: 20px;
  border-radius: 999px;
  background: #010302;
}

.app-screen {
  display: grid;
  gap: 10px;
  min-height: 432px;
  padding: 14px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(118, 255, 3, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 255, 3, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, #08100d 0%, #050807 100%);
  background-size: 34px 34px, 34px 34px, 100% 100%;
}

.app-header,
.coach-card,
.activity-card,
.feed-topline,
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.app-header strong,
.coach-card strong,
.panel-header strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
}

.avatar-dot {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #061006;
  font-size: 0.78rem;
  font-weight: 900;
}

.stats-strip,
.score-row,
.metric-grid,
.stat-callouts {
  display: grid;
  gap: 8px;
}

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

.stats-strip div,
.score-row div,
.metric-grid div,
.stat-callouts div {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.stats-strip span,
.score-row span,
.metric-grid span,
.stat-callouts span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.stats-strip strong,
.score-row strong,
.metric-grid strong,
.stat-callouts strong {
  display: block;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
}

.activity-card,
.coach-card {
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(7, 13, 11, 0.92);
}

.activity-card {
  justify-content: flex-start;
}

.activity-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.activity-icon,
.feed-icon,
.feature-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--green-soft);
}

.activity-icon::before,
.feed-icon::before,
.feature-mark::before {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.court-preview {
  position: relative;
  min-height: 126px;
  overflow: hidden;
  border: 2px solid rgba(118, 255, 3, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.32) calc(50% - 1px), rgba(255, 255, 255, 0.32) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(180deg, #173a2b 0%, #0d241c 100%);
}

.court-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.34);
}

.court-line.center {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
}

.court-line.net {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
}

.player-chip {
  position: absolute;
  min-width: 48px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(4, 8, 6, 0.82);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 850;
  text-align: center;
}

.player-chip.you {
  top: 22%;
  left: 18%;
}

.player-chip.partner {
  bottom: 20%;
  left: 18%;
}

.player-chip.opponent-a {
  top: 22%;
  right: 15%;
}

.player-chip.opponent-b {
  right: 14%;
  bottom: 20%;
}

.sparkline {
  display: flex;
  align-items: end;
  gap: 4px;
  width: 76px;
  height: 44px;
}

.sparkline span {
  flex: 1;
  min-width: 8px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--blue), var(--green));
}

.hero-meter {
  position: absolute;
  right: 12px;
  bottom: 20px;
  width: 156px;
  padding: 14px;
  border: 1px solid rgba(57, 168, 255, 0.36);
  border-radius: 8px;
  background: rgba(4, 8, 6, 0.84);
  box-shadow: var(--shadow);
}

.hero-meter span {
  display: block;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-meter strong {
  display: block;
  margin-top: 2px;
  font-size: 1.32rem;
  line-height: 1;
}

main > section {
  scroll-margin-top: 92px;
}

.section {
  padding: 82px 0;
}

.overview-section {
  padding-top: 28px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

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

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

.feature-card {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(12, 20, 17, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.feature-card-blue {
  border-color: rgba(57, 168, 255, 0.2);
}

.feature-card p,
.feed-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-mark {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
}

.feature-card-blue .feature-mark {
  background: var(--blue-soft);
}

.feature-card-blue .feature-mark::before {
  background: var(--blue);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
  gap: 46px;
  align-items: center;
}

.section-copy {
  max-width: 560px;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted-strong);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #061006;
  content: "";
}

.check-list li::after {
  position: absolute;
  top: 8px;
  left: 7px;
  width: 8px;
  height: 5px;
  transform: rotate(-45deg);
  border-bottom: 3px solid #061006;
  border-left: 3px solid #061006;
  content: "";
}

.blue-list li::before {
  background: var(--blue);
  color: #021523;
}

.match-panel,
.analytics-panel,
.activity-feed {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(6, 13, 10, 0.9);
  box-shadow: var(--shadow);
}

.match-panel,
.analytics-panel {
  padding: 18px;
}

.panel-header {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}

.panel-header span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.blue-header span {
  color: var(--blue);
}

.court-card {
  padding: 12px;
  border: 1px solid rgba(118, 255, 3, 0.18);
  border-radius: 8px;
  background: rgba(118, 255, 3, 0.06);
}

.court-grid {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 2px solid rgba(118, 255, 3, 0.45);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.35) calc(50% - 1px), rgba(255, 255, 255, 0.35) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(180deg, #193b2b 0%, #0d261d 100%);
}

.court-net,
.court-kitchen {
  position: absolute;
  background: rgba(255, 255, 255, 0.38);
}

.court-net {
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
}

.court-kitchen {
  top: 26%;
  bottom: 26%;
  width: 2px;
}

.court-kitchen.left {
  left: 35%;
}

.court-kitchen.right {
  right: 35%;
}

.slot {
  position: absolute;
  display: grid;
  place-items: center;
  width: 82px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(4, 8, 6, 0.86);
  color: var(--text);
  font-weight: 850;
}

.slot-one {
  top: 18%;
  left: 12%;
}

.slot-two {
  bottom: 18%;
  left: 12%;
}

.slot-three {
  top: 18%;
  right: 12%;
}

.slot-four {
  right: 12%;
  bottom: 18%;
}

.score-row {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 14px;
}

.feed-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - var(--container)) / 2));
  padding-left: max(20px, calc((100% - var(--container)) / 2));
  background: linear-gradient(90deg, rgba(118, 255, 3, 0.04), rgba(57, 168, 255, 0.04));
  border-block: 1px solid var(--line-soft);
}

.feed-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.activity-feed {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.feed-topline {
  justify-content: flex-start;
  color: var(--muted-strong);
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(118, 255, 3, 0.8);
}

.feed-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.feed-item h3 {
  margin-bottom: 3px;
  font-size: 1rem;
}

.feed-item time {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.feed-icon.weekly {
  background: var(--blue-soft);
}

.feed-icon.weekly::before {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--blue);
}

.feed-icon.follow::before {
  border-radius: 2px 10px 10px 10px;
}

.stat-callouts {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.shotsense-section {
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1fr);
}

.analytics-panel {
  border-color: rgba(57, 168, 255, 0.22);
}

.paddle-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(57, 168, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(rgba(57, 168, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 168, 255, 0.08) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 42%, rgba(57, 168, 255, 0.18), transparent 56%),
    #061017;
  background-size: 30px 30px, 30px 30px, 100% 100%, 100% 100%;
}

.paddle-face {
  position: relative;
  width: 126px;
  height: 178px;
  transform: rotate(-18deg) skewY(8deg);
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 58px 58px 40px 40px;
  background: linear-gradient(160deg, rgba(57, 168, 255, 0.18), rgba(118, 255, 3, 0.1));
  box-shadow: 0 0 46px rgba(57, 168, 255, 0.24);
}

.paddle-face::after {
  position: absolute;
  bottom: -72px;
  left: 50%;
  width: 30px;
  height: 76px;
  transform: translateX(-50%);
  border-radius: 0 0 12px 12px;
  background: #f5f7f2;
  content: "";
}

.hit-zone {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px rgba(118, 255, 3, 0.7);
}

.zone-one {
  top: 38px;
  left: 44px;
}

.zone-two {
  top: 82px;
  right: 28px;
}

.zone-three {
  bottom: 40px;
  left: 32px;
}

.motion-arc {
  position: absolute;
  width: 310px;
  height: 170px;
  transform: rotate(-14deg);
  border: 2px solid transparent;
  border-top-color: rgba(57, 168, 255, 0.75);
  border-radius: 50%;
}

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

.metric-grid div {
  border-color: rgba(57, 168, 255, 0.16);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}

.site-footer p {
  max-width: 540px;
  margin: 0;
  text-align: right;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-section,
  .feed-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shotsense-section .section-copy {
    order: 1;
  }

  .shotsense-section .analytics-panel {
    order: 2;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .nav-shell,
  .hero-grid,
  .section,
  .site-footer {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    position: static;
  }

  .nav-shell {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links {
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 2px;
  }

  .hero-section {
    padding: 42px 0 44px;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-statement {
    font-size: 1.55rem;
  }

  .hero-visual {
    min-height: 0;
    padding-top: 14px;
  }

  .phone-mockup {
    width: min(330px, 100%);
    min-height: 564px;
  }

  .hero-meter {
    right: 0;
    bottom: 28px;
  }

  .section {
    padding: 58px 0;
  }

  .feature-grid,
  .form-row,
  .score-row,
  .stat-callouts,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .feed-layout {
    gap: 28px;
  }

  .feed-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .feed-item {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .feed-item time {
    grid-column: 2;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 460px) {
  .brand-name {
    font-size: 1.06rem;
  }

  .nav-cta,
  .nav-links a {
    font-size: 0.86rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .hero-proof span {
    width: calc(50% - 4px);
    text-align: center;
  }

  .phone-mockup {
    min-height: 536px;
    padding: 10px;
  }

  .app-screen {
    min-height: 476px;
    padding: 14px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .court-grid {
    min-height: 244px;
  }

  .slot {
    width: 68px;
    min-height: 36px;
    font-size: 0.86rem;
  }

  .paddle-stage {
    min-height: 230px;
  }

  .hero-meter {
    position: static;
    width: 100%;
    margin-top: 12px;
  }
}

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