/* ============================================================
   FixxyApp website-v3
   Style: Uber-bold hero sections + Notion-clean body
   All colors come from ../../../assets/css/tokens.css
   ============================================================ */

/* ── Reset & base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--fx-neutral-0);
  -webkit-font-smoothing: antialiased;
}

/* ── Shell ─────────────────────────────────────────────────── */
.v3-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}

/* ── Header ─────────────────────────────────────────────────── */
.v3-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--fx-space-4);
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  height: 64px;
  background: var(--fx-color-general);
  border-bottom: 1px solid var(--fx-primary-700);
  box-shadow: 0 4px 18px rgba(28, 25, 23, 0.12);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.v3-brand img {
  display: block;
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 180ms ease;
}

.v3-nav {
  display: flex;
  align-items: center;
  gap: var(--fx-space-6);
}

.v3-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: var(--fx-text-caption);
  font-weight: var(--fx-font-weight-medium);
  transition: color 140ms ease;
}

.v3-nav a:hover { color: var(--fx-neutral-0); }

.v3-header-actions {
  display: flex;
  align-items: center;
  gap: var(--fx-space-3);
}

.v3-header-vendor {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--fx-radius-md);
  color: var(--fx-neutral-0);
  text-decoration: none;
  font-size: var(--fx-text-caption);
  font-weight: var(--fx-font-weight-semibold);
  transition: background 140ms ease, border-color 140ms ease;
}

.v3-header-vendor:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

.v3-header-download {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.125rem;
  background: var(--fx-neutral-0);
  color: var(--fx-primary-700);
  border-radius: var(--fx-radius-md);
  text-decoration: none;
  font-size: var(--fx-text-caption);
  font-weight: var(--fx-font-weight-semibold);
  transition: background 140ms ease;
}

.v3-header-download:hover { background: var(--fx-primary-50); }

/* Scrolled: transitions to white */
body.v3-scrolled .v3-header {
  background: var(--fx-neutral-0);
  border-bottom-color: var(--fx-neutral-200);
  box-shadow: 0 4px 12px rgba(28, 25, 23, 0.07);
}

body.v3-scrolled .v3-brand img { filter: none; }

body.v3-scrolled .v3-nav a { color: var(--fx-color-text-muted); }
body.v3-scrolled .v3-nav a:hover { color: var(--fx-color-heading); }

body.v3-scrolled .v3-header-vendor {
  border-color: var(--fx-neutral-300);
  color: var(--fx-color-heading);
}

body.v3-scrolled .v3-header-vendor:hover {
  background: var(--fx-neutral-100);
  border-color: var(--fx-neutral-400);
}

body.v3-scrolled .v3-header-download {
  background: var(--fx-color-general);
  color: var(--fx-neutral-0);
}

body.v3-scrolled .v3-header-download:hover { background: var(--fx-primary-700); }

body.vendor-page .v3-header {
  background: var(--fx-color-vendor);
  border-bottom-color: var(--fx-secondary-800);
}

body.vendor-page .v3-header-download {
  color: var(--fx-color-vendor);
}

body.vendor-page .v3-header-download:hover {
  background: var(--fx-secondary-50);
}

body.vendor-page.v3-scrolled .v3-header {
  background: var(--fx-color-vendor);
  border-bottom-color: var(--fx-secondary-800);
  box-shadow: 0 4px 18px rgba(28, 25, 23, 0.12);
}

body.vendor-page.v3-scrolled .v3-brand img {
  filter: brightness(0) invert(1);
}

body.vendor-page.v3-scrolled .v3-nav a {
  color: rgba(255, 255, 255, 0.82);
}

body.vendor-page.v3-scrolled .v3-nav a:hover {
  color: var(--fx-neutral-0);
}

body.vendor-page.v3-scrolled .v3-header-vendor {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--fx-neutral-0);
}

body.vendor-page.v3-scrolled .v3-header-vendor:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

body.vendor-page.v3-scrolled .v3-header-download {
  background: var(--fx-neutral-0);
  color: var(--fx-color-vendor);
}

body.vendor-page.v3-scrolled .v3-header-download:hover {
  background: var(--fx-secondary-50);
}

/* ── Page body offset ──────────────────────────────────────── */
.v3-page { padding-top: 64px; }

