@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&family=Manrope:wght@400;500;600&family=JetBrains+Mono:wght@400&display=swap');

:root {
  --depot-black: #0F0F0D;
  --depot-charcoal: #1A1A17;
  --depot-card: #232320;
  --depot-border: #2E2E2A;
  --concrete-light: #F5F4EF;
  --concrete-surface: #FFFFFF;
  --concrete-subtle: #EBEBE6;
  --green-charge: #28C76F;
  --green-charge-hover: #20A85B;
  --green-charge-dim: #178048;
  --amber-route: #F59E0B;
  --amber-route-dim: #D97706;
  --red-fault: #EF4444;
  --blue-data: #3B82F6;
  --text-dark-primary: #F0EFE8;
  --text-dark-secondary: #A8A79E;
  --text-dark-muted: #66655E;
  --text-light-primary: #0F0F0D;
  --text-light-secondary: #4A4A42;
  --text-light-muted: #8A8A80;
  --green-on-dark: #28C76F;
  --green-on-light: #178048;
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --radius-base: 6px;
  --radius-pill: 20px;
  --section-pad-v: 88px;
  --section-pad-v-mob: 56px;
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);
  --transition-hover: 180ms ease-out;
  --transition-panel: 250ms ease-out;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  background-color: var(--depot-black);
  color: var(--text-dark-primary);
  min-height: 100vh;
}

.fvt-page--light-top {
  background-color: var(--concrete-light);
  color: var(--text-light-primary);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

.fvt-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

.fvt-section {
  padding-block: var(--section-pad-v);
}

.fvt-section--dark {
  background-color: var(--depot-black);
  color: var(--text-dark-primary);
}

.fvt-section--dark-alt {
  background-color: var(--depot-charcoal);
  color: var(--text-dark-primary);
}

.fvt-section--light {
  background-color: var(--concrete-light);
  color: var(--text-light-primary);
}

.fvt-section--white {
  background-color: var(--concrete-surface);
  color: var(--text-light-primary);
}

.fvt-section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-charge);
  margin-bottom: 0.75rem;
  display: block;
}

.fvt-section-label--dark {
  color: var(--green-on-dark);
}

.fvt-section-label--light {
  color: var(--green-on-light);
}

.fvt-section-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.fvt-section--dark .fvt-section-headline,
.fvt-section--dark-alt .fvt-section-headline {
  color: var(--text-dark-primary);
}

.fvt-section--light .fvt-section-headline,
.fvt-section--white .fvt-section-headline {
  color: var(--text-light-primary);
}

.fvt-section-body {
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 640px;
}

.fvt-section--dark .fvt-section-body,
.fvt-section--dark-alt .fvt-section-body {
  color: var(--text-dark-secondary);
}

.fvt-section--light .fvt-section-body,
.fvt-section--white .fvt-section-body {
  color: var(--text-light-secondary);
}

.fvt-text-center {
  text-align: center;
}

.fvt-text-center .fvt-section-body {
  margin-inline: auto;
}

.fvt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background-color var(--transition-panel), box-shadow var(--transition-panel);
}

.fvt-page--dark-top .fvt-nav {
  background-color: transparent;
}

.fvt-page--light-top .fvt-nav {
  background-color: var(--depot-black);
}

.fvt-nav--scrolled {
  background-color: var(--depot-black) !important;
  box-shadow: 0 1px 0 var(--depot-border);
}

.fvt-nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
}

.fvt-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.fvt-nav__logo img {
  height: 28px;
  width: auto;
  display: block;
}

.fvt-nav__logo-light {
  display: block !important;
}

.fvt-nav__logo-dark {
  display: none !important;
}

.fvt-nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.fvt-nav__list {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
  flex: 1;
}

.fvt-nav__item {
  position: relative;
}

.fvt-nav__link,
.fvt-nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-base);
  transition: color var(--transition-hover), background-color var(--transition-hover);
  color: var(--text-dark-primary);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.fvt-nav__link:hover,
.fvt-nav__dropdown-toggle:hover {
  color: var(--green-charge);
  background-color: rgba(40, 199, 111, 0.08);
}

.fvt-nav__caret {
  font-size: 0.7rem;
  transition: transform var(--transition-hover);
  color: var(--text-dark-muted);
}

.fvt-nav__item--dropdown.fvt-nav__item--open .fvt-nav__caret {
  transform: rotate(180deg);
}

.fvt-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background-color: var(--depot-charcoal);
  border: 1px solid var(--depot-border);
  border-radius: var(--radius-base);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition-panel), transform var(--transition-panel), visibility var(--transition-panel);
  list-style: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.fvt-nav__item--open .fvt-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fvt-nav__dropdown-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark-secondary);
  border-radius: 4px;
  transition: color var(--transition-hover), background-color var(--transition-hover);
}

.fvt-nav__dropdown-link:hover {
  color: var(--text-dark-primary);
  background-color: rgba(255,255,255,0.06);
}

.fvt-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}


.fvt-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.fvt-nav__hamburger-bar {
  width: 22px;
  height: 2px;
  background-color: var(--text-dark-primary);
  border-radius: 2px;
  transition: transform var(--transition-hover), opacity var(--transition-hover);
  display: block;
}

