/* ============================================================
   VETTED — Premium SaaS Landing Page
   Design System: Dark + Acid Green, Syne + DM Sans
   ============================================================ */

:root {
  --bg: #0D0D0D;
  --bg-alt: #111111;
  --fg: #F2F0EB;
  --fg-dim: #7A7870;
  --fg-subtle: #4A4845;
  --accent: #C5F135;
  --accent-dim: #9BBF2B;
  --surface: #181818;
  --surface-2: #1F1F1F;
  --surface-3: #252525;
  --border: #272727;
  --border-2: #333333;
  --font-head: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --max-w: 1200px;
  --gutter: clamp(24px, 5vw, 80px);
  --radius: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Scroll-reveal base states */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.94);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Hover scale micro-interaction */
.hover-scale {
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.hover-scale:hover { transform: scale(1.03); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; }

/* Display */
.text-hero {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--text-hero);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

/* Section headings */
.text-5xl { font-family: var(--font-head); font-weight: 800; font-size: var(--text-5xl); letter-spacing: -0.02em; }
.text-4xl { font-family: var(--font-head); font-weight: 800; font-size: var(--text-4xl); letter-spacing: -0.02em; }
.text-3xl { font-family: var(--font-head); font-weight: 800; font-size: var(--text-3xl); letter-spacing: -0.02em; }
.text-2xl { font-family: var(--font-head); font-weight: 700; font-size: var(--text-2xl); }
.text-xl  { font-family: var(--font-head); font-weight: 700; font-size: var(--text-xl); }

/* Body */
.text-lg  { font-size: var(--text-lg); line-height: 1.6; }
.text-base{ font-size: var(--text-base); line-height: 1.6; }
.text-sm  { font-size: var(--text-sm); }
.text-xs   { font-size: var(--text-xs); }

/* Labels & caps */
.text-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Colors */
.text-fg    { color: var(--fg); }
.text-dim   { color: var(--fg-dim); }
.text-brand { color: var(--accent); }

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px var(--gutter);
  background: rgba(13,13,13,0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(39,39,39,0.6);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}
.nav-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 32px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--fg); }
.nav-cta {
  margin-left: auto;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  transition: opacity 0.15s, transform 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px var(--gutter) 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197,241,53,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { flex: 1; max-width: 620px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.eyebrow-dot {
  position: relative;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.eyebrow-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulse-ring 2s ease-out infinite;
}
.hero-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline .accent { color: var(--accent); }
.hero-sub {
  font-size: 19px;
  line-height: 1.65;
  color: var(--fg-dim);
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 0 0 rgba(197,241,53,0.3);
}
.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197,241,53,0.25);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid var(--border-2);
  transition: border-color 0.15s, color 0.15s;
}
.btn-secondary:hover {
  border-color: var(--fg-dim);
  color: var(--accent);
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-dim);
}
.hero-meta-item svg { color: var(--accent); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.pipeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  animation: float 6s ease-in-out infinite;
}
.pipeline-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(197,241,53,0.15), transparent 50%);
  z-index: -1;
}
.pipeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.pipeline-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pipeline-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.status-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.pipeline-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.pipeline-item:last-child { border-bottom: none; }
.p-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.p-icon--research { background: linear-gradient(135deg, #1a3a5c, #234b75); }
.p-icon--write    { background: linear-gradient(135deg, #3b2a6b, #523d8a); }
.p-icon--review   { background: linear-gradient(135deg, #5c3d1a, #7a5228); }
.p-icon--sent     { background: linear-gradient(135deg, #1a3d2a, #2a5540); }
.p-info { flex: 1; }
.p-label { font-size: 13px; font-weight: 500; color: var(--fg); }
.p-sub   { font-size: 11px; color: var(--fg-dim); margin-top: 2px; }
.p-count {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
}
.p-count--accent { color: var(--accent); }
.approve-btn {
  width: 100%;
  padding: 12px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  cursor: default;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-reply-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  animation: float 6s ease-in-out infinite;
  animation-delay: -3s;
}
.reply-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
}
.reply-info { flex: 1; }
.reply-label { font-size: 13px; font-weight: 600; color: var(--fg); }
.reply-sub   { font-size: 12px; color: var(--fg-dim); margin-top: 2px; }

/* ── SOCIAL PROOF BAR ──────────────────────────────────────── */
.social-proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px var(--gutter);
}
.social-proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.social-proof-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  white-space: nowrap;
}
.social-proof-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.social-stat {
  display: flex;
  flex-direction: column;
}
.social-stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.social-stat-label {
  font-size: 12px;
  color: var(--fg-dim);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ── PROBLEM ────────────────────────────────────────────────── */
.problem {
  padding: 120px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.problem-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.problem-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-dim);
}
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
.problem-item:hover {
  border-color: var(--border-2);
  background: var(--surface-2);
}
.problem-icon {
  width: 32px; height: 32px;
  background: rgba(197,241,53,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.problem-item-text { font-size: 15px; color: var(--fg-dim); line-height: 1.5; }
.problem-item-text strong { color: var(--fg); font-weight: 600; }

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.how {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px var(--gutter);
}
.how-header {
  max-width: var(--max-w);
  margin: 0 auto 80px;
}
.how-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.how-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.02em;
  color: var(--fg);
}
.steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--border-2), var(--accent));
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.step-icon-wrap {
  width: 96px; height: 96px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--accent), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.step:hover .step-icon-wrap {
  border-color: rgba(197,241,53,0.3);
  box-shadow: 0 0 32px rgba(197,241,53,0.12);
}
.step:hover .step-icon-wrap::after { opacity: 0.3; }
.step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.step-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-dim);
  max-width: 280px;
}

/* ── FEATURES ───────────────────────────────────────────────── */
.features {
  padding: 120px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── COMPARISON ─────────────────────────────────────────────── */
.comparison {
  padding: 120px var(--gutter);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.comparison-inner { max-width: var(--max-w); margin: 0 auto; }
.comp-header { margin-bottom: 48px; }
.comp-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}
.comp-sub {
  font-size: 16px;
  color: var(--fg-dim);
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comp-table thead th {
  padding: 20px 28px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-dim);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.comp-table thead th:first-child { color: transparent; }
.comp-table thead th:nth-child(2) {
  background: rgba(197,241,53,0.04);
  color: var(--fg);
}
.comp-table thead th:nth-child(3) {
  background: rgba(255,255,255,0.02);
  color: var(--fg-dim);
}
.th-vetted { color: var(--accent) !important; }
.comp-table td {
  padding: 18px 28px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.comp-table td:first-child {
  font-weight: 600;
  color: var(--fg);
  font-size: 13px;
}
.check-icon { color: var(--accent); font-size: 18px; font-weight: 700; }
.x-icon { color: var(--fg-dim); font-size: 18px; }
.comp-table td:nth-child(2) {
  background: rgba(197,241,53,0.03);
  border-left: 1px solid rgba(197,241,53,0.08);
  border-right: 1px solid rgba(197,241,53,0.08);
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials {
  padding: 120px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}
.testimonials-sub { font-size: 16px; color: var(--fg-dim); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  border-color: rgba(197,241,53,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--fg-dim);
  flex: 1;
}
.testimonial-quote::before { content: '"'; }
.testimonial-quote::after  { content: '"'; }
.testimonial-quote::before,
.testimonial-quote::after { color: var(--accent); font-family: var(--font-head); font-size: 24px; font-weight: 800; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--bg);
  flex-shrink: 0;
}
.author-info {}
.author-name { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--fg); }
.author-role { font-size: 12px; color: var(--fg-dim); margin-top: 2px; }
.stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }

/* ── PRICING ────────────────────────────────────────────────── */
.pricing {
  padding: 120px var(--gutter);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}
.pricing-sub { font-size: 16px; color: var(--fg-dim); }
.pricing-card-wrap { display: flex; justify-content: center; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  position: relative;
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(197,241,53,0.2), transparent 60%);
  z-index: -1;
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
}
.pricing-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 88px;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-amount .period { font-size: 32px; color: var(--fg-dim); }
.pricing-desc {
  font-size: 16px;
  color: var(--fg-dim);
  margin-bottom: 36px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  text-align: left;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
}
.pricing-features li svg { color: var(--accent); flex-shrink: 0; }
.pricing-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 0 0 rgba(197,241,53,0.3);
}
.pricing-cta:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197,241,53,0.25);
}
.pricing-note { font-size: 13px; color: var(--fg-dim); margin-top: 16px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq {
  padding: 120px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.faq-header { text-align: center; margin-bottom: 64px; }
.faq-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}
.faq-sub { font-size: 16px; color: var(--fg-dim); }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  background: var(--surface);
  overflow: hidden;
  transition: background 0.2s;
}
.faq-item:hover { background: var(--surface-2); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}
.faq-q-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}
.faq-chevron {
  font-size: 18px;
  color: var(--fg-dim);
  transition: transform 0.25s ease, color 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-a-text {
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-dim);
}

