/* ShootIQ — Theme CSS */
/* === Variables === */
:root {
  --bg: #0d1117;
  --bg-alt: #161b22;
  --bg-card: #1c2128;
  --fg: #e6edf3;
  --fg-muted: #8b949e;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --border: rgba(240,246,252,0.08);
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
}

/* === Reset === */
*, *::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); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* === Typography === */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 48px;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 65% 50%, rgba(245,158,11,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-stats { display: flex; gap: 36px; }
.stat { display: flex; flex-direction: column; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 10px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* === TARGET === */
.target-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.target-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.target {
  position: relative;
  width: 340px;
  height: 340px;
  background: #f5e6c8;
  border-radius: 2px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.12),
    0 20px 60px rgba(0,0,0,0.5),
    0 0 100px rgba(245,158,11,0.08);
}
.ring { position: absolute; border-radius: 50%; border: 0.5px solid rgba(0,0,0,0.35); }
.ring-outer { top: 0; left: 0; right: 0; bottom: 0; }
.ring-9 { top: 10%; left: 10%; right: 10%; bottom: 10%; }
.ring-8 { top: 20%; left: 20%; right: 20%; bottom: 20%; }
.ring-7 { top: 30%; left: 30%; right: 30%; bottom: 30%; background: #ede0b0; }
.ring-6 { top: 40%; left: 40%; right: 40%; bottom: 40%; background: #e5d79a; }
.ring-5 { top: 50%; left: 50%; right: 50%; bottom: 50%; background: #ddd085; }
.ring-4 { top: 57%; left: 57%; right: 57%; bottom: 57%; background: #1a1a1a; }
.ring-3 { top: 63%; left: 63%; right: 63%; bottom: 63%; background: #1a1a1a; }
.ring-2 { top: 69%; left: 69%; right: 69%; bottom: 69%; background: #1a1a1a; }
.ring-1 { top: 74%; left: 74%; right: 74%; bottom: 74%; background: #1a1a1a; }
.bullseye { position: absolute; top: 79%; left: 79%; right: 79%; bottom: 79%; background: #1a1a1a; border-radius: 50%; }
.holes { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.hole {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
}
.h1 { top: 38%; left: 42%; }
.h2 { top: 40%; left: 45%; }
.h3 { top: 42%; left: 43%; }
.h4 { top: 39%; left: 46%; }
.h5 { top: 41%; left: 41%; }
.h6 { top: 43%; left: 44%; }
.target-label { margin-top: 16px; font-size: 11px; color: var(--fg-muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* === HOW === */
.how { padding: 100px 48px; border-bottom: 1px solid var(--border); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { padding: 32px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 4px; }
.step-num { font-family: var(--font-display); font-size: 3.5rem; color: var(--accent); opacity: 0.15; line-height: 1; margin-bottom: 16px; }
.step-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--fg); margin-bottom: 12px; letter-spacing: 0.02em; }
.step-body { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.7; }

/* === AGENT === */
.agent { padding: 100px 48px; border-bottom: 1px solid var(--border); }
.agent-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.agent-body { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.8; margin-bottom: 28px; max-width: 460px; }
.agent-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.agent-list li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--fg); }

/* === DASHBOARD === */
.dashboard { background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; padding: 24px; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.dash-title { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); }
.dash-tag { font-size: 9px; font-weight: 600; letter-spacing: 0.15em; background: rgba(34,197,94,0.12); color: #4ade80; padding: 3px 8px; border-radius: 2px; }
.dash-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.dash-metric { display: flex; flex-direction: column; }
.dm-val { font-family: var(--font-display); font-size: 2rem; color: var(--fg); line-height: 1; }
.dm-lab { font-size: 10px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.dash-chart { margin-bottom: 20px; }
.chart-label { font-size: 10px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.chart-bars { display: flex; align-items: flex-end; gap: 5px; height: 56px; }
.bar { flex: 1; background: rgba(245,158,11,0.18); border-radius: 2px; min-height: 6px; }
.bar.active { background: var(--accent); }
.dash-coaching { display: flex; align-items: flex-start; gap: 10px; background: var(--accent-dim); border: 1px solid rgba(245,158,11,0.18); border-radius: 4px; padding: 12px; }
.coach-icon { flex-shrink: 0; margin-top: 2px; }
.coach-text { font-size: 0.8rem; color: var(--fg); line-height: 1.5; }

/* === PERKS === */
.perks { padding: 100px 48px; border-bottom: 1px solid var(--border); }
.perks-inner { max-width: 1200px; margin: 0 auto; }
.perks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.perk { padding: 32px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 4px; }
.perk-icon { margin-bottom: 18px; }
.perk-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--fg); margin-bottom: 10px; letter-spacing: 0.02em; }
.perk-body { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.7; }

/* === CLOSING === */
.closing { padding: 120px 48px; }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-headline { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; color: var(--fg); letter-spacing: 0.02em; margin-bottom: 20px; }
.closing-sub { font-size: 1rem; color: var(--fg-muted); max-width: 500px; }

/* === FOOTER === */
footer { padding: 40px 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-brand { font-family: var(--font-display); font-size: 1.2rem; color: var(--fg); letter-spacing: 0.05em; }
.footer-copy { font-size: 0.8rem; color: var(--fg-muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .agent-inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero, .how, .agent, .perks, .closing { padding: 60px 24px; }
  footer { padding: 32px 24px; }
  .hero-stats { gap: 20px; }
  .footer-inner { flex-direction: column; gap: 12px; }
}