/* ── Hero ────────────────────────────────────────────────────── */
.v3-hero {
  background: var(--fx-color-general);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 4rem) clamp(3rem, 6vw, 5.5rem);
}

.v3-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: var(--fx-space-12);
  align-items: center;
}

.v3-eyebrow {
  display: inline-block;
  margin: 0 0 var(--fx-space-4);
  font-family: var(--fx-font-mono);
  font-size: var(--fx-text-caption);
  font-weight: var(--fx-font-weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fx-accent-400);
}

.v3-hero h1 {
  margin: 0 0 var(--fx-space-5);
  font-family: var(--fx-font-heading);
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  font-weight: var(--fx-font-weight-bold);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fx-neutral-0);
}

.v3-hero-sub {
  margin: 0 0 var(--fx-space-8);
  max-width: 46ch;
  color: rgba(255,255,255,0.65);
  font-size: 1.0625rem;
  line-height: var(--fx-leading-normal);
}

.v3-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--fx-space-3);
  align-items: center;
}

/* ── Button atoms ────────────────────────────────────────────── */
.v3-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--fx-neutral-0);
  color: var(--fx-neutral-900);
  border-radius: var(--fx-radius-md);
  text-decoration: none;
  font-weight: var(--fx-font-weight-semibold);
  font-size: 0.9375rem;
  transition: background 140ms ease;
}

.v3-btn-white:hover { background: var(--fx-neutral-100); }

.v3-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: transparent;
  color: var(--fx-neutral-0);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--fx-radius-md);
  text-decoration: none;
  font-weight: var(--fx-font-weight-semibold);
  font-size: 0.9375rem;
  transition: background 140ms ease, border-color 140ms ease;
}

.v3-btn-outline-white:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.55);
}

.v3-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--fx-color-general);
  color: var(--fx-neutral-0);
  border-radius: var(--fx-radius-md);
  text-decoration: none;
  font-weight: var(--fx-font-weight-semibold);
  font-size: 0.9375rem;
  transition: background 140ms ease;
}

.v3-btn-primary:hover { background: var(--fx-primary-700); }

.v3-btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--fx-accent-500);
  color: var(--fx-neutral-900);
  border-radius: var(--fx-radius-md);
  text-decoration: none;
  font-weight: var(--fx-font-weight-bold);
  font-size: 0.9375rem;
  transition: background 140ms ease;
}

.v3-btn-accent:hover { background: var(--fx-accent-400); }

.v3-btn-on-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: rgba(255,255,255,0.12);
  color: var(--fx-neutral-0);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: var(--fx-radius-md);
  text-decoration: none;
  font-weight: var(--fx-font-weight-semibold);
  font-size: 0.9375rem;
  transition: background 140ms ease;
}

.v3-btn-on-dark:hover { background: rgba(255,255,255,0.2); }

/* ── Hero visual ─────────────────────────────────────────────── */
.v3-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

/* Frosted backdrop blob */
.v3-hero-backdrop {
  position: absolute;
  inset: 8% 8% 10% 14%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 38px;
}

/* Decorative floating tool icons */
.v3-hero-deco {
  position: absolute;
  z-index: 1;
  color: rgba(255, 255, 255, 0.13);
  font-size: 2rem;
  line-height: 1;
  user-select: none;
  font-variation-settings: 'FILL' 0, 'wght' 300;
}

.v3-hero-deco-a { left: 5%;  top: 7%;  font-size: 2.5rem; }
.v3-hero-deco-b { right: 10%; top: 5%;  font-size: 2.2rem; }
.v3-hero-deco-c { right: 6%;  top: 34%; font-size: 1.9rem; }
.v3-hero-deco-d { left: 10%;  bottom: 16%; font-size: 2.7rem; }
.v3-hero-deco-e { left: 46%;  bottom: 8%;  font-size: 2.1rem; }

/* Phone mockup */
.v3-hero-phone {
  position: relative;
  z-index: 2;
  width: min(310px, 60%);
  background: var(--fx-neutral-0);
  border-radius: 36px;
  padding: 0.7rem;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38);
  transform: rotate(-4deg);
}

.v3-hero-phone img {
  display: block;
  width: 100%;
  border-radius: 28px;
}

