/* ═══════════════════════════════════════════════════════════════════
   AI Visibility — Landing Page Styles
   Premium marketing page for unauthenticated visitors.
   All selectors prefixed .landing- to avoid dashboard collisions.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Page wrapper ── */

.landing-page {
  --landing-max: 1140px;
  --landing-gutter: 2rem;
  max-width: 100% !important;
  padding: 0 !important;
  overflow-x: hidden;
}

/* ── Shared section inner ── */

.landing-section-inner {
  max-width: var(--landing-max);
  margin: 0 auto;
  padding: 0 var(--landing-gutter);
}

/* ── Typography ── */

.landing-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.landing-section-heading {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}

.landing-section-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 600px;
}

/* ── Buttons ── */

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  background: var(--accent);
  color: #fff;
  white-space: nowrap;
}
.landing-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 187, 216, 0.35);
}
.landing-btn--sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}
.landing-btn--lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}
.landing-btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.landing-btn--outline:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 187, 216, 0.35);
}
.landing-btn--white {
  background: #fff;
  color: var(--text);
}
.landing-btn--white:hover {
  background: #f0f7fc;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
}
.landing-btn--full {
  width: 100%;
}

/* ═════════════════════════════════════════════════════════════════
   NAVIGATION
   ═════════════════════════════════════════════════════════════════ */

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(240, 247, 252, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.landing-nav--scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 3px rgba(6, 35, 96, 0.06), 0 4px 12px rgba(6, 35, 96, 0.04);
}

.landing-nav-inner {
  /* width: 100% so the inner fills the flex parent — without this, the
     inner shrinks to fit-content and logo+links touch each other */
  width: 100%;
  max-width: var(--landing-max);
  margin: 0 auto;
  padding: 0 var(--landing-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

/* Left group: brand + primary nav links */
.landing-nav-left {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  min-width: 0;
}

/* Right group: account actions (Sign In, Get Started) */
.landing-nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.landing-logo-link {
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.landing-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.landing-logo-icon {
  width: 32px;
  height: 32px;
}
.landing-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* Primary nav links — pill hover, accent active state matching dashboard */
.landing-nav-primary {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.landing-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.landing-nav-link:hover {
  color: var(--text);
  background: rgba(0, 187, 216, 0.06);
}
.landing-nav-link--active {
  color: var(--accent);
  background: rgba(0, 187, 216, 0.1);
  font-weight: 600;
}
.landing-nav-link--active:hover {
  background: rgba(0, 187, 216, 0.14);
}

/* Sign In sits in the right group as a quieter text link with a subtle
   left divider — separates account actions from primary nav visually */
.landing-nav-signin {
  padding: 0.5rem 0.85rem 0.5rem 1rem;
  margin-left: 0.5rem;
  border-left: 1px solid var(--border);
  border-radius: 0;
}
.landing-nav-signin:hover {
  background: transparent;
  color: var(--text);
}

/* Mobile toggle */
.landing-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.landing-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.landing-mobile-toggle--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.landing-mobile-toggle--open span:nth-child(2) {
  opacity: 0;
}
.landing-mobile-toggle--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.landing-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 var(--landing-gutter) 1.25rem;
  gap: 0.25rem;
  max-width: var(--landing-max);
  margin: 0 auto;
}
.landing-mobile-menu--open {
  display: flex;
}
.landing-mobile-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.landing-mobile-link:hover {
  color: var(--text);
}

/* ═════════════════════════════════════════════════════════════════
   HERO
   ═════════════════════════════════════════════════════════════════ */

.landing-hero {
  padding: 6rem 0 5rem;
  position: relative;
  background: linear-gradient(168deg, var(--bg) 0%, #e8f4fd 50%, #f0f7fc 100%);
  overflow: hidden;
}

/* Background decorative orbs */
.landing-hero::before,
.landing-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}
.landing-hero::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 187, 216, 0.3) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}
.landing-hero::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10, 58, 143, 0.15) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
}

