/* Pick City — Medium-inspired editorial system */
:root {
  --md-accent: #1A8917;
  --md-accent-hover: #156D12;
  --md-accent-soft: #E8F3E8;
  --md-ink: #191919;
  --md-text: #242424;
  --md-muted: #6B6B6B;
  --md-muted-soft: #757575;
  --md-canvas: #F7F4ED;
  --md-surface: #FFFFFF;
  --md-surface-warm: #F2EFE6;
  --md-border: #E6E6E6;
  --md-border-strong: #CFCFCF;
  --md-hero-green: #34AC45;
  --md-hero-moss: #48704B;
  --md-on-accent: #FFFFFF;
  --md-serif: "GT Super", Georgia, Cambria, "Times New Roman", serif;
  --md-sans: "Sohne", "Helvetica Neue", Arial, sans-serif;
  --md-radius-pill: 9999px;
  --md-radius-lg: 14px;
  --md-section: 84px;
  --md-container: 1120px;
  --transition: 160ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--md-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--md-text);
  background: var(--md-canvas);
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--md-accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--md-ink);
  color: var(--md-on-accent);
  border-radius: var(--md-radius-pill);
  font-size: 14px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 32px, var(--md-container));
  margin-inline: auto;
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 75px;
  background: var(--md-canvas);
  border-bottom: 1px solid var(--md-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.wordmark {
  font-family: var(--md-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--md-ink);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 14px;
  color: var(--md-text);
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--md-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-cta {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--md-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--md-accent);
  color: var(--md-on-accent);
  border-radius: var(--md-radius-pill);
  padding: 9px 16px;
  height: 36px;
}

.btn-primary:hover {
  background: var(--md-accent-hover);
}

.btn-primary-dark {
  background: var(--md-ink);
  color: var(--md-on-accent);
  border-radius: var(--md-radius-pill);
  padding: 11px 20px;
  height: 40px;
}

.btn-primary-dark:hover {
  background: #333;
}

.btn-lg {
  padding: 13px 28px;
  height: 48px;
  font-size: 15px;
}

.btn-secondary {
  background: var(--md-surface);
  color: var(--md-ink);
  border: 1px solid var(--md-border-strong);
  border-radius: var(--md-radius-pill);
  padding: 10px 18px;
  height: 38px;
}

.btn-secondary:hover {
  border-color: var(--md-ink);
}

/* Hero */
.hero {
  padding: var(--md-section) 0;
  border-bottom: 1px solid var(--md-border);
}

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

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 14px;
  background: var(--md-surface-warm);
  border-radius: var(--md-radius-pill);
  font-size: 14px;
  color: var(--md-text);
}

.hero-title {
  margin: 0 0 24px;
  font-family: var(--md-serif);
  font-size: clamp(52px, 10vw, 106px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: var(--md-ink);
}

.hero-subtitle {
  margin: 0 0 32px;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.32;
  letter-spacing: -0.012em;
  color: var(--md-text);
  max-width: 430px;
}

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

.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--md-muted);
}

.hero-art {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--md-radius-lg);
  overflow: hidden;
  background: var(--md-hero-moss);
}

.hero-art svg {
  width: 100%;
  height: 100%;
}

/* Stats strip */
.stats {
  padding: 48px 0;
  border-bottom: 1px solid var(--md-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-item {
  padding: 24px 0;
  border-top: 1px solid var(--md-border);
}

.stat-value {
  display: block;
  margin-bottom: 6px;
  font-family: var(--md-serif);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--md-ink);
}

.stat-label {
  font-size: 14px;
  color: var(--md-muted);
  line-height: 1.45;
}

/* Section base */
.section {
  padding: var(--md-section) 0;
  border-bottom: 1px solid var(--md-border);
}

.section-header {
  margin-bottom: 48px;
  max-width: 640px;
}

.section-title {
  margin: 0 0 16px;
  font-family: var(--md-serif);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--md-ink);
}

.section-lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--md-muted-soft);
}

/* Benefits */
.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefit-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--md-border);
}

.benefit-row:last-child {
  border-bottom: 1px solid var(--md-border);
}

.benefit-title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--md-ink);
}

.benefit-desc {
  margin: 0;
  font-size: 16px;
  color: var(--md-muted-soft);
  max-width: 560px;
}

/* Sports pills */
.sports-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.topic-pill {
  display: inline-block;
  padding: 8px 14px;
  background: var(--md-surface-warm);
  border-radius: var(--md-radius-pill);
  font-size: 14px;
  color: var(--md-text);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.testimonial {
  padding: 28px 0;
  border-top: 1px solid var(--md-border);
}

.testimonial:last-child {
  border-bottom: 1px solid var(--md-border);
}

.testimonial-quote {
  margin: 0 0 16px;
  font-family: var(--md-serif);
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--md-ink);
}

.testimonial-meta {
  font-size: 13px;
  color: var(--md-muted);
}

.testimonial-meta strong {
  color: var(--md-text);
  font-weight: 500;
}

/* Pricing */
.pricing-card {
  background: var(--md-ink);
  color: var(--md-on-accent);
  border-radius: var(--md-radius-lg);
  padding: 40px 32px;
  max-width: 520px;
}

.pricing-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-title {
  margin: 0 0 12px;
  font-family: var(--md-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.pricing-desc {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--md-radius-pill);
  font-size: 14px;
  font-weight: 500;
}

.promo-badge code {
  font-family: var(--md-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--md-hero-green);
  background: none;
}

.pricing-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Final CTA */
.cta-section {
  padding: var(--md-section) 0;
  text-align: center;
}

.cta-section .section-title {
  max-width: 720px;
  margin-inline: auto;
}

.cta-section .section-lead {
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Footer */
.site-footer {
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-link {
  font-size: 13px;
  color: var(--md-muted);
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--md-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-copy {
  margin: 0;
  font-size: 13px;
  color: var(--md-muted);
}

.footer-disclaimer {
  margin: 0;
  font-size: 12px;
  color: var(--md-muted);
  max-width: 640px;
  line-height: 1.45;
}

/* Responsive */
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefit-row {
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .testimonial {
    border-top: none;
    border-bottom: none;
    padding: 0;
  }

  .testimonials-grid .testimonial + .testimonial {
    border-left: 1px solid var(--md-border);
    padding-left: 32px;
  }
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 56% 44%;
    gap: 32px;
  }
}

@media (min-width: 900px) {
  .container {
    width: min(100% - 64px, var(--md-container));
  }
}
