/* ═══════════════════════════════════════════════════════════
   BUVA — Landing Page  landing-v2.css
   Clean · Professional · Creative · On-theme (BUVA red)
   ═══════════════════════════════════════════════════════════ */

:root {
  --lp-red:          #7c120f;
  --lp-red-2:        #9b1712;
  --lp-red-3:        #b33c35;
  --lp-red-dark:     #4a0c0a;
  --lp-accent:       #f0a23b;
  --lp-ink:          #111827;
  --lp-ink-2:        #374151;
  --lp-muted:        #6b7280;
  --lp-subtle:       #9ca3af;
  --lp-bg:           #ffffff;
  --lp-bg-soft:      #fdf9f8;
  --lp-bg-warm:      #faf4f3;
  --lp-border:       #efe0de;
  --lp-border-2:     #e4d3d1;
  --ff-display:      "Outfit", sans-serif;
  --ff-body:         "Inter", sans-serif;
  --lp-maxw:         1180px;
  --lp-r:            16px;
  --lp-r-lg:         22px;
  --lp-shadow-sm:    0 2px 10px rgba(74,12,10,.07);
  --lp-shadow-md:    0 10px 30px rgba(74,12,10,.10);
  --lp-shadow-lg:    0 24px 64px rgba(74,12,10,.16);
  --lp-safe:         #16a34a;
  --lp-prod:         #2563eb;
  --lp-near:         #c2410c;
}

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

/* Universal scrollbar — matches the app shell (member-layout.css) for a
   consistent, branded feel across the whole system. */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(124,18,15,.30) transparent;
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(124,18,15,.30);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: rgba(124,18,15,.55); background-clip: padding-box; }
::-webkit-scrollbar-corner { background: transparent; }

