@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,600;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
  --vtf-dark-bg: #1A0D12;
  --vtf-dark-bg-alt: #2A141C;
  --vtf-light-bg: #F5EFE8;
  --vtf-light-bg-alt: #EDE5DC;
  --vtf-text-dark-primary: #F0E4D9;
  --vtf-text-dark-muted: #B8A095;
  --vtf-text-light-primary: #1A0D12;
  --vtf-text-light-muted: #6B4252;
  --vtf-wine: #7C1F48;
  --vtf-wine-light: #D4607A;
  --vtf-gold-fill: #C4923A;
  --vtf-gold-on-dark: #C4923A;
  --vtf-gold-on-light: #7A5618;
  --vtf-white: #FFFFFF;
  --vtf-border-dark: #3E2030;
  --vtf-border-light: #D8CCBE;
  --vtf-nav-h: 64px;
  --vtf-container-max: 1200px;
  --vtf-prose-max: 720px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.vtf-page--dark-top {
  background: var(--vtf-dark-bg);
}

.vtf-page--light-top {
  background: var(--vtf-light-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { text-decoration: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.vtf-container {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.vtf-section--dark {
  background: var(--vtf-dark-bg);
}

.vtf-section--dark-alt {
  background: var(--vtf-dark-bg-alt);
}

.vtf-section--light {
  background: var(--vtf-light-bg);
}

.vtf-section--light-alt {
  background: var(--vtf-light-bg-alt);
}

.vtf-eyebrow {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vtf-eyebrow--on-dark {
  color: var(--vtf-gold-on-dark);
}

.vtf-eyebrow--on-light {
  color: var(--vtf-gold-on-light);
}

.vtf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.vtf-btn--primary {
  background: var(--vtf-gold-fill);
  color: var(--vtf-dark-bg);
  border-color: var(--vtf-gold-fill);
}

.vtf-btn--primary:hover {
  background: #D4A24A;
  border-color: #D4A24A;
}

.vtf-btn--outline-light {
  background: transparent;
  color: var(--vtf-text-dark-primary);
  border-color: var(--vtf-text-dark-primary);
}

.vtf-btn--outline-light:hover {
  background: rgba(240, 228, 217, 0.1);
}

.vtf-btn--outline-dark {
  background: transparent;
  color: var(--vtf-wine);
  border-color: var(--vtf-wine);
}

.vtf-btn--outline-dark:hover {
  background: rgba(124, 31, 72, 0.08);
}

.vtf-btn--ghost-on-dark {
  background: transparent;
  color: var(--vtf-text-dark-primary);
  border-color: transparent;
  padding-inline: 0.5rem;
}

.vtf-btn--ghost-on-dark:hover {
  color: var(--vtf-gold-on-dark);
}

.vtf-btn--ghost-on-light {
  background: transparent;
  color: var(--vtf-text-light-primary);
  border-color: transparent;
  padding-inline: 0.5rem;
}

.vtf-btn--ghost-on-light:hover {
  color: var(--vtf-wine);
}

.vtf-btn--wine {
  background: var(--vtf-wine);
  color: var(--vtf-text-dark-primary);
  border-color: var(--vtf-wine);
}

.vtf-btn--wine:hover {
  background: #9A2659;
  border-color: #9A2659;
}

.vtf-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.vtf-fade-in.is-visible {
  opacity: 1;
  transform: none;
}

.vtf-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--vtf-nav-h);
  background: var(--vtf-dark-bg);
  border-bottom: 1px solid var(--vtf-border-dark);
  z-index: 100;
  display: flex;
  align-items: center;
}

.vtf-nav__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vtf-nav__brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.vtf-nav__logo {
  height: 32px;
  width: auto;
  display: block;
}

.vtf-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.vtf-nav__link {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--vtf-text-dark-primary);
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}

.vtf-nav__link:hover {
  color: var(--vtf-gold-on-dark);
}

.vtf-nav__link--active {
  color: var(--vtf-gold-on-dark);
}

.vtf-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  flex-shrink: 0;
}

.vtf-nav__signin {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--vtf-text-dark-muted);
  transition: color 0.2s;
}

.vtf-nav__signin:hover {
  color: var(--vtf-text-dark-primary);
}

.vtf-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 4px;
  margin-left: auto;
}

.vtf-nav__bar {
  width: 22px;
  height: 2px;
  background: var(--vtf-text-dark-primary);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.vtf-nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--vtf-dark-bg);
  border-top: 1px solid var(--vtf-border-dark);
  padding: 1rem 1.5rem 1.5rem;
  position: absolute;
  top: var(--vtf-nav-h);
  left: 0;
  right: 0;
  z-index: 99;
}

.vtf-nav__mobile.is-open {
  display: flex;
}

