/* landing-pages.css — shared structural styles for persona/nusach landing pages.
   Extracted from the per-page inline <style> blocks (finding 4, perf dedup).
   Per-page palette tokens (--lp-accent, --lp-accent-soft, --lp-accent-tint,
   --lp-accent-rgb) remain INLINE in each page and cascade over these rules. */

    /* ===== Hero with radial gradient halo ===== */
    body.v2 .lp-hero {
      position: relative;
      padding: 96px 0 64px;
      overflow: hidden;
    }
    body.v2 .lp-hero::before {
      content: "";
      position: absolute;
      top: -20%; left: 50%;
      width: 1200px; height: 800px;
      transform: translateX(-50%);
      background:
        radial-gradient(ellipse 50% 40% at 50% 30%, rgba(var(--lp-accent-rgb), .12) 0%, transparent 70%),
        radial-gradient(ellipse 30% 25% at 25% 60%, rgba(var(--lp-accent-rgb), .08) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    body.v2 .lp-hero > * { position: relative; z-index: 1; }

    body.v2 .lp-hero-inner { max-width: 880px; margin: 0 auto; text-align: center; padding: 0 24px; }
    body.v2 .lp-hero-split {
      max-width: 1240px; margin: 0 auto; padding: 0 24px;
      display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
    }
    body.v2 .lp-hero-split .lp-hero-copy { text-align: right; }
    body.v2 .lp-hero-split .lp-hero-mockup { display:flex; justify-content:center; }
    body.v2 .lp-hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(var(--lp-accent-rgb), .10);
      color: var(--lp-accent);
      font-size: 13px; font-weight: 600;
      margin-bottom: 18px;
    }
    body.v2 .lp-hero-eyebrow svg { width: 14px; height: 14px; }
    body.v2 .lp-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(40px, 5.6vw, 64px);
      font-weight: 900;
      line-height: 1.04;
      letter-spacing: -.03em;
      color: var(--ink);
      margin: 4px 0 18px;
      text-wrap: balance;
    }
    body.v2 .lp-hero h1 .serif {
      font-family: var(--font-serif);
      font-weight: 500;
      font-style: italic;
      color: var(--lp-accent);
      letter-spacing: -.01em;
    }
    body.v2 .lp-hero-sub { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.6; color: var(--ink-soft); max-width: 720px; margin: 0 auto 28px; }
    body.v2 .lp-hero-split .lp-hero-sub { margin: 0 0 28px; }
    body.v2 .lp-hero-ctas { display:flex; gap:12px; flex-wrap:wrap; justify-content: center; }
    body.v2 .lp-hero-split .lp-hero-ctas { justify-content: flex-start; }
    body.v2 .lp-hero-meta {
      display:flex; gap: 18px; flex-wrap: wrap;
      margin-top: 20px; font-size: 13px; color: var(--ink-mute);
    }
    body.v2 .lp-hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
    body.v2 .lp-hero-meta svg { width: 14px; height: 14px; color: var(--lp-accent); }

    /* ===== Section heads with hybrid typography ===== */
    body.v2 .lp-section { padding: 80px 0; }
    body.v2 .lp-section-head { text-align: center; max-width: 760px; margin: 0 auto 44px; padding: 0 24px; }
    body.v2 .lp-section-head h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 900;
      line-height: 1.12;
      letter-spacing: -.025em;
      color: var(--ink);
      margin: 10px 0 14px;
      text-wrap: balance;
    }
    body.v2 .lp-section-head h2 .serif {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 500;
      color: var(--lp-accent);
    }
    body.v2 .lp-section-head p { font-size: 18px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

    /* ===== Grids + cards with hover shimmer ===== */
    body.v2 .lp-grid { display:grid; gap: 18px; padding: 0 24px; max-width: 1240px; margin: 0 auto; }
    body.v2 .lp-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
    body.v2 .lp-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
    body.v2 .lp-card {
      position: relative;
      background: var(--surface-2);
      border: 1px solid rgba(26,26,46,0.08);
      border-radius: 22px;
      padding: 26px 24px;
      overflow: hidden;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    body.v2 .lp-card::after {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(115deg, transparent 0%, transparent 40%, rgba(var(--lp-accent-rgb), .06) 50%, transparent 60%, transparent 100%);
      transform: translateX(110%);
      transition: transform .8s ease;
      pointer-events: none;
    }
    body.v2 .lp-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(var(--lp-accent-rgb), .14); border-color: rgba(var(--lp-accent-rgb), .35); }
    body.v2 .lp-card:hover::after { transform: translateX(-110%); }

    /* Filled icon style (Linear/Stripe-like): solid accent bg, white icon */
    body.v2 .lp-card-icon {
      width: 52px; height: 52px; border-radius: 14px;
      display:flex; align-items:center; justify-content:center;
      margin-bottom: 16px;
      color: #fff;
      box-shadow: 0 6px 16px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.20);
    }
    body.v2 .lp-card-icon svg { width: 24px; height: 24px; }
    body.v2 .lp-card-icon.c-blue { background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent-soft) 100%); }
    body.v2 .lp-card-icon.c-green { background: linear-gradient(135deg, #108A56 0%, #4DB089 100%); }
    body.v2 .lp-card-icon.c-amber { background: linear-gradient(135deg, #D9830F 0%, #F0B040 100%); }
    body.v2 .lp-card-icon.c-purple { background: linear-gradient(135deg, #7848B2 0%, #A77FCC 100%); }
    body.v2 .lp-card-icon.c-pink { background: linear-gradient(135deg, #C43774 0%, #E07599 100%); }
    body.v2 .lp-card-icon.c-orange { background: linear-gradient(135deg, #D86B2E 0%, #ED9460 100%); }
    body.v2 .lp-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--ink); margin: 0 0 8px; letter-spacing: -.01em; }
    body.v2 .lp-card p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

    /* ===== Big CTA band ===== */
    body.v2 .lp-cta-band {
      position: relative;
      background: linear-gradient(135deg, var(--lp-accent) 0%, var(--ink) 100%);
      color: #fff;
      padding: 64px 28px;
      text-align: center;
      border-radius: 28px;
      margin: 40px auto;
      max-width: 1240px;
      overflow: hidden;
    }
    body.v2 .lp-cta-band::before {
      content: "";
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(255,255,255,.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 100% 50%, rgba(255,255,255,.06) 0%, transparent 60%);
      pointer-events: none;
    }
    body.v2 .lp-cta-band > * { position: relative; }
    body.v2 .lp-cta-band h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 900; margin: 0 0 14px; color: #fff; letter-spacing: -.02em; }
    body.v2 .lp-cta-band p { font-size: 17px; opacity: .92; margin: 0 auto 28px; max-width: 600px; line-height: 1.55; }
    body.v2 .lp-cta-band .btn-primary { background: #fff; color: var(--lp-accent); }
    body.v2 .lp-cta-band .btn-primary:hover { background: rgba(255,255,255,.92); transform: translateY(-2px); }

    /* ===== Numbered list / steps ===== */
    body.v2 .lp-list { max-width: 800px; margin: 0 auto; padding: 0 24px; }
    body.v2 .lp-list-item { display:flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(26,26,46,.06); }
    body.v2 .lp-list-item:last-child { border-bottom: 0; }
    body.v2 .lp-list-item .lp-list-num {
      flex: 0 0 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent-soft) 100%);
      color: #fff;
      display:flex; align-items:center; justify-content:center;
      font-weight: 800; font-family: var(--font-display); font-size: 15px;
      box-shadow: 0 4px 12px rgba(var(--lp-accent-rgb), .25);
    }
    body.v2 .lp-list-item h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); margin: 8px 0 4px; }
    body.v2 .lp-list-item p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

    /* ===== Vertical timeline (setup-day) ===== */
    body.v2 .lp-timeline { max-width: 820px; margin: 0 auto; padding: 0 24px; position: relative; }
    body.v2 .lp-timeline::before {
      content: "";
      position: absolute;
      top: 24px; bottom: 24px;
      right: 40px;
      width: 2px;
      background: linear-gradient(to bottom, transparent, rgba(var(--lp-accent-rgb), .25) 8%, rgba(var(--lp-accent-rgb), .25) 92%, transparent);
    }
    body.v2 .lp-tl-item {
      position: relative;
      padding: 18px 80px 18px 0;
      margin-bottom: 6px;
    }
    body.v2 .lp-tl-item::before {
      content: "";
      position: absolute;
      top: 28px; right: 32px;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--surface);
      border: 3px solid var(--lp-accent);
      box-shadow: 0 0 0 4px rgba(var(--lp-accent-rgb), .15);
      z-index: 1;
    }
    body.v2 .lp-tl-item .lp-tl-time {
      display: inline-block;
      font-family: var(--font-display);
      font-size: 13px; font-weight: 700;
      color: var(--lp-accent);
      background: rgba(var(--lp-accent-rgb), .10);
      padding: 4px 10px;
      border-radius: 6px;
      margin-bottom: 6px;
    }
    body.v2 .lp-tl-item h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); margin: 4px 0 6px; }
    body.v2 .lp-tl-item p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

    /* ===== Breadcrumb + tag ===== */
    body.v2 .lp-breadcrumb { max-width: 1240px; margin: 0 auto; padding: 18px 24px 0; color: var(--ink-mute); font-size: 14px; position: relative; z-index: 2; }
    body.v2 .lp-breadcrumb a { color: var(--lp-accent); text-decoration: none; }
    body.v2 .lp-breadcrumb a:hover { text-decoration: underline; }

    /* ===== Stats strip with animated counter target ===== */
    body.v2 .lp-stats { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 940px; margin: 32px auto 0; padding: 0 24px; }
    body.v2 .lp-stat { text-align: center; padding: 28px 18px; background: var(--surface-2); border-radius: 20px; border: 1px solid rgba(26,26,46,0.06); position: relative; overflow: hidden; }
    body.v2 .lp-stat::before {
      content: ""; position: absolute; top: 0; right: 0; left: 0; height: 3px;
      background: linear-gradient(to right, transparent, var(--lp-accent), transparent);
    }
    body.v2 .lp-stat-num { font-family: var(--font-display); font-size: clamp(36px, 5vw, 48px); font-weight: 900; color: var(--lp-accent); line-height: 1; letter-spacing: -.02em; }
    body.v2 .lp-stat-label { font-size: 14px; color: var(--ink-soft); margin-top: 8px; font-weight: 500; }

    /* ===== Dark band (for mid-page visual break) ===== */
    body.v2 .lp-dark-band {
      background: linear-gradient(135deg, #1A1A2E 0%, #2D2D70 100%);
      color: #fff;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    body.v2 .lp-dark-band::before {
      content: "";
      position: absolute; top: 0; right: 0; left: 0; bottom: 0;
      background:
        radial-gradient(ellipse 800px 400px at 30% 50%, rgba(var(--lp-accent-rgb), .25) 0%, transparent 60%),
        radial-gradient(ellipse 600px 300px at 80% 70%, rgba(var(--lp-accent-rgb), .15) 0%, transparent 60%);
      pointer-events: none;
    }
    body.v2 .lp-dark-band > * { position: relative; z-index: 1; }
    body.v2 .lp-dark-band h2 { color: #fff; }
    body.v2 .lp-dark-band p { color: rgba(255,255,255,.85); }
    body.v2 .lp-dark-band .lp-card {
      background: rgba(255,255,255,.05);
      backdrop-filter: blur(10px);
      border-color: rgba(255,255,255,.10);
    }
    body.v2 .lp-dark-band .lp-card h3 { color: #fff; }
    body.v2 .lp-dark-band .lp-card p { color: rgba(255,255,255,.75); }

    /* ===== Testimonial card ===== */
    body.v2 .lp-testimonial {
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 32px;
      background: linear-gradient(135deg, var(--surface-warm) 0%, var(--surface-2) 100%);
      border-radius: 28px;
      border: 1px solid rgba(26,26,46,.08);
      position: relative;
      overflow: hidden;
    }
    body.v2 .lp-testimonial::before {
      content: """;
      position: absolute;
      top: -40px; right: 24px;
      font-family: var(--font-serif);
      font-size: 200px;
      line-height: 1;
      color: rgba(var(--lp-accent-rgb), .12);
      font-style: italic;
    }
    body.v2 .lp-testimonial-quote {
      font-family: var(--font-serif);
      font-size: clamp(20px, 2.2vw, 26px);
      line-height: 1.5;
      color: var(--ink);
      font-style: italic;
      margin: 0 0 24px;
      position: relative;
      z-index: 1;
    }
    body.v2 .lp-testimonial-author { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
    body.v2 .lp-testimonial-avatar {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent-soft) 100%);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-weight: 800; font-size: 22px;
      box-shadow: 0 6px 16px rgba(var(--lp-accent-rgb), .25);
    }
    body.v2 .lp-testimonial-author-info { display: flex; flex-direction: column; gap: 2px; }
    body.v2 .lp-testimonial-author-name { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 16px; font-style: normal; }
    body.v2 .lp-testimonial-author-role { font-size: 14px; color: var(--ink-soft); }

    /* ===== Before / After split ===== */
    body.v2 .lp-ba {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
      align-items: stretch;
      position: relative;
    }
    body.v2 .lp-ba::before {
      content: "→";
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 48px; height: 48px;
      background: var(--lp-accent);
      color: #fff;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; font-weight: 700;
      box-shadow: 0 8px 20px rgba(var(--lp-accent-rgb), .35);
      z-index: 2;
    }
    body.v2 .lp-ba-side {
      padding: 28px;
      border-radius: 22px;
      border: 1px solid rgba(26,26,46,.08);
      position: relative;
      overflow: hidden;
    }
    body.v2 .lp-ba-side.before { background: var(--surface-warm); }
    body.v2 .lp-ba-side.after { background: linear-gradient(135deg, var(--lp-accent-tint) 0%, var(--surface-2) 100%); border-color: rgba(var(--lp-accent-rgb), .20); }
    body.v2 .lp-ba-label {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 14px;
      letter-spacing: .04em;
    }
    body.v2 .lp-ba-side.before .lp-ba-label { background: rgba(216,107,46,.20); color: #B5550C; }
    body.v2 .lp-ba-side.after .lp-ba-label { background: rgba(var(--lp-accent-rgb), .20); color: var(--lp-accent); }
    body.v2 .lp-ba-side h3 { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--ink); margin: 0 0 10px; }
    body.v2 .lp-ba-side p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 14px; }
    body.v2 .lp-ba-visual { margin-top: 18px; display: flex; justify-content: center; }

    /* ===== Ornamental divider (Hebrew-flavored SVG) ===== */
    body.v2 .lp-ornament {
      display: flex; justify-content: center; align-items: center; gap: 14px;
      margin: 0 auto;
      padding: 16px 0 0;
      color: var(--lp-accent);
      opacity: .55;
    }
    body.v2 .lp-ornament hr { flex: 1; border: 0; border-top: 1px solid rgba(var(--lp-accent-rgb), .25); max-width: 120px; margin: 0; }
    body.v2 .lp-ornament svg { width: 22px; height: 22px; }

    /* ===== Hero mockup container ===== */
    body.v2 .lp-mockup-card {
      background: var(--surface-2);
      border-radius: 24px;
      box-shadow:
        0 30px 60px -20px rgba(var(--lp-accent-rgb), .25),
        0 18px 40px -16px rgba(26,26,46,.20),
        inset 0 1px 0 rgba(255,255,255,.8);
      padding: 22px;
      max-width: 480px;
      transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
      transition: transform .4s ease;
    }
    body.v2 .lp-mockup-card:hover { transform: perspective(1400px) rotateY(-1deg) rotateX(0.5deg); }
    body.v2 .lp-mockup-card svg { display: block; width: 100%; height: auto; border-radius: 14px; }
    body.v2 .lp-mockup-bezel {
      max-width: 280px;
      margin: 0 auto;
      border-radius: 38px;
      padding: 14px;
      background: linear-gradient(145deg, #2A2A3E, #1A1A2E);
      box-shadow:
        0 30px 60px -20px rgba(0,0,0,.40),
        inset 0 0 0 2px rgba(255,255,255,.05),
        inset 0 1px 0 rgba(255,255,255,.10);
    }
    body.v2 .lp-mockup-bezel svg { display:block; width: 100%; height: auto; border-radius: 24px; background: var(--surface-2); }

    /* ===== Accessibility ===== */
    body.v2 .lp-skip {
      position: absolute;
      top: -40px; right: 16px;
      padding: 10px 18px;
      background: var(--lp-accent); color: #fff;
      border-radius: 8px; font-weight: 700; text-decoration: none;
      z-index: 9999;
      transition: top .15s ease;
    }
    body.v2 .lp-skip:focus { top: 16px; outline: 3px solid #fff; outline-offset: 2px; }
    body.v2 .lp-btn-primary:focus-visible,
    body.v2 .lp-btn-secondary:focus-visible,
    body.v2 .btn-primary:focus-visible,
    body.v2 .btn-secondary:focus-visible,
    body.v2 .lp-sticky-cta a:focus-visible,
    body.v2 .lp-card:focus-within,
    body.v2 a.lp-card:focus-visible {
      outline: 3px solid var(--lp-accent);
      outline-offset: 3px;
      border-radius: 12px;
    }
    body.v2 input:focus-visible,
    body.v2 select:focus-visible,
    body.v2 button:focus-visible {
      outline: 3px solid var(--lp-accent);
      outline-offset: 2px;
    }
    /* Respect prefers-reduced-motion: skip transitions for users who need it. */
    @media (prefers-reduced-motion: reduce) {
      body.v2 .lp-reveal, body.v2 .lp-reveal-stagger > *,
      body.v2 .lp-mockup-card, body.v2 .lp-card,
      body.v2 .lp-sticky-cta { transition: none !important; }
      body.v2 .lp-reveal, body.v2 .lp-reveal-stagger > * { opacity: 1 !important; transform: none !important; }
    }

    /* ===== Sticky CTA bar ===== */
    body.v2 .lp-sticky-cta {
      position: fixed;
      top: -80px;
      left: 0; right: 0;
      background: linear-gradient(135deg, var(--lp-accent) 0%, var(--ink) 100%);
      color: #fff;
      padding: 14px 24px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px;
      z-index: 999;
      box-shadow: 0 8px 24px rgba(0,0,0,.15);
      transition: top .35s ease;
    }
    body.v2 .lp-sticky-cta.visible { top: 0; }
    body.v2 .lp-sticky-cta .lp-sticky-msg { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
    body.v2 .lp-sticky-cta a { background: #fff; color: var(--lp-accent); padding: 8px 18px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 14px; white-space: nowrap; transition: transform .2s ease; }
    body.v2 .lp-sticky-cta a:hover { transform: translateY(-1px); }
    body.v2 .lp-sticky-cta .lp-sticky-close { background: transparent; color: #fff; border: 0; cursor: pointer; opacity: .7; padding: 4px; }
    body.v2 .lp-sticky-cta .lp-sticky-close:hover { opacity: 1; }

    /* ===== Persona/nusach pill strip ===== */
    body.v2 .lp-tag {
      display:inline-block;
      padding: 5px 14px;
      border-radius: 999px;
      background: rgba(var(--lp-accent-rgb), .10);
      color: var(--lp-accent);
      font-size: 13px;
      font-weight: 600;
    }

    /* ===== Scroll reveal (.reveal becomes visible when in viewport) ===== */
    body.v2 .lp-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
    body.v2 .lp-reveal.visible { opacity: 1; transform: none; }
    body.v2 .lp-reveal-stagger > * {
      opacity: 0; transform: translateY(20px);
      transition: opacity .6s ease, transform .6s ease;
    }
    body.v2 .lp-reveal-stagger.visible > *:nth-child(1) { transition-delay: .05s; opacity: 1; transform: none; }
    body.v2 .lp-reveal-stagger.visible > *:nth-child(2) { transition-delay: .12s; opacity: 1; transform: none; }
    body.v2 .lp-reveal-stagger.visible > *:nth-child(3) { transition-delay: .19s; opacity: 1; transform: none; }
    body.v2 .lp-reveal-stagger.visible > *:nth-child(4) { transition-delay: .26s; opacity: 1; transform: none; }
    body.v2 .lp-reveal-stagger.visible > *:nth-child(5) { transition-delay: .33s; opacity: 1; transform: none; }
    body.v2 .lp-reveal-stagger.visible > *:nth-child(6) { transition-delay: .40s; opacity: 1; transform: none; }
    body.v2 .lp-reveal-stagger.visible > *:nth-child(n+7) { transition-delay: .45s; opacity: 1; transform: none; }
    /* ===== Accessibility: focus rings, skip link, reduced motion ===== */
    body.v2 a:focus-visible,
    body.v2 button:focus-visible,
    body.v2 input:focus-visible,
    body.v2 select:focus-visible,
    body.v2 textarea:focus-visible {
      outline: 3px solid var(--lp-accent);
      outline-offset: 2px;
      border-radius: 6px;
    }
    body.v2 .lp-btn-primary:focus-visible,
    body.v2 .lp-btn-secondary:focus-visible,
    body.v2 .lp-cta-band .btn-primary:focus-visible {
      outline: 3px solid #fff;
      outline-offset: 2px;
      box-shadow: 0 0 0 6px var(--lp-accent);
    }
    body.v2 .lp-sticky-cta a:focus-visible,
    body.v2 .lp-sticky-cta button:focus-visible {
      outline: 3px solid #fff;
      outline-offset: 2px;
    }
    body.v2 .lp-skip-link {
      position: absolute;
      top: 0; right: 0;
      transform: translateY(-100%);
      padding: 12px 24px;
      background: var(--lp-accent);
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      font-family: var(--font-display);
      z-index: 10000;
      transition: transform .2s ease;
    }
    body.v2 .lp-skip-link:focus { transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) {
      body.v2 .lp-reveal, body.v2 .lp-reveal-stagger > *,
      body.v2 .lp-card::after, body.v2 .lp-sticky-cta {
        transition: none !important;
        animation: none !important;
      }
      body.v2 .lp-reveal, body.v2 .lp-reveal-stagger > * { opacity: 1 !important; transform: none !important; }
    }

    /* ===== Responsive ===== */
    @media (max-width: 980px) {
      body.v2 .lp-hero-split { grid-template-columns: 1fr; gap: 32px; text-align: center; }
      body.v2 .lp-hero-split .lp-hero-copy { text-align: center; }
      body.v2 .lp-hero-split .lp-hero-ctas { justify-content: center; }
    }
    @media (max-width: 900px) {
      body.v2 .lp-grid.cols-3, body.v2 .lp-grid.cols-2 { grid-template-columns: 1fr; }
      body.v2 .lp-stats { grid-template-columns: 1fr; }
      body.v2 .lp-ba { grid-template-columns: 1fr; }
      body.v2 .lp-ba::before { top: auto; left: 50%; bottom: auto; transform: translateX(-50%) rotate(90deg); top: calc(50% - 24px); }
      body.v2 .lp-section { padding: 56px 0; }
      body.v2 .lp-timeline::before { right: 20px; }
      body.v2 .lp-tl-item { padding-right: 56px; }
      body.v2 .lp-tl-item::before { right: 12px; }
    }
    @media (max-width: 600px) {
      body.v2 .lp-mockup-card { transform: none; max-width: 100%; }
    }

    /* ===== Newsletter widget ===== */
    body.v2 .lp-newsletter {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 18px 24px;
      align-items: center;
      padding: 32px;
      background: linear-gradient(135deg, var(--lp-accent-tint) 0%, var(--surface-2) 100%);
      border-radius: 22px;
      border: 1px solid rgba(var(--lp-accent-rgb), .15);
    }
    body.v2 .lp-newsletter-icon {
      width: 56px; height: 56px; border-radius: 16px;
      background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-soft));
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 16px rgba(var(--lp-accent-rgb), .25);
    }
    body.v2 .lp-newsletter-text h3 {
      font-family: var(--font-display);
      font-size: 20px; font-weight: 800;
      margin: 0 0 4px; color: var(--ink);
      letter-spacing: -.01em;
    }
    body.v2 .lp-newsletter-text p { font-size: 14px; line-height: 1.5; color: var(--ink-soft); margin: 0; }
    body.v2 .lp-newsletter-form {
      grid-column: 1 / -1;
      display: flex; gap: 10px;
      align-items: stretch;
      margin-top: 4px;
      flex-wrap: wrap;
    }
    body.v2 .lp-newsletter-label {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0,0,0,0); border: 0;
    }
    body.v2 .lp-newsletter-input {
      flex: 1; min-width: 220px;
      padding: 12px 16px;
      border: 1px solid rgba(26,26,46,.15);
      border-radius: 12px;
      font-size: 15px; font-family: inherit;
      background: #fff; color: var(--ink);
      min-height: 44px;
    }
    body.v2 .lp-newsletter-input::placeholder { color: var(--ink-mute); }
    body.v2 .lp-newsletter-btn {
      padding: 12px 22px;
      border: 0; border-radius: 12px;
      background: var(--lp-accent); color: #fff;
      font-family: inherit; font-weight: 700; font-size: 15px;
      cursor: pointer; white-space: nowrap;
      box-shadow: 0 6px 14px rgba(var(--lp-accent-rgb), .25);
      transition: transform .2s ease;
      min-height: 44px;
    }
    body.v2 .lp-newsletter-btn:hover { transform: translateY(-1px); }
    body.v2 .lp-newsletter-btn:disabled { opacity: .65; cursor: wait; transform: none; }
    body.v2 .lp-newsletter-error,
    body.v2 .lp-newsletter-success {
      grid-column: 1 / -1;
      width: 100%;
      margin: 4px 0 0;
      font-size: 13px;
      min-height: 18px;
    }
    body.v2 .lp-newsletter-error { color: #B5550C; }
    body.v2 .lp-newsletter-success { color: #1A8F5E; }
    @media (max-width: 600px) {
      body.v2 .lp-newsletter { grid-template-columns: 1fr; text-align: center; }
      body.v2 .lp-newsletter-icon { margin-inline: auto; }
      body.v2 .lp-newsletter-form { flex-direction: column; }
    }

    /* ===== Comparison table (vs-excel / vs-paper compare pages) ===== */
    body.v2 .lp-compare-table-wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; overflow-x: auto; }
    body.v2 .lp-compare-table {
      width: 100%; border-collapse: separate; border-spacing: 0;
      background: var(--surface-2); border: 1px solid var(--hairline); border-radius: 18px;
      overflow: hidden;
    }
    body.v2 .lp-compare-table th, body.v2 .lp-compare-table td {
      padding: 16px 18px; text-align: right; vertical-align: top;
      border-bottom: 1px solid var(--hairline); font-size: 15px;
    }
    body.v2 .lp-compare-table tr:last-child td { border-bottom: 0; }
    body.v2 .lp-compare-table thead th {
      background: var(--surface);
      font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 16px;
      border-bottom: 2px solid var(--hairline);
    }
    body.v2 .lp-compare-table thead th.lp-compare-us {
      background: linear-gradient(135deg, var(--lp-accent) 0%, var(--ink) 100%);
      color: #fff;
    }
    body.v2 .lp-compare-table td.lp-compare-us {
      background: rgba(var(--lp-accent-rgb, 0,87,184), .04);
      color: var(--ink); font-weight: 500;
    }
    body.v2 .lp-compare-table td:first-child { width: 22%; font-weight: 700; color: var(--ink); background: var(--surface); }
    @media (max-width: 720px) {
      body.v2 .lp-compare-table th, body.v2 .lp-compare-table td { padding: 12px 10px; font-size: 13px; }
      body.v2 .lp-compare-table td:first-child { width: 28%; }
    }
    @media (max-width: 640px) {
      body.v2 .lp-compare-table-wrap { overflow-x: visible; padding: 0 14px; }
      body.v2 .lp-compare-table {
        min-width: 0; border: none; background: transparent; border-radius: 0; overflow: visible;
        border-spacing: 0;
      }
      body.v2 .lp-compare-table thead {
        position: absolute; width: 1px; height: 1px; overflow: hidden;
        clip: rect(0 0 0 0); white-space: nowrap;
      }
      body.v2 .lp-compare-table,
      body.v2 .lp-compare-table tbody,
      body.v2 .lp-compare-table tr,
      body.v2 .lp-compare-table td { display: block; }
      body.v2 .lp-compare-table tbody tr {
        background: var(--surface-2);
        border: 1px solid var(--hairline);
        border-radius: 16px;
        margin: 0 0 14px;
        overflow: hidden;
      }
      body.v2 .lp-compare-table tbody tr:last-child { margin-bottom: 0; }
      body.v2 .lp-compare-table td {
        width: auto !important;
        border-bottom: 1px solid var(--hairline);
        padding: 12px 16px; font-size: 14px;
      }
      body.v2 .lp-compare-table td:last-child { border-bottom: 0; }
      body.v2 .lp-compare-table td:first-child {
        width: auto !important;
        font-family: var(--font-display); font-weight: 800; font-size: 15.5px;
        color: var(--ink); background: rgba(15,23,42,0.04);
      }
      body.v2 .lp-compare-table td.lp-compare-us { background: rgba(var(--lp-accent-rgb, 0,87,184), .06); }
      body.v2 .lp-compare-table td[data-label]::before {
        content: attr(data-label);
        display: block; font-size: 12px; font-weight: 700;
        color: var(--ink-soft); margin-bottom: 4px;
      }
      body.v2 .lp-compare-table td.lp-compare-us[data-label]::before { color: var(--lp-accent); }
    }