body {
  font-family: var(--ff-body);
  color: var(--lp-ink);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* Skip link */
.lp-skip {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 100;
  background: var(--lp-red);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
}
.lp-skip:focus { left: 12px; }

/* ──────────────────────────────────────────
   BUTTONS
────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .9rem;
  line-height: 1;
  padding: 12px 20px;
  border-radius: 11px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s, transform .18s, border-color .2s;
  white-space: nowrap;
}
.lp-btn:focus-visible { outline: 3px solid rgba(124,18,15,.4); outline-offset: 2px; }
.lp-btn-lg { padding: 14px 26px; font-size: .98rem; border-radius: 12px; }

.lp-btn-primary {
  background: linear-gradient(135deg, var(--lp-red) 0%, var(--lp-red-2) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(124,18,15,.28);
}
.lp-btn-primary:hover { box-shadow: 0 10px 26px rgba(124,18,15,.36); transform: translateY(-2px); }

.lp-btn-ghost {
  background: #fff;
  color: var(--lp-ink);
  border-color: var(--lp-border-2);
  box-shadow: var(--lp-shadow-sm);
}
.lp-btn-ghost:hover { border-color: var(--lp-red-3); color: var(--lp-red); transform: translateY(-1px); }

.lp-btn-light {
  background: #fff;
  color: var(--lp-red);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.lp-btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(0,0,0,.26); }

/* ──────────────────────────────────────────
   NAVBAR
────────────────────────────────────────── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.lp-nav.is-scrolled {
  border-color: var(--lp-border);
  box-shadow: 0 4px 20px rgba(74,12,10,.07);
  background: rgba(255,255,255,.92);
}

.lp-nav-inner {
  max-width: var(--lp-maxw);
  margin: 0 auto;
  padding: 13px clamp(16px,4vw,32px);
  display: flex;
  align-items: center;
  gap: 24px;
}

.lp-brand { display: inline-flex; align-items: center; gap: 10px; }
.lp-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--lp-border-2);
  background: #fff;
  box-shadow: var(--lp-shadow-sm);
}
.lp-brand-text {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: .03em;
  color: var(--lp-red-dark);
}

.lp-nav-links { margin-left: auto; display: flex; gap: 26px; }
.lp-nav-links a {
  position: relative;
  font-size: .88rem;
  font-weight: 500;
  color: var(--lp-muted);
  transition: color .18s;
}
.lp-nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--lp-red);
  transition: width .2s;
}
.lp-nav-links a:hover { color: var(--lp-red); }
.lp-nav-links a:hover::after { width: 100%; }

.lp-nav-cta { margin-left: 6px; }

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.lp-hero {
  position: relative;
  overflow: hidden;
  background: var(--lp-bg-soft);
  border-bottom: 1px solid var(--lp-border);
}

.lp-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(780px 460px at 88% -14%, rgba(179,60,53,.16), transparent 56%),
    radial-gradient(620px 360px at -6% 6%,  rgba(240,162,59,.13), transparent 52%),
    radial-gradient(520px 340px at 60% 118%, rgba(124,18,15,.08), transparent 60%);
  pointer-events: none;
}

.lp-hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(124,18,15,.11) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 75% 55% at 50% 0%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 75% 55% at 50% 0%, #000 0%, transparent 72%);
  pointer-events: none;
}

.lp-hero-inner {
  position: relative;
  max-width: var(--lp-maxw);
  margin: 0 auto;
  padding: clamp(56px,8vw,96px) clamp(16px,4vw,32px) clamp(36px,5vw,56px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.lp-hero-copy { max-width: 560px; }

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lp-red);
  background: rgba(124,18,15,.07);
  border: 1px solid rgba(124,18,15,.18);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.lp-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lp-red);
  box-shadow: 0 0 0 0 rgba(124,18,15,.5);
  animation: lp-pulse 2.2s infinite;
}
@keyframes lp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(124,18,15,.45); }
  70%  { box-shadow: 0 0 0 7px rgba(124,18,15,0); }
  100% { box-shadow: 0 0 0 0 rgba(124,18,15,0); }
}

.lp-hero-title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2.3rem, 5.2vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--lp-ink);
  margin: 0 0 20px;
}

.lp-grad-text {
  background: linear-gradient(118deg, var(--lp-red) 0%, var(--lp-red-3) 48%, var(--lp-accent) 108%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-hero-sub {
  font-size: clamp(.98rem, 1.6vw, 1.12rem);
  color: var(--lp-muted);
  max-width: 520px;
  margin: 0 0 30px;
  line-height: 1.7;
}

.lp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.lp-hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.lp-hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--lp-ink-2);
}
.lp-hero-trust svg { color: var(--lp-safe); flex-shrink: 0; }

/* ── Hero product mock ─────────────────── */
.lp-hero-visual { position: relative; justify-self: center; width: 100%; max-width: 460px; }

.lp-mock {
  position: relative;
  background: #fff;
  border: 1px solid var(--lp-border-2);
  border-radius: 18px;
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  transition: transform .4s ease;
}
.lp-hero-visual:hover .lp-mock { transform: perspective(1400px) rotateY(-2deg) rotateX(0deg); }

.lp-mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  background: var(--lp-bg-warm);
  border-bottom: 1px solid var(--lp-border);
}
.lp-mock-dot { width: 9px; height: 9px; border-radius: 50%; background: #e4cdc9; }
.lp-mock-dot:nth-child(1) { background: #ef8a82; }
.lp-mock-dot:nth-child(2) { background: var(--lp-accent); }
.lp-mock-dot:nth-child(3) { background: #8fcf9a; }
.lp-mock-url {
  margin-left: 10px;
  font-size: .72rem;
  color: var(--lp-subtle);
  font-weight: 500;
}

.lp-mock-body { padding: 16px; }

.lp-mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.lp-mock-stat {
  background: var(--lp-bg-soft);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
}
.lp-mock-stat-accent { background: rgba(124,18,15,.05); border-color: rgba(124,18,15,.18); }
.lp-mock-stat-num {
  display: block;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--lp-ink);
  line-height: 1;
}
.lp-mock-stat-accent .lp-mock-stat-num { color: var(--lp-red); }
.lp-mock-stat-lbl { font-size: .66rem; text-transform: uppercase; letter-spacing: .06em; color: var(--lp-subtle); font-weight: 700; }

.lp-mock-rows { display: flex; flex-direction: column; gap: 8px; }
.lp-mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: #fff;
}
.lp-mock-tag {
  flex-shrink: 0;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 3px 8px;
  border-radius: 999px;
}
.lp-tag-safe { background: #dcfce7; color: #15803d; }
.lp-tag-prod { background: #dbeafe; color: #1d4ed8; }
.lp-tag-near { background: #ffedd5; color: #9a3412; }
.lp-tag-up   { background: #f3f4f6; color: #4b5563; }
.lp-mock-line { height: 8px; border-radius: 999px; background: #ede4e3; }
.lp-mock-line.lp-w-45 { width: 45%; }
.lp-mock-line.lp-w-55 { width: 55%; }
.lp-mock-line.lp-w-70 { width: 70%; }
.lp-mock-line.lp-w-80 { width: 80%; }
.lp-mock-meta { margin-left: auto; font-size: .68rem; color: var(--lp-subtle); font-weight: 600; flex-shrink: 0; }

/* Floating toast */
.lp-mock-toast {
  position: absolute;
  left: -18px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1px solid var(--lp-border-2);
  border-radius: 14px;
  padding: 11px 14px;
  box-shadow: var(--lp-shadow-md);
  max-width: 240px;
  animation: lp-float 4s ease-in-out infinite;
}
@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.lp-mock-toast-ico {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-red), var(--lp-red-3));
}
.lp-mock-toast-ico svg { stroke: #fff; color: #fff; }
.lp-mock-toast strong { display: block; font-size: .8rem; color: var(--lp-ink); }
.lp-mock-toast span { font-size: .72rem; color: var(--lp-muted); }

/* ── Hero stat bar ─────────────────────── */
.lp-hero-statbar {
  position: relative;
  max-width: var(--lp-maxw);
  margin: 0 auto;
  padding: 0 clamp(16px,4vw,32px) clamp(40px,6vw,64px);
}
.lp-hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 32px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r);
  box-shadow: var(--lp-shadow-sm);
}
.lp-hero-stats div:not(.lp-stat-sep) { text-align: center; }
.lp-hero-stats dt {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--lp-red);
  line-height: 1;
}
.lp-hero-stats dd { margin: 6px 0 0; font-size: .8rem; color: var(--lp-muted); font-weight: 500; }
.lp-stat-sep { width: 1px; align-self: stretch; background: var(--lp-border); margin: 4px 0; }

/* ──────────────────────────────────────────
   SECTIONS (shared)
────────────────────────────────────────── */
.lp-section {
  padding: clamp(64px, 9vw, 104px) clamp(16px, 4vw, 32px);
  max-width: var(--lp-maxw);
  margin: 0 auto;
}
.lp-section-flush { padding-top: clamp(64px, 9vw, 104px); padding-bottom: clamp(64px, 9vw, 104px); }

.lp-section-alt {
  background: var(--lp-bg-warm);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}

.lp-section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}

.lp-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lp-red-3);
  margin-bottom: 12px;
}