/* Floating info cards */
.v3-hero-float {
  position: absolute;
  z-index: 3;
  max-width: 230px;
  padding: 0.9rem;
  background: var(--fx-neutral-0);
  border-radius: var(--fx-radius-lg);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

.v3-float-provider {
  left: 3%;
  top: 9%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.v3-float-avatar {
  width: 62px;
  height: 62px;
  overflow: hidden;
  border-radius: var(--fx-radius-md);
  background: linear-gradient(180deg, var(--fx-primary-50), #fff);
  flex-shrink: 0;
}

.v3-float-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v3-float-demand {
  right: 4%;
  bottom: 7%;
}

.v3-float-demand ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: var(--fx-color-text-muted);
  font-size: var(--fx-text-caption);
}

.v3-float-demand li + li { margin-top: 0.4rem; }

.v3-float-title {
  margin: 0;
  font-family: var(--fx-font-heading);
  font-size: 0.9375rem;
  font-weight: var(--fx-font-weight-bold);
  color: var(--fx-color-heading);
}

.v3-float-text {
  margin: 0.3rem 0 0;
  font-size: var(--fx-text-caption);
  color: var(--fx-color-text-muted);
}

/* ── Animation placeholder sections ─────────────────────────── */
.v3-anim-space {
  overflow: hidden;
}

.v3-anim-space-vendor {
  background:
    radial-gradient(circle at 85% 16%, rgba(251, 191, 36, 0.14), transparent 24%),
    linear-gradient(180deg, var(--fx-color-vendor) 0%, var(--fx-secondary-800) 100%);
}

.v3-anim-space-video {
  background:
    radial-gradient(circle at 82% 14%, rgba(251, 191, 36, 0.12), transparent 22%),
    linear-gradient(180deg, var(--fx-color-customer) 0%, var(--fx-primary-700) 100%);
}

.v3-anim-frame {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.25rem, 5vw, 4rem);
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(420px, 42vw);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  position: relative;
}

.v3-anim-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--fx-space-3);
  padding: 2.25rem 3rem;
  border: 1.5px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--fx-radius-2xl);
  color: rgba(255, 255, 255, 0.18);
  text-align: center;
}

.v3-anim-placeholder i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.15);
}

.v3-anim-placeholder p {
  margin: 0;
  font-family: var(--fx-font-mono);
  font-size: var(--fx-text-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v3-anim-video-copy {
  display: flex;
  flex-direction: column;
  gap: var(--fx-space-5);
  position: relative;
  z-index: 1;
}

.v3-anim-video-copy .v3-eyebrow {
  color: var(--fx-accent-400);
}

.v3-anim-video-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fx-font-weight-bold);
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--fx-neutral-0);
}

.v3-anim-video-shell {
  position: relative;
  width: min(360px, 100%);
  background: transparent;
  border: none;
  border-radius: 28px;
  overflow: hidden;
  padding: 0;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.v3-anim-video-shell video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: fill;
  border-radius: 28px;
  background: transparent;
}

.v3-anim-video-shell img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.v3-anim-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 40rem;
}

.v3-anim-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.45;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.v3-anim-steps li:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.v3-anim-step-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-width: 3.2rem;
  height: 3.2rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--fx-neutral-0);
  font-family: var(--fx-font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.v3-anim-step-marker .material-symbols-outlined {
  font-size: 1.2rem;
}

.v3-anim-deco {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.32);
  font-size: 1.7rem;
  pointer-events: none;
}

.v3-anim-deco-a {
  top: 1rem;
  right: 21rem;
  transform: rotate(-10deg);
}

.v3-anim-deco-b {
  top: 6.2rem;
  right: 2.5rem;
  transform: rotate(8deg);
}

.v3-anim-deco-c {
  bottom: 2rem;
  right: 24rem;
  transform: rotate(-6deg);
}

/* ── Customer video section ──────────────────────────────────── */
.v3-customer-video {
  background: var(--fx-primary-900, #1e1b4b);
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.v3-customer-video-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(420px, 42vw);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.v3-customer-video-copy {
  display: flex;
  flex-direction: column;
  gap: var(--fx-space-5);
}

.v3-customer-video-copy .v3-eyebrow {
  color: var(--fx-accent-400);
}

.v3-customer-video-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fx-font-weight-bold);
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--fx-neutral-0);
}

.v3-customer-video-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: var(--fx-leading-normal);
  max-width: 38ch;
}

/* Phone bezel frame — sized for portrait (9:16) */
.v3-customer-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--fx-neutral-900);
  border-radius: 44px;
  overflow: hidden;
  padding: 0.65rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 36px 80px rgba(0, 0, 0, 0.6);
}