/* ── FINAL CTA ──────────────────────────────────────────────── */
.final-cta {
  background: var(--accent);
  padding: 120px var(--gutter);
  text-align: center;
}
.final-cta-inner { max-width: 680px; margin: 0 auto; }
.final-cta-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--bg);
  margin-bottom: 20px;
}
.final-cta-body {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(13,13,13,0.65);
  margin-bottom: 40px;
}
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--bg);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  border-radius: 12px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.final-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px var(--gutter) 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--fg);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 14px; color: var(--fg-dim); }
.footer-links {
  display: flex;
  gap: 80px;
}
.footer-col-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--fg); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: var(--fg-dim); }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 13px;
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--fg); }

/* ── Scroll Animations Script (inline) ──────────────────────── */
/* Applied via JS IntersectionObserver */

/* ── Bento Grid — Premium ──────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  padding: 4px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

/* Outer glow on the whole grid */
.bento-grid::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(197,241,53,0.06), rgba(99,179,237,0.04), rgba(168,85,247,0.04));
  z-index: 0;
  pointer-events: none;
}

.bento-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.4s ease,
    background 0.3s ease;
}
.bento-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(197,241,53,0.15);
  border-color: rgba(197,241,53,0.2);
  background: var(--color-surface-2);
  z-index: 1;
}
.bento-card--wide { grid-column: span 2; }
.bento-card--hero { grid-column: span 3; }