.lp-h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  line-height: 1.14;
  letter-spacing: -.02em;
  color: var(--lp-ink);
  margin: 0 0 12px;
}

.lp-lead {
  font-size: 1rem;
  color: var(--lp-muted);
  line-height: 1.65;
}

/* ──────────────────────────────────────────
   FEATURE GRID
────────────────────────────────────────── */
.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  /* Cards in a row match height even when copy lengths differ, so the
     support grid reads as a block rather than a ragged edge. */
  align-items: stretch;
}
.lp-feature-grid .lp-card { display: flex; flex-direction: column; }

.lp-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r);
  padding: 28px 24px 26px;
  box-shadow: var(--lp-shadow-sm);
  transition: transform .22s, box-shadow .22s, border-color .22s;
  overflow: hidden;
}
.lp-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-red), var(--lp-red-3), var(--lp-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.lp-card:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-md); border-color: var(--lp-border-2); }
.lp-card:hover::after { transform: scaleX(1); }

.lp-ico {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-red) 0%, var(--lp-red-3) 100%);
  box-shadow: 0 6px 16px rgba(124,18,15,.22);
  margin-bottom: 16px;
}
.lp-card h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.08rem; margin: 0 0 6px; color: var(--lp-ink); }
.lp-card p { font-size: .9rem; color: var(--lp-muted); line-height: 1.6; }