.v3-customer-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
  background: #000;
}

@media (max-width: 900px) {
  .v3-anim-frame,
  .v3-customer-video-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: var(--fx-space-8);
  }

  .v3-anim-video-copy p:last-child,
  .v3-anim-video-copy .v3-eyebrow,
  .v3-customer-video-copy p,
  .v3-customer-video-copy .v3-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .v3-anim-steps li {
    text-align: left;
  }

  .v3-anim-deco-a {
    top: -0.5rem;
    right: auto;
    left: 0;
  }

  .v3-anim-deco-b {
    top: auto;
    right: 0;
    bottom: 18rem;
  }

  .v3-anim-deco-c {
    right: auto;
    left: 1rem;
    bottom: 15rem;
  }

  .v3-anim-video-shell,
  .v3-customer-video-frame {
    width: min(360px, 82vw);
  }
}

/* ── Tagline strip ───────────────────────────────────────────── */
.v3-tagline {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  background: var(--fx-color-general-soft);
  border-bottom: 1px solid var(--fx-color-general-border);
}

.v3-tagline p {
  margin: 0;
  font-family: var(--fx-font-heading);
  font-size: clamp(1.375rem, 2.4vw, 2rem);
  font-weight: var(--fx-font-weight-semibold);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--fx-color-heading);
  max-width: 820px;
}

.v3-tagline strong {
  color: var(--fx-color-general);
}

/* ── Audience split ──────────────────────────────────────────── */
.v3-audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.v3-audience-consumer,
.v3-audience-vendor {
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem);
}

.v3-audience-consumer { background: var(--fx-color-customer); }
.v3-audience-vendor   { background: var(--fx-color-vendor); }

.v3-role-tag {
  display: inline-block;
  margin: 0 0 var(--fx-space-5);
  padding: 0.375rem 0.875rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--fx-radius-full);
  color: rgba(255,255,255,0.9);
  font-family: var(--fx-font-mono);
  font-size: var(--fx-text-caption);
  font-weight: var(--fx-font-weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.v3-audience-consumer h2,
.v3-audience-vendor h2 {
  margin: 0 0 var(--fx-space-4);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: var(--fx-font-weight-bold);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--fx-neutral-0);
}

.v3-audience-consumer > p,
.v3-audience-vendor > p {
  margin: 0 0 var(--fx-space-6);
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: var(--fx-leading-normal);
  max-width: 36ch;
}

.v3-list {
  margin: 0 0 var(--fx-space-8);
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--fx-space-4);
}

.v3-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.v3-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

/* ── Steps ───────────────────────────────────────────────────── */
.v3-steps {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background:
    linear-gradient(180deg, var(--fx-color-general-soft) 0%, var(--fx-neutral-0) 100%);
  border-bottom: 1px solid var(--fx-color-general-border);
}

.v3-section-label {
  display: flex;
  align-items: center;
  gap: var(--fx-space-3);
  margin: 0 0 var(--fx-space-10);
}

.v3-section-label h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: var(--fx-font-weight-bold);
  letter-spacing: -0.03em;
  color: var(--fx-color-section-title);
}

.v3-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--fx-color-general-border);
  border-radius: var(--fx-radius-xl);
  overflow: hidden;
  background: var(--fx-neutral-0);
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.08);
}

.v3-step {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--fx-color-general-border);
  transition: background 140ms ease;
}

.v3-step:last-child { border-right: none; }

.v3-step:hover { background: var(--fx-color-general-soft); }

.v3-step-n {
  display: block;
  margin: 0 0 var(--fx-space-5);
  font-family: var(--fx-font-mono);
  font-size: var(--fx-text-meta);
  font-weight: var(--fx-font-weight-bold);
  letter-spacing: 0.08em;
  color: var(--fx-color-general);
}

.v3-step h3 {
  margin: 0 0 var(--fx-space-3);
  font-size: 1.0625rem;
  font-weight: var(--fx-font-weight-bold);
  color: var(--fx-color-heading);
}

.v3-step p {
  margin: 0;
  color: var(--fx-color-text-muted);
  font-size: var(--fx-text-body);
  line-height: var(--fx-leading-normal);
}