/* Dot grid pattern overlay */
.landing-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(6, 35, 96, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.landing-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.landing-hero-heading {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}

/* Gradient text highlight */
.landing-hero-heading .landing-gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #0078d4 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-hero-sub {
  font-size: 1.175rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 2rem;
  max-width: 520px;
}

.landing-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Dashboard Mockup ── */

.landing-hero-visual {
  position: relative;
}

.landing-mockup {
  background: var(--surface);
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(6, 35, 96, 0.06),
    0 8px 24px rgba(6, 35, 96, 0.08),
    0 24px 48px rgba(6, 35, 96, 0.06);
  overflow: hidden;
  animation: landingFloat 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

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

.landing-mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #f5f5f7;
  border-bottom: 1px solid #e5e7eb;
}
.landing-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.landing-mockup-title {
  margin-left: 8px;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
}

.landing-mockup-body {
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.landing-mockup-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.landing-mockup-score-ring {
  position: relative;
  width: 100px;
  height: 100px;
}
.landing-mockup-score-ring svg {
  width: 100%;
  height: 100%;
}
.landing-mockup-score-ring .landing-ring-fill {
  stroke-dasharray: 0 264;
  transition: stroke-dasharray 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.landing-mockup-score-ring .landing-ring-fill.landing-ring-animated {
  stroke-dasharray: 198 66;
}
.landing-mockup-score-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
}
.landing-mockup-score-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 600;
}

.landing-mockup-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.landing-mockup-bar-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.landing-mockup-bar-label {
  font-size: 0.6875rem;
  color: var(--text-dim);
  width: 68px;
  flex-shrink: 0;
  font-weight: 500;
}
.landing-mockup-bar {
  flex: 1;
  height: 8px;
  background: #f0f2f5;
  border-radius: 4px;
  overflow: hidden;
}
.landing-mockup-bar-fill {
  height: 100%;
  border-radius: 4px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.landing-mockup-bar-fill.landing-bar-animated {
  /* width set via data attribute / JS */
}
.landing-mockup-bar-val {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  width: 24px;
  text-align: right;
}

/* Provider badges row in mockup */
.landing-mockup-providers {
  display: flex;
  gap: 0.375rem;
  padding: 0.75rem 1.5rem;
  border-top: 1px solid #f0f2f5;
  flex-wrap: wrap;
}
.landing-mockup-provider-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 600;
  background: #f5f7fa;
  color: var(--text-dim);
}
.landing-mockup-provider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* Floating accent cards around mockup */
.landing-floating-card {
  position: absolute;
  background: var(--surface);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(6, 35, 96, 0.1), 0 0 0 1px rgba(6, 35, 96, 0.04);
  padding: 10px 14px;
  font-size: 0.75rem;
  z-index: 3;
  animation: landingFloat 5s ease-in-out infinite;
}

.landing-floating-sentiment {
  top: -12px;
  right: -16px;
  animation-delay: -1.5s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.landing-floating-sentiment-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.landing-floating-sentiment span {
  font-weight: 700;
  color: var(--green);
}

.landing-floating-rec {
  bottom: 20px;
  left: -24px;
  animation-delay: -3s;
  max-width: 180px;
}
.landing-floating-rec-label {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2px;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.landing-floating-rec-text {
  color: var(--text-dim);
  line-height: 1.4;
  font-size: 0.6875rem;
}

/* ═════════════════════════════════════════════════════════════════
   SOCIAL PROOF / STATS BAR
   ═════════════════════════════════════════════════════════════════ */

.landing-proof {
  padding: 3rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.landing-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.landing-stat {
  text-align: center;
}
.landing-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  background: rgba(0, 187, 216, 0.08);
  color: var(--accent);
}
.landing-stat-icon svg {
  width: 20px;
  height: 20px;
}
.landing-stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.landing-stat-num .landing-stat-suffix {
  font-size: 1.75rem;
  color: var(--accent);
}
.landing-stat-label {
  font-size: 0.8125rem;
  color: var(--text-dim);
  font-weight: 500;
}

.landing-proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ═════════════════════════════════════════════════════════════════
   WHY IT MATTERS
   ═════════════════════════════════════════════════════════════════ */

.landing-why {
  padding: 5rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.landing-why::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 187, 216, 0.08) 0%, transparent 70%);
  top: -80px;
  left: -100px;
  pointer-events: none;
}