/* Glow orbs — per-card ambient light */
.bento-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 0;
}
.bento-card:hover .bento-glow-orb { opacity: 1; }
.bento-glow-orb--blue    { width: 200px; height: 200px; background: rgba(99,179,237,0.2); top: -40px; right: -40px; }
.bento-glow-orb--purple { width: 160px; height: 160px; background: rgba(168,85,247,0.2); top: -30px; right: -20px; }
.bento-glow-orb--green  { width: 140px; height: 140px; background: rgba(74,222,128,0.2); top: -20px; right: -20px; }
.bento-glow-orb--amber  { width: 180px; height: 180px; background: rgba(245,158,11,0.18); top: -30px; right: -20px; }
.bento-glow-orb--brand  { width: 160px; height: 160px; background: rgba(197,241,53,0.18); top: -20px; right: -20px; }
.bento-glow-orb--info   { width: 160px; height: 160px; background: rgba(99,179,237,0.18); top: -20px; right: -20px; }

/* Top edge shimmer on hover */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(197,241,53,0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.bento-card:hover::before { opacity: 1; }

/* Icon wrapper */
.bento-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  /* Elevated icon styling with subtle border */
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.bento-card:hover .bento-icon-wrap {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.bento-icon-wrap--blue    { background: linear-gradient(135deg, rgba(30,58,95,0.9), rgba(42,79,122,0.9)); }
.bento-icon-wrap--purple  { background: linear-gradient(135deg, rgba(61,46,107,0.9), rgba(90,62,138,0.9)); }
.bento-icon-wrap--green   { background: linear-gradient(135deg, rgba(26,61,42,0.9), rgba(42,85,56,0.9)); }
.bento-icon-wrap--amber   { background: linear-gradient(135deg, rgba(92,61,26,0.9), rgba(122,82,40,0.9)); }
.bento-icon-wrap--brand   { background: linear-gradient(135deg, rgba(50,65,20,0.9), rgba(70,88,30,0.9)); }
.bento-icon-wrap--info    { background: linear-gradient(135deg, rgba(30,58,95,0.9), rgba(42,75,117,0.9)); }

/* Content */
.bento-content { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bento-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-fg);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.bento-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-fg-muted);
}