.fvt-nav__hamburger--open .fvt-nav__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.fvt-nav__hamburger--open .fvt-nav__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.fvt-nav__hamburger--open .fvt-nav__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.fvt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-base);
  transition: background-color var(--transition-hover), color var(--transition-hover), border-color var(--transition-hover), box-shadow var(--transition-hover);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: 1.5px solid transparent;
  line-height: 1.4;
}

.fvt-btn--primary {
  background-color: var(--green-charge);
  color: var(--depot-black);
  border-color: var(--green-charge);
}

.fvt-btn--primary:hover {
  background-color: var(--green-charge-hover);
  border-color: var(--green-charge-hover);
  color: var(--depot-black);
}

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

.fvt-btn--outline-dark:hover {
  border-color: var(--text-light-primary);
  background-color: rgba(15,15,13,0.06);
  color: var(--text-light-primary);
}

.fvt-btn--outline-light {
  background-color: transparent;
  color: var(--text-dark-primary);
  border-color: rgba(240,239,232,0.4);
}

.fvt-btn--outline-light:hover {
  border-color: var(--text-dark-primary);
  background-color: rgba(240,239,232,0.08);
  color: var(--text-dark-primary);
}

.fvt-btn--ghost-on-dark {
  background-color: transparent;
  color: var(--text-dark-primary);
  border-color: transparent;
}

.fvt-btn--ghost-on-dark:hover {
  background-color: rgba(240,239,232,0.08);
  color: var(--text-dark-primary);
  border-color: transparent;
}

.fvt-btn--ghost-on-light {
  background-color: transparent;
  color: var(--text-light-primary);
  border-color: transparent;
}

.fvt-btn--ghost-on-light:hover {
  background-color: rgba(15,15,13,0.06);
  color: var(--text-light-primary);
}

.fvt-btn--sm {
  padding: 0.4375rem 1rem;
  font-size: 0.875rem;
}

.fvt-btn--lg {
  padding: 0.8125rem 1.875rem;
  font-size: 1.0625rem;
}

.fvt-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--depot-black);
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

.fvt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(40,199,111,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.fvt-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
  padding-block: var(--section-pad-v);
}

.fvt-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fvt-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-charge);
}

.fvt-hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-dark-primary);
}

.fvt-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-dark-secondary);
  max-width: 520px;
}

.fvt-hero__actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.fvt-hero__visual {
  position: relative;
}

.fvt-dashboard-mock {
  background-color: var(--depot-charcoal);
  border: 1px solid var(--depot-border);
  border-radius: 10px;
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-dark-secondary);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
}

.fvt-dashboard-mock__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--depot-border);
}

.fvt-dashboard-mock__title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark-primary);
}

.fvt-dashboard-mock__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
  background-color: rgba(40,199,111,0.15);
  color: var(--green-charge);
  border: 1px solid rgba(40,199,111,0.3);
}

.fvt-vehicle-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.fvt-vehicle-row {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  align-items: center;
  gap: 0.75rem;
}

.fvt-vehicle-row__id {
  font-size: 0.75rem;
  color: var(--text-dark-muted);
  font-family: var(--font-mono);
}

.fvt-vehicle-row__bar-track {
  height: 8px;
  background-color: var(--depot-border);
  border-radius: 4px;
  overflow: hidden;
}

.fvt-vehicle-row__bar {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s ease-out;
  width: 0;
}

.fvt-vehicle-row__bar--charged {
  background-color: var(--green-charge);
}

.fvt-vehicle-row__bar--charging {
  background-color: var(--amber-route);
}

.fvt-vehicle-row__bar--waiting {
  background-color: var(--depot-border);
  width: 100% !important;
  opacity: 0.5;
}

.fvt-charge-bar {
  width: 0;
}

.fvt-vehicle-row__soc {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: right;
  color: var(--text-dark-secondary);
  font-family: var(--font-mono);
}

.fvt-vehicle-row__soc--charged {
  color: var(--green-charge);
}

.fvt-vehicle-row__soc--charging {
  color: var(--amber-route);
}

.fvt-tou-chart {
  border-top: 1px solid var(--depot-border);
  padding-top: 0.875rem;
}

.fvt-tou-chart__label {
  font-size: 0.6875rem;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
}

.fvt-tou-chart__svg-wrap {
  width: 100%;
  overflow: hidden;
}

.fvt-problem-stat {
  padding-block: var(--section-pad-v);
  background-color: var(--depot-charcoal);
}

.fvt-problem-stat__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--depot-border);
  border-radius: var(--radius-base);
  overflow: hidden;
}

.fvt-stat-item {
  padding: 2.5rem;
  border-right: 1px solid var(--depot-border);
}

.fvt-stat-item:last-child {
  border-right: none;
}

.fvt-stat-item__metric {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  color: var(--green-charge);
  margin-bottom: 0.625rem;
  letter-spacing: -0.03em;
}

.fvt-stat-item__label {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-dark-secondary);
}

.fvt-stat-item--large {
  grid-column: 1;
  grid-row: 1 / span 2;
  border-bottom: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--depot-border);
  background-color: var(--depot-card);
}

