:root {
  --bg-pitch: #07090e;
  --surface-card: #0f1422;
  --surface-card-hover: #151d30;
  --card-border: #1e293b;
  --gold-primary: #f59e0b;
  --gold-gradient: linear-gradient(135deg, #fcd34d, #f59e0b, #d97706);
  --emerald-accent: #10b981;
  --rose-accent: #f43f5e;
  --sky-accent: #38bdf8;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-pitch);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .font-heading {
  font-family: 'Outfit', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.bg-ambient-glow {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 380px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(2, 132, 199, 0.1) 40%, transparent 70%);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.pitch-top-bar {
  background: linear-gradient(90deg, #1e293b, #0f172a, #0b131e);
  border-bottom: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: #cbd5e1;
}

.pitch-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge-pill {
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.badge-gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-primary);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.badge-emerald {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-accent);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--emerald-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald-accent);
}

.pitch-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 9, 14, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  padding: 1rem 0;
}

.pitch-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-combo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}

.brand-emblem {
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.nav-menu-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-menu-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-menu-links a:hover {
  color: var(--gold-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--card-border);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 158, 11, 0.4);
}

/* Hero Section */
.pitch-hero {
  position: relative;
  z-index: 1;
  padding: 5rem 0 3.5rem 0;
  text-align: center;
}

.pitch-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 1.25rem 0;
  letter-spacing: -1px;
}

.gradient-text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pitch-hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 2.5rem auto;
}

/* Interactive Preview Iframe */
.preview-container {
  background: #000;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.preview-bar {
  background: #151d30;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--card-border);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.preview-iframe-wrap {
  position: relative;
  width: 100%;
  height: 720px;
}

.preview-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Audit Comparison */
.audit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.audit-card {
  background: var(--surface-card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
}

.audit-card.highlight {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.audit-score-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  font-family: ui-monospace, monospace;
  margin-bottom: 1rem;
}

.score-bad {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 2px solid #ef4444;
}

.score-good {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 2px solid #10b981;
}

/* Pricing Section */
.pricing-card {
  background: linear-gradient(180deg, #131e2d, #0d1522);
  border: 2px solid var(--gold-primary);
  border-radius: 24px;
  padding: 3rem;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.15);
}

.price-tag {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  margin: 1rem 0;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
  space-y: 0.75rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .nav-menu-links { display: none; }
  .audit-grid { grid-template-columns: 1fr; }
  .pitch-hero h1 { font-size: 2.5rem; }
  .preview-iframe-wrap { height: 500px; }
}