/* ── Services grid ───────────────────────────────────────────── */
.v3-services {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background:
    radial-gradient(circle at top right, rgba(79, 70, 229, 0.12), transparent 32%),
    linear-gradient(180deg, var(--fx-color-general-soft) 0%, var(--fx-neutral-0) 100%);
  border-bottom: 1px solid var(--fx-color-general-border);
}

.v3-services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--fx-space-3);
  margin-top: var(--fx-space-10);
}

.v3-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--fx-space-3);
  padding: 1.6rem 1rem;
  background: var(--fx-neutral-0);
  border: 1px solid var(--fx-color-customer-border);
  border-radius: var(--fx-radius-xl);
  text-align: center;
  box-shadow: 0 10px 26px rgba(79, 70, 229, 0.08);
  transition: transform 160ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.v3-service-card:hover {
  transform: translateY(-3px);
  border-color: var(--fx-primary-300);
  box-shadow: 0 16px 30px rgba(79, 70, 229, 0.14);
}

.v3-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: var(--fx-radius-lg);
  background: var(--fx-color-customer-soft);
  color: var(--fx-color-customer);
  font-size: 1.4rem;
}

.v3-service-card span {
  font-size: 0.875rem;
  font-weight: var(--fx-font-weight-semibold);
  color: var(--fx-color-heading);
}

/* ── Vendor callout strip ────────────────────────────────────── */
.v3-vendor-callout {
  background:
    radial-gradient(circle at 15% 20%, rgba(45, 212, 191, 0.18), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(251, 191, 36, 0.12), transparent 24%),
    var(--fx-color-vendor);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.v3-vendor-callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--fx-space-8);
  flex-wrap: wrap;
  padding: clamp(2rem, 4vw, 2.75rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--fx-radius-2xl);
  box-shadow: 0 18px 40px rgba(19, 78, 74, 0.22);
}

.v3-vendor-callout-copy .v3-eyebrow { color: var(--fx-secondary-200); }

.v3-vendor-callout-copy h2 {
  margin: 0 0 var(--fx-space-3);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: var(--fx-font-weight-bold);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--fx-neutral-0);
}

.v3-vendor-callout-copy p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  max-width: 48ch;
}

/* ── Download CTA ────────────────────────────────────────────── */
.v3-download {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background:
    linear-gradient(180deg, rgba(79, 70, 229, 0.08) 0%, rgba(255, 255, 255, 0) 34%),
    var(--fx-color-general-soft);
  border-top: 1px solid var(--fx-color-general-border);
}

.v3-download-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--fx-space-6);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--fx-neutral-0);
  border: 1px solid var(--fx-color-general-border);
  border-radius: var(--fx-radius-2xl);
  box-shadow: 0 18px 44px rgba(79, 70, 229, 0.08);
}

.v3-download h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fx-font-weight-bold);
  letter-spacing: -0.04em;
  color: var(--fx-color-section-title);
}

.v3-download p {
  margin: 0;
  color: var(--fx-color-text-muted);
  font-size: 1rem;
  max-width: 34ch;
}

.v3-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--fx-space-3);
  align-items: center;
  justify-content: center;
}

.v3-store-badges img {
  display: block;
  height: 52px;
  width: auto;
}

/* ── Footer ──────────────────────────────────────────────────── */
.v3-footer {
  background: var(--fx-color-general);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--fx-space-10) 0 calc(var(--fx-space-10) + env(safe-area-inset-bottom, 0px));
}

body.vendor-page .v3-footer {
  background: var(--fx-color-vendor);
}

.v3-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--fx-space-4);
  flex-wrap: wrap;
}

.v3-footer-links {
  display: flex;
  align-items: center;
  gap: var(--fx-space-5);
  flex-wrap: wrap;
}

.v3-footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: var(--fx-text-caption);
  transition: color 140ms ease, opacity 140ms ease;
}

.v3-footer-links a:hover {
  color: var(--fx-neutral-0);
  opacity: 1;
}

.v3-footer-copy {
  margin: 0;
  font-size: var(--fx-text-caption);
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   VENDOR PAGE
   ============================================================ */

/* ── Vendor hero ─────────────────────────────────────────────── */
.v3-vendor-hero {
  background: var(--fx-secondary-700);
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1.25rem, 5vw, 4rem) clamp(3.5rem, 7vw, 6rem);
}

.v3-vendor-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: var(--fx-space-12);
  align-items: center;
}

