/* PitchWebsite design system — preset: minimal */
:root {
  --color-bg: #0b0f19 !important;
  --color-text: #f3f4f6 !important;
  --color-primary: #6366f1 !important;
  --color-accent: #818cf8 !important;
  --color-card: #111827;
  --color-muted: #9ca3af;
  --color-border: #1f2937;
  --space-xs: .25rem;
  --space-sm: .5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.5);
  --shadow-md: 0 12px 32px rgba(0,0,0,.7);
  --container-max: 1120px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.container {
  width: min(calc(100% - 2rem), var(--container-max));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

.section {
  padding: var(--space-xl) 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: var(--space-xl);
}

.section-heading h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-top: var(--space-xs);
  line-height: 1.2;
}

.eyebrow {
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  margin: 0;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-muted);
}

/* Navigation */
.site-nav {
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md) 0;
}

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

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--color-accent);
}

.nav-links {
  display: none;
  list-style: none;
  gap: var(--space-lg);
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 500;
  color: var(--color-muted);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--color-text);
}

/* Buttons */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
  background: var(--color-accent);
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid var(--color-border);
  background: var(--color-card);
  color: var(--color-text);
}

.btn-secondary:hover {
  background: var(--color-border);
  transform: translateY(-1px);
}

/* Hero Grid */
.hero-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl) 0;
}

.hero-copy h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-top: var(--space-xs);
  margin-bottom: var(--space-md);
  font-weight: 800;
}

.hero-media {
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

/* Logos Section */
.logos-section {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: rgba(17, 24, 39, 0.4);
  padding: var(--space-lg) 0;
  text-align: center;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  opacity: 0.6;
  margin-top: var(--space-md);
}

.logo-item {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

/* Interactive Preview / Waveform */
.interactive-box {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.call-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 80px;
  margin: var(--space-lg) 0;
}

.wave-bar {
  width: 4px;
  height: 20%;
  background: var(--color-primary);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite alternate;
}

.wave-bar:nth-child(2n) { animation-delay: 0.15s; height: 40%; background: var(--color-accent); }
.wave-bar:nth-child(3n) { animation-delay: 0.3s; height: 60%; }
.wave-bar:nth-child(4n) { animation-delay: 0.45s; height: 80%; }
.wave-bar:nth-child(5n) { animation-delay: 0.6s; height: 100%; }

@keyframes wave {
  0% { height: 15%; }
  100% { height: 100%; }
}

.transcript-box {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-size: 0.9rem;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid var(--color-border);
}

.transcript-line {
  margin-bottom: var(--space-sm);
}

.transcript-speaker {
  font-weight: 700;
  color: var(--color-accent);
}

.transcript-speaker.user {
  color: #10b981;
}

/* Cards & Lists */
.card-grid {
  display: grid;
  gap: var(--space-lg);
}

.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.card-icon {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

/* Testimonials */
.quote-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-card blockquote {
  font-size: 1.1rem;
  margin: 0 0 var(--space-md) 0;
  font-style: italic;
  color: var(--color-text);
}

.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* Pricing Tiers */
.pricing-grid {
  display: grid;
  gap: var(--space-lg);
  align-items: stretch;
}

.pricing-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card.popular {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-value {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: var(--space-md) 0;
}

.price-value span {
  font-size: 1rem;
  color: var(--color-muted);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.pricing-features li {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.pricing-features li::before {
  content: "✓";
  color: var(--color-accent);
  font-weight: bold;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

details {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  padding: 0 var(--space-lg);
}

summary {
  padding: var(--space-lg) 0;
  font-weight: 700;
  font-size: 1.1rem;
  outline: none;
}

/* Contact Form */
.contact-grid {
  display: grid;
  gap: var(--space-xl);
}

.contact-form-container {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.form-control {
  width: 100%;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--color-text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Final CTA Band */
.cta-band {
  background: linear-gradient(135deg, rgba(99,102,241,0.15) 0%, rgba(11,15,25,0) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  background: #070a12;
  padding: var(--space-xl) 0;
  color: var(--color-muted);
}

.footer-inner {
  display: grid;
  gap: var(--space-xl);
}

.footer-brand {
  font-weight: 800;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  text-align: center;
  font-size: 0.875rem;
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }
  .nav-links {
    display: flex;
  }
  .hero-grid, .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}


/* PitchWebsite QA safety floor */
html { -webkit-text-size-adjust: 100%; }
body { min-width: 320px; font-size: max(16px, 1rem); }
img, svg, video { max-width: 100%; height: auto; }
a.btn, button, input[type="button"], input[type="submit"] { min-height: 44px; }

/* User-selected palette (authoritative — do not override) */
:root {
  --color-primary: #6366f1 !important;
  --color-accent: #818cf8 !important;
  --color-bg: #0b0f19 !important;
  --color-text: #f3f4f6 !important;
}