.landing-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.landing-why-content {
  position: relative;
  z-index: 1;
}
.landing-why-content .landing-section-heading {
  max-width: 480px;
}
.landing-why-content .landing-section-sub {
  margin-bottom: 1.5rem;
}

.landing-why-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.landing-why-point {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.landing-why-point-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.landing-why-point-icon svg {
  width: 100%;
  height: 100%;
}
.landing-why-point-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-dim);
}
.landing-why-point-text strong {
  color: var(--text);
}

/* Visual: comparison table */
.landing-why-visual {
  position: relative;
  z-index: 1;
}

.landing-compare {
  border-radius: var(--radius-panel);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

/* Column headers */
.landing-compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.landing-compare-header-col {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.landing-compare-header-col--old {
  background: #fef2f2;
}
.landing-compare-header-col--new {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
}
.landing-compare-header-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.landing-compare-header-col--old .landing-compare-header-icon {
  background: rgba(220, 38, 38, 0.1);
  color: var(--red);
}
.landing-compare-header-col--new .landing-compare-header-icon {
  background: rgba(22, 163, 74, 0.1);
  color: var(--green);
}
.landing-compare-header-icon svg {
  width: 18px;
  height: 18px;
}
.landing-compare-header-text {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.landing-compare-header-col--old .landing-compare-header-text {
  color: var(--red);
}
.landing-compare-header-col--new .landing-compare-header-text {
  color: var(--green);
}

/* Comparison rows */
.landing-compare-rows {
  background: var(--surface);
}
.landing-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.landing-compare-cell {
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.4;
}
.landing-compare-cell--old {
  color: var(--text-dim);
  background: rgba(254, 242, 242, 0.3);
}
.landing-compare-cell--new {
  color: var(--text);
  font-weight: 500;
  background: rgba(240, 253, 244, 0.4);
  position: relative;
}
/* Subtle left glow on new cells */
.landing-compare-cell--new::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green);
  opacity: 0.5;
}
.landing-compare-cell-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.landing-compare-cell--old .landing-compare-cell-icon {
  color: #f87171;
}
.landing-compare-cell--new .landing-compare-cell-icon {
  color: var(--green);
}

/* Bottom banner */
.landing-compare-footer {
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.04em;
}

/* ═════════════════════════════════════════════════════════════════
   PLATFORM PILLS
   ═════════════════════════════════════════════════════════════════ */

.landing-platforms {
  padding: 5rem 0;
  text-align: center;
  background: var(--surface);
  position: relative;
}

/* Curved top divider */
.landing-platforms::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--surface);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.landing-platforms .landing-section-sub {
  margin: 0 auto 2.5rem;
}

.landing-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.landing-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(6, 35, 96, 0.04);
}
.landing-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(6, 35, 96, 0.1);
  border-color: var(--accent);
}
.landing-pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  animation: landingPulse 2.5s ease-in-out infinite;
}
.landing-pill:nth-child(2) .landing-pill-dot { animation-delay: 0.3s; }
.landing-pill:nth-child(3) .landing-pill-dot { animation-delay: 0.6s; }
.landing-pill:nth-child(4) .landing-pill-dot { animation-delay: 0.9s; }
.landing-pill:nth-child(5) .landing-pill-dot { animation-delay: 1.2s; }
.landing-pill:nth-child(6) .landing-pill-dot { animation-delay: 1.5s; }

@keyframes landingPulse {
  0%, 100% { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  50% { box-shadow: 0 0 0 4px currentColor; opacity: 0.6; }
}

/* ═════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═════════════════════════════════════════════════════════════════ */

.landing-how {
  padding: 5rem 0;
  text-align: center;
  background: var(--bg);
}

.landing-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
}

