/* ============================================================
   BFV Club Landing Page - Styles
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/Gilroy-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/Gilroy-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/Gilroy-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "BarLevAAA";
  src: url("../assets/fonts/BarLevAAA-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Gilroy", system-ui, sans-serif;
  font-weight: 500;
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

h1, h2, h3, h4, h5 { font-family: "Gilroy", system-ui, sans-serif; }

input, select, textarea, button { font-family: "Gilroy", system-ui, sans-serif; }
select option { background: #0b1525; color: #fff; }

button { cursor: pointer; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: rgba(0, 255, 255, 0.3); border-radius: 3px; }

/* ---------- Animations ---------- */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Layout helpers ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 1000px; }
.container-form { max-width: 800px; }

.is-desktop { display: inline; }
.is-mobile { display: none; }
@media (max-width: 980px) {
  .is-desktop { display: none; }
  .is-mobile { display: inline; }
}

.section-glow-top {
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.8) 0%, transparent 100%);
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0ff;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 10vw, 94px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
  font-family: "BarLevAAA", "Gilroy", sans-serif;
}
.section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 3px solid transparent;
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.38, 0.87);
  background: transparent;
  color: #fff;
  white-space: nowrap;
}
.btn-primary {
  background: #0ff;
  color: #000;
}
.btn-primary:hover {
  background: transparent;
  border-color: #0ff;
  color: #0ff;
}
.btn-glow {
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}
.btn-glow:hover {
  box-shadow: 0 0 60px rgba(0, 255, 255, 0.5);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.btn-outline:hover {
  border-color: #0ff;
  color: #0ff;
}
.btn-outline-cyan {
  background: transparent;
  border-color: #0ff;
  color: #0ff;
}
.btn-outline-cyan:hover {
  background: #0ff;
  color: #000;
}
.btn-block {
  display: flex;
  width: 100%;
}

/* ---------- Navigation ---------- */
.nav {
  background: #182234;
  box-shadow:
    rgba(0, 0, 0, 0.17) 0 -23px 25px 0 inset,
    rgba(0, 0, 0, 0.15) 0 -36px 30px 0 inset,
    rgba(0, 0, 0, 0.10) 0 -79px 40px 0 inset,
    rgba(0, 0, 0, 0.06) 0 2px 1px,
    rgba(0, 0, 0, 0.09) 0 4px 2px,
    rgba(0, 0, 0, 0.09) 0 8px 4px,
    rgba(0, 0, 0, 0.09) 0 16px 8px,
    rgba(0, 0, 0, 0.09) 0 32px 16px,
    0 0 105px -30px rgba(1, 177, 241, 0.98);
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-left { display: flex; align-items: center; gap: 24px; justify-self: start; }
.nav-cta { justify-self: end; }
.nav-x { color: rgba(255, 255, 255, 0.3); font-size: 20px; font-weight: 300; }

.bfv-logo {
  display: inline-block;
  width: auto;
  vertical-align: middle;
  flex-shrink: 0;
}
.bfv-logo--nav { height: 38px; filter: brightness(0) invert(1); }
.bfv-logo--footer { height: 26px; filter: brightness(0); }
.nav-links { display: flex; gap: 32px; }
.nav-link {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px 0;
}
.nav-logo-link { display: inline-flex; align-items: center; }
.nav-link:hover { color: #0ff; }
.nav-cta {
  background: #0ff;
  color: #000;
  border: 3px solid transparent;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.38, 0.87);
}
.nav-cta:hover {
  background: transparent;
  border-color: #0ff;
  color: #fff;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(160deg, #0d1b2e 0%, #182234 40%, #000 100%);
}

/* Carousel container — all slides stacked in one grid cell, only active is visible */
.hero-carousel {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-areas: "slide";
  width: 100%;
}
.hero-slide {
  grid-area: slide;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Eyebrow pill (used on plan-teaser slides) */
.hero-eyebrow-pill {
  display: inline-block;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 999px;
  padding: 6px 14px;
  color: #0ff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Inline link inside hero subtitle */
.hero-link {
  color: #0ff;
  text-decoration: underline;
  text-decoration-color: rgba(0, 255, 255, 0.4);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s, color 0.2s;
}
.hero-link:hover {
  text-decoration-color: #0ff;
  color: #fff;
}

/* Dot indicators (active dot doubles as a progress bar) */
.hero-dots {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 48px 16px;
}
.hero-dot {
  position: relative;
  overflow: hidden;
  width: 28px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-dot:hover { background: rgba(0, 255, 255, 0.45); }

.hero-dot.is-active {
  width: 60px;
  background: rgba(0, 255, 255, 0.18);
}

/* Inner fill that sweeps left-to-right while the slide is showing */
.hero-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, #0ff, #00d4d6);
  border-radius: 99px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.55);
  pointer-events: none;
}
.hero-dot.is-active.is-running::after {
  animation: heroProgress 7s linear forwards;
}
.hero-dot.is-active.is-paused::after {
  animation-play-state: paused;
}
@keyframes heroProgress {
  from { width: 0; }
  to   { width: 100%; }
}

/* Partner bar pinned below the dots, still inside the hero */
.hero-partner-bar {
  position: relative;
  z-index: 3;
  padding: 0 48px 32px;
  display: flex;
  justify-content: center;
}

/* Pricing card "flash" effect when arriving from a hero CTA */
@keyframes cardFlash {
  0%   { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.0), rgba(0, 0, 0, 0.3) 0 8px 24px; }
  30%  { box-shadow: 0 0 0 4px rgba(0, 255, 255, 0.55), 0 0 60px rgba(0, 255, 255, 0.4); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.0), rgba(0, 0, 0, 0.3) 0 8px 24px; }
}
.pricing-card.is-flash { animation: cardFlash 1.6s ease-out; }
.hero-bg-stadium {
  position: absolute;
  inset: 0;
  /* background-image: url(../assets/images/stadium.png); */
  background-size: cover;
  background-position: center top;
  opacity: 0.18;
}
.hero-bg-grass {
  position: absolute;
  inset: 0;
  background-image: url(../assets/images/rasen-texture.jpg);
  background-size: 100%;
  background-repeat: repeat;
  opacity: 0.04;
}
.hero-cyan-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, #000);
}