/* ──────────────────────────────────────────
   STEPS
────────────────────────────────────────── */
.lp-steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
}
.lp-step {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r);
  padding: 28px 22px;
  box-shadow: var(--lp-shadow-sm);
}
.lp-step-num {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-red), var(--lp-red-3));
  box-shadow: 0 5px 14px rgba(124,18,15,.24);
  margin-bottom: 14px;
}
.lp-step h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.04rem; margin: 0 0 6px; color: var(--lp-ink); }
.lp-step p { font-size: .9rem; color: var(--lp-muted); line-height: 1.6; }

/* Arrow connector cells */
.lp-step[aria-hidden] {
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.lp-step-arrow { color: var(--lp-red-3); opacity: .55; }

/* ──────────────────────────────────────────
   MODULES SPLIT (Admin / Member)
────────────────────────────────────────── */
.lp-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.lp-split-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r-lg);
  padding: 30px 28px;
  box-shadow: var(--lp-shadow-sm);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.lp-split-card:hover { transform: translateY(-3px); box-shadow: var(--lp-shadow-md); border-color: var(--lp-border-2); }

.lp-split-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.lp-split-badge {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.lp-badge-admin { background: rgba(124,18,15,.1); color: var(--lp-red); border: 1px solid rgba(124,18,15,.2); }
.lp-badge-member { background: rgba(37,99,235,.08); color: #1d4ed8; border: 1px solid rgba(37,99,235,.2); }
.lp-split-head h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.3rem; color: var(--lp-ink); }

.lp-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.lp-checklist li {
  position: relative;
  padding-left: 30px;
  font-size: .92rem;
  color: var(--lp-ink-2);
  line-height: 1.55;
}
.lp-checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%237c120f' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat,
    rgba(124,18,15,.09);
}

/* ──────────────────────────────────────────
   BRANDS STRIP
────────────────────────────────────────── */
/* Static fallback (kept for graceful degradation) */
.lp-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: center;
}
.lp-brands span {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  color: var(--lp-ink);
  opacity: .34;
  transition: opacity .2s, color .2s, transform .2s;
}
.lp-brands span:hover { opacity: 1; color: var(--lp-red); transform: translateY(-2px); }

/* ── Realtime marquee ── */
/* Tighten the brands block so the heading sits close to the marquee */
#brands .lp-section-flush { padding-bottom: clamp(24px, 4vw, 40px); }
#brands .lp-section-head { margin-bottom: 0; }
#brands { padding-bottom: clamp(40px, 6vw, 64px); }

.lp-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 4px;
  padding: 10px 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lp-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  flex: none;
  animation: lpMarquee 38s linear infinite;
}
.lp-marquee:hover .lp-marquee-track { animation-play-state: paused; }
@keyframes lpMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.lp-marquee-item {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  color: var(--lp-ink-2);
  opacity: .6;
  transition: opacity .2s, color .2s;
  padding: 0 4px;
  flex-shrink: 0;
}
.lp-marquee-item:hover { opacity: 1; color: var(--lp-red); }
.lp-marquee-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-red), var(--lp-accent));
  opacity: .55;
  flex-shrink: 0;
}

/* ── Feature group labels + core card accent ── */
.lp-group-label {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin: 0 0 14px;
  padding-left: 2px;
}
.lp-group-label + .lp-feature-grid { margin-bottom: 34px; }
.lp-card-core { border-color: rgba(124,18,15,.18); }
.lp-card-core::after { transform: scaleX(1); opacity: 1; height: 3px; }
.lp-card-core .lp-ico { box-shadow: 0 8px 20px rgba(124,18,15,.3); }

