:root {
  --ink: #111617;
  --muted: #5e696c;
  --paper: #f7f8f2;
  --white: #ffffff;
  --lime: #c8ff2e;
  --lime-dark: #80b91e;
  --court: #127f9d;
  --blue: #123d73;
  --orange: #ff7a3c;
  --line: rgba(17, 22, 23, 0.12);
  --shadow: 0 24px 70px rgba(17, 22, 23, 0.16);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(18, 127, 157, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 127, 157, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 76px 76px;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(247, 248, 242, 0.94);
  box-shadow: 0 12px 34px rgba(17, 22, 23, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand-lockup strong,
.brand-lockup small {
  display: block;
  line-height: 1;
}

.brand-lockup strong {
  font-size: 1rem;
}

.brand-lockup small {
  margin-top: 5px;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.72rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: currentColor;
  font-weight: 900;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.menu-active .site-nav a:hover,
.site-header.menu-active .site-nav a:focus-visible {
  background: rgba(18, 127, 157, 0.1);
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: var(--ink);
  background: var(--lime);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 72svh, 680px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/pickleball-gear-hero.png");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 10, 10, 0.78) 0%, rgba(7, 10, 10, 0.58) 35%, rgba(7, 10, 10, 0.18) 70%),
    linear-gradient(180deg, rgba(7, 10, 10, 0.36) 0%, rgba(7, 10, 10, 0.16) 46%, rgba(7, 10, 10, 0.62) 100%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 104px 0 34px;
}

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

.hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 980px;
  font-size: clamp(3.4rem, 10vw, 6.6rem);
}

h2 {
  max-width: 850px;
  font-size: clamp(2rem, 4.8vw, 4.4rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

p {
  line-height: 1.65;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero-actions,
.contact-actions,
.kit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 14px 28px rgba(200, 255, 46, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #dfff70;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button-light {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-tags li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.launch-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.launch-strip div {
  min-height: 106px;
  padding: 24px clamp(18px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.launch-strip div:last-child {
  border-right: 0;
}

.launch-strip strong,
.launch-strip span {
  display: block;
}

.launch-strip strong {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.launch-strip span {
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 4vw, 54px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.kit-copy p:not(.eyebrow),
.event-copy p,
.story-copy p,
.contact-section p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.product-card {
  min-height: 300px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 22, 23, 0.07);
}

.product-card h3 {
  margin-top: 15px;
}

.product-card p {
  color: var(--muted);
}

.product-kicker,
.product-meta {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-kicker {
  margin: 18px 0 0;
  color: var(--court);
}

.product-meta {
  display: inline-flex;
  margin-top: 10px;
  color: var(--ink);
  border-bottom: 3px solid var(--lime);
}

.product-visual {
  position: relative;
  display: block;
  width: 100%;
  height: 74px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e9efe8;
}

.ball-stack {
  background:
    radial-gradient(circle at 24% 50%, var(--lime) 0 20px, transparent 21px),
    radial-gradient(circle at 36% 50%, var(--lime) 0 20px, transparent 21px),
    radial-gradient(circle at 48% 50%, var(--lime) 0 20px, transparent 21px),
    linear-gradient(135deg, #12292f, #155f79);
}

.grip-roll {
  background:
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.42) 18px 20px),
    linear-gradient(135deg, #111617 0%, #23474d 48%, var(--lime) 48%, var(--lime) 70%, var(--orange) 70%);
}

.edge-tape {
  background:
    linear-gradient(90deg, transparent 0 8%, #111617 8% 25%, transparent 25% 31%, var(--lime) 31% 56%, transparent 56% 62%, #f2f4ef 62% 84%, transparent 84%),
    linear-gradient(135deg, #126f83, #10232a);
}

.lead-tape {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.42)),
    repeating-linear-gradient(0deg, #a7adb0 0 10px, #d9dddc 10px 18px);
}

.sleeve {
  background:
    linear-gradient(90deg, #111617 0 36%, var(--lime) 36% 42%, #102a33 42% 100%),
    linear-gradient(135deg, #10232a, #1b728b);
}

.bag {
  background:
    radial-gradient(ellipse at 66% 20%, rgba(200, 255, 46, 0.72) 0 12px, transparent 13px),
    linear-gradient(90deg, #111617 0 62%, var(--lime) 62% 68%, var(--blue) 68%);
}

.kit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: #10232a;
  color: var(--white);
}

.kit-section .eyebrow {
  color: var(--lime);
}

.kit-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.kit-builder {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 16px;
}

.kit-options,
.kit-summary,
.event-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.kit-options {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.kit-options label {
  display: flex;
  align-items: center;
  min-height: 52px;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.kit-options input {
  width: 20px;
  height: 20px;
  accent-color: var(--lime);
}

.kit-options span {
  font-weight: 800;
}

.kit-summary {
  min-height: 406px;
  padding: 22px;
  color: var(--ink);
  background: var(--paper);
}

.kit-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 22, 23, 0.1);
}

.kit-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--court), var(--lime), var(--orange));
  transition: width 180ms ease;
}

.summary-count {
  margin: 18px 0 10px;
  color: var(--court);
  font-weight: 900;
}

.kit-summary p[data-kit-description] {
  color: var(--muted);
}

.kit-summary ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.kit-summary li {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.open-section {
  background: var(--paper);
}

.event-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(24px, 5vw, 58px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(18, 127, 157, 0.74), rgba(17, 22, 23, 0.88)),
    #10232a;
  box-shadow: var(--shadow);
}

.event-copy .eyebrow {
  color: var(--lime);
}

.event-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--lime);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.event-details {
  display: grid;
  gap: 12px;
}

.event-details div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.event-details span,
.event-details strong {
  display: block;
}

.event-details span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-details strong {
  line-height: 1.25;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background: var(--white);
}

.story-media {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, #10232a 0%, #166f81 45%, #ff7a3c 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.story-media span {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.story-media span:nth-child(1) {
  width: 132px;
  height: 132px;
  left: 12%;
  top: 16%;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.52), transparent 12%),
    var(--lime);
  box-shadow: 0 18px 38px rgba(17, 22, 23, 0.22);
}

.story-media span:nth-child(2) {
  width: 104px;
  height: 260px;
  right: 18%;
  bottom: 13%;
  border-radius: 64px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 10px, transparent 10px 20px),
    #111617;
  transform: rotate(18deg);
}

.story-media span:nth-child(3) {
  width: 170px;
  height: 170px;
  right: 12%;
  top: 10%;
  border: 12px solid var(--lime);
  background: rgba(255, 255, 255, 0.08);
}

.story-copy blockquote {
  margin: 26px 0 0;
  padding: 0 0 0 18px;
  border-left: 5px solid var(--orange);
  color: var(--ink);
  font-size: clamp(1.2rem, 2.3vw, 2rem);
  font-weight: 850;
  line-height: 1.22;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-actions {
  justify-content: flex-end;
  min-width: 280px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--lime);
  font-weight: 900;
}

@media (min-width: 1200px) {
  .hero-content {
    width: min(1180px, calc(100% - 108px));
  }
}

@media (max-width: 980px) {
  .product-grid,
  .kit-section,
  .kit-builder,
  .event-panel,
  .story-section {
    grid-template-columns: 1fr;
  }

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

  .launch-strip div:nth-child(2) {
    border-right: 0;
  }

  .launch-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
    min-width: 0;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 66px 12px auto;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(247, 248, 242, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 44px;
    border-radius: var(--radius);
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-bg {
    background-position: 64% center;
  }

  .hero-content {
    width: min(100% - 32px, 640px);
    padding-bottom: 30px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(7, 10, 10, 0.82) 0%, rgba(7, 10, 10, 0.55) 100%),
      linear-gradient(180deg, rgba(7, 10, 10, 0.24) 0%, rgba(7, 10, 10, 0.74) 100%);
  }

  .button {
    width: 100%;
  }

  .hero-tags {
    gap: 7px;
  }

  .hero-tags li {
    font-size: 0.78rem;
  }

  .product-grid {
    gap: 12px;
  }

  .product-card {
    min-height: 0;
  }

  .story-media {
    min-height: 300px;
  }

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

@media (max-width: 520px) {
  .brand-lockup small {
    display: none;
  }

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

  .launch-strip div {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .launch-strip div:last-child {
    border-bottom: 0;
  }

  .kit-summary {
    min-height: 0;
  }
}
