:root {
  --bg: #faf8f5;
  --fg: #1a1a1a;
  --accent: #D4883A;
  --accent-dark: #b36d2a;
  --green-dark: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --text-muted: #6b6b6b;
  --text-light: #f5f3ef;
  --border: #e5e0d8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--green-dark);
}
.wordmark .accent { color: var(--accent); }
nav { display: flex; gap: 2rem; }
nav a {
  text-decoration: none;
  color: var(--fg);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
nav a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  border-radius: 3px;
  font-size: 0.85rem !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-dark) !important; color: #fff !important; }

/* ── Hero ── */
.hero {
  padding: 5rem 2rem 4rem;
  background: var(--green-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(212, 136, 58, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: #fff;
}
.hero-lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(245, 243, 239, 0.82);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-tag-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  border-radius: 2px;
}

/* Court graphic */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.court-graphic {
  width: 260px;
  height: 340px;
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(212, 136, 58, 0.4);
  border-radius: 4px;
}
.court-lines { position: absolute; inset: 0; }
.court-line {
  position: absolute;
  left: 20px; right: 20px;
  height: 2px;
  background: rgba(212, 136, 58, 0.6);
  top: 50%;
}
.court-line.baseline {
  top: 20px;
  bottom: 20px;
  left: 50%;
  right: auto;
  width: 2px;
  height: auto;
}
.court-net {
  position: absolute;
  left: 50%; top: 20px; bottom: 20px;
  width: 3px;
  background: rgba(255,255,255,0.25);
  transform: translateX(-50%);
}
.player-dot {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(212,136,58,0.6);
}
.player-dot.player-a { top: 30px; left: 50%; transform: translateX(-50%); }
.player-dot.player-b { bottom: 30px; left: 50%; transform: translateX(-50%); }

/* ── Stats ── */
.stats {
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 2rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(245,243,239,0.6);
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── Playbook ── */
.playbook { padding: 5rem 2rem; }
.playbook-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
}
.section-subhead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 3rem;
  border: 2px solid var(--green-dark);
  border-radius: 4px;
  overflow: hidden;
}
.pillar {
  background: var(--bg);
  padding: 2rem 2.2rem;
  border-right: 2px solid var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
}
.pillar:nth-child(2n) { border-right: none; }
.pillar:nth-child(3), .pillar:nth-child(4) { border-bottom: none; }
.pillar-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(27,67,50,0.15);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}
.pillar p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Product card */
.product-card {
  background: var(--green-dark);
  border-radius: 4px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 0.5rem;
}
.product-info h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.product-info p {
  font-size: 0.92rem;
  color: rgba(245,243,239,0.72);
  max-width: 480px;
  line-height: 1.65;
}
.product-info .price {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-top: 0.8rem;
}
.product-badge {
  background: rgba(212,136,58,0.15);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Manifesto ── */
.manifesto {
  background: var(--bg);
  padding: 5rem 2rem;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}
.manifesto-text p {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.manifesto-rule {
  border: 2px solid var(--green-dark);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 2.5rem;
}
.rule-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.rule-block:last-child { border-bottom: none; }
.rule-block::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.rule-block p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-dark);
}

/* ── Outcomes ── */
.outcomes { padding: 5rem 2rem; background: var(--bg); }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.outcome {
  background: var(--green-dark);
  border-radius: 4px;
  padding: 2.5rem 2rem;
}
.outcome-icon {
  margin-bottom: 1.2rem;
}
.outcome h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}
.outcome p {
  font-size: 0.9rem;
  color: rgba(245,243,239,0.72);
  line-height: 1.65;
}

/* ── Closing ── */
.closing {
  background: var(--accent);
  padding: 5rem 2rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.closing p {
  font-size: 1rem;
  color: var(--green-dark);
  opacity: 0.8;
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--green-dark);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .wordmark { color: #fff; font-size: 1.3rem; display: block; margin-bottom: 0.6rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(245,243,239,0.55); max-width: 260px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links span { font-size: 0.85rem; color: var(--accent); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(245,243,239,0.35); letter-spacing: 0.03em; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .stats-inner { flex-direction: column; gap: 1.5rem; }
  .stat-divider { width: 48px; height: 1px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; }
  .pillar:nth-child(3), .pillar:nth-child(4) { border-bottom: 2px solid var(--green-dark); }
  .pillar:last-child { border-bottom: none; }
  .product-card { flex-direction: column; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 2rem; }
  .outcome-grid { grid-template-columns: 1fr; }
  nav { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .playbook, .manifesto, .outcomes, .closing { padding: 3.5rem 1.5rem; }
  .product-card { padding: 2rem 1.5rem; }
}