.fvt-stat-item--large .fvt-stat-item__metric {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.fvt-stat-item--small {
  border-bottom: 1px solid var(--depot-border);
}

.fvt-stat-item--small:last-child {
  border-bottom: none;
}

.fvt-how-it-works {
  padding-block: var(--section-pad-v);
  background-color: var(--concrete-light);
}

.fvt-how-it-works__head {
  text-align: center;
  margin-bottom: 4rem;
}

.fvt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.fvt-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--green-on-light), var(--green-on-light));
  opacity: 0.3;
}

.fvt-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 2rem;
  position: relative;
}

.fvt-step:first-child {
  padding-left: 0;
}

.fvt-step:last-child {
  padding-right: 0;
}

.fvt-step__number {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--green-on-light);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.fvt-step__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light-primary);
  margin-bottom: 0.625rem;
}

.fvt-step__body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-light-secondary);
}

.fvt-platform-preview {
  padding-block: var(--section-pad-v);
  background-color: var(--depot-black);
}

.fvt-platform-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fvt-platform-preview__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fvt-platform-preview__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-dark-primary);
}

.fvt-platform-preview__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark-secondary);
}

.fvt-platform-preview__img {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--depot-border);
  background-color: var(--depot-charcoal);
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.fvt-platform-preview__img-placeholder {
  background-color: var(--depot-charcoal);
  border-radius: 10px;
  border: 1px solid var(--depot-border);
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark-muted);
  font-size: 0.875rem;
  overflow: hidden;
}

.fvt-use-cases {
  padding-block: var(--section-pad-v);
  background-color: var(--concrete-light);
}

.fvt-use-cases__head {
  margin-bottom: 3rem;
}

.fvt-use-cases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.fvt-use-case-card {
  background-color: var(--concrete-surface);
  border: 1px solid var(--concrete-subtle);
  border-radius: var(--radius-base);
  padding: 1.75rem;
  transition: border-color var(--transition-hover), box-shadow var(--transition-hover);
}

.fvt-use-case-card:hover {
  border-color: rgba(23,128,72,0.3);
  box-shadow: 0 4px 16px rgba(23,128,72,0.08);
}

.fvt-use-case-card__type {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-light-primary);
  margin-bottom: 0.625rem;
}

.fvt-use-case-card__problem {
  font-size: 0.9rem;
  color: var(--text-light-secondary);
  margin-bottom: 0.875rem;
  line-height: 1.5;
}

.fvt-use-case-card__value {
  font-size: 0.9rem;
  color: var(--green-on-light);
  font-weight: 500;
  line-height: 1.5;
  padding-left: 1rem;
  border-left: 2px solid var(--green-charge);
}

.fvt-testimonials {
  padding-block: var(--section-pad-v);
  background-color: var(--depot-charcoal);
}

.fvt-testimonials__head {
  text-align: center;
  margin-bottom: 3rem;
}

.fvt-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.fvt-testimonial-card {
  background-color: var(--depot-card);
  border: 1px solid var(--depot-border);
  border-radius: var(--radius-base);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fvt-testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark-primary);
  font-style: italic;
  position: relative;
  padding-left: 1.25rem;
}

.fvt-testimonial-card__quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 3px;
  background-color: var(--green-charge);
  border-radius: 2px;
}

.fvt-testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.fvt-testimonial-card__name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark-primary);
}

.fvt-testimonial-card__role {
  font-size: 0.875rem;
  color: var(--text-dark-secondary);
}

.fvt-testimonial-card__company {
  font-size: 0.875rem;
  color: var(--green-charge);
  font-weight: 500;
}

.fvt-integrations {
  padding-block: var(--section-pad-v);
  background-color: var(--concrete-light);
}

.fvt-integrations__head {
  text-align: center;
  margin-bottom: 3rem;
}

.fvt-protocol-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.fvt-protocol-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background-color: var(--concrete-surface);
  border: 1px solid var(--concrete-subtle);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-light-secondary);
  transition: border-color var(--transition-hover), color var(--transition-hover);
}

.fvt-protocol-pill:hover {
  border-color: var(--green-charge-dim);
  color: var(--green-on-light);
}

.fvt-cta-footer {
  padding-block: var(--section-pad-v);
  background-color: var(--depot-black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fvt-cta-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(40,199,111,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.fvt-cta-footer__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark-primary);
  margin-bottom: 0.875rem;
  letter-spacing: -0.025em;
  line-height: 1.12;
  position: relative;
}

.fvt-cta-footer__sub {
  font-size: 1.0625rem;
  color: var(--text-dark-secondary);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.65;
  position: relative;
}

.fvt-cta-footer__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

.fvt-footer {
  background-color: var(--depot-charcoal);
  border-top: 1px solid var(--depot-border);
  padding-block: 3.5rem 2rem;
}

.fvt-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

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

.fvt-footer__logo {
  display: block;
}

.fvt-footer__logo img {
  height: 26px;
  width: auto;
}

.fvt-footer__description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dark-secondary);
}

