:root {
  --bg: #0F1117;
  --bg-card: #13161E;
  --fg: #F5F0E8;
  --fg-muted: #8B8580;
  --accent: #F59E0B;
  --green: #22C55E;
  --yellow: #EAB308;
  --red: #EF4444;
  --border: #1E2430;
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-inner.narrow {
  max-width: 720px;
}

.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-lead {
  color: var(--fg-muted);
  font-size: 18px;
  max-width: 680px;
  margin-bottom: 20px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-left { display: flex; flex-direction: column; }
.hero-right { display: flex; flex-direction: column; }

.score-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03) inset;
}

.widget-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 14px;
}

.url-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.url-input {
  flex: 1;
  background: #0A0D12;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--fg-muted);
}

.scan-btn {
  background: var(--accent);
  color: #0F1117;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  padding: 11px 18px;
  border-radius: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.score-result {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid;
  background: rgba(34,197,94,0.06);
  border-color: rgba(34,197,94,0.2);
}

.score-badge {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  letter-spacing: 0.06em;
  background: var(--green);
  color: #052e16;
}

.score-meta { display: flex; flex-direction: column; }

.score-number {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  color: var(--fg);
  line-height: 1;
}

.score-label {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 3px;
  font-family: var(--font-head);
}

.score-checks { display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; }

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
}

.check-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.check-dot.green { background: var(--green); box-shadow: 0 0 6px rgba(34,197,94,0.5); }
.check-dot.yellow { background: var(--yellow); box-shadow: 0 0 6px rgba(234,179,8,0.5); }
.check-dot.red { background: var(--red); box-shadow: 0 0 6px rgba(239,68,68,0.5); }

.verdict {
  font-size: 12px;
  font-family: var(--font-head);
  color: var(--green);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.verdict-arrow { font-size: 16px; }

.hero-eyebrow {
  font-size: 11px;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(28px, 3.8vw, 48px);
  color: var(--fg);
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-pillars { display: flex; flex-direction: column; gap: 12px; }

.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
  font-family: var(--font-head);
  font-weight: 500;
}

/* ── THE SCORE SECTION ── */
.the-score {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.the-score h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: 24px;
  max-width: 560px;
}

.score-examples {
  display: flex;
  gap: 20px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.score-example {
  flex: 1;
  min-width: 220px;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid;
}

.green-ex { border-color: rgba(34,197,94,0.2); background: rgba(34,197,94,0.04); }
.yellow-ex { border-color: rgba(234,179,8,0.2); background: rgba(234,179,8,0.04); }
.red-ex { border-color: rgba(239,68,68,0.2); background: rgba(239,68,68,0.04); }

.example-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}
.green-ex .example-badge { background: var(--green); color: #052e16; }
.yellow-ex .example-badge { background: var(--yellow); color: #422006; }
.red-ex .example-badge { background: var(--red); color: #450a0a; }

.score-example p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── FEATURES ── */
.features {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.features h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: 60px;
  max-width: 460px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 72px;
}

.feature-card {
  border-left: 2px solid var(--accent);
  padding-left: 28px;
}

.feature-num {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--fg);
}

.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ── THE METHOD ── */
.the-method {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.the-method h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: 64px;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0;
  align-items: start;
}

.method-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.divider-line {
  width: 1px;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.method-tag {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.method-col h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--fg);
}

.method-col p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.method-detail {
  font-size: 12px;
  font-family: var(--font-head);
  color: var(--accent);
  border-top: 1px solid var(--border);
  padding-top: 18px;
  line-height: 1.6;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.outcomes h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: 52px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 64px;
  margin-bottom: 52px;
}

.outcome {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.outcome-icon {
  color: var(--accent);
  font-size: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  font-family: var(--font-head);
}

.outcome h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
  font-family: var(--font-head);
}

.outcome p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.pricing-note {
  border-top: 1px solid var(--border);
  padding-top: 36px;
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.price-tag {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.pricing-note p {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.manifesto-text {
  font-size: 19px;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.manifesto-emphasis {
  font-size: 21px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.6;
  margin-top: 48px;
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer-meta p {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 320px;
  text-align: right;
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 40px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--fg-muted);
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.trust-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.trust-row {
  width: 100%;
}

.trust-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.trust-row-sourcing .trust-label {
  margin-bottom: 16px;
}

.platform-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.platform-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: transform 0.2s;
}

.logo-img {
  height: 36px;
  width: auto;
  flex-shrink: 0;
  filter: grayscale(1) brightness(1.3) opacity(0.75);
  transition: filter 0.25s ease, transform 0.2s, opacity 0.25s ease;
}

.logo-text-badge {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.2s;
}

.platform-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.platform-logo:hover {
  transform: scale(1.05);
}

.platform-logo:hover .logo-img {
  filter: grayscale(0) brightness(1) opacity(1);
}

.platform-logo:hover .logo-text-badge {
  color: var(--fg);
  border-color: #2a3040;
}

/* Trust bar section labels */
.trust-label-prefix {
  display: block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.trust-label-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.platform-badge {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 9px;
  transition: color 0.2s, border-color 0.2s;
}

.platform-badge.muted {
  opacity: 0.5;
}

/* ── HERO CTA ── */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #10B981;
  color: #052e16;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
  transition: background 0.2s, box-shadow 0.2s;
  margin-bottom: 12px;
}

.cta-primary:hover {
  background: #059669;
  box-shadow: 0 0 28px rgba(16, 185, 129, 0.4);
}

.cta-micro {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-head);
  letter-spacing: 0.02em;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.how-it-works h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: 64px;
}

.steps-row {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.step-card {
  flex: 1;
  max-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10B981;
  margin-bottom: 20px;
}

.step-num {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  color: var(--fg-muted);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 20px;
  padding-top: 60px;
  flex-shrink: 0;
}

/* ── BENEFITS ── */
.benefits {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.benefits h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: 64px;
  max-width: 520px;
}

.benefits-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: #0D1117;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}

.benefit-icon {
  margin-bottom: 24px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
  font-family: var(--font-head);
}

.benefit-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── WALL OF LOVE ── */
.wall-of-love {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.section-headline {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: 52px;
  color: var(--fg);
}

.tweets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tweet-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tweet-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tweet-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: #10B981;
  flex-shrink: 0;
}

.tweet-user { display: flex; flex-direction: column; }
.tweet-name { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--fg); }
.tweet-handle { font-family: var(--font-head); font-size: 12px; color: var(--fg-muted); }

.tweet-body {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.6;
  flex: 1;
}

.tweet-actions {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.tweet-action {
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--fg-muted);
}

/* ── PRICING ── */
.pricing {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 52px;
}

.toggle-label {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.toggle-label.active { color: var(--fg); font-weight: 600; }

.toggle-switch {
  width: 48px;
  height: 26px;
  border-radius: 13px;
  background: var(--border);
  border: 1px solid #2a3040;
  cursor: pointer;
  position: relative;
  transition: background 0.25s;
}

.toggle-switch.annual { background: rgba(16, 185, 129, 0.25); }

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--fg-muted);
  transition: left 0.25s, background 0.25s;
}

.toggle-switch.annual .toggle-knob {
  left: 25px;
  background: #10B981;
}

.save-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 4px;
  padding: 2px 7px;
  letter-spacing: 0.04em;
  margin-left: 4px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: #0D1117;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
}

.pricing-card.popular {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.1) inset, 0 8px 32px rgba(16, 185, 129, 0.08);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #10B981;
  color: #052e16;
  border-radius: 5px;
  padding: 4px 12px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-amount {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-custom {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--fg);
}

.price-period {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--fg-muted);
}

.plan-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10B981;
  font-size: 12px;
  top: 2px;
}

.plan-cta {
  display: block;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, box-shadow 0.2s;
}

.starter-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg);
}

