:root {
  --navy: #0b1d3a;
  --blue: #1a56db;
  --blue-light: #eff6ff;
  --purple: #6d28d9;
  --purple-light: #ede9fe;
  --gold: #d97706;
  --gold-light: #fef3c7;
  --green: #059669;
  --green-light: #ecfdf5;
  --text: #111827;
  --muted: #6b7280;
  --light: #f9fafb;
  --border: #e5e7eb;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.vf-site-shell {
  padding: 0 24px;
}

.vf-topbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 8px 10px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-size: 13px;
  color: #4b5563;
}

.vf-topbar__pill {
  background: rgba(26, 86, 219, 0.08);
  border: 1px solid rgba(26, 86, 219, 0.16);
  color: var(--blue);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vf-nav {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.nav-logo {
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.3px;
  text-decoration: none;
}

.nav-logo span {
  color: var(--blue);
}

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

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--blue);
}

.nav-cta {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta:hover {
  background: #1a3560;
}

.hero {
  background: var(--navy);
  padding: 72px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26, 86, 219, 0.2);
  border: 1px solid rgba(26, 86, 219, 0.4);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #93c5fd;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: "✦";
  font-size: 10px;
}

.hero h1 {
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: normal;
  color: #60a5fa;
}

.hero p {
  font-size: 17px;
  color: #94a3b8;
  max-width: 520px;
  margin: 0 auto 32px;
  font-weight: 400;
}

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 13px;
  color: #cbd5e1;
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-proof-item strong {
  color: #fff;
  font-weight: 600;
}

.social-proof-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}

.stars {
  color: #fbbf24;
  letter-spacing: 1px;
  font-size: 12px;
}

.billing-section {
  padding: 40px 32px 0;
  text-align: center;
}

.billing-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 12px;
}

.toggle-wrap {
  display: inline-flex;
  align-items: center;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
}

.toggle-btn {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  background: transparent;
  border-radius: 7px;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  position: relative;
  z-index: 1;
}

.toggle-btn.active {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.annual-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  letter-spacing: 0.02em;
}

.pricing-section {
  padding: 32px 32px 60px;
  max-width: 1360px;
  margin: 0 auto;
}

.pricing-section--flush {
  padding-bottom: 0;
}

.pricing-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 20px;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 12px;
  scrollbar-width: none;
  padding: 14px 6px 24px;
  flex: 1;
}

.pricing-grid::-webkit-scrollbar {
  display: none;
}

.pricing-grid > * {
  scroll-snap-align: start;
}

.pricing-grid.is-switching > * {
  animation: pricingSwap 0.42s ease;
}

.pricing-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  flex-shrink: 0;
}

