: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;
}

/* Ambient glow */
.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(244, 63, 94, 0.1) 40%, transparent 70%);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

/* Top confidential bar */
.pitch-top-bar {
  background: linear-gradient(90deg, #4D0C13, #1E293B, #0F172A);
  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 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}

.badge-gold {
  background: var(--gold-primary);
  color: #000;
}

.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: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-accent);
  display: inline-block;
  box-shadow: 0 0 10px var(--emerald-accent);
}

/* Navigation */
.pitch-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 9, 14, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  padding: 0.9rem 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: inherit;
}

.brand-emblem {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #78141F, #F59E0B);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.brand-text h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.brand-text p {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 700;
}

.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;
}

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

.btn {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.35rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 4px 16px 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: var(--surface-card);
  color: #fff;
  border: 1px solid var(--card-border);
}

.btn-glass:hover {
  background: var(--surface-card-hover);
  border-color: #475569;
}

/* Hero Section */
.pitch-hero {
  position: relative;
  padding: 5rem 0 6rem 0;
  text-align: center;
  border-bottom: 1px solid var(--card-border);
}

.hero-wrapper {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-wrapper h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.12;
  color: #fff;
  margin: 1.25rem 0;
  letter-spacing: -0.02em;
}

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

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-cta-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* 3 Core Value Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.pillar-card {
  background: rgba(15, 20, 34, 0.85);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.75rem;
  transition: all 0.3s;
}

.pillar-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pillar-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pillar-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Section styling */
.section {
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--card-border);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Metrics Showdown Cards */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.metric-card {
  background: var(--surface-card);
  border-radius: 24px;
  padding: 2.25rem;
  position: relative;
}

.metric-card.old-site {
  border: 2px solid rgba(239, 68, 68, 0.4);
}

.metric-card.new-site {
  border: 2px solid rgba(16, 185, 129, 0.6);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.1);
}

.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 1.5rem;
}

.metric-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.scores-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.score-box {
  background: #07090E;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 0.85rem;
  text-align: center;
}

.score-box strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1;
}

.score-box span {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}

.audit-lines {
  background: #07090E;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1rem;
  font-size: 0.85rem;
}

.audit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.audit-row:last-child {
  border-bottom: none;
}

.stat-bad {
  color: #F87171;
  font-weight: 800;
  font-family: monospace;
}

.stat-good {
  color: var(--emerald-accent);
  font-weight: 800;
  font-family: monospace;
}

/* Concepts Cards */
.concepts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.concept-card {
  background: var(--surface-card);
  border-radius: 24px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
}

.concept-card.c1 {
  border: 2px solid rgba(212, 175, 55, 0.4);
}

.concept-card.c2 {
  border: 2px solid rgba(16, 185, 129, 0.4);
}

.concept-card:hover {
  transform: translateY(-4px);
}

.concept-features {
  background: #07090E;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.concept-features div {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Live Preview Box */
.preview-controls {
  background: var(--surface-card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.preview-iframe-box {
  background: #000;
  border: 4px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  height: 650px;
  margin: 0 auto;
  transition: width 0.3s ease;
}

/* ROI Calculator */
.roi-card {
  background: var(--surface-card);
  border: 2px solid var(--card-border);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.range-wrap {
  margin-bottom: 1.75rem;
}

.range-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.range-slider {
  width: 100%;
  height: 8px;
  background: #1E293B;
  border-radius: 6px;
  accent-color: var(--gold-primary);
  cursor: pointer;
}

.roi-results-strip {
  background: #07090E;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.roi-stat-val {
  font-size: 1.75rem;
  font-weight: 900;
  display: block;
}

/* Pricing Card */
.pricing-card {
  background: var(--surface-card);
  border: 2px solid var(--gold-primary);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  position: relative;
}

.plan-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 2rem 0;
  font-size: 0.85rem;
}

.plan-features-grid div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsive */
@media (max-width: 860px) {
  .metrics-grid, .concepts-grid, .plan-features-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu-links {
    display: none;
  }
  .roi-results-strip {
    grid-template-columns: 1fr;
  }
}