.fvt-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fvt-footer__contact-item {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.fvt-footer__contact-item a {
  color: var(--text-dark-muted);
  transition: color var(--transition-hover);
}

.fvt-footer__contact-item a:hover {
  color: var(--green-charge);
}

.fvt-footer__col-heading {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dark-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

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

.fvt-footer__link {
  font-size: 0.9rem;
  color: var(--text-dark-secondary);
  transition: color var(--transition-hover);
}

.fvt-footer__link:hover {
  color: var(--green-charge);
}

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

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

.fvt-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  flex-wrap: wrap;
}

.fvt-footer__bottom-link {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  transition: color var(--transition-hover);
}

.fvt-footer__bottom-link:hover {
  color: var(--green-charge);
}

.fvt-footer__cookie-pref {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
  transition: color var(--transition-hover);
}

.fvt-footer__cookie-pref:hover {
  color: var(--green-charge);
}

.fvt-page-hero {
  padding-top: calc(64px + 5rem);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.fvt-page-hero--dark {
  background-color: var(--depot-black);
}

.fvt-page-hero--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(40,199,111,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.fvt-page-hero--light {
  background-color: var(--concrete-light);
}

.fvt-page-hero__content {
  position: relative;
  max-width: 720px;
}

.fvt-page-hero--centered .fvt-page-hero__content {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.fvt-page-hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.028em;
  margin-bottom: 1.25rem;
}

.fvt-page-hero--dark .fvt-page-hero__h1 {
  color: var(--text-dark-primary);
}

.fvt-page-hero--light .fvt-page-hero__h1 {
  color: var(--text-light-primary);
}

.fvt-page-hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.fvt-page-hero--dark .fvt-page-hero__sub {
  color: var(--text-dark-secondary);
}

.fvt-page-hero--light .fvt-page-hero__sub {
  color: var(--text-light-secondary);
}

.fvt-page-hero__ornament {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
  pointer-events: none;
}

.fvt-page-hero--dark .fvt-page-hero__ornament {
  opacity: 0.07;
}

.fvt-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fvt-hero-split__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fvt-hero-split__visual {
  position: relative;
}

.fvt-platform-features {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.fvt-feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fvt-feature-split--reversed {
  direction: rtl;
}

.fvt-feature-split--reversed > * {
  direction: ltr;
}

.fvt-feature-split__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fvt-feature-split__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fvt-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin-top: 1rem;
}

.fvt-feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-dark-secondary);
  line-height: 1.5;
}

.fvt-feature-list__item-icon {
  color: var(--green-charge);
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.875rem;
}

.fvt-feature-list__item-icon--light {
  color: var(--green-on-light);
}

.fvt-feature-list__item--light {
  color: var(--text-light-secondary);
}

.fvt-centered-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.fvt-centered-features--3 {
  grid-template-columns: repeat(3, 1fr);
}

.fvt-feature-card {
  background-color: var(--depot-card);
  border: 1px solid var(--depot-border);
  border-radius: var(--radius-base);
  padding: 1.75rem;
}

.fvt-feature-card__icon {
  width: 40px;
  height: 40px;
  background-color: rgba(40,199,111,0.12);
  border-radius: var(--radius-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-charge);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.fvt-feature-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark-primary);
  margin-bottom: 0.5rem;
}

.fvt-feature-card__body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dark-secondary);
}

.fvt-feature-card--light {
  background-color: var(--concrete-surface);
  border-color: var(--concrete-subtle);
}

.fvt-feature-card--light .fvt-feature-card__icon {
  background-color: rgba(23,128,72,0.1);
  color: var(--green-on-light);
}

.fvt-feature-card--light .fvt-feature-card__title {
  color: var(--text-light-primary);
}

.fvt-feature-card--light .fvt-feature-card__body {
  color: var(--text-light-secondary);
}

.fvt-energy-diagram {
  background-color: var(--depot-charcoal);
  border: 1px solid var(--depot-border);
  border-radius: 10px;
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}

.fvt-gantt-chart {
  background-color: var(--depot-charcoal);
  border: 1px solid var(--depot-border);
  border-radius: 10px;
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dark-secondary);
}

.fvt-gantt__row {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}

.fvt-gantt__label {
  font-size: 0.7rem;
  color: var(--text-dark-muted);
  text-align: right;
}

.fvt-gantt__track {
  height: 16px;
  background-color: var(--depot-border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.fvt-gantt__block {
  position: absolute;
  height: 100%;
  border-radius: 4px;
  background-color: var(--green-charge);
  opacity: 0.8;
}

.fvt-gantt__block--amber {
  background-color: var(--amber-route);
}

.fvt-problems-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.fvt-problem-item {
  padding: 2rem;
  background-color: var(--concrete-surface);
  border: 1px solid var(--concrete-subtle);
  border-radius: var(--radius-base);
  border-left: 3px solid var(--green-charge);
}

.fvt-problem-item__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-light-primary);
  margin-bottom: 0.625rem;
}

.fvt-problem-item__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-light-secondary);
}

.fvt-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  position: relative;
}

.fvt-timeline::before {
  content: '';
  position: absolute;
  left: 62px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--green-on-light) 0%, transparent 100%);
  opacity: 0.3;
}

.fvt-timeline__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.25rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--concrete-subtle);
  align-items: start;
}

.fvt-timeline__item:last-child {
  border-bottom: none;
}

.fvt-timeline__time {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--green-on-light);
  padding-top: 0.125rem;
}

.fvt-timeline__event {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-light-secondary);
}

