:root {
  --vf-bg: #f4f7fb;
  --vf-surface: #ffffff;
  --vf-surface-alt: #eaf2fb;
  --vf-text: #0d223d;
  --vf-muted: #5c6776;
  --vf-border: #d6e0ec;
  --vf-accent: #005bbb;
  --vf-shadow: 0 14px 32px rgba(10, 35, 66, 0.08);
}

.vf-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 16px 72px;
  color: var(--vf-text);
}

.vf-hero {
  background: linear-gradient(180deg, rgba(29, 78, 216, 0.08), rgba(29, 78, 216, 0));
  border: 1px solid rgba(29, 78, 216, 0.12);
  border-radius: 24px;
  padding: 28px 20px;
  margin-bottom: 24px;
}

.vf-stage-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.vf-breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--vf-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.vf-breadcrumb a {
  color: var(--vf-accent);
  text-decoration: none;
}

.vf-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.04em;
}

.vf-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
  color: var(--vf-muted);
  margin: 0 0 10px;
}

.vf-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--vf-text);
  margin: 0;
}

.vf-section-title {
  font-size: 1.1rem;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.vf-options, .vf-content, .vf-related, .vf-final-cta {
  margin-top: 24px;
}

.vf-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.vf-card {
  display: block;
  background: var(--vf-surface);
  border: 1px solid var(--vf-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--vf-shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.vf-card:hover, .vf-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(29, 78, 216, 0.28);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.vf-card-title {
  display: block;
  font-weight: 700;
  font-size: 1.04rem;
  margin-bottom: 6px;
}

.vf-card-description {
  display: block;
  color: var(--vf-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.vf-content-block {
  background: var(--vf-surface);
  border: 1px solid var(--vf-border);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: var(--vf-shadow);
  margin-bottom: 16px;
}

.vf-block-title {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.vf-block-body {
  color: var(--vf-text);
  line-height: 1.72;
}

.vf-ad-slot {
  border: 1px dashed rgba(29, 78, 216, 0.28);
  border-radius: 16px;
  min-height: 90px;
  margin: 20px 0;
  background: linear-gradient(180deg, rgba(29, 78, 216, 0.04), rgba(29, 78, 216, 0.01));
}

.vf-final-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--vf-accent);
  color: #fff;
  border-radius: 999px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.24);
}

.vf-related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vf-related-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--vf-surface-alt);
  color: var(--vf-text);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(29, 78, 216, 0.12);
}

.vf-page--fallback {
  padding-top: 0;
}

@media (min-width: 760px) {
  .vf-page {
    padding: 40px 28px 88px;
  }

  .vf-hero {
    padding: 36px 32px;
  }

  .vf-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


.vf-top-cta {
  background: #0f172a;
  color: #fff;
  border-radius: 22px;
  padding: 20px 18px;
  margin-bottom: 18px;
}

.vf-top-cta-kicker {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.vf-top-cta-note {
  margin: 12px 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.74);
}

.vf-top-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background: #fbbf24;
  color: #111827;
  border-radius: 999px;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 800;
}

.vf-options--prominent .vf-card-grid {
  gap: 12px;
}

.vf-faq {
  margin-top: 24px;
}

.vf-faq-item {
  background: var(--vf-surface);
  border: 1px solid var(--vf-border);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 12px;
  box-shadow: var(--vf-shadow);
}

.vf-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  line-height: 1.45;
}

.vf-faq-answer {
  margin-top: 10px;
  color: var(--vf-muted);
  line-height: 1.7;
}


.vf-top-links {
  display: grid;
  gap: 10px;
  margin: 10px 0 6px;
}

.vf-top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.16);
}


.vf-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.vf-site-header__inner,
.vf-site-footer__inner,
.vf-home {
  max-width: 1160px;
  margin: 0 auto;
}

.vf-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 16px;
}

.vf-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--vf-text);
  text-decoration: none;
}

.vf-brand-mark,
.vf-footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--vf-accent), #0f172a);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.vf-brand-text {
  display: flex;
  flex-direction: column;
}

.vf-brand-text strong {
  font-size: 1rem;
}

.vf-brand-text small {
  color: var(--vf-muted);
  line-height: 1.35;
}

.vf-site-nav {
  display: none;
  gap: 18px;
}

.vf-site-nav a,
.vf-footer-links a {
  color: var(--vf-text);
  text-decoration: none;
  font-weight: 600;
}

.vf-page-wrap {
  background:
    radial-gradient(circle at top left, rgba(29, 78, 216, 0.08), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.vf-home {
  padding: 28px 16px 72px;
}

.vf-home-hero {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92));
  color: #fff;
  border-radius: 28px;
  padding: 28px 20px;
  box-shadow: var(--vf-shadow);
}

.vf-home-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.vf-home-title {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  margin: 0 0 14px;
  max-width: 12ch;
}

.vf-home-subtitle {
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin: 0 0 22px;
}

.vf-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.vf-home-primary,
.vf-home-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.vf-home-primary {
  background: #fbbf24;
  color: #111827;
}

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

.vf-home-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vf-home-pills span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
  font-size: 0.92rem;
}

.vf-home-section {
  margin-top: 28px;
}

.vf-section-head h2,
.vf-home-copy h2,
.vf-home-panel h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.vf-section-head p,
.vf-home-copy p,
.vf-home-panel p,
.vf-home-slab p {
  color: var(--vf-muted);
  line-height: 1.72;
  margin: 0;
}