.landing-step {
  flex: 1;
  max-width: 300px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-radius: var(--radius-card);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.landing-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(6, 35, 96, 0.08);
}

.landing-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #0078d4 100%);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 20px rgba(0, 187, 216, 0.3);
}

.landing-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.625rem;
}

.landing-step-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-dim);
}

/* Connector: sits between step cards, vertically centered */
.landing-step-connector {
  flex-shrink: 0;
  width: 48px;
  align-self: center;
  position: relative;
  height: 24px;
}
/* Horizontal line — vertically centered */
.landing-step-connector::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--border) 0%, var(--accent) 100%);
  border-radius: 1px;
  transform: translateY(-50%);
}
/* Arrow chevron — vertically centered, at the right edge */
.landing-step-connector::after {
  content: '';
  position: absolute;
  right: 2px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--accent);
  border-top: 2.5px solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
}

/* ═════════════════════════════════════════════════════════════════
   FEATURES GRID
   ═════════════════════════════════════════════════════════════════ */

.landing-features {
  padding: 5rem 0;
  text-align: center;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.landing-features::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  bottom: -120px;
  right: -120px;
  pointer-events: none;
}

.landing-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
  position: relative;
  z-index: 1;
}

.landing-feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.75rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.landing-feature-card:nth-child(2) { border-left-color: var(--blue); }
.landing-feature-card:nth-child(3) { border-left-color: var(--orange); }
.landing-feature-card:nth-child(4) { border-left-color: var(--green); }

.landing-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.landing-feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.landing-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(0, 187, 216, 0.08);
  color: var(--accent);
}
.landing-feature-card:nth-child(2) .landing-feature-icon {
  background: rgba(0, 120, 212, 0.08);
  color: var(--blue);
}
.landing-feature-card:nth-child(3) .landing-feature-icon {
  background: rgba(234, 88, 12, 0.08);
  color: var(--orange);
}
.landing-feature-card:nth-child(4) .landing-feature-icon {
  background: rgba(22, 163, 74, 0.08);
  color: var(--green);
}
.landing-feature-icon svg {
  width: 20px;
  height: 20px;
}

.landing-feature-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
}

.landing-feature-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

/* ── Feature Mini Visualizations ── */

.landing-feature-viz {
  margin-top: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.875rem 1rem;
}

/* Visibility: donut + trend */
.landing-viz-visibility {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.landing-viz-donut {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.landing-viz-donut svg {
  width: 100%;
  height: 100%;
}
.landing-viz-donut-val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--text);
}
.landing-viz-donut-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.landing-viz-label {
  font-size: 0.6875rem;
  color: var(--text-dim);
  font-weight: 500;
}
.landing-viz-strong {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
}
.landing-viz-trend {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--green);
}
.landing-viz-trend svg {
  width: 12px;
  height: 12px;
}

/* Preference: ranking list */
.landing-viz-ranking {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.landing-viz-rank-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}
.landing-viz-rank-pos {
  width: 18px;
  font-weight: 800;
  color: var(--text-dim);
  text-align: center;
  flex-shrink: 0;
}
.landing-viz-rank-row:first-child .landing-viz-rank-pos {
  color: var(--blue);
}
.landing-viz-rank-name {
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
  min-width: 80px;
}
.landing-viz-rank-row:first-child .landing-viz-rank-name {
  color: var(--blue);
}
.landing-viz-rank-bar {
  flex: 1;
  height: 6px;
  background: #f0f2f5;
  border-radius: 3px;
  overflow: hidden;
}
.landing-viz-rank-bar-fill {
  height: 100%;
  border-radius: 3px;
}