.fvt-depot-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.fvt-depot-input-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background-color: var(--concrete-surface);
  border: 1px solid var(--concrete-subtle);
  border-radius: var(--radius-base);
  font-size: 0.9rem;
  color: var(--text-light-secondary);
}

.fvt-depot-input-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--green-charge);
  flex-shrink: 0;
}

.fvt-dark-cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fvt-dark-cta-split__stat {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fvt-dark-cta-split__stat-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: var(--text-dark-primary);
  line-height: 1.2;
}

.fvt-dark-cta-split__stat-body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-dark-secondary);
}

.fvt-dark-cta-split__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.fvt-cross-link-card {
  background-color: var(--depot-card);
  border: 1px solid var(--depot-border);
  border-radius: var(--radius-base);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: border-color var(--transition-hover);
}

.fvt-cross-link-card:hover {
  border-color: rgba(40,199,111,0.3);
}

.fvt-cross-link-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fvt-cross-link-card__headline {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark-primary);
}

.fvt-cross-link-card__body {
  font-size: 0.9rem;
  color: var(--text-dark-secondary);
  line-height: 1.5;
}

.fvt-pricing-header {
  padding-block: 5rem 4rem;
  background-color: var(--concrete-light);
  text-align: center;
}

.fvt-pricing-header .fvt-section-headline {
  color: var(--text-light-primary);
  margin-bottom: 0.75rem;
}

.fvt-pricing-header__sub {
  font-size: 1.0625rem;
  color: var(--text-light-secondary);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.6;
}

.fvt-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  margin-top: 2rem;
}

.fvt-pricing-toggle__label {
  font-size: 0.9rem;
  color: var(--text-light-secondary);
  font-weight: 500;
}

.fvt-pricing-toggle__label--active {
  color: var(--text-light-primary);
  font-weight: 600;
}

.fvt-pricing-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.fvt-pricing-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.fvt-pricing-switch__track {
  width: 44px;
  height: 24px;
  background-color: var(--concrete-subtle);
  border-radius: 12px;
  transition: background-color var(--transition-hover);
  cursor: pointer;
  position: relative;
}

.fvt-pricing-switch__track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: white;
  transition: transform var(--transition-hover);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.fvt-pricing-switch input:checked + .fvt-pricing-switch__track {
  background-color: var(--green-charge);
}

.fvt-pricing-switch input:checked + .fvt-pricing-switch__track::after {
  transform: translateX(20px);
}

.fvt-pricing-tiers {
  padding-block: 4rem 5rem;
  background-color: var(--concrete-surface);
}

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

.fvt-pricing-card {
  border: 1px solid var(--concrete-subtle);
  border-radius: var(--radius-base);
  padding: 2rem;
  background-color: var(--concrete-surface);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fvt-pricing-card--highlight {
  border-color: var(--green-charge);
  background-color: var(--depot-black);
  position: relative;
}

.fvt-pricing-card--highlight .fvt-pricing-card__name {
  color: var(--text-dark-primary);
}

.fvt-pricing-card--highlight .fvt-pricing-card__price {
  color: var(--text-dark-primary);
}

.fvt-pricing-card--highlight .fvt-pricing-card__price-suffix {
  color: var(--text-dark-secondary);
}

.fvt-pricing-card--highlight .fvt-pricing-card__vehicle-limit {
  color: var(--text-dark-secondary);
}

.fvt-pricing-card--highlight .fvt-pricing-card__feature {
  color: var(--text-dark-secondary);
}

.fvt-pricing-card--highlight .fvt-pricing-card__feature-icon {
  color: var(--green-charge);
}

.fvt-pricing-card--highlight .fvt-pricing-card__divider {
  border-color: var(--depot-border);
}

.fvt-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--green-charge);
  color: var(--depot-black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.875rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  font-family: var(--font-body);
}

.fvt-pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-light-primary);
  margin-bottom: 0.25rem;
}

.fvt-pricing-card__vehicle-limit {
  font-size: 0.875rem;
  color: var(--text-light-muted);
  margin-bottom: 1.25rem;
}

.fvt-pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.fvt-pricing-card__price-suffix {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-light-muted);
}

.fvt-pricing-card__price-label {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-light-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.fvt-pricing-card--highlight .fvt-pricing-card__price-label {
  color: var(--text-dark-primary);
}

.fvt-pricing-card__divider {
  border: none;
  border-top: 1px solid var(--concrete-subtle);
  margin-block: 1.25rem;
}

.fvt-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
  flex: 1;
  margin-bottom: 1.75rem;
}

.fvt-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-light-secondary);
  line-height: 1.45;
}

.fvt-pricing-card__feature-icon {
  color: var(--green-on-light);
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.8rem;
}

.fvt-pricing-faq {
  padding-block: var(--section-pad-v);
  background-color: var(--concrete-light);
}

.fvt-pricing-faq__head {
  margin-bottom: 3rem;
}

.fvt-trust-row {
  padding-block: 3rem;
  background-color: var(--concrete-light);
  border-top: 1px solid var(--concrete-subtle);
}

.fvt-trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.fvt-trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-light-secondary);
}

.fvt-trust-item__icon {
  color: var(--green-on-light);
  font-size: 0.875rem;
}