.vf-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.vf-home-card {
  display: block;
  padding: 18px;
  border-radius: 20px;
  background: var(--vf-surface);
  border: 1px solid var(--vf-border);
  box-shadow: var(--vf-shadow);
  text-decoration: none;
  color: inherit;
}

.vf-home-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.03rem;
}

.vf-home-card span {
  color: var(--vf-muted);
  line-height: 1.6;
}

.vf-home-section--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.vf-home-copy,
.vf-home-panel,
.vf-home-slab,
.vf-home-links {
  background: var(--vf-surface);
  border: 1px solid var(--vf-border);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--vf-shadow);
}

.vf-home-steps {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--vf-text);
  line-height: 1.7;
}

.vf-home-slab {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.vf-home-slab strong {
  display: block;
  margin-bottom: 6px;
}

.vf-home-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vf-home-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--vf-surface-alt);
  color: var(--vf-text);
  text-decoration: none;
  font-weight: 700;
}

.vf-site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #0f172a;
  color: rgba(255, 255, 255, 0.84);
}

.vf-site-footer__inner {
  padding: 28px 16px 34px;
}

.vf-footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.vf-footer-brand strong {
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.vf-footer-brand p,
.vf-footer-note {
  margin: 0;
  line-height: 1.7;
}

.vf-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin: 12px 0;
}

.vf-footer-links a {
  color: #fff;
  opacity: 0.88;
}

.vf-footer-note {
  margin-top: 18px;
  font-size: 0.94rem;
  opacity: 0.78;
}

@media (min-width: 860px) {
  .vf-site-nav {
    display: inline-flex;
  }

  .vf-home {
    padding: 36px 20px 88px;
  }

  .vf-home-hero {
    padding: 42px 36px;
  }

  .vf-home-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vf-home-section--split,
  .vf-home-slab {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vf-home-panel {
    align-self: stretch;
  }
}


body, .vf-page, .vf-home, .vf-site-header, .vf-site-footer {
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.vf-title,
.vf-home-title,
.vf-section-head h2,
.vf-home-copy h2,
.vf-home-panel h3,
.vf-content-block h2,
.vf-card-title,
.vf-home-card strong,
.vf-top-cta-button,
.vf-home-primary,
.vf-home-secondary,
.vf-home-links a,
.vf-site-nav a,
.vf-brand-text strong {
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.vf-title,
.vf-home-title {
  font-weight: 800;
  letter-spacing: -0.05em;
}

.vf-title {
  line-height: 1.03;
}

.vf-home-title {
  line-height: 1.02;
}

.vf-card,
.vf-content-block,
.vf-home-card,
.vf-home-copy,
.vf-home-panel,
.vf-home-slab,
.vf-home-links,
.vf-faq-item {
  border-radius: 24px;
}

.vf-home-hero,
.vf-top-cta {
  border-radius: 28px;
}

.vf-home-hero {
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92));
}

.vf-site-footer {
  margin-top: 64px;
}

body {
  background: var(--vf-bg);
}

.vf-page-wrap {
  background:
    radial-gradient(circle at top left, rgba(0, 91, 187, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0, 91, 187, 0.06), transparent 28%),
    var(--vf-bg);
}

.vf-site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(214, 224, 236, 0.95);
  box-shadow: 0 6px 22px rgba(10, 35, 66, 0.04);
}

.vf-brand-mark,
.vf-footer-mark {
  background: linear-gradient(135deg, #005bbb, #0b2b5f);
  border-radius: 12px;
}

.vf-site-nav a {
  color: #17324d;
}

.vf-site-nav a:hover,
.vf-site-nav a:focus-visible,
.vf-footer-links a:hover,
.vf-footer-links a:focus-visible {
  color: var(--vf-accent);
}

.vf-hero,
.vf-content-block,
.vf-faq-item,
.vf-final-cta,
.vf-top-cta,
.vf-related-link,
.vf-card {
  border-radius: 16px;
}

.vf-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--vf-border);
  box-shadow: var(--vf-shadow);
  position: relative;
  overflow: hidden;
}

.vf-hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #005bbb 0%, #78a8dd 100%);
}

.vf-stage-badge {
  display: none;
}

.vf-card,
.vf-content-block,
.vf-faq-item,
.vf-top-cta,
.vf-final-cta {
  background: #ffffff;
  border: 1px solid var(--vf-border);
  box-shadow: var(--vf-shadow);
}

.vf-card:hover,
.vf-card:focus-visible,
.vf-related-link:hover,
.vf-related-link:focus-visible {
  border-color: rgba(0, 91, 187, 0.34);
  box-shadow: 0 18px 34px rgba(10, 35, 66, 0.12);
}

.vf-options--prominent .vf-section-title,
.vf-section-title {
  color: #0b2b5f;
}

.vf-top-cta-button,
.vf-final-cta-link {
  background: linear-gradient(135deg, #005bbb 0%, #0b2b5f 100%);
  box-shadow: 0 10px 22px rgba(0, 91, 187, 0.22);
}

.vf-top-link {
  background: #edf4fb;
  color: #0b2b5f;
  border: 1px solid #d9e4f2;
}

.vf-home-hero,
.vf-home-card {
  border-radius: 18px;
  border: 1px solid var(--vf-border);
  box-shadow: var(--vf-shadow);
}

.vf-home-hero {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.vf-home-card {
  background: #ffffff;
}

.vf-footer-note {
  color: #6b7280;
}

.vf-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vf-card-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #005bbb;
  text-transform: uppercase;
}

.vf-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 999px;
  background: #005bbb;
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
}

.vf-card:hover .vf-card-cta,
.vf-card:focus-visible .vf-card-cta {
  background: #0b2b5f;
}
