/* Fervio AI — Landing (fvx skin) */

:root {
  --fvx-bg: #0b1026;
  --fvx-bg-elevated: #141b38;
  --fvx-bg-card: rgba(20, 27, 56, 0.88);
  --fvx-border: rgba(0, 245, 212, 0.22);
  --fvx-border-strong: rgba(255, 71, 126, 0.38);
  --fvx-accent: #00f5d4;
  --fvx-accent-2: #ff477e;
  --fvx-accent-3: #ffd60a;
  --fvx-text: #f8fafc;
  --fvx-text-muted: #94a3b8;
  --fvx-radius: 22px;
  --fvx-radius-sm: 14px;
  --fvx-shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
  --fvx-font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --fvx-header-h: 74px;
  --fvx-max: 1200px;
  --fvx-section-pad: clamp(3.25rem, 7.5vw, 5.75rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--fvx-header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--fvx-font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fvx-text);
  background: var(--fvx-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--fvx-accent);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover { color: var(--fvx-accent-3); }

h1, h2, h3, h4, p, ul { margin: 0; }
ul { list-style: none; padding: 0; }

/* Ambient background */
.fvx-ambient-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 45% at 10% 0%, rgba(0, 245, 212, 0.16) 0%, transparent 58%),
    radial-gradient(ellipse 55% 40% at 90% 15%, rgba(255, 71, 126, 0.14) 0%, transparent 52%),
    radial-gradient(ellipse 45% 35% at 50% 100%, rgba(255, 214, 10, 0.08) 0%, transparent 48%);
  animation: fvx-ambient-pulse 16s ease-in-out infinite alternate;
}

@keyframes fvx-ambient-pulse {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.04); }
}

/* Top bar */
.fvx-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--fvx-header-h);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: rgba(11, 16, 38, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--fvx-border);
  transition: box-shadow 0.3s;
}

.fvx-topbar.fvx-topbar-fixed {
  box-shadow: 0 10px 36px rgba(0, 245, 212, 0.08);
}

.fvx-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--fvx-text);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.fvx-logo-link:hover { color: var(--fvx-accent); }

.fvx-logo-svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.fvx-nav-panel { margin-left: auto; }

.fvx-nav-list {
  display: flex;
  gap: 1.75rem;
}

.fvx-nav-list a {
  color: var(--fvx-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.fvx-nav-list a:hover { color: var(--fvx-accent-2); }

.fvx-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  border: 2px solid var(--fvx-accent);
  background: linear-gradient(120deg, rgba(0, 245, 212, 0.18), rgba(255, 71, 126, 0.14));
  color: var(--fvx-text) !important;
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.fvx-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 245, 212, 0.25);
  color: #fff !important;
}

.fvx-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 1px solid var(--fvx-border-strong);
  border-radius: 12px;
  background: rgba(255, 71, 126, 0.08);
  cursor: pointer;
  margin-left: auto;
}