.fvt-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--concrete-subtle);
  border-radius: var(--radius-base);
  overflow: hidden;
}

.fvt-faq--dark {
  border-color: var(--depot-border);
}

.fvt-faq__item {
  border-bottom: 1px solid var(--concrete-subtle);
}

.fvt-faq__item:last-child {
  border-bottom: none;
}

.fvt-faq--dark .fvt-faq__item {
  border-color: var(--depot-border);
}

.fvt-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-light-primary);
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color var(--transition-hover);
}

.fvt-faq__question:hover {
  background-color: rgba(15,15,13,0.03);
}

.fvt-faq--dark .fvt-faq__question {
  color: var(--text-dark-primary);
}

.fvt-faq--dark .fvt-faq__question:hover {
  background-color: rgba(255,255,255,0.04);
}

.fvt-faq__question-icon {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  transition: transform var(--transition-hover);
  flex-shrink: 0;
}

.fvt-faq--dark .fvt-faq__question-icon {
  color: var(--text-dark-muted);
}

.fvt-faq__item--open .fvt-faq__question-icon {
  transform: rotate(180deg);
}

.fvt-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-panel);
}

.fvt-faq__item--open .fvt-faq__answer {
  max-height: 500px;
}

.fvt-faq__answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-light-secondary);
}

.fvt-faq--dark .fvt-faq__answer-inner {
  color: var(--text-dark-secondary);
}

.fvt-about-hero {
  padding-top: calc(64px + 5rem);
  padding-bottom: 4rem;
  background-color: var(--concrete-light);
}

.fvt-about-story {
  padding-block: var(--section-pad-v);
  background-color: var(--concrete-surface);
}

.fvt-about-story__content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fvt-about-story__para {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-light-secondary);
}

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

.fvt-team-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fvt-team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  background-color: var(--concrete-subtle);
}

.fvt-team-card__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light-primary);
}

.fvt-team-card__title {
  font-size: 0.9rem;
  color: var(--green-on-light);
  font-weight: 600;
  margin-top: -0.5rem;
}

.fvt-team-card__bio {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-light-secondary);
}

.fvt-values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
}

.fvt-value-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--concrete-subtle);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: baseline;
}

.fvt-value-item:last-child {
  border-bottom: none;
}

.fvt-value-item__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light-primary);
}

.fvt-value-item__body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-light-secondary);
}

.fvt-contact-section {
  padding-block: var(--section-pad-v);
  background-color: var(--concrete-light);
}

.fvt-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-radius: var(--radius-base);
  overflow: hidden;
  border: 1px solid var(--depot-border);
}

.fvt-contact-side {
  background-color: var(--depot-charcoal);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fvt-contact-side__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: var(--text-dark-primary);
  line-height: 1.2;
}

.fvt-contact-side__sub {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-dark-secondary);
}

.fvt-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.fvt-contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-dark-secondary);
}

.fvt-contact-detail__icon {
  color: var(--green-charge);
  font-size: 0.875rem;
  width: 16px;
  flex-shrink: 0;
}

.fvt-contact-detail a {
  color: var(--text-dark-secondary);
  transition: color var(--transition-hover);
}

.fvt-contact-detail a:hover {
  color: var(--green-charge);
}

.fvt-contact-form-panel {
  background-color: var(--concrete-surface);
  padding: 3rem;
}

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

.fvt-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.fvt-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light-primary);
}

.fvt-form__input,
.fvt-form__select,
.fvt-form__textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  background-color: var(--concrete-light);
  border: 1.5px solid var(--concrete-subtle);
  border-radius: var(--radius-base);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-light-primary);
  transition: border-color var(--transition-hover);
  outline: none;
}

.fvt-form__input:focus,
.fvt-form__select:focus,
.fvt-form__textarea:focus {
  border-color: var(--green-on-light);
}

.fvt-form__input::placeholder,
.fvt-form__textarea::placeholder {
  color: var(--text-light-muted);
}

.fvt-form__textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.fvt-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fvt-blog-header {
  padding-top: calc(64px + 4rem);
  padding-bottom: 3.5rem;
  background-color: var(--concrete-light);
}

.fvt-blog-header__h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-light-primary);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.fvt-blog-header__sub {
  font-size: 1.0625rem;
  color: var(--text-light-secondary);
  line-height: 1.65;
  max-width: 600px;
}

.fvt-blog-grid-section {
  padding-block: 4rem 5rem;
  background-color: var(--concrete-surface);
}

.fvt-blog-featured {
  margin-bottom: 3rem;
}

.fvt-blog-featured__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--concrete-subtle);
  border-radius: var(--radius-base);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition-hover);
}

.fvt-blog-featured__card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  color: inherit;
}

.fvt-blog-featured__image {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  height: auto;
  background-color: var(--concrete-subtle);
}

.fvt-blog-featured__content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.875rem;
}

.fvt-blog-featured__date {
  font-size: 0.8125rem;
  color: var(--text-light-muted);
  font-family: var(--font-mono);
}

.fvt-blog-featured__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: var(--text-light-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.fvt-blog-featured__excerpt {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-light-secondary);
}

.fvt-blog-featured__read-time {
  font-size: 0.8125rem;
  color: var(--green-on-light);
  font-weight: 500;
}

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

