:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a25;
  --fg: #e8e6e3;
  --fg-muted: #8a8694;
  --accent: #4ade80;
  --accent-dim: rgba(74, 222, 128, 0.12);
  --accent-glow: rgba(74, 222, 128, 0.25);
  --warm: #f59e0b;
  --danger: #ef4444;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1100px;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

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

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #6ee79a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 222, 128, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.15rem;
}

/* ========== BUTTON PULSE ========== */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.45); }
  50%       { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
}

.btn-pulse {
  animation: ctaPulse 2.4s ease-in-out infinite;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
  text-align: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid rgba(74, 222, 128, 0.2);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--accent);
  position: relative;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* CTA group */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-cta-sub-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-cta-sub-link {
  font-size: 0.88rem;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.hero-cta-sub-link:hover { color: var(--accent); }

.hero-cta-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.2px;
}

/* Trust bar */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.trust-icon {
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
}

/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  max-width: 180px;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--fg-muted), transparent);
  opacity: 0.3;
}

.hero-gradient {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

/* ========== PROBLEM ========== */
.problem {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.problem-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 48px;
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.problem-icon {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--danger);
  margin-bottom: 16px;
  opacity: 0.7;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== FEATURES ========== */
.features {
  padding: 100px 24px;
}

.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-blocks {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.feature-block {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.04);
  background: var(--bg-elevated);
}

.feature-right {
  flex-direction: row-reverse;
  text-align: right;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.features-cta {
  text-align: center;
}

/* ========== PROCESS ========== */
.process {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.process-inner {
  max-width: 700px;
  margin: 0 auto;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 48px;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.step-content {
  padding-bottom: 8px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.process-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, var(--accent), rgba(74,222,128,0.15));
  margin-left: 21px;
}

.process-cta {
  text-align: center;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 100px 24px;
}

.testimonials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.2s ease;
}

.testimonial-card:hover {
  border-color: rgba(74, 222, 128, 0.2);
}

.testimonial-quote {
  color: var(--fg);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(74, 222, 128, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

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

/* Credibility bar */
.credibility-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.cred-icon {
  font-size: 1.1rem;
}

.cred-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
}

/* ========== CLOSING ========== */
.closing {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing h2 .accent {
  color: var(--accent);
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-sub {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.closing-location {
  margin-top: 40px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.6;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 12px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--accent); }

.footer-support {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.footer-support a {
  color: var(--accent);
  text-decoration: none;
}

.footer-support a:hover { text-decoration: underline; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .hero-stats { flex-direction: column; }
  .trust-bar { gap: 14px; padding: 14px 16px; }
  .trust-divider { display: none; }

  .problem-grid { grid-template-columns: 1fr; gap: 16px; }

  .feature-block,
  .feature-right {
    flex-direction: column;
    text-align: left;
  }
  .feature-number {
    font-size: 3rem;
    min-width: auto;
    text-align: left;
  }

  .problem, .features, .process, .testimonials { padding: 60px 20px; }
  .closing { padding: 80px 20px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .credibility-bar { gap: 16px; }
  .cred-divider { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .problem-card { padding: 24px 20px; }
  .feature-block { padding: 28px 20px; }
  .btn-large { padding: 16px 28px; font-size: 1rem; }
}

/* ========== STICKY MOBILE CTA ========== */
.sticky-mobile-cta {
  display: none; /* hidden on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 16px;
  background: linear-gradient(0deg, rgba(10,10,15,0.98) 0%, rgba(10,10,15,0.85) 100%);
  border-top: 1px solid rgba(74,222,128,0.15);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sticky-mobile-cta.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.sticky-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 24px rgba(74,222,128,0.35);
}

@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  /* Add bottom padding to body so last content isn't hidden behind sticky bar */
  body { padding-bottom: 90px; }
}

/* ========== SITE NAV ========== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
  text-decoration: none;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.site-nav-links a:hover { color: var(--fg); }

.site-nav-cta {
  background: var(--accent) !important;
  color: #0a0a0f !important;
  font-weight: 700 !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.875rem !important;
}

/* ========== PRICING SECTION ========== */
.pricing {
  padding: 100px 24px;
  position: relative;
}

.pricing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.pricing-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
  margin-top: 8px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.15fr;
  gap: 20px;
  align-items: start;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card-free { display: none; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-free { display: flex; }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  transition: border-color 0.2s;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.pricing-card-featured {
  border-color: rgba(74, 222, 128, 0.4);
  background: linear-gradient(135deg, #0a1a10 0%, #0d1a12 100%);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(74, 222, 128, 0.15);
}

.pricing-card-featured:hover {
  border-color: rgba(74, 222, 128, 0.65) !important;
}

.pricing-card-recommended {
  border-color: rgba(74, 222, 128, 0.2);
  background: linear-gradient(135deg, #0f0f18 0%, #12121c 100%);
}

.pricing-card-recommended:hover {
  border-color: rgba(74, 222, 128, 0.4) !important;
}

.pricing-card-free {
  opacity: 0.85;
}

.pricing-card-free:hover {
  opacity: 1;
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-popular-badge-alt {
  background: rgba(74, 222, 128, 0.15);
  color: var(--accent);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.pricing-tier-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.pricing-price-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 14px;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  flex-grow: 1;
}

.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--fg);
  line-height: 1.4;
}

.pi-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(74, 222, 128, 0.15);
  color: var(--accent);
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 12px 18px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}

.pricing-btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 4px 18px rgba(74, 222, 128, 0.25);
}

.pricing-btn-primary:hover {
  background: #6ee7b7;
  box-shadow: 0 6px 26px rgba(74, 222, 128, 0.4);
  transform: translateY(-1px);
}

.pricing-btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.pricing-btn-secondary {
  background: rgba(74, 222, 128, 0.1);
  color: var(--accent);
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.pricing-btn-secondary:hover {
  background: rgba(74, 222, 128, 0.18);
  border-color: rgba(74, 222, 128, 0.45);
  transform: translateY(-1px);
}

.pricing-footnote {
  margin-top: 36px;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.site-nav-cta:hover { background: #6ee79a !important; }

/* ========== MOBILE NAV ========== */
@media (max-width: 480px) {
  .site-nav-inner { padding: 10px 16px; }
  .site-nav-links { gap: 12px; }
  .site-nav-brand { font-size: 0.88rem; }
  .site-nav-links a:not(.site-nav-cta) { font-size: 0.82rem; }
  .site-nav-cta {
    padding: 5px 12px;
    font-size: 0.78rem;
    border-radius: 100px;
    line-height: 1.4;
  }
}

/* ========== SOCIAL PROOF ========== */
.social-proof {
  padding: 0 24px 80px;
  background: var(--bg);
}

.social-proof-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Trust signals row */
.sp-trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  padding: 20px 28px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
}

.sp-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.sp-badge:hover {
  border-color: rgba(74, 222, 128, 0.25);
}

.sp-badge-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.sp-badge-text {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
}

.sp-badge-resumes {
  background: var(--accent-dim);
  border-color: rgba(74, 222, 128, 0.2);
}

/* Score demo */
.sp-score-demo {
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
}

.sp-score-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
  margin-bottom: 36px;
}

.sp-score-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
}

.sp-score-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 36px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sp-score-card-header {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.sp-score-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.sp-score-low {
  color: var(--danger);
}

.sp-score-high {
  color: var(--accent);
}

.sp-score-caption {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sp-score-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin: 8px 0;
}

.sp-score-bar-fill {
  height: 100%;
  border-radius: 3px;
}

.sp-bar-red {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.sp-bar-green {
  background: linear-gradient(90deg, #22c55e, #4ade80);
}

.sp-score-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

.sp-score-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-arrow-icon {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg-muted);
  opacity: 0.5;
}

.sp-score-outcome {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sp-outcome-tag {
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.sp-outcome-text {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .social-proof { padding: 0 20px 60px; }

  .sp-trust-row { gap: 10px; padding: 16px 16px; }
  .sp-badge { padding: 8px 12px; }
  .sp-badge-text { font-size: 0.8rem; }

  .sp-score-cards { flex-direction: column; gap: 16px; }
  .sp-score-card { min-width: 100%; padding: 24px 20px; }
  .sp-score-number { font-size: 3.2rem; }
  .sp-arrow-icon { transform: rotate(90deg); }

  .sp-score-outcome { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .sp-trust-row { flex-direction: column; align-items: stretch; }
  .sp-badge { justify-content: center; }
}

/* ── Exit-intent popup ────────────────────────────────────────────────────── */
#exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#exit-popup.visible {
  display: flex;
}

#exit-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

#exit-popup-modal {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(74, 222, 128, 0.08);
  animation: popupSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popupSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

#exit-popup-dismiss {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.15s;
}
#exit-popup-dismiss:hover { color: var(--fg); }

#exit-popup-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

#exit-popup-headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.25;
}

#exit-popup-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.55;
}

#exit-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#exit-popup-email {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-elevated);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
#exit-popup-email::placeholder { color: var(--fg-muted); }
#exit-popup-email:focus { border-color: var(--accent); }

#exit-popup-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}
#exit-popup-submit:hover { background: #6ee79a; transform: translateY(-1px); }
#exit-popup-submit:active { transform: translateY(0); }

#exit-popup-error {
  color: var(--danger);
  font-size: 0.85rem;
  display: none;
}

#exit-popup-no-thanks {
  display: block;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s;
}
#exit-popup-no-thanks:hover { color: var(--fg); }

@media (max-width: 480px) {
  #exit-popup-modal { padding: 28px 24px; }
  #exit-popup-headline { font-size: 1.3rem; }
}

/* ========== HERO LIVE BAR ========== */
.hero-live-bar {
  display: none; /* JS shows it */
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.3px;
}

.hero-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70%  { box-shadow: 0 0 0 7px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ========== HERO TRUST BADGES ========== */
.hero-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 500;
  white-space: nowrap;
}

.htb-icon { font-size: 0.85rem; }

@media (max-width: 480px) {
  .hero-trust-badges { gap: 6px; }
  .hero-trust-badge { font-size: 0.72rem; padding: 4px 9px; }
}

/* ========== CLOSING URGENCY + TRUST ========== */
.closing-urgency-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--warm);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}

.closing-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.closing-trust-dot {
  color: var(--fg-muted);
  opacity: 0.4;
}

@media (max-width: 480px) {
  .closing-trust-dot { display: none; }
  .closing-trust-row { flex-direction: column; gap: 4px; }
}

/* ========== SAMPLE RESULT PREVIEW ========== */
.sp-sample-result {
  margin-top: 56px;
}

.sp-sample-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  justify-content: center;
}

.sp-sample-badge {
  background: rgba(74, 222, 128, 0.1);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.sp-sample-sublabel {
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.sp-sample-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
  /* Subtle pointer-events: none so it feels like a preview, not interactive */
}

/* Score header row */
.sp-sample-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: var(--bg-card);
  flex-wrap: wrap;
}

.sp-sample-score-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.sp-sample-score-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--warm);
  line-height: 1;
  letter-spacing: -0.04em;
}

.sp-sample-score-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.sp-sample-score-meter {
  flex: 1;
  min-width: 120px;
}

.sp-sample-meter-track {
  width: 100%;
  height: 10px;
  background: rgba(255,255,255,0.07);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 6px;
}

.sp-sample-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #ef4444 0%, var(--warm) 50%, var(--accent) 90%);
  border-radius: 5px;
  transition: width 0.8s ease;
}

.sp-sample-meter-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

.sp-sample-score-verdict {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

.sp-verdict-warn {
  background: rgba(245, 158, 11, 0.12);
  color: var(--warm);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

/* Section rows inside the preview card */
.sp-sample-section {
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sp-sample-section:last-of-type {
  border-bottom: none;
}

.sp-sample-section-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sp-sample-count {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: none;
  padding: 2px 8px;
  border-radius: 100px;
}

.sp-count-red {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
}

.sp-count-green {
  background: rgba(74, 222, 128, 0.12);
  color: var(--accent);
}

/* Keywords */
.sp-sample-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sp-kw {
  padding: 4px 11px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-weight: 500;
}

.sp-kw-missing {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.sp-kw-present {
  background: rgba(74, 222, 128, 0.08);
  color: var(--accent);
  border: 1px solid rgba(74, 222, 128, 0.15);
  opacity: 0.7;
}

/* Bullet rewrite */
.sp-sample-rewrite {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sp-rewrite-before,
.sp-rewrite-after {
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.sp-rewrite-before {
  background: rgba(239, 68, 68, 0.06);
  border-left: 3px solid rgba(239, 68, 68, 0.4);
  color: var(--fg-muted);
}

.sp-rewrite-after {
  background: rgba(74, 222, 128, 0.07);
  border-left: 3px solid rgba(74, 222, 128, 0.5);
  color: var(--fg);
}

.sp-rewrite-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  opacity: 0.6;
}

.sp-rewrite-arrow {
  text-align: center;
  color: var(--accent);
  font-size: 1.2rem;
  opacity: 0.6;
}

/* CTA nudge inside preview */
.sp-sample-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(74, 222, 128, 0.04);
  border-top: 1px solid rgba(74, 222, 128, 0.1);
  flex-wrap: wrap;
}

.sp-sample-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}

.sp-sample-cta:hover {
  background: #6ee79a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74, 222, 128, 0.25);
}

.sp-sample-cta-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

@media (max-width: 768px) {
  .sp-sample-header { padding: 18px 20px; gap: 14px; }
  .sp-sample-section { padding: 16px 20px; }
  .sp-sample-cta-row { padding: 16px 20px; }
  .sp-sample-score-num { font-size: 2.4rem; }
  .sp-sample-cta-note { display: none; }
}

@media (max-width: 480px) {
  .sp-sample-header { flex-direction: column; align-items: flex-start; }
  .sp-sample-score-meter { width: 100%; }
}