/* Sentiment: segmented bar */
.landing-viz-sentiment {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.landing-viz-seg-bar {
  display: flex;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  gap: 2px;
}
.landing-viz-seg {
  border-radius: 3px;
}
.landing-viz-seg-labels {
  display: flex;
  justify-content: space-between;
}
.landing-viz-seg-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.625rem;
  color: var(--text-dim);
  font-weight: 500;
}
.landing-viz-seg-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* Citations: source list */
.landing-viz-citations {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.landing-viz-source-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}
.landing-viz-source-name {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--text-dim);
  font-weight: 500;
}
.landing-viz-source-icon {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: rgba(22, 163, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-viz-source-icon svg {
  width: 8px;
  height: 8px;
  color: var(--green);
}
.landing-viz-source-count {
  font-weight: 700;
  color: var(--text);
  background: #f0f2f5;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.6875rem;
}

.landing-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s ease;
  margin-top: 0.75rem;
}
.landing-feature-card:nth-child(2) .landing-feature-link { color: var(--blue); }
.landing-feature-card:nth-child(3) .landing-feature-link { color: var(--orange); }
.landing-feature-card:nth-child(4) .landing-feature-link { color: var(--green); }
.landing-feature-link:hover {
  gap: 0.625rem;
}
.landing-feature-link svg {
  width: 14px;
  height: 14px;
}

/* ═════════════════════════════════════════════════════════════════
   FAQ
   ═════════════════════════════════════════════════════════════════ */

.landing-faq {
  padding: 5rem 0;
  background: var(--bg);
}

.landing-faq-grid {
  max-width: 720px;
  margin: 2.5rem auto 0;
}

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

.landing-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.landing-faq-q-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.landing-faq-q-icon {
  width: 20px;
  height: 20px;
  color: var(--text-dim);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.landing-faq-item--open .landing-faq-q-icon {
  transform: rotate(45deg);
}

.landing-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.landing-faq-item--open .landing-faq-a {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.landing-faq-a-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-dim);
}

/* ═════════════════════════════════════════════════════════════════
   DEMO FORM
   ═════════════════════════════════════════════════════════════════ */

.landing-demo {
  padding: 5rem 0;
  background: var(--surface);
}

.landing-demo-card {
  background: linear-gradient(135deg, #f8fbff 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  padding: 3rem;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.landing-demo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #0078d4, #6366f1);
}

.landing-demo-text {
  margin-bottom: 2rem;
}
.landing-demo-text .landing-section-heading {
  margin-bottom: 0.5rem;
}

.landing-demo-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.landing-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.landing-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.landing-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 187, 216, 0.12);
}
.landing-input::placeholder {
  color: #9ca3af;
}

.landing-demo-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  text-align: center;
}
.landing-demo-success-icon {
  width: 48px;
  height: 48px;
}
.landing-demo-success-icon svg {
  width: 100%;
  height: 100%;
}
.landing-demo-success h3 {
  font-size: 1.125rem;
  color: var(--text);
}

/* ═════════════════════════════════════════════════════════════════
   BOTTOM CTA
   ═════════════════════════════════════════════════════════════════ */

.landing-cta {
  padding: 5rem 0 4.5rem;
  background: linear-gradient(135deg, var(--text) 0%, #0a3a8f 50%, #1e1b4b 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative orbs */
.landing-cta::before,
.landing-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.landing-cta::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 187, 216, 0.18) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}
.landing-cta::after {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  bottom: -120px;
  left: -80px;
}

/* Dot grid overlay */
.landing-cta-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.landing-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.landing-cta-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.125rem;
  max-width: 600px;
}

.landing-cta-sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  max-width: 500px;
}

/* Dual CTA buttons */
.landing-cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.landing-btn--cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.landing-btn--cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

/* Score teaser */
.landing-cta-teaser {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 0.5rem;
}
.landing-cta-teaser-ring {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.landing-cta-teaser-ring svg {
  width: 100%;
  height: 100%;
}
.landing-cta-teaser-q {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
}
.landing-cta-teaser-text {
  text-align: left;
}
.landing-cta-teaser-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.landing-cta-teaser-sub {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
}

.landing-cta-signin {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
}
.landing-cta-signin a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}
.landing-cta-signin a:hover {
  color: #fff;
}

