/* ============================================================
   Launch For Zero — landing page v2 skin
   ------------------------------------------------------------
   Loaded AFTER styles.css, and only by the homepage. Everything
   here is scoped to .lfz-v2 on <body>, so the other pages keep
   the original look. Buttons, forms, FAQ, reveal animations and
   the header/footer markup all come from styles.css — this file
   only re-skins them and adds the sections that are new.
   ============================================================ */

.lfz-v2 {
  --v2-bg: #05060c;
  --v2-ink: #f3f6fc;
  --v2-sub: #98a3ba;
  --v2-faint: #6c7893;
  --v2-line: rgba(255, 255, 255, .09);
  --v2-line-soft: rgba(255, 255, 255, .06);
  --v2-panel: rgba(255, 255, 255, .028);
  --v2-blue: #3e6bff;
  --v2-violet: #8b5cf6;
  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;

  background: var(--v2-bg);
  color: var(--v2-sub);
}

/* ---------- Fixed animated background ----------
   Sits behind everything and never scrolls; all page content
   moves over the top of it. */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--v2-bg);
}
.lfz-v2 main,
.lfz-v2 .site-footer { position: relative; z-index: 1; }

.bg-orb { position: absolute; border-radius: 50%; }
.bg-orb-a {
  width: 78vw; height: 78vw; min-width: 620px; min-height: 620px;
  left: -22vw; top: -26vw;
  background: radial-gradient(circle, rgba(62, 107, 255, .30), transparent 66%);
  animation: v2-drift-a 38s ease-in-out infinite alternate;
}
.bg-orb-b {
  width: 66vw; height: 66vw; min-width: 520px; min-height: 520px;
  right: -20vw; top: 18vh;
  background: radial-gradient(circle, rgba(139, 92, 246, .26), transparent 66%);
  animation: v2-drift-b 47s ease-in-out infinite alternate;
}
.bg-orb-c {
  width: 60vw; height: 60vw; min-width: 460px; min-height: 460px;
  left: 16vw; bottom: -26vw;
  background: radial-gradient(circle, rgba(47, 214, 181, .13), transparent 68%);
  animation: v2-drift-c 56s ease-in-out infinite alternate;
}
@keyframes v2-drift-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(7vw, 6vh, 0) scale(1.14); }
}
@keyframes v2-drift-b {
  from { transform: translate3d(0, 0, 0) scale(1.08); }
  to   { transform: translate3d(-8vw, -7vh, 0) scale(1); }
}
@keyframes v2-drift-c {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(5vw, -9vh, 0) scale(1.18); }
}

/* Drifting triangles — positions set here so the markup stays clean */
.bg-shapes { position: absolute; inset: 0; }
.bg-shape {
  position: absolute;
  display: block;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: rgba(255, 255, 255, .05);
  animation: v2-float 30s ease-in-out infinite;
}
.bg-shape:nth-child(1)  { width: 74px;  height: 66px;  left: 7%;  top: 12%; transform: rotate(-24deg); animation-delay: -2s;  }
.bg-shape:nth-child(2)  { width: 42px;  height: 38px;  left: 21%; top: 68%; transform: rotate(148deg); animation-delay: -9s;  }
.bg-shape:nth-child(3)  { width: 108px; height: 96px;  left: 78%; top: 8%;  transform: rotate(72deg);  animation-delay: -15s; }
.bg-shape:nth-child(4)  { width: 56px;  height: 50px;  left: 88%; top: 44%; transform: rotate(-58deg); animation-delay: -4s;  }
.bg-shape:nth-child(5)  { width: 34px;  height: 30px;  left: 46%; top: 26%; transform: rotate(196deg); animation-delay: -21s; }
.bg-shape:nth-child(6)  { width: 92px;  height: 82px;  left: 33%; top: 88%; transform: rotate(18deg);  animation-delay: -12s; }
.bg-shape:nth-child(7)  { width: 48px;  height: 44px;  left: 64%; top: 74%; transform: rotate(-96deg); animation-delay: -27s; }
.bg-shape:nth-child(8)  { width: 66px;  height: 58px;  left: 3%;  top: 52%; transform: rotate(112deg); animation-delay: -18s; }
.bg-shape:nth-child(9)  { width: 30px;  height: 27px;  left: 71%; top: 34%; transform: rotate(-14deg); animation-delay: -6s;  }
.bg-shape:nth-child(10) { width: 80px;  height: 72px;  left: 53%; top: 58%; transform: rotate(224deg); animation-delay: -33s; }
@keyframes v2-float {
  0%, 100% { translate: 0 0;      opacity: .55; }
  50%      { translate: 0 -26px;  opacity: 1;   }
}