/* Hero video — sits to the right of the slide text, persistent across all slides */
.hero-media-anchor {
  position: absolute;
  inset: 0;
  max-width: 1400px;
  margin: 0 auto;
  pointer-events: none;
  z-index: 2;
}
.hero-video-card {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  width: clamp(340px, 34vw, 680px);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  pointer-events: auto;
  background: #000;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 255, 255, 0.18),
    0 0 60px rgba(0, 255, 255, 0.12);
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video--mobile { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 96px 48px 48px;
  width: 100%;
}
@media (min-width: 981px) {
  .hero-content { padding-right: clamp(420px, calc(34vw + 80px), 760px); }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-eyebrow-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
}

.hero-headline {
  font-family: "BarLevAAA", "Gilroy", sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.9;
  color: #fff;
  margin-bottom: 24px;
  max-width: 800px;
}
.hero-accent,
.heading-accent {
  background: linear-gradient(90deg, #0ff, #00d4d6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-stat {
  border-left: 2px solid #0ff;
  padding-left: 16px;
}
.hero-stat-value {
  font-size: 22px;
  font-weight: 800;
  color: #0ff;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-actions .btn {
  padding: 16px 36px;
  font-size: 15px;
}

.hero-partner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-partner-label {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-partner-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
}
.hero-partner-name {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: #0b1525;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 48px;
}
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.trust-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1px;
}

/* ---------- Pricing ---------- */
.pricing {
  background: linear-gradient(0deg, #040508, #182234);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: #0d1826;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.3) 0 8px 24px;
  transition: all 0.35s cubic-bezier(0.87, 0, 0.38, 0.87);
  margin-top: 8px;
}
.pricing-card:hover {
  border-color: rgba(0, 255, 255, 0.35);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.08), rgba(0, 0, 0, 0.3) 0 16px 32px;
}
.pricing-card-highlight {
  background: linear-gradient(160deg, #1a3050 0%, #0d2040 100%);
  border: 2px solid #0ff;
  padding: 40px 32px;
  box-shadow: 0 0 60px rgba(0, 255, 255, 0.15), rgba(0, 0, 0, 0.3) 0 24px 48px;
  transform: translateY(-8px);
  margin-top: 0;
}
.pricing-card-highlight:hover {
  border-color: #0ff;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0ff;
  color: #000;
  padding: 4px 20px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0ff;
  margin-bottom: 8px;
}
.pricing-name {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.1;
}
.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 16px 0 20px;
  white-space: nowrap;
}
.pricing-price {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.pricing-card-highlight .pricing-price { font-size: 38px; }
.pricing-price-cyan { color: #0ff; }
.price-cents {
  font-size: 0.6em;
  font-weight: inherit;
  vertical-align: baseline;
}
.pricing-period {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.pricing-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin-bottom: 24px;
}

.pricing-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.pricing-included-from {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  margin-bottom: 16px;
  background: rgba(0, 255, 255, 0.07);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #0ff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.pricing-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

/* Check icon (CSS-only) */
.check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.15);
  position: relative;
  display: inline-block;
}
.check::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 4px;
  height: 8px;
  border: solid #0ff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.dash {
  display: inline-block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1px;
}

.pricing-bonus {
  background: rgba(0, 255, 255, 0.08);
  border-left: 3px solid #0ff;
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
  margin-bottom: 16px;
  font-style: italic;
}

.pricing-addon {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 24px;
  line-height: 1.4;
}

.pricing-cta {
  width: 100%;
  margin-top: 8px;
}

.pricing-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 12px;
  color: #0ff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.pricing-more::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.2s ease;
}
.pricing-more:hover { gap: 10px; }
.pricing-more:hover::after { transform: translateX(2px); }