/* Footer row */
.bento-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 4px;
  position: relative;
  z-index: 1;
}
.bento-stat-group { display: flex; gap: 16px; flex-wrap: wrap; }
.bento-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-fg-muted);
}
.bento-stat svg { color: var(--color-fg-subtle); flex-shrink: 0; }

/* Tags */
.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
}
.bento-tag--ai { background: rgba(197,241,53,0.1); color: var(--accent); border: 1px solid rgba(197,241,53,0.2); }
.bento-tag--data { background: rgba(99,179,237,0.1); color: #63B3F0; border: 1px solid rgba(99,179,237,0.2); }
.bento-tag--track { background: rgba(168,85,247,0.1); color: #A855F7; border: 1px solid rgba(168,85,247,0.2); }

/* Staggered scroll entrance */
.bento-card { opacity: 0; transform: translateY(32px); }
.bento-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.bento-card.delay-1 { transition-delay: 0.08s; }
.bento-card.delay-2 { transition-delay: 0.16s; }
.bento-card.delay-3 { transition-delay: 0.24s; }
.bento-card.delay-4 { transition-delay: 0.32s; }
.bento-card.delay-5 { transition-delay: 0.40s; }
.bento-card.delay-6 { transition-delay: 0.48s; }

/* ── Premium Features Section Header ───────────────────────── */
.features-header { margin-bottom: 56px; }
.features-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.025em;
  color: var(--color-fg);
  line-height: 1.05;
}

/* ── Animated Gradient Border ─────────────────────────────── */
.gradient-border-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gradient-border-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(197,241,53,0.4), rgba(99,179,237,0.2), rgba(168,85,247,0.2));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gradient-border-card:hover::before { opacity: 1; }

/* ── Hero Gradient Mesh ────────────────────────────────────── */
.hero-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.07;
  animation: mesh-float 8s ease-in-out infinite;
}
.hero-mesh-blob--1 {
  width: 500px; height: 500px;
  background: #C5F135;
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero-mesh-blob--2 {
  width: 400px; height: 400px;
  background: #63B3F0;
  bottom: 0; left: 20%;
  animation-delay: -4s;
}
.hero-mesh-blob--3 {
  width: 300px; height: 300px;
  background: #A855F7;
  top: 30%; right: 20%;
  animation-delay: -2s;
}
@keyframes mesh-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.97); }
}

/* ── Text Gradient Animation ──────────────────────────────── */
.text-gradient-anim {
  background: linear-gradient(90deg, var(--accent), #63B3F0, #A855F7, var(--accent));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradientShift 6s ease infinite;
}
@keyframes textGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Pricing Toggle ─────────────────────────────────────────── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.pricing-toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-dim);
  cursor: pointer;
  transition: color 0.2s;
}
.pricing-toggle-label.active { color: var(--fg); }
.pricing-toggle-track {
  width: 48px; height: 26px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.pricing-toggle-track.annual {
  background: rgba(197,241,53,0.15);
  border-color: rgba(197,241,53,0.3);
}
.pricing-toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: var(--fg);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s;
}
.pricing-toggle-track.annual .pricing-toggle-thumb {
  transform: translateX(22px);
  background: var(--accent);
}
.pricing-save-badge {
  background: rgba(197,241,53,0.15);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── Testimonial Stars Row ─────────────────────────────────── */
.testimonial-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.testimonial-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial-stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 36px;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
}
.testimonial-stat-label {
  font-size: 13px;
  color: var(--fg-dim);
}
.testimonial-stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* ── FAQ Enhanced ───────────────────────────────────────────── */
.faq-item.open .faq-q-text { color: var(--accent); }
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--fg-dim);
}