/* Grain + vignette give the flat black some depth */
.bg-grain {
  position: absolute; inset: 0;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.bg-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(130% 85% at 50% 12%, transparent 38%, rgba(2, 3, 8, .82) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .bg-orb, .bg-shape { animation: none; }
}

/* ---------- Header: floating centre pill ---------- */
.lfz-v2 .site-header,
.lfz-v2 .site-header.scrolled {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
@media (min-width: 1081px) {
  .lfz-v2 .site-header { height: auto; padding-top: 20px; align-items: flex-start; }
  .lfz-v2 .header-inner {
    width: auto;
    max-width: calc(100% - 48px);
    margin: 0 auto;
    justify-content: center;
    gap: 26px;
    padding: 9px 9px 9px 22px;
    background: rgba(12, 15, 26, .74);
    backdrop-filter: blur(18px);
    border: 1px solid var(--v2-line);
    border-radius: 999px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .5);
  }
  .lfz-v2 .main-nav { gap: 22px; }
  .lfz-v2 .main-nav > a:not(.btn) { font-size: 14.5px; }
  .lfz-v2 .main-nav .btn-sm { border-radius: 999px; }
}
@media (max-width: 1080px) {
  .lfz-v2 .site-header,
  .lfz-v2 .site-header.scrolled {
    background: rgba(5, 6, 12, .9);
    backdrop-filter: blur(14px);
  }
  .lfz-v2 .main-nav { background: #080a12; }
}

/* ---------- Typography ---------- */
.lfz-v2 h1, .lfz-v2 h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--v2-ink);
  letter-spacing: -0.005em;
  line-height: 1.06;
}
.lfz-v2 h1 { font-size: clamp(44px, 6.6vw, 88px); }
.lfz-v2 h2 { font-size: clamp(31px, 4.2vw, 54px); }
.lfz-v2 h3, .lfz-v2 h4 { color: var(--v2-ink); }
.lfz-v2 p { color: var(--v2-sub); }
.lfz-v2 strong { color: var(--v2-ink); }
/* Serif italic for the emphasised word, as in the reference layout */
.v2-em { font-style: italic; color: #b9c6df; }

.lfz-v2 .eyebrow, .lfz-v2 .eyebrow-dark {
  display: block;
  background: none;
  border: 0;
  padding: 0;
  color: var(--v2-faint);
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lfz-v2 .section { padding: 118px 0; }
.lfz-v2 .section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.lfz-v2 .section-head p { font-size: 17px; margin-top: 20px; }

/* Hairline divider between sections, like the reference */
.v2-rule {
  width: min(1160px, 100% - 48px);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--v2-line), transparent);
}

/* ---------- Hero (text only — no hero image) ---------- */
.lfz-v2 .hero {
  padding: calc(var(--header-h) + 96px) 0 104px;
  text-align: center;
  background: none;
}
.lfz-v2 .hero-inner { display: block; max-width: 900px; margin: 0 auto; }
.lfz-v2 .hero-badges { justify-content: center; margin-bottom: 34px; }
.lfz-v2 .hero-badge {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--v2-line);
  color: var(--v2-sub);
}
.lfz-v2 .hero-sub {
  font-size: clamp(17px, 1.5vw, 19.5px);
  max-width: 640px;
  margin: 28px auto 40px;
}
.lfz-v2 .hero-ctas { justify-content: center; margin-bottom: 34px; }
.lfz-v2 .hero-trust {
  justify-content: center;
  gap: 12px 26px;
  color: var(--v2-faint);
  font-size: 14px;
}
.lfz-v2 .hero-trust li { color: var(--v2-faint); }

.lfz-v2 .btn-ghost {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--v2-line);
  color: var(--v2-ink);
}
.lfz-v2 .btn-ghost:hover { background: rgba(255, 255, 255, .1); }

/* ---------- Stats ---------- */
.lfz-v2 .stats-strip { background: none; border: 0; padding: 0 0 24px; }
.lfz-v2 .stat-num { font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 3vw, 40px); }
.lfz-v2 .stat-label { color: var(--v2-faint); }