.pricing-footnote {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 32px;
}

/* ---------- Comparison ---------- */
.comparison {
  background: linear-gradient(0deg, #000, #0a1525);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

.comparison-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;

  @media (max-width: 640px) {
    flex-direction: column;
  }
}
.comparison-cta {
  min-width: 160px;
}

.comparison-table {
  background: #0b1525;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: rgba(0, 0, 0, 0.4) 0 24px 48px;
  margin-bottom: 48px;
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
}
.comparison-header {
  background: #182234;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-cell-feature {
  padding: 20px 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  display: flex;
  align-items: center;
}
.comparison-header .comparison-cell-feature {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.comparison-cell-col {
  padding: 20px 16px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s;
}
.comparison-col-name {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.comparison-col-price {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.comparison-cell {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.25s;
}

.comparison-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}
.comparison-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.015);
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row:hover {
  background: rgba(0, 255, 255, 0.04);
}

/* Highlighted column states */
.comparison-table[data-highlighted="starter"] .comparison-cell-col[data-col="starter"],
.comparison-table[data-highlighted="starter"] .comparison-cell[data-col="starter"] {
  background: rgba(0, 255, 255, 0.05);
}
.comparison-table[data-highlighted="starter"] .comparison-header .comparison-cell-col[data-col="starter"] {
  background: rgba(0, 255, 255, 0.08);
}
.comparison-table[data-highlighted="starter"] .comparison-cell-col[data-col="starter"] .comparison-col-name {
  color: #0ff;
}
.comparison-table[data-highlighted="starter"] .comparison-cell-col[data-col="starter"] .comparison-col-price {
  color: rgba(0, 255, 255, 0.7);
}

.comparison-table[data-highlighted="plus"] .comparison-cell-col[data-col="plus"],
.comparison-table[data-highlighted="plus"] .comparison-cell[data-col="plus"] {
  background: rgba(0, 255, 255, 0.05);
}
.comparison-table[data-highlighted="plus"] .comparison-header .comparison-cell-col[data-col="plus"] {
  background: rgba(0, 255, 255, 0.08);
}
.comparison-table[data-highlighted="plus"] .comparison-cell-col[data-col="plus"] .comparison-col-name {
  color: #0ff;
}
.comparison-table[data-highlighted="plus"] .comparison-cell-col[data-col="plus"] .comparison-col-price {
  color: rgba(0, 255, 255, 0.7);
}

.comparison-table[data-highlighted="pro"] .comparison-cell-col[data-col="pro"],
.comparison-table[data-highlighted="pro"] .comparison-cell[data-col="pro"] {
  background: rgba(0, 255, 255, 0.05);
}
.comparison-table[data-highlighted="pro"] .comparison-header .comparison-cell-col[data-col="pro"] {
  background: rgba(0, 255, 255, 0.08);
}
.comparison-table[data-highlighted="pro"] .comparison-cell-col[data-col="pro"] .comparison-col-name {
  color: #0ff;
}
.comparison-table[data-highlighted="pro"] .comparison-cell-col[data-col="pro"] .comparison-col-price {
  color: rgba(0, 255, 255, 0.7);
}

.text-cell {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.text-cell-cyan { color: #0ff; }

.comparison-cta {
  text-align: center;
}
.comparison-cta p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  margin-bottom: 24px;
}

/* ---------- Contact ---------- */
.contact {
  background: linear-gradient(0deg, #040508, #000);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-card {
  background: #0b1525;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px;
  box-shadow: rgba(0, 0, 0, 0.4) 0 24px 64px;
  position: relative;
  z-index: 1;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.contact-person-avatar {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 255, 255, 0.6);
  box-shadow: 0 0 32px rgba(0, 255, 255, 0.18);
}
.contact-person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-person-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.contact-person-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0ff;
}
.contact-person-name {
  font-family: "BarLevAAA", "Gilroy", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.contact-person-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.contact-person-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 255, 255, 0.05);
  flex-shrink: 0;
  white-space: nowrap;
}
.contact-person-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.7);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
.contact-person-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 30%, rgba(255, 255, 255, 0.08) 70%, transparent 100%);
  margin: 0 0 32px;
}