/* ── Marquee/Scroll Strip ──────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-inner {
  display: inline-flex;
  gap: 48px;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: flex;
  align-items: center;
  gap: 12px;
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

/* ── Stagger Scroll Reveal Enhancement ─────────────────────── */
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-entrance {
  opacity: 0;
  animation: slideUpFade 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.animate-entrance--1 { animation-delay: 0.1s; }
.animate-entrance--2 { animation-delay: 0.2s; }
.animate-entrance--3 { animation-delay: 0.3s; }
.animate-entrance--4 { animation-delay: 0.45s; }
.animate-entrance--5 { animation-delay: 0.6s; }

/* ── Comparison Badges ─────────────────────────────────────── */
.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.compare-badge--vetted {
  background: rgba(197,241,53,0.12);
  color: var(--accent);
}
.compare-badge--competitor {
  background: rgba(255,255,255,0.06);
  color: var(--fg-dim);
}

/* ── Integration Logos Row ─────────────────────────────────── */
.integrations-row {
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.integrations-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  white-space: nowrap;
}
.integrations-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.integration-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg-dim);
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}
.integration-logo:hover {
  border-color: rgba(197,241,53,0.3);
  color: var(--fg);
}
.integration-logo svg { flex-shrink: 0; }

/* ── Step Badge + Tags ─────────────────────────────────────── */
.step-badge {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(197,241,53,0.1);
  border: 1px solid rgba(197,241,53,0.2);
  padding: 4px 10px;
  border-radius: 6px;
  align-self: flex-start;
}
.step-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.step-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-dim);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}
.step:hover .step-tag {
  border-color: rgba(197,241,53,0.2);
  color: var(--fg);
}

/* ── Step Connectors ────────────────────────────────────────── */
.step-connector {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.step-connector-1 { left: calc(33.33% - 12px); }
.step-connector-2 { left: calc(66.66% - 12px); }

/* ── Comparison Enhanced ────────────────────────────────────── */
.comp-feature-col { min-width: 240px; }
.th-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.comp-feature-icon {
  font-size: 16px;
  margin-right: 8px;
}
.comp-vetted-col {
  background: rgba(197,241,53,0.03) !important;
  border-left: 1px solid rgba(197,241,53,0.08);
  border-right: 1px solid rgba(197,241,53,0.08);
}
.comp-manual-col {
  font-size: 13px;
}
.comp-cost {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
  display: block;
}
.comp-note {
  font-size: 11px;
  color: var(--fg-dim);
  display: block;
  margin-top: 2px;
}
.comp-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  padding: 28px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.comp-summary-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.comp-summary-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 40px;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.comp-summary-num--accent { color: var(--accent); }
.comp-summary-label { font-size: 13px; color: var(--fg-dim); }
.comp-summary-vs {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Final CTA Animated ────────────────────────────────────── */
.final-cta::before {

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--wide { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { gap: 48px; }
  .testimonial-stats { gap: 24px; }
  .step-connector { display: none; }
  .comp-summary { flex-direction: column; gap: 16px; }
}
@media (max-width: 900px) {
  .hero { flex-direction: column; gap: 48px; padding-top: 100px; }
  .hero-visual { flex: none; width: 100%; max-width: 480px; }
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; position: relative; }
  .steps::before { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .comp-table { font-size: 13px; }
  .comp-table td, .comp-table thead th { padding: 14px 16px; }
  .nav-links { display: none; }
  .testimonial-stats { gap: 20px; }
  .testimonial-stat-num { font-size: 28px; }
  .pricing-toggle { flex-wrap: wrap; }
  .integrations-row { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 40px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .pricing-card { padding: 40px 28px; }
  .pricing-amount { font-size: 64px; }
  .footer-bottom { flex-direction: column; }
  .pricing-toggle { gap: 8px; }
  .integrations-logos { gap: 10px; }
  .integration-logo { padding: 6px 12px; font-size: 12px; }
  .comp-table { font-size: 12px; }
  .comp-summary { padding: 20px; }
  .comp-summary-num { font-size: 32px; }
  .comp-table th:first-child { min-width: 180px; }
}