/* ──────────────────────────────────────────
   FINAL CTA
────────────────────────────────────────── */
.lp-cta {
  padding: clamp(48px, 7vw, 88px) clamp(16px, 4vw, 32px);
  max-width: var(--lp-maxw);
  margin: 0 auto;
}
.lp-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(48px, 7vw, 84px) clamp(28px, 5vw, 60px);
  text-align: center;
  color: #fff;
  background: linear-gradient(130deg, var(--lp-red-dark) 0%, var(--lp-red) 52%, var(--lp-red-3) 100%);
  box-shadow: var(--lp-shadow-lg);
}
.lp-cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(440px 240px at 10% 8%,  rgba(240,162,59,.3), transparent 58%),
    radial-gradient(480px 280px at 92% 112%, rgba(255,255,255,.14), transparent 60%);
  pointer-events: none;
}
.lp-cta-eyebrow {
  position: relative;
  display: inline-block;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin-bottom: 14px;
}
.lp-cta-card h2 {
  position: relative;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 3.6vw, 2.4rem);
  line-height: 1.16;
  margin: 0 0 12px;
}
.lp-cta-card p { position: relative; font-size: 1rem; color: rgba(255,255,255,.84); margin: 0 0 30px; }
.lp-cta-card .lp-btn { position: relative; }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.lp-footer {
  background: linear-gradient(180deg, var(--lp-bg-soft) 0%, var(--lp-bg-warm) 100%);
  border-top: 1px solid var(--lp-border);
}
.lp-footer-inner {
  max-width: var(--lp-maxw);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 68px) clamp(16px, 4vw, 32px) 0;
}

.lp-footer-top {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: 44px;
}

.lp-footer-brand-col { max-width: 340px; }
.lp-footer-brand-col .lp-brand { margin-bottom: 14px; }
.lp-footer-tagline { font-size: .9rem; color: var(--lp-muted); line-height: 1.6; margin-bottom: 20px; }
.lp-footer-cta { font-size: .85rem; padding: 10px 18px; }

.lp-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lp-footer-col { display: flex; flex-direction: column; gap: 10px; }
.lp-footer-col h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--lp-ink);
  margin-bottom: 4px;
}
.lp-footer-col a {
  font-size: .9rem;
  color: var(--lp-muted);
  transition: color .18s, padding-left .18s;
}
.lp-footer-col a:hover { color: var(--lp-red); padding-left: 3px; }

.lp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid var(--lp-border);
}
.lp-footer-copy { font-size: .84rem; color: var(--lp-subtle); }
.lp-footer-made { font-size: .84rem; color: var(--lp-subtle); }

/* ──────────────────────────────────────────
   REVEAL ANIMATION
────────────────────────────────────────── */
.lp-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.lp-reveal.is-in { opacity: 1; transform: none; }
.lp-feature-grid .lp-card:nth-child(2).lp-reveal { transition-delay: .06s; }
.lp-feature-grid .lp-card:nth-child(3).lp-reveal { transition-delay: .12s; }
.lp-feature-grid .lp-card:nth-child(5).lp-reveal { transition-delay: .06s; }
.lp-feature-grid .lp-card:nth-child(6).lp-reveal { transition-delay: .12s; }

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 980px) {
  .lp-hero-inner { grid-template-columns: 1fr; text-align: center; padding-bottom: clamp(48px,7vw,72px); }
  .lp-hero-copy { max-width: 620px; margin: 0 auto; }
  .lp-hero-sub { margin-left: auto; margin-right: auto; }
  .lp-hero-actions, .lp-hero-trust { justify-content: center; }
  .lp-hero-visual { max-width: 420px; margin-top: 8px; }
  .lp-mock { transform: none; }
  .lp-mock-toast { left: 50%; transform: translateX(-50%); bottom: -20px; }
  @keyframes lp-float { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }
}

@media (max-width: 900px) {
  .lp-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-step[aria-hidden] { display: none; }
  .lp-split { grid-template-columns: 1fr; }
  .lp-footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .lp-nav-links { display: none; }
  .lp-hero-stats { gap: 12px 0; padding: 20px; }
  .lp-stat-sep { display: none; }
  .lp-hero-stats div:not(.lp-stat-sep) { flex: 0 0 50%; }
}

@media (max-width: 560px) {
  .lp-feature-grid { grid-template-columns: 1fr; }
  .lp-hero-actions { flex-direction: column; align-items: stretch; }
  .lp-hero-actions .lp-btn { justify-content: center; }
  .lp-footer-links { grid-template-columns: 1fr 1fr; gap: 22px; }
  .lp-footer-bottom { flex-direction: column; text-align: center; }
}

/* ──────────────────────────────────────────
   REDUCED MOTION
────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0ms !important; animation-duration: 0ms !important; }
  .lp-reveal { opacity: 1; transform: none; }
  .lp-mock { transform: none; }
}