.vtf-nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  margin-bottom: 1rem;
}

.vtf-nav__mobile-link {
  font-size: 1rem;
  color: var(--vtf-text-dark-primary);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--vtf-border-dark);
  display: block;
}

.vtf-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

.vtf-nav__mobile-actions .vtf-btn {
  text-align: center;
  justify-content: center;
}

.vtf-footer {
  background: var(--vtf-dark-bg);
  border-top: 1px solid var(--vtf-border-dark);
  padding: 3.5rem 0 0;
}

.vtf-footer__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.vtf-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.vtf-footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vtf-footer__logo {
  height: 32px;
  width: auto;
}

.vtf-footer__tagline {
  font-size: 0.9rem;
  color: var(--vtf-text-dark-muted);
  line-height: 1.55;
  max-width: 240px;
}

.vtf-footer__col-heading {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vtf-gold-on-dark);
  margin-bottom: 1rem;
}

.vtf-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
}

.vtf-footer__link {
  font-size: 0.9rem;
  color: var(--vtf-text-dark-muted);
  transition: color 0.2s;
}

.vtf-footer__link:hover {
  color: var(--vtf-text-dark-primary);
}

.vtf-footer__bottom {
  border-top: 1px solid var(--vtf-border-dark);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.vtf-footer__contact-line {
  font-size: 0.8125rem;
  color: var(--vtf-text-dark-muted);
}

.vtf-footer__copyright {
  font-size: 0.8125rem;
  color: var(--vtf-text-dark-muted);
}

.vtf-footer__cookie-link {
  font-size: 0.8125rem;
  color: var(--vtf-text-dark-muted);
  transition: color 0.2s;
}

.vtf-footer__cookie-link:hover {
  color: var(--vtf-text-dark-primary);
}

.vtf-hero {
  padding-top: calc(var(--vtf-nav-h) + 5rem);
  padding-bottom: 5rem;
  background: var(--vtf-dark-bg);
}

.vtf-hero__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vtf-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vtf-hero__h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--vtf-text-dark-primary);
  margin: 0;
}

.vtf-hero__sub {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--vtf-text-dark-muted);
  line-height: 1.65;
  margin: 0;
}

.vtf-hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.vtf-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vtf-hero__svg-wrap {
  width: 100%;
  max-width: 420px;
}

.vtf-problem {
  padding: 5rem 0;
  background: var(--vtf-light-bg);
}

.vtf-problem__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.vtf-problem__heading {
  text-align: center;
  margin-bottom: 3rem;
}

.vtf-problem__h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vtf-text-light-primary);
  margin-bottom: 0.75rem;
}

.vtf-problem__sub {
  font-size: 1.0625rem;
  color: var(--vtf-text-light-muted);
}

.vtf-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vtf-problem__card {
  background: var(--vtf-white);
  border: 1px solid var(--vtf-border-light);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vtf-problem__icon {
  width: 40px;
  height: 40px;
  color: var(--vtf-wine);
  flex-shrink: 0;
}

.vtf-problem__label {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--vtf-text-light-primary);
  line-height: 1.3;
  margin: 0;
}

.vtf-problem__desc {
  font-size: 0.9375rem;
  color: var(--vtf-text-light-muted);
  line-height: 1.6;
  margin: 0;
}

.vtf-solution {
  padding: 5rem 0;
  background: var(--vtf-dark-bg-alt);
}

.vtf-solution__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vtf-solution__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vtf-solution__h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vtf-text-dark-primary);
  margin: 0;
}

.vtf-solution__body {
  font-size: 1.0625rem;
  color: var(--vtf-text-dark-muted);
  line-height: 1.65;
  margin: 0;
}

.vtf-solution__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.vtf-solution__point {
  font-size: 0.9375rem;
  color: var(--vtf-text-dark-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.vtf-solution__point::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--vtf-gold-fill);
  flex-shrink: 0;
  margin-top: 3px;
}

.vtf-solution__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vtf-solution__img {
  width: 100%;
  aspect-ratio: 10 / 7;
  object-fit: cover;
  border-radius: 8px;
}

.vtf-how-it-works {
  padding: 5rem 0;
  background: var(--vtf-light-bg);
}

.vtf-how-it-works__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.vtf-how-it-works__heading {
  text-align: center;
  margin-bottom: 3rem;
}

.vtf-how-it-works__h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vtf-text-light-primary);
  margin-bottom: 0.5rem;
}

.vtf-how-it-works__sub {
  font-size: 1.0625rem;
  color: var(--vtf-text-light-muted);
}

.vtf-how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.vtf-how-it-works__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.vtf-how-it-works__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--vtf-wine);
  color: var(--vtf-text-dark-primary);
  font-family: 'Lora', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vtf-how-it-works__step-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vtf-text-light-primary);
  line-height: 1.3;
  margin: 0;
}

