:root {
  color-scheme: light;
  --ink: #15201c;
  --muted: #5d6963;
  --line: #dfe7e0;
  --paper: #fbfdf9;
  --surface: #ffffff;
  --court: #0070b0;
  --mint: #13a673;
  --sun: #f6b84b;
  --clay: #d95e42;
  --shadow: 0 18px 60px rgba(10, 22, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(251, 253, 249, 0.88);
  border-bottom: 1px solid rgba(21, 32, 28, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 26px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(760px, calc(100svh - 92px));
  padding: clamp(54px, 10vw, 110px) clamp(18px, 5vw, 64px);
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
  background-image:
    linear-gradient(90deg, rgba(7, 18, 15, 0.82), rgba(7, 18, 15, 0.5) 48%, rgba(7, 18, 15, 0.08)),
    url("/assets/padel-court-hero.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 40%;
  background: linear-gradient(180deg, rgba(7, 18, 15, 0), rgba(7, 18, 15, 0.36));
}

.hero-copy {
  min-width: 0;
  width: 100%;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-heading .eyebrow {
  color: var(--court);
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(4.2rem, 12vw, 8.4rem);
  line-height: 0.84;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #0d1f18;
  background: var(--sun);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.score-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(92px, 150px)) minmax(220px, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #ffffff;
  background: #17231f;
}

.score-strip div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: baseline;
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.score-strip span {
  font-weight: 750;
}

.score-strip strong,
.score-strip small {
  font-variant-numeric: tabular-nums;
}

.score-strip strong {
  color: var(--sun);
  font-size: 1.8rem;
  line-height: 1;
}

.score-strip small {
  font-size: 1.25rem;
  font-weight: 800;
}

.score-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.section,
.product-view,
.privacy-callout {
  padding: clamp(64px, 10vw, 116px) clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

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

.feature {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(21, 32, 28, 0.04);
}

.feature p,
.product-copy p,
.privacy-callout p,
.policy p,
.policy li {
  color: var(--muted);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--court);
  font-size: 0.75rem;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.feature:nth-child(2n) .feature-icon {
  background: var(--mint);
}

.feature:nth-child(3n) .feature-icon {
  background: var(--clay);
}

.product-view {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
  background: #edf4ef;
}

.watch-preview {
  display: grid;
  place-items: center;
}

.watch-frame {
  width: min(320px, 76vw);
  aspect-ratio: 396 / 484;
  padding: 18px;
  border: 8px solid #1c2421;
  border-radius: 48px;
  background: #111816;
  box-shadow: var(--shadow);
}

.watch-screen {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  width: 100%;
  height: 100%;
  padding: 18px;
  border-radius: 34px;
  color: #ffffff;
  background: #060a09;
}

.watch-title {
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
}

.watch-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  min-height: 0;
}

.watch-buttons div {
  display: grid;
  place-items: center;
  padding: 12px 8px;
  border-radius: 8px;
}

.watch-buttons div:first-child {
  background: var(--court);
}

.watch-buttons div:last-child {
  background: var(--clay);
}

.watch-buttons span,
.watch-buttons small,
.watch-metrics span {
  font-size: 0.78rem;
  font-weight: 780;
}

.watch-buttons strong {
  font-size: 3.2rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.watch-buttons small {
  opacity: 0.8;
}

.watch-metrics {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.watch-metrics span {
  padding: 4px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.product-copy {
  max-width: 650px;
}

.privacy-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.privacy-callout div {
  max-width: 760px;
}

.privacy-callout .button.secondary,
.privacy-callout .button.primary {
  flex: 0 0 auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  font-weight: 750;
  text-decoration: none;
}

.policy {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 9vw, 92px) 0;
}

.policy h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 9vw, 5.6rem);
  line-height: 0.92;
}

.policy h2 {
  margin: 42px 0 12px;
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.1;
}

.policy ul {
  padding-left: 22px;
}

.policy li + li {
  margin-top: 8px;
}

.policy a {
  color: var(--court);
  font-weight: 750;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 66px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: calc(100svh - 120px);
    background-image:
      linear-gradient(180deg, rgba(7, 18, 15, 0.8), rgba(7, 18, 15, 0.42)),
      url("/assets/padel-court-hero.png");
    background-position: 56% center;
  }

  .score-strip,
  .feature-grid,
  .product-view,
  .privacy-callout {
    grid-template-columns: 1fr;
  }

  .score-strip p {
    grid-column: 1;
  }

  .feature {
    min-height: 0;
  }

  .privacy-callout {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: calc(100svh - 150px);
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.6rem);
  }

  .button {
    width: 100%;
  }

  .score-strip div {
    grid-template-columns: 1fr auto auto;
  }
}