.v3-vendor-hero .v3-eyebrow { color: var(--fx-secondary-300); }

.v3-vendor-hero h1 {
  margin: 0 0 var(--fx-space-5);
  font-size: clamp(2.75rem, 5vw, 5rem);
  font-weight: var(--fx-font-weight-bold);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--fx-neutral-0);
}

.v3-vendor-hero-sub {
  margin: 0 0 var(--fx-space-8);
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  line-height: var(--fx-leading-normal);
  max-width: 44ch;
}

.v3-vendor-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--fx-space-3);
  align-items: center;
}

/* Stat pills in vendor hero */
.v3-vendor-stats {
  display: flex;
  flex-direction: column;
  gap: var(--fx-space-4);
}

.v3-vendor-stat {
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--fx-radius-lg);
}

.v3-vendor-stat-value {
  display: block;
  font-family: var(--fx-font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: var(--fx-font-weight-bold);
  letter-spacing: -0.04em;
  color: var(--fx-neutral-0);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.v3-vendor-stat-label {
  display: block;
  font-size: var(--fx-text-caption);
  color: rgba(255,255,255,0.65);
}

.v3-vendor-media {
  background:
    linear-gradient(180deg, var(--fx-color-vendor-soft) 0%, var(--fx-neutral-0) 100%);
  border-bottom: 1px solid var(--fx-color-vendor-border);
}

.v3-vendor-media .v3-anim-frame {
  min-height: 420px;
  grid-template-columns: minmax(0, 1fr) min(560px, 48vw);
}

.v3-vendor-media-copy {
  display: flex;
  flex-direction: column;
  gap: var(--fx-space-5);
}

.v3-vendor-media-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fx-font-weight-bold);
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--fx-color-section-title);
}

.v3-vendor-media-copy p:last-child {
  margin: 0;
  max-width: 44ch;
  color: var(--fx-color-text-muted);
  font-size: 1rem;
  line-height: var(--fx-leading-normal);
}

.v3-vendor-video-shell {
  width: min(560px, 100%);
  background: var(--fx-neutral-0);
  border: 1px solid var(--fx-color-vendor-border);
  border-radius: var(--fx-radius-2xl);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 118, 110, 0.1);
}

.v3-vendor-video-shell video {
  display: block;
  width: 100%;
  height: auto;
  background: var(--fx-neutral-900);
}

/* ── Benefits ────────────────────────────────────────────────── */
.v3-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background:
    linear-gradient(180deg, var(--fx-color-vendor-soft) 0%, var(--fx-neutral-0) 100%);
}

.v3-benefit {
  padding: clamp(3rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid var(--fx-color-vendor-border);
  background: transparent;
}

.v3-benefit:last-child { border-right: none; }

.v3-benefit-1,
.v3-benefit-2,
.v3-benefit-3 { background: transparent; }

.v3-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--fx-radius-md);
  margin-bottom: var(--fx-space-6);
  font-size: 1.625rem;
}

.v3-benefit-1 .v3-benefit-icon,
.v3-benefit-2 .v3-benefit-icon,
.v3-benefit-3 .v3-benefit-icon {
  background: var(--fx-neutral-0);
  color: var(--fx-color-vendor);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.08);
}

.v3-benefit h3 {
  margin: 0 0 var(--fx-space-3);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: var(--fx-font-weight-bold);
  letter-spacing: -0.025em;
  color: var(--fx-neutral-900);
}

.v3-benefit p {
  margin: 0 0 var(--fx-space-6);
  font-size: var(--fx-text-body);
  line-height: var(--fx-leading-normal);
  color: var(--fx-color-text-muted);
}

.v3-benefit-detail {
  display: flex;
  flex-direction: column;
  gap: var(--fx-space-2);
}

.v3-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--fx-text-caption);
  font-weight: var(--fx-font-weight-medium);
  color: var(--fx-color-heading);
}

.v3-benefit-item::before {
  content: '✓';
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--fx-color-vendor);
}

/* ── Vendor steps ────────────────────────────────────────────── */
.v3-vendor-steps {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: var(--fx-neutral-0);
  border-top: 1px solid var(--fx-color-vendor-border);
  border-bottom: 1px solid var(--fx-color-vendor-border);
}

.v3-vendor-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--fx-space-5);
  margin-top: var(--fx-space-10);
}