.vtf-how-it-works__step-body {
  font-size: 0.9375rem;
  color: var(--vtf-text-light-muted);
  line-height: 1.6;
  margin: 0;
}

.vtf-features {
  padding: 5rem 0;
  background: var(--vtf-light-bg-alt);
}

.vtf-features__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.vtf-features__heading {
  text-align: center;
  margin-bottom: 3rem;
}

.vtf-features__h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vtf-text-light-primary);
  margin-bottom: 0.5rem;
}

.vtf-features__sub {
  font-size: 1.0625rem;
  color: var(--vtf-text-light-muted);
}

.vtf-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.vtf-feature-card {
  background: var(--vtf-white);
  border: 1px solid var(--vtf-border-light);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.vtf-feature-card__icon {
  width: 36px;
  height: 36px;
  color: var(--vtf-wine);
  flex-shrink: 0;
}

.vtf-feature-card__title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--vtf-text-light-primary);
  line-height: 1.3;
  margin: 0;
}

.vtf-feature-card__body {
  font-size: 0.9375rem;
  color: var(--vtf-text-light-muted);
  line-height: 1.6;
  margin: 0;
}

.vtf-early-access {
  padding: 5.5rem 0;
  background: var(--vtf-dark-bg);
  text-align: center;
}

.vtf-early-access__inner {
  max-width: 680px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.vtf-early-access__h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vtf-text-dark-primary);
  margin: 0;
}

.vtf-early-access__body {
  font-size: 1.0625rem;
  color: var(--vtf-text-dark-muted);
  line-height: 1.65;
  margin: 0;
}

.vtf-pricing-preview {
  padding: 5rem 0;
  background: var(--vtf-light-bg);
}

.vtf-pricing-preview__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.vtf-pricing-preview__heading {
  text-align: center;
  margin-bottom: 3rem;
}

.vtf-pricing-preview__h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vtf-text-light-primary);
  margin-bottom: 0.5rem;
}

.vtf-pricing-preview__sub {
  font-size: 1.0625rem;
  color: var(--vtf-text-light-muted);
}

.vtf-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.vtf-pricing-card {
  background: var(--vtf-white);
  border: 1px solid var(--vtf-border-light);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vtf-pricing-card--featured {
  background: var(--vtf-dark-bg);
  border-color: var(--vtf-gold-fill);
  position: relative;
}

.vtf-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vtf-gold-fill);
  color: var(--vtf-dark-bg);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.vtf-pricing-card__tier {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vtf-wine);
  margin: 0;
}

.vtf-pricing-card--featured .vtf-pricing-card__tier {
  color: var(--vtf-gold-on-dark);
}

.vtf-pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.vtf-pricing-card__amount {
  font-family: 'Lora', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--vtf-text-light-primary);
  line-height: 1;
}

.vtf-pricing-card--featured .vtf-pricing-card__amount {
  color: var(--vtf-text-dark-primary);
}

.vtf-pricing-card__period {
  font-size: 0.9rem;
  color: var(--vtf-text-light-muted);
}

.vtf-pricing-card--featured .vtf-pricing-card__period {
  color: var(--vtf-text-dark-muted);
}

.vtf-pricing-card__capacity {
  font-size: 0.875rem;
  color: var(--vtf-text-light-muted);
  margin: 0;
}

.vtf-pricing-card--featured .vtf-pricing-card__capacity {
  color: var(--vtf-text-dark-muted);
}

.vtf-pricing-card__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vtf-pricing-card__bullet {
  font-size: 0.9rem;
  color: var(--vtf-text-light-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.vtf-pricing-card--featured .vtf-pricing-card__bullet {
  color: var(--vtf-text-dark-muted);
}

.vtf-pricing-card__bullet::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--vtf-border-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.vtf-pricing-card--featured .vtf-pricing-card__bullet::before {
  background: var(--vtf-gold-fill);
}

.vtf-pricing-card__cta {
  margin-top: auto;
}

.vtf-blog-preview {
  padding: 5rem 0;
  background: var(--vtf-light-bg-alt);
}

.vtf-blog-preview__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.vtf-blog-preview__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.vtf-blog-preview__h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vtf-text-light-primary);
  margin: 0;
}

.vtf-blog-preview__all-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--vtf-gold-on-light);
}

.vtf-blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.vtf-blog-card {
  background: var(--vtf-white);
  border: 1px solid var(--vtf-border-light);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.vtf-blog-card__cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.vtf-blog-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.vtf-blog-card__cat {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vtf-gold-on-light);
}

.vtf-blog-card__title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--vtf-text-light-primary);
  line-height: 1.35;
  margin: 0;
}