.fvt-blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--concrete-subtle);
  border-radius: var(--radius-base);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition-hover);
}

.fvt-blog-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  color: inherit;
}

.fvt-blog-card__cover {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  height: auto;
  background-color: var(--concrete-subtle);
}

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

.fvt-blog-card__date {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  font-family: var(--font-mono);
}

.fvt-blog-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light-primary);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.fvt-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-light-secondary);
  line-height: 1.6;
  flex: 1;
}

.fvt-blog-card__read-time {
  font-size: 0.8rem;
  color: var(--green-on-light);
  font-weight: 500;
  margin-top: 0.25rem;
}

.fvt-article-hero {
  padding-top: calc(64px + 4rem);
  padding-bottom: 3rem;
  background-color: var(--concrete-light);
}

.fvt-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.fvt-article-meta__date {
  font-size: 0.875rem;
  color: var(--text-light-muted);
  font-family: var(--font-mono);
}

.fvt-article-meta__read-time {
  font-size: 0.875rem;
  color: var(--text-light-muted);
}

.fvt-article-meta__sep {
  color: var(--text-light-muted);
  font-size: 0.75rem;
}

.fvt-article-h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-light-primary);
  max-width: 760px;
  margin-bottom: 1rem;
}

.fvt-article-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-light-secondary);
  max-width: 700px;
}

.fvt-article-cover {
  margin-block: 2.5rem;
  border-radius: var(--radius-base);
  overflow: hidden;
  max-width: 900px;
}

.fvt-article-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.fvt-article-content {
  max-width: 720px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  padding-block: 3rem 5rem;
  background-color: var(--concrete-surface);
}

.fvt-article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.fvt-article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text-light-primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.fvt-article-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light-secondary);
  margin-bottom: 1.25rem;
}

.fvt-article-content ul,
.fvt-article-content ol {
  padding-left: 1.75rem;
  list-style: disc;
  margin-bottom: 1.25rem;
}

.fvt-article-content ol {
  list-style: decimal;
}

.fvt-article-content li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light-secondary);
  margin-bottom: 0.375rem;
}

.fvt-article-content blockquote {
  border-left: 3px solid var(--green-charge);
  padding-left: 1.25rem;
  margin-block: 1.5rem;
  font-style: italic;
  color: var(--text-light-secondary);
}

.fvt-article-content pre {
  background-color: var(--depot-charcoal);
  border: 1px solid var(--depot-border);
  border-radius: var(--radius-base);
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}

.fvt-article-content code {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-dark-primary);
}

.fvt-article-content img {
  max-width: 100%;
  border-radius: var(--radius-base);
  margin-block: 1.5rem;
}

.fvt-legal-hero {
  padding-top: calc(64px + 4rem);
  padding-bottom: 3rem;
  background-color: var(--concrete-light);
}

.fvt-legal-main {
  background-color: var(--concrete-surface);
  padding-block: 4rem 5rem;
}

.fvt-legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

.legal-article {
  color: var(--text-light-primary);
}

.legal-header {
  margin-bottom: 2.5rem;
}

.legal-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--text-light-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--text-light-muted);
  font-family: var(--font-mono);
}

.legal-article section {
  margin-bottom: 2rem;
}

.legal-article h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light-primary);
  margin-bottom: 0.75rem;
  margin-top: 0;
  line-height: 1.3;
}

.legal-article h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-light-primary);
  margin-bottom: 0.625rem;
  margin-top: 1.25rem;
  line-height: 1.3;
}

.legal-article p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-light-secondary);
  margin-bottom: 0.875rem;
}

.legal-article ul {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 0.875rem;
}

.legal-article li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-light-secondary);
  margin-bottom: 0.375rem;
}

.legal-article address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-light-secondary);
  padding: 1.25rem;
  background-color: var(--concrete-light);
  border-radius: var(--radius-base);
  margin-top: 0.5rem;
}

.legal-article a {
  color: var(--green-on-light);
  text-decoration: underline;
  text-decoration-color: rgba(23,128,72,0.4);
}

.legal-article a:hover {
  color: var(--green-charge-dim);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.legal-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-light-primary);
  text-align: left;
  padding: 0.625rem 0.875rem;
  background-color: var(--concrete-light);
  border-bottom: 2px solid var(--concrete-subtle);
  font-size: 0.875rem;
}

.legal-table td {
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid var(--concrete-subtle);
  color: var(--text-light-secondary);
  vertical-align: top;
}

.fvt-auth-page {
  min-height: 100vh;
  background-color: var(--depot-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.fvt-auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(40,199,111,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.fvt-auth-card {
  width: 100%;
  max-width: 440px;
  background-color: var(--depot-charcoal);
  border: 1px solid var(--depot-border);
  border-radius: 10px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
}

.fvt-auth-card__logo {
  display: flex;
  justify-content: center;
}

.fvt-auth-card__logo img {
  height: 28px;
  width: auto;
}

.fvt-auth-card__heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark-primary);
  text-align: center;
  line-height: 1.2;
}

.fvt-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.fvt-auth-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.fvt-auth-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark-secondary);
}

