/* Typography */
:root {
  --bg: #0B0F19;
  --surface: #111827;
  --surface-2: #1F2937;
  --fg: #F8FAFC;
  --fg-muted: #94A3B8;
  --fg-subtle: #64748B;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --accent-border: rgba(245, 158, 11, 0.3);
  --border: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(11,15,25,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 12px;
  border-left: 1px solid var(--border-strong);
}

/* Section titles */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 48px;
}

/* Hero */
.hero {
  padding: 80px 24px 64px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stat {
  font-size: 14px;
  color: var(--fg-muted);
}
.hero-stat strong {
  color: var(--fg);
  font-weight: 600;
}
.hero-divider {
  color: var(--fg-subtle);
}

/* Campaign preview cards */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.campaign-preview {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  width: 100%;
}
.preview-label {
  font-size: 11px;
  color: var(--fg-subtle);
  text-align: center;
  margin-bottom: 8px;
  grid-column: 1/-1;
}
.preview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease;
}
.preview-card:hover { transform: translateY(-4px); }
.preview-card--1 { grid-column: 1; }
.preview-card--2 { grid-column: 2; }
.preview-card--3 { grid-column: 3; }
.preview-img {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-icon {
  font-size: 24px;
  color: rgba(255,255,255,0.6);
}
.preview-text {
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Social Proof */
.socialproof {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.socialproof-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.proof-logos {
  text-align: center;
  margin-bottom: 40px;
}
.proof-label {
  font-size: 12px;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.proof-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proof-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.proof-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-style: italic;
}
.proof-attr {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

/* Process */
.process {
  padding: 80px 24px;
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.step-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 28px;
}
.step-connector::after {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--border-strong);
}

/* Features */
.features {
  padding: 80px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s ease;
}
.feature-card:hover { border-color: var(--border-strong); }
.feature-card--highlight {
  border-color: var(--accent-border);
  background: linear-gradient(135deg, rgba(245,158,11,0.04) 0%, var(--bg) 100%);
}
.feature-card--highlight:hover { border-color: var(--accent); }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  margin-bottom: 18px;
}
.feature-card--highlight .feature-icon {
  background: var(--accent-dim);
  border-color: var(--accent-border);
  color: var(--accent);
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Comparison */
.comparison {
  padding: 80px 24px;
}
.comparison-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.comparison-card {
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
}
.comparison-card--bad {
  background: var(--surface);
  border-color: rgba(239,68,68,0.2);
}
.comparison-card--good {
  background: var(--surface);
  border-color: rgba(245,158,11,0.3);
}
.comparison-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.comparison-label {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.comparison-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.comparison-item:last-child { border-bottom: none; }
.item-cost {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
}
.item-desc {
  font-size: 13px;
  color: var(--fg-subtle);
}
.comparison-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.total-label { font-size: 14px; color: var(--fg-muted); }
.total-cost { font-family: var(--font-head); font-size: 28px; font-weight: 800; }
.total-cost--bad { color: #EF4444; }
.total-cost--good { color: var(--accent); }
.comparison-result {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-sm);
}
.comparison-result--bad { background: rgba(239,68,68,0.08); color: #EF4444; }
.comparison-result--good { background: rgba(245,158,11,0.08); color: var(--accent); }
.comparison-note {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
}

/* Closing */
.closing {
  padding: 96px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.closing-cta { display: flex; justify-content: center; }
.cta-pricing {
  background: var(--bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 28px 40px;
  text-align: center;
}
.cta-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}
.cta-amount {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}
.cta-period {
  font-size: 18px;
  color: var(--fg-muted);
}
.cta-features {
  font-size: 13px;
  color: var(--fg-subtle);
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-subtle);
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--fg-muted);
}

/* Try Section */
.try-section {
  padding: 96px 24px;
  border-top: 1px solid var(--border);
}
.try-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.try-header { margin-bottom: 40px; }
.try-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}
.try-form-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 32px;
  text-align: left;
}
.try-form { width: 100%; }
.try-input-row {
  display: flex;
  gap: 12px;
}
.try-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--fg);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.15s;
}
.try-input:focus { border-color: var(--accent); }
.try-input::placeholder { color: var(--fg-subtle); }
.try-btn {
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.try-btn:hover { opacity: 0.9; }
.try-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.try-btn-loading { display: inline-flex; align-items: center; gap: 8px; }
.spinner {
  width: 16px;
  height: 16px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.try-error {
  margin-top: 12px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-sm);
  color: #EF4444;
  padding: 10px 14px;
  font-size: 13px;
}
.try-hint {
  margin-top: 12px;
  font-size: 12px;
  color: var(--fg-subtle);
  text-align: center;
}

/* Report Output */
.report-output {
  margin-top: 28px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: left;
}
.report-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.report-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-subtle);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}
.report-brand strong {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.report-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.report-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}
.report-angle {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.report-angle-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-head);
}
.report-angle-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
  font-family: var(--font-head);
}
.report-angle-desc {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}
.report-angle-strength {
  font-size: 12px;
  color: var(--fg-subtle);
  font-style: italic;
}
.report-text {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.tier-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.tier-ent { background: rgba(139,92,246,0.15); color: #A78BFA; border: 1px solid rgba(139,92,246,0.3); }
.tier-prem { background: rgba(245,158,11,0.12); color: var(--accent); border: 1px solid var(--accent-border); }
.tier-mid { background: rgba(34,197,94,0.1); color: #22C55E; border: 1px solid rgba(34,197,94,0.25); }
.tier-bud { background: rgba(100,116,139,0.15); color: #94A3B8; border: 1px solid rgba(100,116,139,0.25); }

@media (max-width: 700px) {
  .report-row { grid-template-columns: 1fr; }
  .try-input-row { flex-direction: column; }
  .try-btn { width: 100%; justify-content: center; }
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-subtle);
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .proof-testimonials { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 20px 40px; }
  .hero-headline { font-size: 32px; }
  .nav-tagline { display: none; }
  .footer-links { display: none; }
}