.vtf-blog-card__meta {
  font-size: 0.8125rem;
  color: var(--vtf-text-light-muted);
  margin-top: auto;
}

.vtf-footer-cta {
  padding: 5.5rem 0;
  background: var(--vtf-dark-bg);
  text-align: center;
}

.vtf-footer-cta__inner {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.vtf-footer-cta__h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vtf-text-dark-primary);
  margin: 0;
}

.vtf-footer-cta__sub {
  font-size: 1.0625rem;
  color: var(--vtf-text-dark-muted);
  line-height: 1.65;
  margin: 0;
}

.vtf-footer-cta__form {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 480px;
  flex-wrap: wrap;
}

.vtf-footer-cta__input {
  flex: 1;
  min-width: 200px;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--vtf-border-dark);
  border-radius: 4px;
  color: var(--vtf-text-dark-primary);
  font-size: 0.9375rem;
}

.vtf-footer-cta__input::placeholder {
  color: var(--vtf-text-dark-muted);
}

.vtf-footer-cta__input:focus {
  outline: 2px solid var(--vtf-gold-fill);
  outline-offset: 0;
  border-color: var(--vtf-gold-fill);
}

.vtf-subpage-hero {
  padding-top: calc(var(--vtf-nav-h) + 4rem);
  padding-bottom: 4rem;
}

.vtf-subpage-hero--dark {
  background: var(--vtf-dark-bg);
}

.vtf-subpage-hero--light {
  background: var(--vtf-light-bg);
}

.vtf-subpage-hero__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.vtf-subpage-hero__h1 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.vtf-subpage-hero--dark .vtf-subpage-hero__h1 {
  color: var(--vtf-text-dark-primary);
}

.vtf-subpage-hero--light .vtf-subpage-hero__h1 {
  color: var(--vtf-text-light-primary);
}

.vtf-subpage-hero__sub {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.65;
  max-width: 640px;
  margin: 0;
}

.vtf-subpage-hero--dark .vtf-subpage-hero__sub {
  color: var(--vtf-text-dark-muted);
}

.vtf-subpage-hero--light .vtf-subpage-hero__sub {
  color: var(--vtf-text-light-muted);
}

.vtf-subpage-hero__ornament {
  margin-top: 1rem;
}

.vtf-hiw-step-section {
  padding: 5rem 0;
}

.vtf-hiw-step-section--light {
  background: var(--vtf-light-bg);
}

.vtf-hiw-step-section--light-alt {
  background: var(--vtf-light-bg-alt);
}

.vtf-hiw-step-section__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vtf-hiw-step-section--flip .vtf-hiw-step-section__inner {
  direction: rtl;
}

.vtf-hiw-step-section--flip .vtf-hiw-step-section__inner > * {
  direction: ltr;
}

.vtf-hiw-step-section__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vtf-hiw-step-section__num {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.vtf-hiw-step-section__num-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--vtf-wine);
  color: var(--vtf-text-dark-primary);
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vtf-hiw-step-section__step-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vtf-gold-on-light);
}

.vtf-hiw-step-section__h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--vtf-text-light-primary);
  margin: 0;
}

.vtf-hiw-step-section__body {
  font-size: 1rem;
  color: var(--vtf-text-light-muted);
  line-height: 1.65;
  margin: 0;
}

.vtf-hiw-step-section__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vtf-hiw-cta {
  padding: 5.5rem 0;
  background: var(--vtf-dark-bg);
  text-align: center;
}

.vtf-hiw-cta__inner {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.vtf-hiw-cta__h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vtf-text-dark-primary);
  margin: 0;
}

.vtf-hiw-cta__sub {
  font-size: 1.0625rem;
  color: var(--vtf-text-dark-muted);
  margin: 0;
}

.vtf-hiw-cta__form {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 480px;
  flex-wrap: wrap;
}

.vtf-hiw-cta__input {
  flex: 1;
  min-width: 200px;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--vtf-border-dark);
  border-radius: 4px;
  color: var(--vtf-text-dark-primary);
  font-size: 0.9375rem;
}

.vtf-hiw-cta__input::placeholder {
  color: var(--vtf-text-dark-muted);
}

.vtf-hiw-cta__input:focus {
  outline: 2px solid var(--vtf-gold-fill);
  outline-offset: 0;
  border-color: var(--vtf-gold-fill);
}

.vtf-inline-mock {
  background: var(--vtf-white);
  border: 1px solid var(--vtf-border-light);
  border-radius: 10px;
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 24px rgba(26,13,18,0.1);
}

.vtf-inline-mock__label {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--vtf-text-light-muted);
  margin-top: 1rem;
  text-align: center;
}