/* ═════════════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════════════ */

.landing-footer {
  padding: 3rem 0 2rem;
  background: #fafcfe;
  border-top: 1px solid var(--border);
}

.landing-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.landing-footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.landing-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.landing-footer-logo {
  width: 24px;
  height: 24px;
}
.landing-footer-tagline {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 280px;
}

.landing-footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.landing-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.landing-footer-link {
  font-size: 0.875rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.landing-footer-link:hover {
  color: var(--accent);
}

.landing-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.landing-footer-copy {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.landing-footer-legal {
  display: flex;
  gap: 1.5rem;
}
.landing-footer-legal a {
  font-size: 0.8125rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.landing-footer-legal a:hover {
  color: var(--text);
}

/* ═════════════════════════════════════════════════════════════════
   MID-PAGE CTA
   ═════════════════════════════════════════════════════════════════ */

.landing-midcta {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, rgba(0, 187, 216, 0.06) 0%, rgba(0, 120, 212, 0.06) 100%);
  border-top: 1px solid rgba(0, 187, 216, 0.12);
  border-bottom: 1px solid rgba(0, 187, 216, 0.12);
  text-align: center;
}
.landing-midcta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.landing-midcta-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.landing-midcta-sub {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

/* ═════════════════════════════════════════════════════════════════
   PRICING BAND (landing page tease — full detail at /#pricing)
   ═════════════════════════════════════════════════════════════════ */

.landing-pricing-band {
  padding: 5rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.landing-pricing-band::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 187, 216, 0.06) 0%, transparent 70%);
  top: -100px;
  right: -120px;
  pointer-events: none;
}

.landing-pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.landing-pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.landing-pricing-card:nth-child(1) { border-top-color: var(--text-dim); }
.landing-pricing-card:nth-child(2) { border-top-color: var(--accent); }
.landing-pricing-card:nth-child(3) { border-top-color: var(--blue); }
.landing-pricing-card:nth-child(4) { border-top-color: #7c3aed; }

.landing-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(6, 35, 96, 0.08);
}

.landing-pricing-card--featured {
  border-color: rgba(0, 187, 216, 0.4);
  box-shadow: 0 6px 20px rgba(0, 187, 216, 0.1);
}

.landing-pricing-card--featured:hover {
  box-shadow: 0 16px 40px rgba(0, 187, 216, 0.18);
}

.landing-pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, #0078d4 100%);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 187, 216, 0.3);
}

.landing-pricing-layer {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.landing-pricing-card:nth-child(2) .landing-pricing-layer { color: var(--accent); }
.landing-pricing-card:nth-child(3) .landing-pricing-layer { color: var(--blue); }
.landing-pricing-card:nth-child(4) .landing-pricing-layer { color: #7c3aed; }

.landing-pricing-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.65rem;
}

.landing-pricing-price {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.landing-pricing-price-suffix {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dim);
}

.landing-pricing-sub {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin: 0.15rem 0 0.85rem;
  min-height: 1em;
}

.landing-pricing-blurb {
  font-size: 0.825rem;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0 0 1rem;
  flex: 1;
}

.landing-pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.55rem 0.85rem;
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
  transition: all 0.2s ease;
}