.pricing-arrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.pricing-arrow:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.card-free,
.card-lite,
.card-pro {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-free:hover,
.card-lite:hover,
.card-pro:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.card-free {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.card-lite {
  padding: 32px;
}

.card-pro {
  background: linear-gradient(180deg, #fff8ec 0%, #fffdf7 100%);
  border-color: #f4c97a;
}

.card-plus {
  background: var(--navy);
  border: 1.5px solid rgba(109, 40, 217, 0.5);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(11, 29, 58, 0.3);
  transform: translateY(-8px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.billing-monthly .card-free,
.billing-monthly .card-lite {
  background: linear-gradient(180deg, #ffffff 0%, #f1f7ff 100%);
  border-color: #c7dcff;
}

.billing-monthly .card-plus {
  background: linear-gradient(180deg, #0b1d3a 0%, #172554 100%);
  border-color: rgba(96, 165, 250, 0.45);
  box-shadow: 0 20px 60px rgba(23, 37, 84, 0.32);
}

.billing-monthly .card-pro {
  background: linear-gradient(180deg, #fff9ee 0%, #fff3da 100%);
  border-color: #f2be61;
  box-shadow: 0 14px 36px rgba(217, 119, 6, 0.14);
}

.most-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.plan-tier.free {
  color: var(--muted);
}

.plan-tier.lite {
  color: var(--blue);
}

.plan-tier.plus {
  color: #a78bfa;
}

.plan-tier.pro {
  color: var(--gold);
}

.plan-name {
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.plan-name.free,
.plan-name.lite {
  color: var(--text);
}

.plan-name.plus {
  color: #fff;
}

.plan-name.pro {
  color: #5c3208;
}

.plan-desc {
  font-size: 14px;
  margin-bottom: 24px;
}

.plan-desc.free,
.plan-desc.lite {
  color: var(--muted);
}

.plan-desc.plus {
  color: #94a3b8;
}

.plan-desc.pro {
  color: #7a4e10;
}

.price-block {
  margin-bottom: 8px;
}

.price-main {
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
}

.price-main.free,
.price-main.lite,
.price-main.pro,
.price-main.plus {
  font-size: 42px;
}

.price-main.free,
.price-main.lite {
  color: var(--text);
}

.price-main.plus {
  color: #fff;
}

.price-main.pro {
  color: #5c3208;
}

.price-main .currency {
  font-size: 22px;
  font-weight: 600;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

.price-main .period {
  font-size: 16px;
  font-weight: 400;
}

.price-sub {
  font-size: 13px;
  margin-top: 4px;
}

.price-sub.free,
.price-sub.lite {
  color: var(--muted);
}

.price-sub.plus {
  color: #94a3b8;
}

.price-sub.pro {
  color: #7a4e10;
}

.price-highlight {
  background: rgba(109, 40, 217, 0.15);
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #c4b5fd;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-highlight::before {
  content: "★";
  color: #a78bfa;
}

.price-highlight--pro {
  background: #fffbf2;
  border-color: #f4c97a;
  color: #7a4e10;
}

.price-highlight--pro::before {
  color: #d97706;
}

.cta-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  transition: all 0.2s;
  margin-bottom: 20px;
  letter-spacing: -0.1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.cta-btn--spaced {
  margin-top: 20px;
}

.card-free .cta-btn,
.card-lite .cta-btn,
.card-plus .cta-btn,
.card-pro .cta-btn {
  margin-top: auto;
}

.store-download-row {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.store-download-link {
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.store-download-badge {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
}

.cta-lite {
  background: var(--navy);
  color: #fff;
}

.cta-free {
  background: linear-gradient(180deg, #eef5ff 0%, #dbeafe 100%);
  color: var(--navy);
  border: 1px solid rgba(96, 165, 250, 0.45);
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.12);
}

.cta-free:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #f8fbff 0%, #dbeafe 100%);
  box-shadow: 0 14px 32px rgba(59, 130, 246, 0.16);
}

.cta-lite:hover {
  background: #1a3560;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(11, 29, 58, 0.2);
}

.cta-plus {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: #fff;
}

.cta-plus:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(109, 40, 217, 0.4);
}

.cta-pro {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #fff;
}

.cta-pro:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(217, 119, 6, 0.25);
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.guarantee.free,
.guarantee.lite {
  color: var(--muted);
}

.guarantee.plus {
  color: #64748b;
}

.guarantee.pro {
  color: #7a4e10;
}

.guarantee--muted {
  color: #64748b;
}

.guarantee-icon {
  font-size: 14px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.feature-item.free,
.feature-item.lite {
  color: var(--text);
}

.feature-item.plus {
  color: #e2e8f0;
}

.feature-item.pro {
  color: #5c3208;
}

.feature-item.is-muted {
  opacity: 0.5;
}

.feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

.check-free {
  background: #f3f4f6;
  color: #6b7280;
}

.check-lite {
  background: var(--blue-light);
  color: var(--blue);
}

.check-plus {
  background: rgba(109, 40, 217, 0.25);
  color: #a78bfa;
}

.check-pro {
  background: #fff1d6;
  color: #b45309;
}

.check-locked {
  background: #f3f4f6;
  color: #d1d5db;
}

.feature-locked {
  color: var(--muted);
  text-decoration: line-through;
}

.feature-new {
  background: var(--gold-light);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.feature-subtext {
  font-size: 12px;
}

.feature-subtext--lite {
  color: var(--muted);
}

.feature-subtext--plus {
  color: #64748b;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 16px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid;
}

.section-label--spaced {
  margin-top: 20px;
}

.section-label.free,
.section-label.lite {
  color: #9ca3af;
  border-color: var(--border);
}

.section-label.plus {
  color: #475569;
  border-color: rgba(255, 255, 255, 0.08);
}

.section-label.pro {
  color: #b45309;
  border-color: #f4c97a;
}

.plan-note {
  margin-top: 18px;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.65;
}

.plan-note.pro {
  background: #fffbf2;
  border: 1px solid #f4c97a;
  color: #7a4e10;
}

.plus-note {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
}

.plus-note__action {
  background: none;
  border: none;
  color: #a78bfa;
  font-weight: 600;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.download-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 56px;
  scroll-margin-top: 96px;
}

.download-section__panel {
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.2) 0%, transparent 28%),
    radial-gradient(circle at right center, rgba(147, 197, 253, 0.22) 0%, transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border: 1px solid rgba(191, 219, 254, 0.95);
  border-radius: 28px;
  padding: 42px 28px;
  text-align: center;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}

.download-section__panel .section-title {
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  letter-spacing: -0.3px;
}

.download-section__panel .section-sub {
  max-width: 540px;
}

.download-section__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.download-section__button {
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 40px rgba(148, 163, 184, 0.14);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.download-section__button:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(148, 163, 184, 0.18);
}

.download-section__button img {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
}

.product-explainer {
  padding: 80px 32px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.product-explainer--compact {
  padding-top: 0;
}

.product-story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  margin-bottom: 20px;
}

.story-card,
.mini-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
}

.story-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.story-kicker::before {
  content: "●";
  font-size: 8px;
}

.story-title,
.deep-dive-title,
.section-title {
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  letter-spacing: -0.3px;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1.1;
}

.story-title,
.deep-dive-title,
.section-title {
  font-size: clamp(34px, 3vw, 44px);
}

.story-title,
.deep-dive-title {
  line-height: 1.15;
  margin-bottom: 12px;
}

.story-text,
.deep-dive-copy {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.story-points {
  display: grid;
  gap: 12px;
}

.story-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text);
}

.story-point-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

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

.feature-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-explainer-grid--slider {
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  grid-template-columns: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  flex: 1;
  padding: 4px 0 8px;
}

.feature-explainer-grid--slider::-webkit-scrollbar {
  display: none;
}

.feature-explainer-grid--slider .mini-feature-card {
  scroll-snap-align: start;
  min-height: 100%;
}

.mini-feature-card--visual {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: 24px;
  align-items: center;
  min-height: 520px;
}

.mini-feature-card__media {
  background: linear-gradient(180deg, #f8fbff 0%, #eaf2ff 100%);
  border: 1px solid rgba(191, 219, 254, 0.8);
  border-radius: 22px;
  padding: 18px;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-feature-card__media img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
}

.mini-feature-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.feature-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  flex-shrink: 0;
}

.feature-arrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.feature-arrow:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.mini-feature-card {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.mini-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.mini-feature-icon--wide {
  width: 84px;
  justify-content: flex-start;
  padding: 0 12px;
}

.mini-feature-icon.blue {
  background: var(--blue-light);
}

.mini-feature-icon.green {
  background: var(--green-light);
}

.mini-feature-icon.purple {
  background: var(--purple-light);
}

.mini-feature-icon img {
  max-width: 28px;
  max-height: 28px;
  object-fit: contain;
  display: block;
}

.mini-feature-icon--wide img {
  max-width: 60px;
  max-height: 20px;
}

.mini-feature-title {
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.mini-feature-copy {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.mini-feature-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.mini-feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text);
}

.mini-feature-list li::before {
  content: "•";
  color: var(--blue);
  font-weight: 700;
}

.inline-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.inline-link:hover {
  text-decoration: underline;
}

.deep-dive-section {
  padding: 24px 32px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.deep-dive-stack {
  display: grid;
  gap: 20px;
}

.deep-dive-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.deep-dive-card.hero {
  background: linear-gradient(135deg, #0b1d3a 0%, #102b58 100%);
  border-color: rgba(26, 86, 219, 0.28);
}

.deep-dive-card.hero .section-eyebrow,
.deep-dive-card.hero .deep-dive-title,
.deep-dive-card.hero .deep-dive-copy,
.deep-dive-card.hero .deep-dive-list li,
.deep-dive-card.hero .factor-card-title,
.deep-dive-card.hero .factor-card-copy,
.deep-dive-card.hero .factor-card-kicker,
.deep-dive-card.hero .note-chip {
  color: #e2e8f0;
}

.deep-dive-card.hero .deep-dive-title {
  color: #fff;
}

.deep-dive-card.hero .factor-card,
.deep-dive-card.hero .note-chip {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.deep-dive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.deep-dive-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.deep-dive-list li {
  display: flex;
  gap: 0;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text);
}

.deep-dive-list li::before {
  content: "✓";
  display: inline-flex;
  flex: 0 0 22px;
  justify-content: center;
  margin-right: 10px;
  color: var(--blue);
  font-weight: 700;
}

.factor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.factor-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
}

.factor-card-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.factor-card-title {
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}

.factor-card-copy {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.note-chip {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text);
}

.savings-bar {
  background: var(--green-light);
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.savings-text {
  font-size: 14px;
  color: #065f46;
  font-weight: 500;
}

.savings-text strong {
  font-weight: 700;
}

.savings-amount {
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
}

.comparison-section {
  padding: 80px 32px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-title {
  font-weight: 800;
  margin-bottom: 12px;
}

.section-title--light {
  color: #fff;
}

.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

.section-sub--light {
  color: #94a3b8;
}

.section-sub--left {
  margin-left: 0;
  margin-right: 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  padding: 12px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
}

.comparison-table th.col-feature {
  text-align: left;
  color: var(--muted);
  font-weight: 500;
}

.comparison-table th.col-free {
  color: #6b7280;
}

.comparison-table th.col-lite {
  color: var(--blue);
}

.comparison-table th.col-plus {
  color: var(--purple);
}

.comparison-table th.col-pro {
  color: var(--gold);
}

.comparison-plan-price {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}

.comparison-table tr.group-header td {
  background: var(--light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 16px;
}

.comparison-table td {
  padding: 13px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.comparison-table td.col-feature {
  color: var(--text);
  font-weight: 500;
}

.feat-desc {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 1px;
}

.comparison-table td.col-free,
.comparison-table td.col-lite,
.comparison-table td.col-plus,
.comparison-table td.col-pro {
  text-align: center;
}

.tick,
.tick-plus,
.tick-pro {
  font-size: 16px;
  font-weight: 700;
}

.tick {
  color: var(--blue);
}

.tick-plus {
  color: var(--purple);
}

.tick-pro {
  color: var(--gold);
}

.cross {
  color: #d1d5db;
  font-size: 18px;
}

.partial {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  padding: 2px 8px;
  border-radius: 4px;
}

.pillars-section {
  background: var(--navy);
  padding: 80px 32px;
  text-align: center;
}

.pillars-section .section-eyebrow {
  color: #60a5fa;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 48px auto 0;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  transition: background 0.2s;
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.pillar-title {
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.pillar-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

.testimonials-section {
  padding: 80px 32px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.testimonial {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

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

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.avatar-blue {
  background: #1a56db;
}

.avatar-green {
  background: #059669;
}

.avatar-purple {
  background: #7c3aed;
}

.author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.author-plan {
  font-size: 11px;
  color: var(--muted);
}

.trust-strip {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.trust-icon {
  font-size: 18px;
}

.pricing-visual-band {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 32px 34px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 26px;
  align-items: center;
}

.pricing-visual-band__media {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(96, 165, 250, 0.22), transparent 24%),
    linear-gradient(180deg, #eef5ff 0%, #dbeafe 100%);
  border: 1px solid rgba(191, 219, 254, 0.8);
}

.pricing-visual-band__mock {
  position: absolute;
  inset: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-visual-band__mock img {
  width: 100%;
  max-width: 760px;
  height: auto;
  display: block;
}

.pricing-visual-band__panel {
  position: absolute;
  width: 44%;
  right: 20px;
  bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.pricing-visual-band__panel img {
  width: 100%;
  display: block;
}

.faq-section {
  padding: 80px 32px;
  max-width: 680px;
  margin: 0 auto;
}

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

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  gap: 16px;
}

.faq-q:hover {
  color: var(--blue);
}

.faq-chevron {
  font-size: 16px;
  color: var(--muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-a.open {
  max-height: 240px;
  padding-bottom: 16px;
}

.faq-chevron.open {
  transform: rotate(180deg);
}

.final-cta {
  background: var(--navy);
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  font-size: 16px;
  color: #94a3b8;
  margin-bottom: 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(109, 40, 217, 0.4);
  text-decoration: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.final-cta-meta {
  margin-top: 20px;
  font-size: 12px;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer__brand span {
  font-size: 13px;
  color: #64748b;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__legal a {
  font-size: 13px;
  color: #475569;
  text-decoration: none;
}

.site-footer__legal a:hover {
  color: var(--blue);
}

.urgency-banner {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  padding: 10px 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.urgency-banner strong {
  font-weight: 700;
}

.urgency-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a78bfa;
}

.price-monthly {
  display: none;
}

.price-annual,
.price-static {
  display: block;
}

.billing-annual .price-monthly {
  display: none;
}

.billing-annual .price-annual {
  display: block;
}

.billing-monthly .price-monthly {
  display: block;
}

.billing-monthly .price-annual {
  display: none;
}

@keyframes pricingSwap {
  0% {
    opacity: 0.72;
    transform: translateY(10px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero > * {
  animation: fadeUp 0.5s ease both;
}

.hero .hero-badge {
  animation-delay: 0.05s;
}

.hero h1 {
  animation-delay: 0.1s;
}

.hero p {
  animation-delay: 0.15s;
}

.hero .social-proof {
  animation-delay: 0.2s;
}

@media (max-width: 900px) {
  .deep-dive-grid,
  .factor-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .vf-site-shell {
    padding: 0 16px;
  }

  .vf-topbar {
    padding-top: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    padding: 0 16px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 48px 16px 56px;
  }

  .social-proof {
    flex-direction: column;
    gap: 10px;
  }

  .social-proof-divider {
    display: none;
  }

  .billing-section {
    padding: 32px 16px 0;
  }

  .product-story,
  .feature-explainer-grid,
  .deep-dive-grid,
  .factor-grid,
  .pillars-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .card-plus {
    transform: none;
  }

  .pricing-section {
    padding: 24px 16px 40px;
  }

  .pricing-visual-band {
    padding: 12px 16px 24px;
    grid-template-columns: 1fr;
  }

  .pricing-visual-band__media {
    min-height: 300px;
  }

  .pricing-visual-band__panel {
    width: 48%;
  }

  .feature-slider {
    gap: 8px;
    display: block;
    padding-bottom: 0;
    position: relative;
  }

  .feature-explainer-grid--slider {
    display: flex;
    gap: 16px;
    padding: 4px 4px 8px;
    scroll-padding-inline: 4px;
    align-items: flex-start;
  }

  .mini-feature-card--visual {
    display: flex;
    flex-direction: column;
    min-height: auto;
    gap: 16px;
    align-items: stretch;
  }

  .feature-explainer-grid--slider .mini-feature-card {
    flex: 0 0 calc(100% - 8px);
    padding: 18px;
    border-radius: 20px;
    min-width: 0;
    min-height: auto;
  }

  .mini-feature-card__media {
    min-height: auto;
    aspect-ratio: 16 / 10;
    padding: 12px;
  }

  .mini-feature-card__media img {
    max-height: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mini-feature-card__body {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .mini-feature-card__body > * {
    max-width: 100%;
    min-width: 0;
  }

  .mini-feature-title {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 8px;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
  }

  .mini-feature-copy {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 12px;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
  }

  .mini-feature-list {
    gap: 10px;
  }

  .mini-feature-list li {
    font-size: 13px;
    display: grid;
    grid-template-columns: 10px 1fr;
    column-gap: 10px;
    align-items: start;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
  }

  .mini-feature-list li::before {
    margin-top: 1px;
  }

  .feature-arrow {
    width: 38px;
    height: 38px;
    font-size: 22px;
    position: absolute;
    top: 132px;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
  }

  .feature-arrow:hover {
    transform: translateY(-50%);
  }

  .feature-arrow--prev {
    left: 8px;
  }

  .feature-arrow--next {
    right: 8px;
  }

  .pricing-carousel {
    gap: 8px;
  }

  .pricing-grid {
    grid-auto-columns: minmax(86vw, 86vw);
    padding-left: 2px;
    padding-right: 2px;
  }

  .pricing-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
  }

  .pricing-arrow:hover {
    transform: translateY(-50%);
  }

  .pricing-arrow--prev {
    left: -4px;
  }

  .pricing-arrow--next {
    right: -4px;
  }

  .product-explainer {
    padding: 48px 16px 8px;
  }

  .deep-dive-section {
    padding: 16px 16px 8px;
  }

  .deep-dive-card {
    padding: 24px;
  }

  .comparison-section,
  .testimonials-section,
  .faq-section {
    padding: 48px 16px;
  }

  .pillars-section,
  .final-cta,
  .download-section {
    padding: 48px 16px;
  }

  .download-section__panel {
    padding: 32px 20px;
  }

  .download-section__buttons {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
  }

  .download-section__button img {
    width: 168px;
  }

  .site-footer {
    padding: 24px 16px 32px;
    flex-direction: column;
    align-items: flex-start;
  }

  .savings-bar {
    padding: 14px 16px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .trust-strip {
    gap: 20px;
    padding: 20px 16px;
  }

  .urgency-banner {
    padding: 10px 16px;
    flex-wrap: wrap;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .final-cta-meta {
    gap: 10px;
  }
}