@media (max-width: 640px) {
  .contact-person {
    flex-wrap: wrap;
    gap: 16px;
  }
  .contact-person-status {
    margin-left: 88px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-field { display: block; margin-bottom: 24px; }
.form-row .form-field { margin-bottom: 0; }

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255, 255, 255, 0.3); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: #0ff; }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select {
  cursor: pointer;
  appearance: none;
  -webkit-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 fill='%2300ffff' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-autocomplete {
  position: relative;
}
.form-autocomplete-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #0b1525;
  border: 1.5px solid rgba(0, 255, 255, 0.4);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(0, 255, 255, 0.08);
  max-height: 280px;
  overflow-y: auto;
}
.form-autocomplete-list[hidden] { display: none; }
.form-autocomplete-item {
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
  transition: background-color 0.12s;
}
.form-autocomplete-item:hover,
.form-autocomplete-item.is-active {
  background: rgba(0, 255, 255, 0.1);
}
.form-autocomplete-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.form-autocomplete-item-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.form-autocomplete-item mark {
  background: transparent;
  color: #0ff;
  font-weight: 700;
}
.form-autocomplete-empty {
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #ff4444;
}
.form-error {
  font-size: 12px;
  color: #ff4444;
  margin-top: 6px;
  font-weight: 600;
  display: none;
}
.form-field.has-error .form-error { display: block; }

.form-honeypot {
  display: none;
}

.form-general-error {
  background: rgba(255, 68, 68, 0.08);
  border: 1px solid rgba(255, 68, 68, 0.35);
  color: #ff8a8a;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
}
.form-general-error[hidden] { display: none; }

.contact-submit {
  margin-top: 8px;
  padding: 18px 24px;
  font-size: 15px;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
}
.contact-submit[disabled] {
  background: rgba(0, 255, 255, 0.4);
  color: #000;
  cursor: not-allowed;
}
.contact-submit[disabled]:hover {
  background: rgba(0, 255, 255, 0.4);
  border-color: transparent;
  color: #000;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
}
.contact-submit-spinner {
  display: none;
  animation: spin 1s linear infinite;
}
.contact-submit.is-loading .contact-submit-spinner {
  display: block;
}

.contact-disclaimer {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 20px;
}
.contact-disclaimer a {
  color: #0ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-disclaimer a:hover { text-decoration: none; }

/* Success state */
.contact-success {
  text-align: center;
  padding: 32px 24px 16px;
}
.contact-success svg { display: block; margin: 0 auto 24px; }
.contact-success h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0ff;
  margin-bottom: 16px;
}
.contact-success > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 32px;
}
.contact-success-summary {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
  line-height: 1.8;
}
.contact-success-summary strong { color: rgba(255, 255, 255, 0.7); }