.vtf-upload-zone {
  border: 2px dashed var(--vtf-wine);
  border-radius: 8px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.vtf-upload-zone__icon {
  color: var(--vtf-wine);
  margin-bottom: 0.25rem;
}

.vtf-upload-zone__label {
  font-weight: 500;
  color: var(--vtf-text-light-primary);
  font-size: 0.9375rem;
}

.vtf-upload-zone__sub {
  font-size: 0.8125rem;
  color: var(--vtf-text-light-muted);
}

.vtf-upload-zone__chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.vtf-upload-chip {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--vtf-light-bg-alt);
  color: var(--vtf-text-light-muted);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  border: 1px solid var(--vtf-border-light);
}

.vtf-score-panel__header {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--vtf-text-light-primary);
  margin-bottom: 1.25rem;
}

.vtf-score-ring-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.vtf-score-ring {
  position: relative;
  width: 100px;
  height: 100px;
}

.vtf-score-ring__svg {
  width: 100px;
  height: 100px;
  transform: rotate(-90deg);
}

.vtf-score-ring__track {
  fill: none;
  stroke: var(--vtf-border-light);
  stroke-width: 8;
}

.vtf-score-ring__arc {
  fill: none;
  stroke: var(--vtf-gold-fill);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 226;
  stroke-dashoffset: 57;
}

.vtf-score-ring__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vtf-score-ring__num {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vtf-text-light-primary);
  line-height: 1;
}

.vtf-score-ring__risk {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--vtf-gold-on-light);
}

.vtf-score-flags {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.vtf-score-flag {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--vtf-text-light-primary);
  line-height: 1.4;
}

.vtf-score-flag__icon {
  width: 16px;
  height: 16px;
  color: var(--vtf-wine-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.vtf-report-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.vtf-report-table th {
  text-align: left;
  font-weight: 600;
  color: var(--vtf-text-light-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 0.5rem 0.5rem;
  border-bottom: 1px solid var(--vtf-border-light);
}

.vtf-report-table td {
  padding: 0.5rem;
  color: var(--vtf-text-light-primary);
  vertical-align: top;
  border-bottom: 1px solid var(--vtf-light-bg-alt);
}

.vtf-report-table tr.vtf-report-flag td {
  color: var(--vtf-wine-light);
}

.vtf-report-table tr.vtf-report-pass td {
  color: var(--vtf-text-light-muted);
}

.vtf-report-icon--warn {
  color: var(--vtf-gold-fill);
}

.vtf-report-icon--pass {
  color: #3D8B5E;
}

.vtf-about-story {
  padding: 5rem 0;
  background: var(--vtf-light-bg);
}

.vtf-about-story__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vtf-about-story__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vtf-about-story__h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vtf-text-light-primary);
  margin: 0;
}

.vtf-about-story__body {
  font-size: 1rem;
  color: var(--vtf-text-light-muted);
  line-height: 1.7;
  margin: 0;
}

.vtf-about-story__visual {
  display: flex;
  justify-content: center;
}

.vtf-about-story__img {
  width: 100%;
  aspect-ratio: 10 / 7;
  object-fit: cover;
  border-radius: 8px;
}

.vtf-about-team {
  padding: 5rem 0;
  background: var(--vtf-light-bg);
}

.vtf-about-team__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.vtf-about-team__heading {
  text-align: center;
  margin-bottom: 3rem;
}

.vtf-about-team__h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vtf-text-light-primary);
  margin-bottom: 0.5rem;
}

.vtf-about-team__sub {
  font-size: 1rem;
  color: var(--vtf-text-light-muted);
}

.vtf-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vtf-team-card {
  background: var(--vtf-white);
  border: 1px solid var(--vtf-border-light);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.vtf-team-card__avatar-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.vtf-team-card__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.vtf-team-card__initials {
  width: 100%;
  height: 100%;
  background: var(--vtf-wine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vtf-text-dark-primary);
  position: absolute;
  inset: 0;
  z-index: 1;
}

.vtf-team-card__name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--vtf-text-light-primary);
  line-height: 1.3;
  margin: 0;
}

.vtf-team-card__role {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vtf-gold-on-light);
  margin: 0;
}

.vtf-team-card__bio {
  font-size: 0.9rem;
  color: var(--vtf-text-light-muted);
  line-height: 1.6;
  margin: 0;
}

.vtf-about-cta {
  padding: 5rem 0;
  background: var(--vtf-dark-bg);
  text-align: center;
}

.vtf-about-cta__inner {
  max-width: 640px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.vtf-about-cta__h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vtf-text-dark-primary);
  margin: 0;
}

.vtf-about-cta__body {
  font-size: 1.0625rem;
  color: var(--vtf-text-dark-muted);
  margin: 0;
}

