/* ScoutIQ — Dark intelligence aesthetic */
:root {
  --bg: #050510;
  --bg-card: #0b0b1e;
  --bg-card-hover: #0f0f24;
  --fg: #e8e8f0;
  --fg-muted: #6e6e8a;
  --accent-cyan: #00E5C9;
  --accent-amber: #FFB800;
  --accent-amber-dim: rgba(255, 184, 0, 0.15);
  --accent-cyan-dim: rgba(0, 229, 201, 0.12);
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(0, 229, 201, 0.2);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-cyan) var(--bg);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-cyan); border-radius: 3px; }

::selection { background: var(--accent-cyan); color: var(--bg); }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* — NAVIGATION — */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(5, 5, 16, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--fg);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }

/* — SHARED — */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent-cyan);
  color: var(--bg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #00ffdd;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 229, 201, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--fg);
}

/* — HERO — */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 80px;
  gap: 60px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 201, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.label-dot {
  width: 7px; height: 7px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--fg);
  margin-bottom: 24px;
}

.headline-accent {
  color: var(--accent-cyan);
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
}

.meta-sep { color: rgba(255,255,255,0.1); }

/* — RADAR VISUAL — */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-container {
  position: relative;
  width: 360px;
  height: 360px;
}

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 201, 0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.radar-ring-1 { width: 120px; height: 120px; }
.radar-ring-2 { width: 220px; height: 220px; }
.radar-ring-3 { width: 320px; height: 320px; }

.radar-ring-3::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(0, 229, 201, 0.4);
  animation: radar-sweep 3s linear infinite;
}

@keyframes radar-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-crosshair {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
}

.crosshair-h, .crosshair-v {
  position: absolute;
  background: rgba(0, 229, 201, 0.1);
}
.crosshair-h { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.crosshair-v { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }

.radar-blip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: blip-pulse 2.5s ease-in-out infinite;
}

.blip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  animation: blip-grow 2.5s ease-in-out infinite;
}

.blip-label {
  font-size: 11px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

.blip-1 { top: 12%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.blip-1 .blip-dot { background: #00E5C9; box-shadow: 0 0 8px #00E5C9; }

.blip-2 { top: 35%; right: 8%; animation-delay: 0.5s; }
.blip-2 .blip-dot { background: #00b8a0; box-shadow: 0 0 8px #00b8a0; }

.blip-3 { bottom: 35%; left: 8%; animation-delay: 1s; }
.blip-3 .blip-dot { background: #FFB800; box-shadow: 0 0 8px #FFB800; }

.blip-4 { bottom: 18%; left: 55%; transform: translateX(-50%); animation-delay: 1.5s; }
.blip-4 .blip-dot { background: #ff4444; box-shadow: 0 0 12px #ff4444; }

@keyframes blip-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes blip-grow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

.radar-center-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--fg-muted);
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* — PULSE SECTION — */
.pulse-section {
  padding: 100px 60px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(11, 11, 30, 0.5) 100%);
}

.workflow-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 60px;
}

.workflow-step {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.step-icon {
  margin-bottom: 16px;
}

.workflow-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.workflow-step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.workflow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  height: 200px;
}

.connector-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent-amber));
  margin-bottom: 8px;
}

/* — SIGNALS SECTION — */
.signals-section {
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.signals-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 201, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 201, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.signals-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.signals-desc {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.signal-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.signal-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.signal-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.signal-dot.tiktok { background: #ff0050; box-shadow: 0 0 6px #ff0050; }
.signal-dot.spotify { background: #1DB954; box-shadow: 0 0 6px #1DB954; }
.signal-dot.instagram { background: #E1306C; box-shadow: 0 0 6px #E1306C; }
.signal-dot.playlist { background: #9146FF; box-shadow: 0 0 6px #9146FF; }
.signal-dot.geo { background: var(--accent-cyan); box-shadow: 0 0 6px var(--accent-cyan); }

.signal-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
}

.signal-item span {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Score card */
.score-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 32px;
}

.score-header {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.score-main {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.score-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--accent-amber);
  line-height: 1;
}

.score-label {
  font-size: 14px;
  color: var(--fg-muted);
}

.score-factors {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.factor-row {
  display: grid;
  grid-template-columns: 140px 1fr 36px;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.factor-row span:first-child { color: var(--fg-muted); }

.factor-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.factor-fill {
  height: 100%;
  border-radius: 2px;
  animation: bar-load 1s ease-out forwards;
}

.factor-fill.tiktok-fill { background: #ff0050; }
.factor-fill.spotify-fill { background: #1DB954; }
.factor-fill.instagram-fill { background: #E1306C; }
.factor-fill.playlist-fill { background: #9146FF; }

@keyframes bar-load {
  from { width: 0 !important; }
  to { /* uses inline width */ }
}

.factor-val {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--fg);
  text-align: right;
}

.score-stage {
  font-size: 13px;
  color: var(--fg-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.score-stage strong { color: var(--accent-cyan); }

/* — REPORT SECTION — */
.report-section {
  padding: 100px 60px;
  background: linear-gradient(180deg, rgba(11, 11, 30, 0.5) 0%, var(--bg) 100%);
}

.report-content { max-width: 1200px; margin: 0 auto; }

.report-desc {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 48px;
  max-width: 520px;
}

.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.report-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  transition: border-color 0.2s;
}

.report-block:hover {
  border-color: rgba(0, 229, 201, 0.2);
}

.report-block-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.report-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.report-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.field-label {
  font-size: 13px;
  color: var(--fg-muted);
}

.field-val {
  font-size: 13px;
  color: var(--fg);
}

.field-val.mono {
  font-family: 'Space Grotesk', monospace;
  font-weight: 500;
}

.field-val.up { color: var(--accent-cyan); }

.stage-badge {
  background: var(--accent-cyan-dim);
  color: var(--accent-cyan);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px !important;
}

/* — PRICING — */
.pricing-section {
  padding: 100px 60px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.pricing-card.featured {
  border-color: var(--accent-amber);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 184, 0, 0.04) 100%);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-amber);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 20px;
}

.card-tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.card-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}

.card-price span {
  font-size: 18px;
  color: var(--fg-muted);
  font-weight: 400;
}

.card-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}

.card-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.card-cta:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.featured-cta {
  background: var(--accent-amber);
  color: var(--bg);
  border-color: var(--accent-amber);
}

.featured-cta:hover {
  background: #ffcc33;
  border-color: #ffcc33;
  color: var(--bg);
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 32px;
}

/* — CLOSING — */
.closing-section {
  padding: 120px 60px;
  text-align: center;
}

.closing-content {
  max-width: 640px;
  margin: 0 auto;
}

.closing-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-section p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* — FOOTER — */
.footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

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

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

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

.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 360px;
}

/* — RESPONSIVE — */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .hero-visual { display: none; }
  .workflow-row { grid-template-columns: 1fr; }
  .workflow-connector { display: none; }
  .signals-content { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .report-grid { grid-template-columns: 1fr; }
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .pulse-section, .signals-section, .report-section, .pricing-section, .closing-section { padding: 60px 24px; }
  .footer { padding: 32px 24px; flex-direction: column; text-align: center; }
  .footer-copy { max-width: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 38px; letter-spacing: -1.5px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-cta-group .btn-primary { width: 100%; justify-content: center; }
}