/* ---------- The problem ---------- */
.v2-problem-list {
  list-style: none;
  display: grid;
  gap: 1px;
  max-width: 760px;
  margin: 0 auto;
  background: var(--v2-line-soft);
  border: 1px solid var(--v2-line-soft);
  border-radius: 16px;
  overflow: hidden;
}
.v2-problem-list li {
  background: rgba(8, 10, 18, .55);
  padding: 22px 26px;
  color: var(--v2-sub);
  font-size: 15.5px;
}
.v2-problem-list li strong { display: block; color: var(--v2-ink); font-family: var(--font-head); font-size: 16px; margin-bottom: 4px; }

/* ---------- Steps ---------- */
.lfz-v2 .steps { gap: 40px 34px; }
.lfz-v2 .step { background: none; border: 0; padding: 0; box-shadow: none; }
.lfz-v2 .step:hover { transform: none; box-shadow: none; }
.lfz-v2 .step::before { content: ""; display: block; width: 34px; height: 1px; background: rgba(255, 255, 255, .35); margin-bottom: 26px; }
.lfz-v2 .step-num {
  display: block;
  position: static;
  width: auto; height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--v2-faint);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  margin-bottom: 16px;
}
.lfz-v2 .step h3 { font-size: 20px; margin-bottom: 12px; }
.lfz-v2 .step p { font-size: 15px; }

/* ---------- Included: one bordered panel ---------- */
.v2-panel {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(10, 12, 22, .5);
  border: 1px solid var(--v2-line);
  border-radius: 20px;
  padding: 14px;
}
.v2-panel-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.v2-panel-item { display: flex; gap: 16px; padding: 26px 24px; }
.v2-panel-icon {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--v2-line);
  color: var(--v2-ink);
}
.v2-panel-icon svg { width: 18px; height: 18px; }
.v2-panel-item h3 { font-family: var(--font-head); font-size: 15.5px; margin-bottom: 6px; }
.v2-panel-item p { font-size: 14.5px; line-height: 1.6; }

/* ---------- Pricing ---------- */
.lfz-v2 .offer-card { background: none; border: 0; padding: 0; max-width: 1000px; }
.lfz-v2 .offer-summary { margin-bottom: 34px; text-align: center; }
.lfz-v2 .offer-summary h3 { font-family: var(--font-display); font-weight: 400; font-size: 27px; }
.lfz-v2 .offer-summary .price-list { max-width: 780px; margin-inline: auto; text-align: left; }
.lfz-v2 .price-list li { color: var(--v2-sub); }
.lfz-v2 .pay-option {
  background: rgba(10, 12, 22, .55);
  border: 1px solid var(--v2-line);
  border-radius: 20px;
}
.lfz-v2 .pay-featured {
  background: linear-gradient(rgba(16, 18, 34, .72), rgba(10, 12, 22, .72)) padding-box,
              linear-gradient(135deg, rgba(62, 107, 255, .55), rgba(139, 92, 246, .55)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 30px 80px rgba(62, 107, 255, .16);
}
.lfz-v2 .price-flag {
  background: rgba(255, 255, 255, .9);
  color: #0b0e18;
  box-shadow: none;
}
.lfz-v2 .price-flag-alt { background: rgba(255, 255, 255, .06); color: var(--v2-sub); border: 1px solid var(--v2-line); }
.lfz-v2 .price-amount { font-family: var(--font-display); font-weight: 400; font-size: clamp(42px, 5vw, 58px); }
.lfz-v2 .price-was, .lfz-v2 .price-note, .lfz-v2 .price-per { color: var(--v2-faint); }
.lfz-v2 .price-after { color: var(--v2-sub); max-width: 66ch; }
.lfz-v2 .price-after strong { color: var(--v2-ink); font-family: var(--font-display); font-size: 17px; }
.lfz-v2 .price-after a { color: var(--v2-sub); }

/* ---------- Guarantee ---------- */
.lfz-v2 .guarantee {
  background: rgba(10, 12, 22, .5);
  border: 1px solid var(--v2-line);
  border-radius: 18px;
  max-width: 800px;
  margin-inline: auto;
}
.lfz-v2 .guarantee strong { font-family: var(--font-display); font-size: 19px; font-weight: 400; }

/* ---------- Work ---------- */
.lfz-v2 .browser-frame { border-color: var(--v2-line); box-shadow: 0 30px 70px rgba(0, 0, 0, .5); }
.lfz-v2 .browser-chrome { background: rgba(255, 255, 255, .04); border-bottom-color: var(--v2-line); }
.lfz-v2 blockquote { color: var(--v2-ink); font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.32; }
.lfz-v2 .case-fact { border-color: var(--v2-line); }
.lfz-v2 .case-fact strong { color: var(--v2-faint); }
.lfz-v2 .case-fact span { color: var(--v2-ink); }
.lfz-v2 .work-item figcaption strong { color: var(--v2-ink); }
.lfz-v2 .work-intro { color: var(--v2-faint); }

/* ---------- Comparison ---------- */
.lfz-v2 .compare-table { background: rgba(10, 12, 22, .5); border: 1px solid var(--v2-line); border-radius: 18px; overflow: hidden; }
.lfz-v2 .compare-row { border-bottom-color: var(--v2-line-soft); }
.lfz-v2 .compare-header { background: rgba(255, 255, 255, .03); }
.lfz-v2 .compare-row [role="cell"], .lfz-v2 .compare-row [role="columnheader"] { color: var(--v2-sub); }
.lfz-v2 .c-feature { color: var(--v2-ink) !important; }
.lfz-v2 .compare-hint { color: var(--v2-faint); }

/* ---------- About ---------- */
.lfz-v2 .about-photo img { border-radius: 20px; }
.lfz-v2 .about-points li { color: var(--v2-sub); }
.lfz-v2 .contact-chip {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--v2-line);
  color: var(--v2-ink);
}
.lfz-v2 .contact-chip:hover { background: rgba(255, 255, 255, .09); }

