:root {
  --pitch-bg: #020617;
  --pitch-card-bg: #030712;
  --pitch-border: #1f2937;
  --pitch-text: #e5e7eb;
  --pitch-muted: #9ca3af;
  --pitch-primary: #4e7a27;
  --pitch-radius: 1rem;
  --pitch-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 1rem;
  background: radial-gradient(circle at top left,
    rgba(74, 222, 128, 0.16) 0,
    #020617 40%,
    #020617 100%);
  color: var(--pitch-text);
  font-family: var(--pitch-font);
  min-height: 100vh;
}

.pitch-shell {
  max-width: 960px;
  margin: 0 auto;
}

.pitch-card {
  background: radial-gradient(circle at top left,
    rgba(15, 23, 42, 0.4) 0,
    var(--pitch-card-bg) 45%);
  border-radius: var(--pitch-radius);
  border: 1px solid var(--pitch-border);
  padding: 1.5rem 1.6rem;
}