.starter-cta:hover {
  background: #1a1f2e;
}

.pro-cta {
  background: #10B981;
  color: #052e16;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.2);
}

.pro-cta:hover {
  background: #059669;
  box-shadow: 0 0 22px rgba(16, 185, 129, 0.35);
}

.enterprise-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg-muted);
}

.enterprise-cta:hover {
  color: var(--fg);
  border-color: #2a3040;
}

/* ── FAQ ── */
.faq {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  gap: 20px;
  transition: color 0.2s;
}

.faq-question:hover { color: #10B981; }

.faq-icon {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--fg-muted);
  flex-shrink: 0;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}

.faq-answer {
  display: none;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ── FOOTER CTA ── */
.footer-cta {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 100px 0;
  text-align: center;
}

.footer-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-cta-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.footer-cta-sub {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 36px;
}

.footer-cta-btn {
  margin-bottom: 16px;
}

.footer-cta-micro {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .tweets-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero { padding: 80px 0 100px; }
  .hero-right { order: -1; }
  .feature-grid { grid-template-columns: 1fr; gap: 36px; }
  .method-grid { grid-template-columns: 1fr; }
  .method-divider { display: none; }
  .score-examples { flex-direction: column; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-meta p { text-align: left; }
  .steps-row { flex-direction: column; align-items: center; gap: 20px; }
  .step-arrow { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .platform-logos { gap: 28px; }
}

@media (max-width: 600px) {
  .section-inner,
  .hero-grid,
  .footer-inner,
  .footer-bottom,
  .trust-bar-inner,
  .steps-row,
  .benefits-grid,
  .footer-cta-inner { padding-left: 24px; padding-right: 24px; }
  .pricing-note { flex-direction: column; gap: 8px; }
  .the-score, .features, .the-method, .outcomes, .manifesto,
  .trust-bar, .how-it-works, .benefits, .wall-of-love, .pricing, .faq, .footer-cta { padding: 72px 0; }
  .score-widget { padding: 20px; }
  .score-examples { gap: 12px; }
  .platform-logos { gap: 20px; }
  .tweets-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-cta-btn { width: 100%; justify-content: center; }
}