.v3-vendor-step {
  display: flex;
  flex-direction: column;
  gap: var(--fx-space-4);
  padding: 2rem;
  background: var(--fx-neutral-0);
  border: 1px solid var(--fx-color-vendor-border);
  border-radius: var(--fx-radius-xl);
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.06);
}

.v3-vendor-step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--fx-radius-md);
  background: var(--fx-color-vendor);
  color: var(--fx-neutral-0);
  font-family: var(--fx-font-mono);
  font-size: 0.875rem;
  font-weight: 700;
}

.v3-vendor-step h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: var(--fx-font-weight-bold);
  color: var(--fx-neutral-900);
}

.v3-vendor-step p {
  margin: 0;
  color: var(--fx-color-text-muted);
  font-size: var(--fx-text-body);
  line-height: var(--fx-leading-normal);
}

/* ── Vendor download CTA ─────────────────────────────────────── */
.v3-vendor-cta {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background:
    linear-gradient(180deg, var(--fx-color-vendor-soft) 0%, var(--fx-neutral-0) 100%);
}

.v3-vendor-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--fx-space-6);
  padding: clamp(2.25rem, 4vw, 3rem);
  background: var(--fx-neutral-0);
  border: 1px solid var(--fx-color-vendor-border);
  border-radius: var(--fx-radius-2xl);
  box-shadow: 0 18px 44px rgba(15, 118, 110, 0.08);
}

.v3-vendor-cta-eyebrow {
  color: var(--fx-color-vendor);
}

.v3-vendor-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: var(--fx-font-weight-bold);
  letter-spacing: -0.04em;
  color: var(--fx-color-section-title);
  max-width: 20ch;
  line-height: 1.05;
}

.v3-vendor-cta p {
  margin: 0;
  color: var(--fx-color-text-muted);
  font-size: 1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .v3-hero-inner,
  .v3-vendor-hero-inner {
    grid-template-columns: 1fr;
  }

  .v3-vendor-media .v3-anim-frame {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: var(--fx-space-8);
    min-height: auto;
  }

  .v3-vendor-media-copy {
    text-align: center;
    align-items: center;
  }

  .v3-vendor-media-copy p:last-child {
    max-width: 38rem;
  }

  .v3-vendor-video-shell {
    width: min(100%, 720px);
  }

  .v3-hero-visual {
    min-height: 460px;
  }

  .v3-vendor-stats {
    display: none;
  }

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

  .v3-step {
    border-bottom: 1px solid var(--fx-neutral-200);
  }

  .v3-step:nth-child(2n) { border-right: none; }
  .v3-step:nth-last-child(-n+2) { border-bottom: none; }

  .v3-benefits {
    grid-template-columns: 1fr;
  }

  .v3-benefit {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .v3-benefit:last-child { border-bottom: none; }

  .v3-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .v3-vendor-steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .v3-nav { display: none; }

  .v3-header-vendor { display: none; }

  .v3-hero-visual { display: none; }

  .v3-anim-frame { min-height: 340px; }
  .v3-anim-placeholder { padding: 1.5rem 2rem; }

  .v3-audience {
    grid-template-columns: 1fr;
  }

  .v3-steps-grid {
    grid-template-columns: 1fr;
    border-radius: var(--fx-radius-lg);
  }

  .v3-step { border-right: none; }
  .v3-step:not(:last-child) {
    border-bottom: 1px solid var(--fx-neutral-200);
  }

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

  .v3-vendor-callout-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--fx-space-6);
  }

  .v3-vendor-steps-grid {
    grid-template-columns: 1fr;
  }

  .v3-vendor-media {
    padding: 0;
  }

  .v3-vendor-media .v3-anim-frame {
    padding-top: clamp(2.5rem, 8vw, 3.5rem);
    padding-bottom: clamp(2.5rem, 8vw, 3.5rem);
    gap: var(--fx-space-6);
  }

  .v3-vendor-media-copy {
    text-align: left;
    align-items: flex-start;
    width: 100%;
  }

  .v3-vendor-media-copy h2 {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }

  .v3-vendor-media-copy p:last-child {
    max-width: none;
    font-size: 0.95rem;
  }

  .v3-vendor-video-shell {
    width: 100%;
    border-radius: var(--fx-radius-xl);
  }

  .v3-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--fx-space-6);
  }

  .v3-footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--fx-space-4);
  }
}