.fvx-hamburger span {
  display: block;
  height: 2px;
  background: var(--fvx-accent);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.fvx-hamburger.fvx-nav-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fvx-hamburger.fvx-nav-active span:nth-child(2) { opacity: 0; }
.fvx-hamburger.fvx-nav-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Main */
main {
  position: relative;
  z-index: 1;
  padding-top: var(--fvx-header-h);
}

.fvx-block-intro {
  max-width: 700px;
  margin: 0 auto clamp(2.25rem, 5vw, 3.25rem);
  text-align: center;
  padding: 0 1.25rem;
}

.fvx-block-intro h2 {
  font-size: clamp(1.8rem, 4.2vw, 2.55rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
  background: linear-gradient(110deg, var(--fvx-accent) 0%, var(--fvx-accent-3) 45%, var(--fvx-accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fvx-block-intro p {
  color: var(--fvx-text-muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
}

/* Hero */
.fvx-hero-zone {
  padding: var(--fvx-section-pad) clamp(1.25rem, 4vw, 2.5rem);
  min-height: calc(100vh - var(--fvx-header-h));
  display: flex;
  align-items: center;
}

.fvx-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  max-width: var(--fvx-max);
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

.fvx-hero-tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.1rem;
  border-radius: 8px;
  border: 1px solid var(--fvx-border-strong);
  background: linear-gradient(90deg, rgba(255, 71, 126, 0.12), rgba(0, 245, 212, 0.1));
  color: var(--fvx-accent-3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fvx-hero-text h1 {
  font-size: clamp(2.05rem, 5.2vw, 3.35rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 1.15rem;
}

.fvx-hero-text > p {
  color: var(--fvx-text-muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
  margin-bottom: 1.75rem;
  max-width: 540px;
}

.fvx-hero-checklist {
  display: grid;
  gap: 0.7rem;
}

.fvx-hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.fvx-hero-checklist svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--fvx-accent-2);
}

/* Form card wrapper (layout only) */
.form-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--fvx-radius);
  border: 2px solid var(--fvx-border);
  background: var(--fvx-bg-card);
  backdrop-filter: blur(18px);
  box-shadow: var(--fvx-shadow);
}

.form-card__title {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-align: center;
  color: var(--fvx-accent);
}

.form-card__subtitle {
  font-size: 0.875rem;
  color: var(--fvx-text-muted);
  text-align: center;
  margin-bottom: 1.25rem;
}

.form-card > form.apx-lead-form {
  max-width: none;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

/* Stats strip */
.fvx-stats-strip {
  padding: var(--fvx-section-pad) clamp(1.25rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, rgba(0, 245, 212, 0.07), rgba(255, 71, 126, 0.06));
  border-block: 2px solid var(--fvx-border);
}

.fvx-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: var(--fvx-max);
  margin: 0 auto;
  text-align: center;
}

.fvx-stats-row li {
  padding: 1.25rem 0.75rem;
  border-radius: var(--fvx-radius-sm);
  background: rgba(20, 27, 56, 0.5);
  border: 1px solid var(--fvx-border);
}

.fvx-stats-row h3 {
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--fvx-accent), var(--fvx-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}

.fvx-stats-row p {
  font-size: 0.9rem;
  color: var(--fvx-text-muted);
}

.fvx-stats-disclaimer {
  max-width: var(--fvx-max);
  margin: 1.75rem auto 0;
  text-align: center;
  font-size: 0.72rem;
  color: var(--fvx-text-muted);
  opacity: 0.75;
  padding: 0 1.25rem;
}

/* Benefits */
.fvx-benefits-block {
  padding: var(--fvx-section-pad) clamp(1.25rem, 4vw, 2.5rem);
}

.fvx-benefits-wrap {
  max-width: var(--fvx-max);
  margin: 0 auto;
}

.fvx-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.fvx-benefits-grid > li {
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  border-radius: var(--fvx-radius);
  border: 1px solid var(--fvx-border);
  background: var(--fvx-bg-card);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.fvx-benefits-grid > li:hover {
  transform: translateY(-5px);
  border-color: var(--fvx-accent);
  box-shadow: 0 18px 52px rgba(0, 245, 212, 0.1);
}

.fvx-benefit-icon-box {
  width: 64px;
  height: 64px;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 245, 212, 0.15), rgba(255, 71, 126, 0.12));
  border: 1px solid var(--fvx-border);
}

.fvx-benefit-svg {
  width: 36px;
  height: 36px;
  color: var(--fvx-accent-3);
}

.fvx-benefit-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--fvx-accent);
}

.fvx-benefit-text p {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--fvx-text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.55rem;
}

.fvx-benefit-text p:last-child { margin-bottom: 0; }

.fvx-benefit-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-top: 0.5rem;
  border-radius: 2px;
  background: var(--fvx-accent-2);
  flex-shrink: 0;
  transform: rotate(45deg);
}

/* Roadmap */
.fvx-roadmap-block {
  padding: var(--fvx-section-pad) clamp(1.25rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, transparent, rgba(20, 27, 56, 0.55) 50%, transparent);
}

.fvx-roadmap-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.fvx-roadmap-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.fvx-roadmap-steps::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 40px;
  bottom: 40px;
  width: 3px;
  background: linear-gradient(180deg, var(--fvx-accent), var(--fvx-accent-2), var(--fvx-accent-3));
  border-radius: 3px;
  opacity: 0.45;
}

.fvx-roadmap-steps > li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  align-items: start;
}

.fvx-roadmap-step-icon {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--fvx-bg-elevated);
  border: 2px solid var(--fvx-border-strong);
  z-index: 1;
}

