/* =========================================
   PitchTested — Soccer Gear Review Site
   Theme: Dark editorial, stadium atmosphere
   Fonts: Playfair Display + DM Sans
   ========================================= */

:root {
  --bg: #0b0f0b;
  --bg-surface: #111711;
  --bg-elevated: #1a2118;
  --fg: #f0f5ec;
  --fg-muted: #8a9e82;
  --fg-subtle: #55664a;
  --accent: #c8f542;
  --accent-dim: rgba(200, 245, 66, 0.08);
  --border: rgba(240, 245, 236, 0.08);
  --border-accent: rgba(200, 245, 66, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-field {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #0b0f0b 0%, #0d1a0d 40%, #14321a 100%);
}

.hero-field::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background:
    radial-gradient(ellipse 80% 40% at 50% 100%, #1a3d12 0%, transparent 70%),
    linear-gradient(to bottom, transparent 0%, rgba(10, 30, 10, 0.4) 100%);
}

.hero-stadium {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.light-beam {
  position: absolute;
  top: -20%;
  width: 2px;
  height: 70%;
  background: linear-gradient(to bottom, rgba(200, 245, 66, 0.12) 0%, transparent 100%);
  transform-origin: top center;
}

.beam-1 { left: 15%; transform: rotate(-8deg); }
.beam-2 { left: 50%; transform: rotate(0deg); }
.beam-3 { right: 15%; transform: rotate(8deg); }

.crowd-haze {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: radial-gradient(ellipse 100% 60% at 50% -10%, rgba(200, 245, 66, 0.04) 0%, transparent 60%);
}

.hero-ball {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(180px, 25vw, 380px);
  opacity: 0.25;
  animation: float-ball 6s ease-in-out infinite;
}

@keyframes float-ball {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-55%) translateX(-8px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 clamp(24px, 6vw, 96px);
  padding-top: 80px;
  padding-bottom: 80px;
}

.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  background: var(--accent-dim);
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
}

/* ---- SECTION SHARED ---- */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ---- WHAT MAKES ---- */
.whatmakes {
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.whatmakes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.whatmakes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
}

.wm-card {
  background: var(--bg-elevated);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
}

.wm-number {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  color: var(--fg-subtle);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.wm-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.wm-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ---- REVIEW SNAP ---- */
.reviewsnap {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
}

.reviewsnap-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.review-feature {
  position: relative;
  padding: 48px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
}

.review-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 20px;
}

.review-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.review-excerpt {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300;
}

.review-scores {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.score-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  border-right: 1px solid var(--border);
  background: var(--bg-elevated);
}

.score-item:last-child { border-right: none; }

.score-label {
  font-size: 11px;
  color: var(--fg-subtle);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.score-val {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
}

.score-val.score-top {
  color: var(--accent);
}

.verdict-stamp {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 20px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.verdict-stamp svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.review-cta {
  margin-top: 20px;
  text-align: center;
}

.review-cta p {
  font-size: 13px;
  color: var(--fg-subtle);
  letter-spacing: 0.05em;
}

/* ---- CATEGORIES ---- */
.categories {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.categories-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.cat-card {
  background: var(--bg-surface);
  padding: 40px 36px;
  transition: background 0.2s;
}

.cat-card:hover {
  background: var(--bg-elevated);
}

.cat-icon {
  color: var(--accent);
  margin-bottom: 24px;
}

.cat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cat-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  font-weight: 300;
}

.cat-topics {
  display: block;
  font-size: 12px;
  color: var(--fg-subtle);
  letter-spacing: 0.05em;
}

/* ---- MANIFESTO ---- */
.manifesto {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.manifesto-quote {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 20px;
}

.quote-attribution {
  font-size: 13px;
  color: var(--fg-subtle);
  letter-spacing: 0.08em;
}

.manifesto-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  background: var(--bg-surface);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-desc {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 64px 0 32px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  display: block;
  margin-bottom: 12px;
  color: var(--fg);
}

.footer-brand p {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 260px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--fg); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px clamp(24px, 5vw, 64px) 0;
  border-top: 1px solid var(--border);
}

.footer-bottom span {
  font-size: 12px;
  color: var(--fg-subtle);
  line-height: 1.6;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-ball { display: none; }
  .review-feature { padding: 28px 24px; }
  .cat-grid { grid-template-columns: 1fr; }
  .whatmakes-grid { grid-template-columns: 1fr; }
  .manifesto-stats { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 32px; }
  .review-scores { flex-wrap: wrap; }
  .score-item { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 42px; }
}