.fvt-auth-form__input {
  width: 100%;
  padding: 0.6875rem 0.875rem;
  background-color: var(--depot-card);
  border: 1.5px solid var(--depot-border);
  border-radius: var(--radius-base);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark-primary);
  transition: border-color var(--transition-hover);
  outline: none;
}

.fvt-auth-form__input:focus {
  border-color: var(--green-charge);
}

.fvt-auth-form__input::placeholder {
  color: var(--text-dark-muted);
}

.fvt-auth-form__submit {
  width: 100%;
  padding: 0.8125rem;
  background-color: var(--green-charge);
  color: var(--depot-black);
  border: none;
  border-radius: var(--radius-base);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--transition-hover);
  margin-top: 0.25rem;
}

.fvt-auth-form__submit:hover {
  background-color: var(--green-charge-hover);
  color: var(--depot-black);
}

.fvt-auth-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fvt-auth-link {
  font-size: 0.875rem;
  color: var(--text-dark-secondary);
}

.fvt-auth-link a {
  color: var(--green-charge);
  font-weight: 600;
  transition: color var(--transition-hover);
}

.fvt-auth-link a:hover {
  color: var(--green-charge-hover);
}

.fvt-auth-legal {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

.fvt-auth-legal a {
  color: var(--text-dark-secondary);
  text-decoration: underline;
  text-decoration-color: rgba(168,167,158,0.4);
}

.fvt-auth-legal a:hover {
  color: var(--text-dark-primary);
}

.fvt-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fvt-fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--depot-charcoal);
  border-top: 1px solid var(--depot-border);
  padding: 1rem 0;
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-dark-secondary);
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--green-charge);
  text-decoration: underline;
  text-decoration-color: rgba(40,199,111,0.4);
}

.cookie-banner__text a:hover {
  color: var(--green-charge-hover);
}

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

.cookie-banner__btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-base);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-hover), color var(--transition-hover), border-color var(--transition-hover);
  border: 1.5px solid transparent;
}

.cookie-banner__btn--primary {
  background-color: var(--green-charge);
  color: var(--depot-black);
  border-color: var(--green-charge);
}

.cookie-banner__btn--primary:hover {
  background-color: var(--green-charge-hover);
  border-color: var(--green-charge-hover);
  color: var(--depot-black);
}

.fvt-skip-link {
  position: absolute;
  top: -9999px;
  left: 0;
  background-color: var(--green-charge);
  color: var(--depot-black);
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  z-index: 9999;
}

.fvt-skip-link:focus {
  top: 0;
}

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

@media (max-width: 1024px) {
  .fvt-hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .fvt-hero__visual {
    max-width: 600px;
    margin-inline: auto;
    width: 100%;
  }
  .fvt-platform-preview__grid,
  .fvt-feature-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .fvt-feature-split--reversed {
    direction: ltr;
  }
  .fvt-dark-cta-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad-v: var(--section-pad-v-mob);
  }
  .fvt-nav__menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background-color: var(--depot-charcoal);
    border-bottom: 1px solid var(--depot-border);
    padding: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .fvt-nav__menu--open {
    display: flex;
  }
  .fvt-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .fvt-nav__link,
  .fvt-nav__dropdown-toggle {
    padding: 0.625rem 0.75rem;
    justify-content: space-between;
  }
  .fvt-nav__actions {
    display: none;
  }
  .fvt-nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    display: none;
  }
  .fvt-nav__item--open .fvt-nav__dropdown {
    display: block;
  }
  .fvt-nav__hamburger {
    display: flex;
  }
  .fvt-problem-stat__grid {
    grid-template-columns: 1fr;
  }
  .fvt-stat-item--large {
    grid-column: 1;
    grid-row: auto;
    border-right: none;
    border-bottom: 1px solid var(--depot-border);
  }
  .fvt-stat-item--small {
    border-right: none;
    border-bottom: 1px solid var(--depot-border);
  }
  .fvt-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .fvt-steps::before {
    display: none;
  }
  .fvt-step {
    padding: 0;
  }
  .fvt-use-cases__grid,
  .fvt-testimonials__grid,
  .fvt-centered-features,
  .fvt-centered-features--3 {
    grid-template-columns: 1fr;
  }
  .fvt-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .fvt-pricing-grid {
    grid-template-columns: 1fr;
  }
  .fvt-team-grid {
    grid-template-columns: 1fr;
  }
  .fvt-value-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .fvt-contact-grid {
    grid-template-columns: 1fr;
  }
  .fvt-blog-featured__card {
    grid-template-columns: 1fr;
  }
  .fvt-blog-grid {
    grid-template-columns: 1fr;
  }
  .fvt-depot-inputs {
    grid-template-columns: 1fr;
  }
  .fvt-hero-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .fvt-timeline::before {
    display: none;
  }
  .fvt-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .fvt-form__row {
    grid-template-columns: 1fr;
  }
  .fvt-trust-items {
    gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .fvt-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .fvt-hero__actions .fvt-btn {
    text-align: center;
    justify-content: center;
  }
  .fvt-auth-card {
    padding: 2rem 1.5rem;
  }
  .fvt-blog-grid {
    grid-template-columns: 1fr;
  }
}

.fvt-contact-form {
  width: 100%;
}

.fvt-price-monthly,
.fvt-price-annual {
  transition: opacity 0.15s ease;
}