/* ---------- FAQ ---------- */
.lfz-v2 .faq-item {
  background: rgba(10, 12, 22, .5);
  border: 1px solid var(--v2-line);
  border-radius: 14px;
}
.lfz-v2 .faq-item[open] { background: rgba(14, 17, 30, .7); border-color: rgba(255, 255, 255, .14); }
.lfz-v2 .faq-item summary { color: var(--v2-ink); font-family: var(--font-head); }
.lfz-v2 .faq-body p { color: var(--v2-sub); }
.lfz-v2 .faq-body a { color: var(--v2-ink); }
.lfz-v2 .faq-icon::before, .lfz-v2 .faq-icon::after { background: var(--v2-sub); }

/* ---------- Final CTA + form ---------- */
.lfz-v2 .section-cta-final { background: none; }
.lfz-v2 .lead-form {
  background: rgba(10, 12, 22, .62);
  border: 1px solid var(--v2-line);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
.lfz-v2 .form-field label { color: var(--v2-sub); }
.lfz-v2 .form-field input {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--v2-line);
  color: var(--v2-ink);
}
.lfz-v2 .form-field input:focus { border-color: rgba(139, 92, 246, .7); box-shadow: 0 0 0 3px rgba(139, 92, 246, .16); }
.lfz-v2 .form-field input::placeholder { color: #5a6480; }
.lfz-v2 .form-perks li, .lfz-v2 .form-note, .lfz-v2 .cta-alt { color: var(--v2-faint); }
.lfz-v2 .cta-alt a { color: var(--v2-ink); }

/* ---------- Footer ---------- */
.lfz-v2 .site-footer { background: none; border-top: 1px solid var(--v2-line); }
.lfz-v2 .footer-brand p, .lfz-v2 .footer-nav a, .lfz-v2 .footer-contact a, .lfz-v2 .footer-legal p { color: var(--v2-faint); }
.lfz-v2 .footer-nav a:hover, .lfz-v2 .footer-contact a:hover { color: var(--v2-ink); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .v2-panel-grid { grid-template-columns: 1fr; }
  .lfz-v2 .section { padding: 84px 0; }
  .lfz-v2 .hero { padding: calc(var(--header-h) + 60px) 0 76px; }
}
@media (max-width: 640px) {
  .lfz-v2 .section-head { margin-bottom: 44px; }
  .v2-panel { padding: 8px; }
  .v2-panel-item { padding: 20px 18px; }
  .lfz-v2 .hero-trust { flex-direction: column; align-items: center; gap: 10px; }
}