.fvx-roadmap-index {
  position: absolute;
  top: -8px;
  right: -4px;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--fvx-accent-2);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
}

.fvx-roadmap-svg {
  width: 36px;
  height: 36px;
  color: var(--fvx-accent);
}

.fvx-roadmap-steps h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  padding-top: 0.5rem;
}

.fvx-roadmap-steps p {
  font-size: 0.9rem;
  color: var(--fvx-text-muted);
  line-height: 1.55;
}

/* Voices / testimonials */
.fvx-voices-block {
  padding: var(--fvx-section-pad) clamp(1.25rem, 4vw, 2.5rem);
}

.fvx-voices-wrap {
  max-width: var(--fvx-max);
  margin: 0 auto;
}

.fvx-voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.fvx-voices-grid > li {
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  border-radius: var(--fvx-radius-sm);
  border: 1px solid var(--fvx-border);
  background: linear-gradient(160deg, rgba(20, 27, 56, 0.9), rgba(11, 16, 38, 0.95));
  transition: border-color 0.3s;
}

.fvx-voices-grid > li:hover {
  border-color: var(--fvx-accent-2);
}

.fvx-voice-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  gap: 1rem;
}

.fvx-voice-name {
  font-size: 0.98rem;
  font-weight: 700;
}

.fvx-voice-stars {
  color: var(--fvx-accent-3);
  font-size: 0.82rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.fvx-voice-content { flex: 1; }

.fvx-voice-text {
  font-size: 0.9rem;
  color: var(--fvx-text-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.fvx-voice-label {
  display: inline-block;
  padding: 0.28rem 0.7rem;
  border-radius: 6px;
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid var(--fvx-border);
  font-size: 0.72rem;
  color: var(--fvx-accent);
  font-weight: 600;
}

/* Help / FAQ */
.fvx-help-block {
  padding: var(--fvx-section-pad) clamp(1.25rem, 4vw, 2.5rem);
}

.fvx-help-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: var(--fvx-max);
  margin: 0 auto;
  align-items: start;
}

.fvx-help-aside {
  position: sticky;
  top: calc(var(--fvx-header-h) + 24px);
}

.fvx-help-aside h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  background: linear-gradient(110deg, var(--fvx-accent-2), var(--fvx-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fvx-help-aside p {
  color: var(--fvx-text-muted);
  font-size: 0.95rem;
}

.fvx-help-wrap { min-width: 0; }

.fvx-help-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.fvx-help-list > li {
  border-radius: var(--fvx-radius-sm);
  border: 1px solid var(--fvx-border);
  background: var(--fvx-bg-card);
  overflow: hidden;
  transition: border-color 0.3s;
}

.fvx-help-list > li.fvx-help-expanded {
  border-color: var(--fvx-accent);
}

.fvx-help-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.35rem;
  border: none;
  background: transparent;
  color: var(--fvx-text);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.fvx-help-toggle h4 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.fvx-help-arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--fvx-accent-2);
  transition: transform 0.3s;
}

.fvx-help-expanded .fvx-help-arrow {
  transform: rotate(180deg);
}

.fvx-help-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.fvx-help-expanded .fvx-help-answer {
  max-height: 320px;
}

.fvx-help-answer p {
  padding: 0 1.35rem 1.15rem;
  font-size: 0.9rem;
  color: var(--fvx-text-muted);
  line-height: 1.65;
}

/* Final CTA */
.fvx-final-cta {
  padding: var(--fvx-section-pad) clamp(1.25rem, 4vw, 2.5rem);
}

.fvx-final-cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  max-width: var(--fvx-max);
  margin: 0 auto;
  align-items: center;
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: var(--fvx-radius);
  border: 2px solid var(--fvx-border-strong);
  background: linear-gradient(125deg, rgba(0, 245, 212, 0.1), rgba(255, 214, 10, 0.06), rgba(255, 71, 126, 0.09));
  position: relative;
  overflow: hidden;
}

.fvx-final-cta-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(255, 71, 126, 0.12), transparent 55%);
  pointer-events: none;
}

.fvx-final-cta-text {
  position: relative;
}

.fvx-final-cta-text h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.fvx-final-cta-text p {
  color: var(--fvx-text-muted);
  font-size: 0.98rem;
}