.landing-pricing-card:nth-child(1) .landing-pricing-cta { border-color: var(--text-dim); color: var(--text-dim); }
.landing-pricing-card:nth-child(3) .landing-pricing-cta { border-color: var(--blue); color: var(--blue); }
.landing-pricing-card:nth-child(4) .landing-pricing-cta { border-color: #7c3aed; color: #7c3aed; }

.landing-pricing-cta:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.landing-pricing-card:nth-child(1) .landing-pricing-cta:hover { background: var(--text-dim); color: #fff; }
.landing-pricing-card:nth-child(3) .landing-pricing-cta:hover { background: var(--blue); color: #fff; }
.landing-pricing-card:nth-child(4) .landing-pricing-cta:hover { background: #7c3aed; color: #fff; }

.landing-pricing-cta--primary {
  background: var(--accent);
  color: #fff;
}

.landing-pricing-cta--primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.landing-pricing-footnote {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.landing-pricing-detail-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.landing-pricing-detail-link:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .landing-pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .landing-pricing-cards {
    grid-template-columns: 1fr;
  }
}

/* Comparison-row tier tag (for "Professional"-only rows) */
.landing-compare-tier-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 120, 212, 0.1);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ═════════════════════════════════════════════════════════════════
   TESTIMONIAL
   ═════════════════════════════════════════════════════════════════ */

.landing-testimonial {
  padding: 4rem 0;
  background: var(--bg);
}
.landing-testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.landing-testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 2rem;
}
.landing-testimonial-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  font-size: 4rem;
  font-style: normal;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  font-family: Georgia, serif;
}
.landing-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.landing-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #0078d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.landing-testimonial-info {
  text-align: left;
}
.landing-testimonial-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
}
.landing-testimonial-role {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

/* ═════════════════════════════════════════════════════════════════
   CTA TRUST REINFORCERS
   ═════════════════════════════════════════════════════════════════ */

.landing-cta-checks {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.landing-cta-check {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 0.375rem 0.875rem;
}
.landing-cta-check svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* ═════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═════════════════════════════════════════════════════════════════ */

.landing-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.landing-animate.landing-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Counter animation */
@keyframes landingCountUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.landing-stat.landing-visible .landing-stat-num {
  animation: landingCountUp 0.5s ease forwards;
}

/* ═════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .landing-nav-links {
    display: none;
  }
  .landing-mobile-toggle {
    display: flex;
  }

  .landing-hero {
    padding: 3rem 0;
  }
  .landing-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .landing-hero-heading {
    font-size: 2.25rem;
  }
  .landing-hero-visual {
    order: -1;
  }
  .landing-floating-rec {
    display: none;
  }

  .landing-section-heading {
    font-size: 1.75rem;
  }

  .landing-proof-inner {
    gap: 2rem;
  }
  .landing-proof-divider {
    display: none;
  }

  .landing-why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .landing-platforms::before {
    display: none;
  }

  .landing-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .landing-step {
    max-width: 100%;
    width: 100%;
  }
  .landing-step-connector {
    width: 24px;
    height: 36px;
    align-self: auto;
    margin: 0 auto;
  }
  .landing-step-connector::before {
    top: 0;
    bottom: 12px;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--border) 0%, var(--accent) 100%);
  }
  .landing-step-connector::after {
    right: auto;
    top: auto;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
    width: 9px;
    height: 9px;
  }

  .landing-features-grid {
    grid-template-columns: 1fr;
  }

  .landing-form-row {
    grid-template-columns: 1fr;
  }

  .landing-demo-card {
    padding: 2rem 1.5rem;
  }

  .landing-cta-heading {
    font-size: 1.75rem;
  }
  .landing-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  .landing-cta-teaser {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .landing-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .landing-footer-brand-col {
    grid-column: 1 / -1;
  }

  .landing-footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .landing-page {
    --landing-gutter: 1.25rem;
  }

  .landing-hero-heading {
    font-size: 1.875rem;
  }

  .landing-hero-ctas {
    flex-direction: column;
  }
  .landing-hero-ctas .landing-btn {
    width: 100%;
  }

  .landing-floating-sentiment {
    display: none;
  }

  .landing-mockup-body {
    flex-direction: column;
    align-items: center;
  }

  .landing-proof-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .landing-compare-header,
  .landing-compare-row {
    grid-template-columns: 1fr;
  }
  .landing-compare-header-col--old {
    border-bottom: 1px solid #fecaca;
  }
  .landing-compare-cell--old {
    border-bottom: 1px dashed var(--border);
  }

  .landing-pill {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
  }

  .landing-section-heading {
    font-size: 1.5rem;
  }

  .landing-footer-grid {
    grid-template-columns: 1fr;
  }
}
