/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0b0b0b;
  --bg-card: #131313;
  --bg-card-hover: #1a1a1a;
  --fg: #e8e8e8;
  --fg-muted: #888888;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --border: rgba(255,255,255,0.08);
  --heat-low: #22c55e;
  --heat-mid: #f59e0b;
  --heat-high: #ef4444;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 4rem 5rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

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

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

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

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

.eyebrow-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 440px;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.meta-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.meta-icon {
  color: var(--accent);
  font-size: 0.5rem;
}

/* === REPORT CARD === */
.report-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 40px rgba(245,158,11,0.05);
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.report-card-header {
  background: #1a1a1a;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.report-card-dot-row {
  display: flex;
  gap: 6px;
}

.card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.card-dot.red { background: #ef4444; }
.card-dot.amber { background: #f59e0b; }
.card-dot.green { background: #22c55e; }

.report-card-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  flex: 1;
}

.report-card-badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid rgba(245,158,11,0.3);
}

.report-card-body {
  padding: 1.25rem;
}

.report-section {
  margin-bottom: 0;
}

.report-section-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.report-section-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--fg);
}

.report-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

/* Heat bars */
.heat-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.heat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  width: 120px;
  flex-shrink: 0;
}

.heat-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.heat-fill {
  height: 100%;
  border-radius: 3px;
}

.heat-fill.low { width: 22%; background: var(--heat-low); }
.heat-fill.high { width: 78%; background: var(--heat-high); }

.heat-val {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  width: 40px;
  text-align: right;
}

.report-verdict {
  font-size: 0.85rem;
  color: var(--fg);
  font-style: italic;
  line-height: 1.5;
}

.report-timestamp {
  font-size: 0.65rem;
  color: var(--fg-muted);
  margin-top: 1rem;
  opacity: 0.6;
}

/* === PIPELINE === */
.pipeline {
  padding: 7rem 4rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pipeline-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pipeline-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 4rem;
}

.pipeline-step {
  flex: 1;
  padding: 0 2rem;
}

.pipeline-step:first-child { padding-left: 0; }

.pipeline-step-arrow {
  display: flex;
  align-items: center;
  padding-top: 2rem;
  flex-shrink: 0;
}

.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  font-weight: 400;
  color: rgba(245,158,11,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === SAMPLE REPORT === */
.sample-report {
  padding: 7rem 4rem;
  background: var(--bg);
}

.sample-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.sample-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 1rem;
}

.sample-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.sample-report-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.sample-report-type {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.sample-report-date {
  font-size: 0.7rem;
  color: var(--fg-muted);
}

.sample-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.sample-opp {
  margin-bottom: 1.25rem;
}

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

.opp-key {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.opp-val {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg);
}

.opp-high { color: #22c55e; }
.opp-mid { color: #f59e0b; }

.sample-gap {
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.gap-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.gap-text {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.sample-verdict { }

.verdict-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}

.verdict-box {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.verdict-score {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: #22c55e;
  line-height: 1;
  flex-shrink: 0;
}

.verdict-text {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === PRICING === */
.pricing {
  padding: 7rem 4rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pricing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
}

.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(245,158,11,0.08);
}

.card-tier {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.card-tier-featured {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--fg);
}

.price-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.card-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.card-feature {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.card-feature::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.75rem;
}

.card-feature-active {
  color: var(--fg);
}

.card-feature-muted {
  color: rgba(136,136,136,0.5);
}

.card-feature-muted::before {
  content: '—';
  color: rgba(136,136,136,0.3);
}

.card-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.7;
  font-style: italic;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

/* === MANIFESTO === */
.manifesto {
  padding: 7rem 4rem;
  background: var(--bg);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-mark {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.mark-line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: rgba(245,158,11,0.3);
}

.mark-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.manifesto-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 2rem;
  font-weight: 400;
}

.manifesto-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.attr-dash {
  color: var(--accent);
  font-size: 1.2rem;
}

.attr-text {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* === CLOSING === */
.closing {
  padding: 8rem 4rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.closing-cta {
  display: inline-block;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
}

.cta-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--heat-low);
  animation: pulse 2s ease-in-out infinite;
}

.cta-cta {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--fg);
  line-height: 1.6;
}

/* === FOOTER === */
.footer {
  padding: 2.5rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.footer-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 300px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner,
  .sample-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero { padding: 5rem 2rem 4rem; }
  .pipeline { padding: 5rem 2rem; }
  .sample-report { padding: 5rem 2rem; }
  .pricing { padding: 5rem 2rem; }
  .manifesto { padding: 5rem 2rem; }
  .closing { padding: 5rem 2rem; }
  .footer { padding: 2rem; }

  .pricing-cards { grid-template-columns: 1fr; }

  .pipeline-steps {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .pipeline-step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .section-headline { font-size: 1.8rem; }
}