.fvx-final-cta-form {
  position: relative;
}

/* Footer */
.fvx-page-footer {
  padding: 3rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
  border-top: 2px solid var(--fvx-border);
  background: var(--fvx-bg-elevated);
}

.fvx-page-footer-inner {
  max-width: var(--fvx-max);
  margin: 0 auto;
}

.fvx-page-footer-notes {
  margin-bottom: 1.75rem;
}

.fvx-page-footer-legal,
.fvx-page-footer-risk {
  font-size: 0.73rem;
  color: var(--fvx-text-muted);
  line-height: 1.7;
  margin-bottom: 0.85rem;
  opacity: 0.88;
}

.fvx-page-footer-links-wrap {
  margin-bottom: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--fvx-border);
}

.fvx-page-footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.fvx-page-footer-menu a {
  color: var(--fvx-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.fvx-page-footer-menu a:hover { color: var(--fvx-accent); }

.fvx-page-footer-copy {
  font-size: 0.8rem;
  color: var(--fvx-text-muted);
  opacity: 0.65;
}

/* Scroll animation */
.fvx-animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.fvx-animate-stagger { transition-delay: 0.12s; }

/* Legal / doc pages */
.fvx-doc-page {
  position: relative;
  z-index: 1;
  padding-top: var(--fvx-header-h);
  min-height: 100vh;
}

.fvx-doc-trail {
  max-width: var(--fvx-max);
  margin: 0 auto;
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem) 0;
}

.fvx-doc-trail ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  font-size: 0.8rem;
  color: var(--fvx-text-muted);
}

.fvx-doc-trail li::after {
  content: "›";
  margin-left: 0.35rem;
  opacity: 0.5;
}

.fvx-doc-trail li:last-child::after { display: none; }

.fvx-doc-trail a { color: var(--fvx-text-muted); }
.fvx-doc-trail a:hover { color: var(--fvx-accent); }

.fvx-doc-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem) 4rem;
}

.fvx-doc-body h1 {
  font-size: clamp(1.75rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
  color: var(--fvx-accent);
}

.fvx-doc-meta {
  font-size: 0.85rem;
  color: var(--fvx-text-muted);
  margin-bottom: 2.25rem;
}

.fvx-doc-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0 0.7rem;
  color: var(--fvx-text);
}

.fvx-doc-body p,
.fvx-doc-body li {
  color: var(--fvx-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0.7rem;
}

.fvx-doc-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.fvx-doc-info-card {
  margin-top: 1.75rem;
  padding: 1.35rem;
  border-radius: var(--fvx-radius-sm);
  border: 1px solid var(--fvx-border);
  background: var(--fvx-bg-card);
}

.fvx-doc-info-card p { margin-bottom: 0.45rem; }
.fvx-doc-info-card a { font-weight: 600; }

/* Responsive */
@media (max-width: 1024px) {
  .fvx-benefits-grid {
    grid-template-columns: 1fr;
  }

  .fvx-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .fvx-help-layout {
    grid-template-columns: 1fr;
  }

  .fvx-help-aside {
    position: static;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .fvx-hero-grid,
  .fvx-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .fvx-nav-cta { display: none; }

  .fvx-nav-panel {
    position: fixed;
    top: var(--fvx-header-h);
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: rgba(11, 16, 38, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 2px solid var(--fvx-border);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s, opacity 0.35s, visibility 0.35s;
    margin-left: 0;
  }

  .fvx-nav-panel.fvx-nav-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .fvx-nav-list {
    flex-direction: column;
    gap: 1.1rem;
  }

  .fvx-nav-list a {
    font-size: 1.05rem;
    display: block;
    padding: 0.45rem 0;
  }

  .fvx-hamburger { display: flex; }
}

@media (max-width: 640px) {
  .fvx-roadmap-steps::before { left: 31px; }

  .fvx-roadmap-steps > li {
    grid-template-columns: 64px 1fr;
    gap: 1rem;
  }

  .fvx-roadmap-step-icon {
    width: 64px;
    height: 64px;
  }

  .fvx-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .fvx-voices-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .fvx-stats-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .fvx-ambient-layer,
  .fvx-animate-in {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .fvx-animate-in {
    opacity: 1;
    transform: none;
  }
}