.vtf-about-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.vtf-pricing-hero {
  padding-top: calc(var(--vtf-nav-h) + 4rem);
  padding-bottom: 3rem;
  background: var(--vtf-light-bg);
  text-align: center;
}

.vtf-pricing-hero__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.vtf-pricing-hero__h1 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--vtf-text-light-primary);
  margin-bottom: 0.75rem;
}

.vtf-pricing-hero__sub {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--vtf-text-light-muted);
  margin: 0;
}

.vtf-pricing-tiers {
  padding: 3rem 0 5rem;
  background: var(--vtf-light-bg);
}

.vtf-pricing-tiers__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.vtf-pricing-faq {
  padding: 5rem 0;
  background: var(--vtf-light-bg-alt);
}

.vtf-pricing-faq__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.vtf-pricing-faq__h2 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vtf-text-light-primary);
  margin-bottom: 2rem;
}

.vtf-faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--vtf-border-light);
}

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

.vtf-faq-item__trigger {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 1.125rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.vtf-faq-item__question {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--vtf-text-light-primary);
  line-height: 1.35;
  margin: 0;
}

.vtf-faq-item__caret {
  width: 20px;
  height: 20px;
  color: var(--vtf-wine);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.vtf-faq-item.is-open .vtf-faq-item__caret {
  transform: rotate(180deg);
}

.vtf-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.vtf-faq-item.is-open .vtf-faq-item__answer {
  max-height: 300px;
}

.vtf-faq-item__answer-inner {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--vtf-text-light-muted);
  line-height: 1.65;
}

.vtf-pricing-cta {
  padding: 5rem 0;
  background: var(--vtf-dark-bg);
  text-align: center;
}

.vtf-pricing-cta__inner {
  max-width: 640px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.vtf-pricing-cta__h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vtf-text-dark-primary);
  margin: 0;
}

.vtf-pricing-cta__body {
  font-size: 1.0625rem;
  color: var(--vtf-text-dark-muted);
  margin: 0;
}

.vtf-contact-hero {
  padding-top: calc(var(--vtf-nav-h) + 4rem);
  padding-bottom: 3.5rem;
  background: var(--vtf-light-bg);
  text-align: center;
}

.vtf-contact-hero__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.vtf-contact-hero__h1 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--vtf-text-light-primary);
  margin-bottom: 0.75rem;
}

.vtf-contact-hero__sub {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--vtf-text-light-muted);
  margin: 0;
}

.vtf-contact-form-section {
  padding: 4rem 0;
  background: var(--vtf-light-bg);
}

.vtf-contact-form-section__inner {
  max-width: 680px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.vtf-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.vtf-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.vtf-form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vtf-text-light-primary);
}

.vtf-form-input {
  padding: 0.65rem 0.875rem;
  background: var(--vtf-white);
  border: 1px solid var(--vtf-border-light);
  border-radius: 4px;
  color: var(--vtf-text-light-primary);
  font-size: 0.9375rem;
  transition: border-color 0.2s;
}

.vtf-form-input:focus {
  outline: none;
  border-color: var(--vtf-wine);
}

.vtf-form-select {
  padding: 0.65rem 0.875rem;
  background: var(--vtf-white);
  border: 1px solid var(--vtf-border-light);
  border-radius: 4px;
  color: var(--vtf-text-light-primary);
  font-size: 0.9375rem;
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B4252' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.25rem;
}

.vtf-form-select:focus {
  outline: none;
  border-color: var(--vtf-wine);
}

.vtf-form-textarea {
  padding: 0.65rem 0.875rem;
  background: var(--vtf-white);
  border: 1px solid var(--vtf-border-light);
  border-radius: 4px;
  color: var(--vtf-text-light-primary);
  font-size: 0.9375rem;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.2s;
}

.vtf-form-textarea:focus {
  outline: none;
  border-color: var(--vtf-wine);
}

.vtf-contact-info-section {
  padding: 4rem 0;
  background: var(--vtf-light-bg-alt);
}

.vtf-contact-info-section__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vtf-contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vtf-contact-info-card__icon {
  color: var(--vtf-wine);
  width: 28px;
  height: 28px;
}

.vtf-contact-info-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vtf-gold-on-light);
}

.vtf-contact-info-card__value {
  font-size: 0.9375rem;
  color: var(--vtf-text-light-primary);
  line-height: 1.55;
}

.vtf-contact-info-card__note {
  font-size: 0.8125rem;
  color: var(--vtf-text-light-muted);
}

.vtf-blog-index-hero {
  padding-top: calc(var(--vtf-nav-h) + 4rem);
  padding-bottom: 4rem;
  background: var(--vtf-dark-bg);
  text-align: center;
}