/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(180deg, #000 0%, #040508 100%);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.stats .section-header { margin-bottom: 56px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: #0b1525;
  border: 1px solid rgba(0, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.38, 0.87);
}
.stat-card:hover {
  border-color: rgba(0, 255, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.1);
}

.stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 14px;
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-value {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  color: #0ff;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- Steps ---------- */
.steps {
  background: linear-gradient(180deg, #040508 0%, #060a14 100%);
  padding: 100px 48px 120px;
  position: relative;
  overflow: hidden;
}
.steps .section-header { margin-bottom: 56px; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.step-card {
  background: #0b1525;
  border: 1px solid rgba(0, 255, 255, 0.12);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.38, 0.87);
}
.step-card:hover {
  border-color: rgba(0, 255, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.1);
}

.step-number {
  font-family: "BarLevAAA", "Gilroy", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, #0ff 0%, rgba(0, 255, 255, 0.15) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-title {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}

.step-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.steps-cta {
  text-align: center;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

/* ---------- Product hero (single product detail page) ---------- */
.product-hero {
  position: relative;
  background: linear-gradient(160deg, #0d1b2e 0%, #182234 45%, #000 100%);
  padding: 96px 48px 112px;
  overflow: hidden;
  text-align: left;

  .hero-media-anchor {
    padding-right: 0;
    padding-left: 0;
  }
}
.product-hero-glow {
  position: absolute;
  top: -10%;
  left: 30%;
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 255, 255, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.product-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 40px;
}
@media (min-width: 981px) {
  .product-hero-inner { padding-right: clamp(420px, calc(34vw + 80px), 760px); }
}
.product-hero-tag {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.product-hero-title {
  font-family: "BarLevAAA", "Gilroy", sans-serif;
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.product-hero-tagline {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 620px;
}
.product-hero-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 32px;
}
.product-hero-price-value {
  font-family: "Gilroy", sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  color: #0ff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.product-hero-price-period {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.product-hero-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 680px;
  margin-bottom: 36px;
}
.product-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* ---------- Product features ---------- */
.product-features {
  background: linear-gradient(180deg, #000 0%, #040508 100%);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.feature-card {
  background: #0b1525;
  border: 1px solid rgba(0, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.38, 0.87);
}
.feature-card:hover {
  border-color: rgba(0, 255, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.1);
}
.feature-number {
  font-family: "BarLevAAA", "Gilroy", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, #0ff 0%, rgba(0, 255, 255, 0.15) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.02em;
}
.feature-divider {
  width: 32px;
  height: 2px;
  background: #0ff;
  border-radius: 1px;
  margin-top: -2px;
  margin-bottom: 4px;
}
.feature-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
.feature-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0ff;
  box-shadow: 0 0 6px rgba(0, 255, 255, 0.6);
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  margin-top: 0;
}
.footer-glow {
  position: absolute;
  width: 100%;
  height: 160px;
  background: radial-gradient(67% 54% at 50% 67%, rgba(0, 255, 255, .7098039216) 33%, rgba(0, 255, 255, .58) 48%, rgba(0, 255, 255, .37) 73%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
.footer-waves {
  position: relative;
  z-index: 2;
  margin-top: -24px;
  overflow: hidden;
}
.footer-waves .waves {
  display: block;
  width: 100%;
  height: 15vh;
  min-height: 100px;
  max-height: 150px;
  margin-bottom: -7px; /* fixes a 1-px gap on Safari */
}

/* Parallax wave animation (4 layers, staggered durations) */
.wave-parallax > use {
  animation: footerWaveMove 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.wave-parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.wave-parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.wave-parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.wave-parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes footerWaveMove {
  0%   { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px, 0, 0); }
}

@media (max-width: 768px) {
  .footer-waves .waves {
    height: 60px;
    min-height: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wave-parallax > use { animation: none !important; }
}

.footer-main {
  background: #0ff;
  color: #000;
  padding: 40px 48px 36px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
  max-width: 260px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.footer-x {
  font-size: 16px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.4);
}

.footer-col-title {
  font-weight: 800;
  font-size: 11px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.5);
}
.footer-col a {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 6px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 16px;
  }
  .nav-links { display: none; }
  .nav-left { gap: 14px; min-width: 0; flex: 0 1 auto; }
  .nav-logo { width: 100px; height: auto; }
  .nav-x { font-size: 16px; }
  .bfv-logo--nav { height: 28px; }
  .nav-cta { flex-shrink: 0; }
  .hero-partner-divider { display: none; }

  .hero-content { padding: 20px 24px 40px; }
  .hero-stats { gap: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .hero-media-anchor {
    position: relative;
    inset: auto;
    margin: 0 auto;
    padding: 0 24px 40px;
    pointer-events: auto;
  }
  .hero-video--desktop { display: none; }
  .hero-video--mobile { display: block; }
  .hero-video-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }

  .pricing { padding: 80px 24px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-card-highlight { transform: none; margin-top: 8px; }

  .comparison { padding: 80px 16px; }
  .container { padding: 0 24px; }
  .container-narrow,
  .container-form { padding: 0px; }

  .comparison-table { font-size: 12px; }
  .comparison-header,
  .comparison-row { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); }
  .comparison-cell-feature { padding: 14px 14px; font-size: 13px; }
  .comparison-cell { padding: 14px 8px; }
  .comparison-cell-col { padding: 14px 8px; }

  .contact { padding: 80px 16px; }
  .contact-card { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-field { margin-bottom: 24px; }

  .trust-strip { padding: 24px; }
  .trust-strip-inner { gap: 24px; flex-direction: column; align-items: flex-start; }

  .stats { padding: 80px 24px 96px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { padding: 24px 16px; }

  .steps { padding: 80px 24px 96px; }
  .steps-grid { grid-template-columns: 1fr; gap: 12px; }
  .step-connector { transform: rotate(90deg); padding: 4px 0; }
  .step-card { padding: 28px 20px; }

  .product-hero { padding: 72px 24px 88px; }
  .product-hero-actions { flex-direction: column; align-items: stretch; }
  .product-hero-actions .btn { width: 100%; }
  .product-features { padding: 72px 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-main { padding: 32px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .nav { padding: 0 16px; }
  .nav-left { gap: 10px; }
  .nav-logo { width: 86px; }
  .nav-x { font-size: 14px; }
  .bfv-logo--nav { height: 24px; }
  .nav-cta { padding: 8px 14px; font-size: 11px; letter-spacing: 0.04em; border-width: 2px; }

  .footer-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: clamp(40px, 16vw, 60px); }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-icon { width: 48px; height: 48px; margin-bottom: 14px; }
  .stat-value { font-size: 22px; }
  .stat-label { font-size: 12px; }

  .features-grid { grid-template-columns: 1fr; }
}

/* ---------- Feature card inline link ---------- */
.feature-link {
  margin-top: 4px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0ff;
  font-size: 13px;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: gap 0.2s ease;
}
.feature-link::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.2s ease;
}
.feature-link:hover { gap: 10px; }
.feature-link:hover::after { transform: translateX(2px); }

/* ---------- Highlights demo (phone mockup) ---------- */
.highlights-demo {
  background: linear-gradient(180deg, #040508 0%, #000 100%);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.highlights-demo-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.highlights-demo-text {
  display: flex;
  flex-direction: column;
}
.highlights-demo-title {
  font-family: "BarLevAAA", "Gilroy", sans-serif;
  font-size: clamp(28px, 10vw, 94px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.highlights-demo-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 460px;
}
.highlights-demo-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.highlights-demo-stage::before {
  content: "";
  position: absolute;
  inset: -10% -5%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 255, 255, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.phone-mockup {
  position: relative;
  width: 280px;
  aspect-ratio: 9 / 19;
  border-radius: 42px;
  background: linear-gradient(180deg, #1a1d24 0%, #0a0c10 100%);
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 30px 60px -20px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(0, 255, 255, 0.18);
  z-index: 1;
}
.phone-mockup::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 18px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(160deg, #0b1525 0%, #050810 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-screen-placeholder {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.phone-screen-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.12);
  border: 1px solid rgba(0, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.25);
}
.phone-screen-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .highlights-demo { padding: 72px 24px; }
  .highlights-demo-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .highlights-demo-text { align-items: center; }
  .highlights-demo-text p { max-width: none; }
  .phone-mockup { width: 240px; }
}