.vtf-blog-index-hero__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.vtf-blog-index-hero__h1 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--vtf-text-dark-primary);
  margin-bottom: 0.75rem;
}

.vtf-blog-index-hero__sub {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--vtf-text-dark-muted);
  margin: 0;
}

.vtf-blog-grid-section {
  padding: 5rem 0;
  background: var(--vtf-light-bg);
}

.vtf-blog-grid-section__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.vtf-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
  background: var(--vtf-white);
  border: 1px solid var(--vtf-border-light);
  border-radius: 10px;
  overflow: hidden;
}

.vtf-blog-featured__cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.vtf-blog-featured__body {
  padding: 2rem 2rem 2rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vtf-blog-featured__cat {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vtf-gold-on-light);
}

.vtf-blog-featured__title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--vtf-text-light-primary);
  line-height: 1.3;
  margin: 0;
}

.vtf-blog-featured__excerpt {
  font-size: 0.9375rem;
  color: var(--vtf-text-light-muted);
  line-height: 1.6;
  margin: 0;
}

.vtf-blog-featured__meta {
  font-size: 0.8125rem;
  color: var(--vtf-text-light-muted);
}

.vtf-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.vtf-article-page {
  padding-top: var(--vtf-nav-h);
  background: var(--vtf-light-bg);
}

.vtf-article-hero {
  background: var(--vtf-light-bg-alt);
  padding: 3rem 0 2.5rem;
}

.vtf-article-hero__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.vtf-article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vtf-gold-on-light);
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.vtf-article-back:hover {
  color: var(--vtf-wine);
}

.vtf-article-hero__cat {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vtf-gold-on-light);
  margin-bottom: 0.75rem;
}

.vtf-article-hero__h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vtf-text-light-primary);
  margin: 0 0 1rem;
}

.vtf-article-hero__meta {
  font-size: 0.875rem;
  color: var(--vtf-text-light-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.vtf-article-cover {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  margin-top: 2rem;
}

.vtf-article-cover__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.vtf-article-body {
  max-width: 760px;
  margin-inline: auto;
  padding: 2.5rem 1.5rem 5rem;
}

.vtf-article-content {
  font-size: 1rem;
  color: var(--vtf-text-light-primary);
  line-height: 1.75;
}

.vtf-article-content h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--vtf-text-light-primary);
  margin: 2rem 0 1rem;
}

.vtf-article-content h3 {
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--vtf-text-light-primary);
  margin: 1.75rem 0 0.75rem;
}

.vtf-article-content p {
  margin-bottom: 1.25rem;
}

.vtf-article-content ul,
.vtf-article-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  list-style: initial;
}

.vtf-article-content li {
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

.vtf-article-cta {
  background: var(--vtf-dark-bg-alt);
  border-radius: 10px;
  padding: 2rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.vtf-article-cta__heading {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vtf-text-dark-primary);
  line-height: 1.3;
  margin: 0;
}

.vtf-article-cta__body {
  font-size: 0.9375rem;
  color: var(--vtf-text-dark-muted);
  line-height: 1.6;
  margin: 0;
}

.vtf-auth-page {
  min-height: 100vh;
  background: var(--vtf-light-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.vtf-auth-card {
  background: var(--vtf-white);
  border: 1px solid var(--vtf-border-light);
  border-radius: 12px;
  padding: 2.5rem 2.25rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 8px 32px rgba(26,13,18,0.1);
}

.vtf-auth-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.vtf-auth-card__logo img {
  height: 36px;
  width: auto;
}

.vtf-auth-card__h1 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--vtf-text-light-primary);
  margin: 0 0 0.375rem;
  text-align: center;
}

.vtf-auth-card__sub {
  font-size: 0.9375rem;
  color: var(--vtf-text-light-muted);
  text-align: center;
  margin: 0 0 1.75rem;
}

.vtf-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vtf-auth-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.vtf-auth-form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vtf-text-light-primary);
}

.vtf-auth-form__input {
  padding: 0.65rem 0.875rem;
  background: var(--vtf-light-bg);
  border: 1px solid var(--vtf-border-light);
  border-radius: 4px;
  color: var(--vtf-text-light-primary);
  font-size: 0.9375rem;
  transition: border-color 0.2s;
}

.vtf-auth-form__input:focus {
  outline: none;
  border-color: var(--vtf-wine);
}

.vtf-auth-form__forgot {
  font-size: 0.8125rem;
  color: var(--vtf-gold-on-light);
  text-align: right;
}

.vtf-auth-form__submit {
  width: 100%;
  padding: 0.75rem;
  background: var(--vtf-wine);
  color: var(--vtf-text-dark-primary);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.25rem;
  transition: background 0.2s;
}

.vtf-auth-form__submit:hover {
  background: #9A2659;
}

.vtf-auth-card__footer {
  margin-top: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vtf-auth-card__switch {
  font-size: 0.9rem;
  color: var(--vtf-text-light-muted);
}

.vtf-auth-card__switch a {
  color: var(--vtf-gold-on-light);
  font-weight: 500;
}

.vtf-auth-card__legal {
  font-size: 0.8125rem;
  color: var(--vtf-text-light-muted);
  line-height: 1.5;
}

.vtf-auth-card__legal a {
  color: var(--vtf-gold-on-light);
}

.vtf-auth-page__back {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--vtf-text-light-muted);
}

.vtf-auth-page__back a {
  color: var(--vtf-gold-on-light);
}

.vtf-legal-page {
  padding-top: var(--vtf-nav-h);
  background: var(--vtf-light-bg);
}

.vtf-legal-prose {
  max-width: var(--vtf-prose-max);
  margin-inline: auto;
  padding: 3.5rem 1.5rem 5rem;
  font-size: 1rem;
  color: var(--vtf-text-light-primary);
  line-height: 1.75;
}

.vtf-legal-prose h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vtf-text-light-primary);
  margin: 0 0 0.5rem;
}

.vtf-legal-prose h2 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--vtf-text-light-primary);
  margin: 2rem 0 0.75rem;
}

.vtf-legal-prose p {
  margin-bottom: 1.25rem;
}

.vtf-legal-prose ul {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.vtf-legal-prose li {
  margin-bottom: 0.4rem;
}

.vtf-legal-prose a {
  color: var(--vtf-gold-on-light);
}

.vtf-legal-prose .vtf-legal-updated {
  font-size: 0.875rem;
  color: var(--vtf-text-light-muted);
  margin-bottom: 2.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vtf-dark-bg-alt);
  border-top: 1px solid var(--vtf-border-dark);
  z-index: 999;
  padding: 1.25rem 0;
}

.cookie-banner__inner {
  max-width: var(--vtf-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--vtf-text-dark-muted);
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--vtf-gold-on-dark);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-banner__btn {
  padding: 0.55rem 1.25rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s;
}

.cookie-banner__btn--primary {
  background: var(--vtf-gold-fill);
  color: var(--vtf-dark-bg);
  border-color: var(--vtf-gold-fill);
}

.cookie-banner__btn--primary:hover {
  background: #D4A24A;
  border-color: #D4A24A;
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--vtf-text-dark-muted);
  border-color: var(--vtf-border-dark);
}

.cookie-banner__btn--secondary:hover {
  color: var(--vtf-text-dark-primary);
  border-color: var(--vtf-text-dark-muted);
}

.vtf-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

@media (max-width: 1024px) {
  .vtf-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .vtf-footer__brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .vtf-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .vtf-hero__actions {
    justify-content: center;
  }

  .vtf-hero__visual {
    order: -1;
  }

  .vtf-solution__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vtf-about-story__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vtf-hiw-step-section__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vtf-hiw-step-section--flip .vtf-hiw-step-section__inner {
    direction: ltr;
  }

  .vtf-blog-featured {
    grid-template-columns: 1fr;
  }

  .vtf-blog-featured__body {
    padding: 1.5rem;
  }

  .vtf-contact-info-section__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .vtf-nav__links {
    display: none;
  }

  .vtf-nav__actions {
    display: none;
  }

  .vtf-nav__signin {
    display: none;
  }

  .vtf-nav__hamburger {
    display: flex;
  }

  .vtf-problem__grid {
    grid-template-columns: 1fr;
  }

  .vtf-how-it-works__steps {
    grid-template-columns: 1fr;
  }

  .vtf-features__grid {
    grid-template-columns: 1fr 1fr;
  }

  .vtf-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

  .vtf-blog-preview__grid {
    grid-template-columns: 1fr 1fr;
  }

  .vtf-team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .vtf-blog-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .vtf-footer-cta__form {
    flex-direction: column;
    align-items: stretch;
  }

  .vtf-hiw-cta__form {
    flex-direction: column;
    align-items: stretch;
  }

  .vtf-footer__grid {
    grid-template-columns: 1fr;
  }

  .vtf-footer__brand-col {
    grid-column: span 1;
  }

  .vtf-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 560px) {
  .vtf-features__grid {
    grid-template-columns: 1fr;
  }

  .vtf-blog-preview__grid {
    grid-template-columns: 1fr;
  }

  .vtf-blog-grid {
    grid-template-columns: 1fr;
  }

  .vtf-contact-info-section__inner {
    grid-template-columns: 1fr;
  }

  .vtf-auth-card {
    padding: 2rem 1.5rem;
  }

  .vtf-about-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vtf-about-cta__actions .vtf-btn {
    text-align: center;
    justify-content: center;
  }
}
