/*
 |------------------------------------------------------------------------------
 | landing-v2.css
 |------------------------------------------------------------------------------
 | Design tokens + scoped styling for the new landing page (ported from the
 | vsound-two React app's `flux.tsx` design system). Everything is scoped under
 | `.lv2` so it never leaks into the rest of premmo. Dark mode flips with the
 | existing `html.dark` class (see detect-mode.js).
 |
 | The React code used inline `style={{ ...f.token }}`; here those tokens become
 | CSS custom properties referenced as `var(--lv-token)`.
 */

.lv2 {
    /* Light palette (flux LIGHT) */
    --lv-bg: #fafaf9;
    --lv-bg-alt: #f2f1ee;
    --lv-ink: #0f0f0e;
    --lv-ink2: #3a3a38;
    --lv-muted: #888885;
    --lv-rule: rgba(15, 15, 14, 0.08);
    --lv-rule-md: rgba(15, 15, 14, 0.16);
    --lv-teal: #00b4a2;
    --lv-teal-dark: #008a7c;
    --lv-teal-bg: rgba(0, 180, 162, 0.10);
    --lv-teal-border: rgba(0, 180, 162, 0.28);
    --lv-teal-text: #008a7c;
    --lv-nav-bg: rgba(242, 241, 238, 0.88);
    --lv-heart: #ededea; /* light-grey heart motif behind testimonials */

    /* Static tokens */
    --lv-r-sm: 8px;
    --lv-r-md: 14px;
    --lv-r-lg: 22px;
    --lv-r-xl: 28px;
    --lv-font-sans: 'Geist', 'Inter', system-ui, sans-serif;
    --lv-font-mono: 'Geist Mono', ui-monospace, 'SFMono-Regular', monospace;
    --lv-font-hand: 'Caveat', cursive;

    /* Accent palette (cards/badges): teal, lime, yellow, coral, pink, indigo */
    --lv-a0: #00b4a2;
    --lv-a1: #b5e22e;
    --lv-a2: #ffd60a;
    --lv-a3: #ff6b35;
    --lv-a4: #f72585;
    --lv-a5: #6366f1;

    font-family: var(--lv-font-sans);
    color: var(--lv-ink);
    background: var(--lv-bg);
    -webkit-font-smoothing: antialiased;
}

html.dark .lv2 {
    /* Dark palette (flux DARK) */
    --lv-bg: #0d0e0d;
    --lv-bg-alt: #141514;
    --lv-ink: #efefec;
    --lv-ink2: #a8a8a4;
    --lv-muted: #8a8a86; /* was #555553 — too dark (~2.5:1); now ~5:1, readable but still muted */
    --lv-rule: rgba(239, 239, 236, 0.07);
    --lv-rule-md: rgba(239, 239, 236, 0.13);
    --lv-teal: #00c4b0;
    --lv-teal-dark: #00a090;
    --lv-teal-bg: rgba(0, 196, 176, 0.12);
    --lv-teal-border: rgba(0, 196, 176, 0.28);
    --lv-teal-text: #00c4b0;
    --lv-nav-bg: rgba(20, 21, 20, 0.88);
    --lv-heart: rgba(255, 255, 255, 0.045);
}

/* The accent text color flips brighter in dark mode */

html.dark .lv2 {
    --lv-a0-text: #00c4b0;
    --lv-a1-text: #b5e22e;
    --lv-a2-text: #ffd60a;
    --lv-a3-text: #ff6b35;
    --lv-a4-text: #f72585;
    --lv-a5-text: #818cf8;
}

.lv2 {
    --lv-a0-text: #008a7c;
    --lv-a1-text: #5e7d00;
    --lv-a2-text: #8a7000;
    --lv-a3-text: #c44400;
    --lv-a4-text: #c4006a;
    --lv-a5-text: #4338ca;
}

.lv2 *,
.lv2 *::before,
.lv2 *::after { box-sizing: border-box; }

.lv2 a { text-decoration: none; }

/* ── Shared helpers ──────────────────────────────────────────────── */

.lv2-container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; width: 100%; }

@media (min-width: 640px) { .lv2-container { padding: 0 1.5rem; } }

@media (min-width: 1024px) { .lv2-container { padding: 0 2rem; } }

.lv2-eyebrow {
    font-family: var(--lv-font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lv-teal-text);
}

.lv2-section-title {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--lv-ink);
}

/* ── Buttons ─────────────────────────────────────────────────────── */

.lv2-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    border-radius: var(--lv-r-sm);
    font-size: 14px; font-weight: 600;
    padding: 11px 22px;
    cursor: pointer; border: none;
    transition: background .15s, color .15s, border-color .15s;
    white-space: nowrap;
}

.lv2-btn-primary { background: var(--lv-teal); color: #fff; }

.lv2-btn-primary:hover { background: var(--lv-teal-dark); }

.lv2-btn-ghost { background: transparent; color: var(--lv-ink2); border: 1px solid var(--lv-rule-md); }

.lv2-btn-ghost:hover { background: var(--lv-bg-alt); }

.lv2-btn-dark { background: var(--lv-ink); color: var(--lv-bg); }

/* ── Hero squiggle underline ─────────────────────────────────────── */

.lv2-squiggle { position: absolute; left: 0; bottom: -8px; width: 100%; overflow: visible; }

@-webkit-keyframes lv2ArrowDraw { to { stroke-dashoffset: 0; } }

@keyframes lv2ArrowDraw { to { stroke-dashoffset: 0; } }

@-webkit-keyframes lv2ArrowHead { to { opacity: 1; } }

@keyframes lv2ArrowHead { to { opacity: 1; } }

.lv2-arrow-path {
    stroke-dasharray: 220; stroke-dashoffset: 220;
    -webkit-animation: lv2ArrowDraw 1.1s 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
            animation: lv2ArrowDraw 1.1s 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.lv2-arrow-head { opacity: 0; -webkit-animation: lv2ArrowHead 0.3s 1.4s ease-out forwards; animation: lv2ArrowHead 0.3s 1.4s ease-out forwards; }

/* ── Marquee ─────────────────────────────────────────────────────── */

.lv2-marquee { position: relative; overflow: hidden; }

.lv2-marquee-track { display: flex; gap: 1.5rem; padding-bottom: 2rem; width: -webkit-max-content; width: -moz-max-content; width: max-content; will-change: transform; }

.lv2-phone-tile { flex-shrink: 0; }

.lv2-fade-gray { position: absolute; top: 0; bottom: 0; width: 7rem; pointer-events: none; z-index: 10;
    backdrop-filter: grayscale(1) blur(4px); -webkit-backdrop-filter: grayscale(1) blur(4px); }

.lv2-fade-color { position: absolute; top: 0; bottom: 0; width: 4rem; pointer-events: none; z-index: 20; }

@media (min-width: 640px) {
    .lv2-fade-gray { width: 36rem; }
    .lv2-fade-color { width: 20rem; }
}

.lv2-fade-left.lv2-fade-gray  { left: 0;  mask-image: linear-gradient(to right, black 30%, transparent 100%); -webkit-mask-image: linear-gradient(to right, black 30%, transparent 100%); }

.lv2-fade-right.lv2-fade-gray { right: 0; mask-image: linear-gradient(to left, black 30%, transparent 100%);  -webkit-mask-image: linear-gradient(to left, black 30%, transparent 100%); }

.lv2-fade-left.lv2-fade-color  { left: 0;  background: linear-gradient(to right, var(--lv-bg-alt), transparent); }

.lv2-fade-right.lv2-fade-color { right: 0; background: linear-gradient(to left, var(--lv-bg-alt), transparent); }

/* ── How It Works — animated cards (ported from HowItWorksSection.tsx) ── */

@-webkit-keyframes hiwCardIn   { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@keyframes hiwCardIn   { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@-webkit-keyframes hiwBarGrow  { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@keyframes hiwBarGrow  { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@-webkit-keyframes hiwFadeIn   { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

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

@-webkit-keyframes hiwPulse    { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }

@keyframes hiwPulse    { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }

@-webkit-keyframes hiwBlink    { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

@keyframes hiwBlink    { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

@-webkit-keyframes hiwToastSlideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

@keyframes hiwToastSlideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

@-webkit-keyframes hiwBounce   { 0%,100% { transform: translateY(0); } 30% { transform: translateY(-10px); } 50% { transform: translateY(-4px); } }

@keyframes hiwBounce   { 0%,100% { transform: translateY(0); } 30% { transform: translateY(-10px); } 50% { transform: translateY(-4px); } }

@-webkit-keyframes hiwFloat    { 0% { opacity: 1; transform: translateY(0) scale(1); } 100% { opacity: 0; transform: translateY(-30px) scale(0.6); } }

@keyframes hiwFloat    { 0% { opacity: 1; transform: translateY(0) scale(1); } 100% { opacity: 0; transform: translateY(-30px) scale(0.6); } }

@-webkit-keyframes hiwRecordPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

@keyframes hiwRecordPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

@-webkit-keyframes hiwConnectionPulse { 0% { transform: scale(0.5); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }

@keyframes hiwConnectionPulse { 0% { transform: scale(0.5); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }

/* Tabs */

.lv2-hiw-tab {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 9999px;
    font-size: 13px; font-weight: 500; cursor: pointer;
    border: 1px solid var(--lv-rule-md); background: transparent; color: var(--lv-muted);
    transition: background .18s, color .18s, border-color .18s;
}

.lv2-hiw-tab[aria-selected="true"] { background: var(--lv-ink); border-color: var(--lv-ink); color: var(--lv-bg); }

/* Grid + cards */

.hiw-grid {
    display: grid; grid-template-columns: 1fr; gap: 1px;
    background: var(--lv-rule-md); border: 1px solid var(--lv-rule-md);
    border-radius: 22px; overflow: hidden;
}

@media (min-width: 768px) { .hiw-grid { grid-template-columns: repeat(3, 1fr); } }

.hiw-card {
    position: relative; overflow: hidden; background: var(--lv-bg);
    padding: 28px 24px 32px; transition: background .18s;
}

.hiw-card.is-hover { background: var(--lv-bg-alt); }

/* Entry: replays whenever .hiw-in is (re)applied — on scroll-in and tab switch */

.hiw-card.hiw-in { -webkit-animation: hiwCardIn .55s cubic-bezier(.16,1,.3,1) backwards; animation: hiwCardIn .55s cubic-bezier(.16,1,.3,1) backwards; -webkit-animation-delay: calc(var(--i, 0) * 70ms); animation-delay: calc(var(--i, 0) * 70ms); }

.hiw-card.hiw-in .hiw-rise { -webkit-animation: hiwFadeIn .45s ease-out backwards; animation: hiwFadeIn .45s ease-out backwards; -webkit-animation-delay: calc(0.18s + var(--j, 0) * 0.12s); animation-delay: calc(0.18s + var(--j, 0) * 0.12s); }

.hiw-num { font-family: var(--lv-font-mono); font-size: 11px; font-weight: 600; letter-spacing: .1em; color: var(--lv-muted); margin-bottom: 18px; }

.hiw-visual { border-radius: 10px; height: 148px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; overflow: hidden; }

.hiw-title { font-size: 16px; font-weight: 600; color: var(--lv-ink); margin: 0 0 6px; }

.hiw-desc { font-size: 13px; color: var(--lv-muted); line-height: 1.6; margin: 0 0 18px; }

/* Dark-mode readable variants for the hiw-preview cards' hardcoded accent text
   (inline colors stay for light mode; !important beats the inline style). */

html.dark .hiw-note             { color: #e879a4 !important; }

html.dark .hiw-status-connected { color: #e8a678 !important; }

html.dark .hiw-handle           { color: #e0956a !important; }

html.dark .hiw-balance-label    { color: #e6b76a !important; }

html.dark .hiw-coin             { color: #ecc873 !important; }

.hiw-accent { width: 28px; height: 3px; border-radius: 2px; }

.hiw-fill { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 12px; border-radius: 10px; overflow: hidden; position: relative; }

.hiw-icon-box { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px; }

/* Hover-only decorative motion (runs while the card is hovered) */

.hiw-card.is-hover .hiw-bounce { -webkit-animation: hiwBounce .8s ease-in-out infinite; animation: hiwBounce .8s ease-in-out infinite; }

.hiw-card.is-hover .hiw-bounce:nth-child(2) { -webkit-animation-delay: .15s; animation-delay: .15s; }

.hiw-card.is-hover .hiw-bounce:nth-child(3) { -webkit-animation-delay: .30s; animation-delay: .30s; }

.hiw-card.is-hover .hiw-note { -webkit-animation: hiwFloat 1.6s ease-out infinite; animation: hiwFloat 1.6s ease-out infinite; }

.hiw-card.is-hover .hiw-rec { -webkit-animation: hiwRecordPulse 1s ease-in-out infinite; animation: hiwRecordPulse 1s ease-in-out infinite; }

.hiw-card.is-hover .hiw-followbtn { -webkit-animation: hiwPulse 2.5s ease-in-out infinite; animation: hiwPulse 2.5s ease-in-out infinite; }

.hiw-note { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
    .hiw-card, .hiw-card.hiw-in, .hiw-card.hiw-in .hiw-rise { -webkit-animation: none !important; animation: none !important; opacity: 1 !important; transform: none !important; }
    .hiw-card.is-hover .hiw-bounce, .hiw-card.is-hover .hiw-note, .hiw-card.is-hover .hiw-rec, .hiw-card.is-hover .hiw-followbtn { -webkit-animation: none !important; animation: none !important; }
}

/* ── Testimonials carousel (full-bleed stage, ported from vsound-two) ── */

/* Stage left edge aligns with the page container; cards bleed to the right edge. */

.at-stage { display: grid; grid-template-columns: 240px 1fr; min-height: 520px; }

/* Sidebar sits flush against the left viewport edge (full-bleed stage), with a
   small inner gutter — like vsound-two. The 240px grid column keeps its content
   from overflowing into the cards. */

.at-sidebar { padding: 40px 28px 40px clamp(20px, 3vw, 40px); display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }

.at-cards-wrapper { border: 1px solid rgba(0,0,0,0.40); border-radius: 24px 0 0 24px; overflow: hidden; }

html.dark .at-cards-wrapper { border-color: rgba(255,255,255,0.05); }

.at-cards-row { display: flex; height: 520px; }

.at-card { position: relative; overflow: hidden; cursor: pointer; flex-shrink: 0; transition: flex 0.7s cubic-bezier(0.4,0,0.2,1); }

.at-card-photo { position: absolute; inset: 0; transition: transform 0.7s ease; }

.at-card-photo img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; -o-object-position: center 25%; object-position: center 25%; }

.at-card:hover .at-card-photo { transform: scale(1.03); }

.at-card.at-featured .at-card-photo { transform: scale(1.0); }

.at-card-overlay { position: absolute; inset: 0; transition: background 0.7s ease; }

.at-card.at-featured .at-card-overlay { background: linear-gradient(165deg, rgba(15,15,14,0.02) 0%, rgba(15,15,14,0.45) 45%, rgba(15,15,14,0.88) 100%); }

.at-card.at-mini .at-card-overlay { background: linear-gradient(165deg, rgba(15,15,14,0.25) 0%, rgba(15,15,14,0.70) 60%, rgba(15,15,14,0.92) 100%); }

.at-feat-tag { opacity: 0; transform: translateY(8px); transition: opacity 0.5s 0.3s ease, transform 0.5s 0.3s ease; }

.at-card.at-featured .at-feat-tag { opacity: 1; transform: translateY(0); }

.at-feat-quote { opacity: 0; transform: translateY(10px); font-size: 11px; transition: opacity 0.5s 0.15s ease, transform 0.5s 0.15s ease, font-size 0.7s cubic-bezier(0.4,0,0.2,1); }

.at-card.at-featured .at-feat-quote { opacity: 1; transform: translateY(0); font-size: clamp(14px, 1.6vw, 20px); }

.at-mini-quote { opacity: 0; transform: translateY(6px); transition: opacity 0.4s 0.2s ease, transform 0.4s 0.2s ease; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.at-card.at-mini .at-mini-quote { opacity: 1; transform: translateY(0); }

.at-click-hint { position: absolute; top: 20px; right: 14px; font-size: 8px; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; text-transform: uppercase; opacity: 0; transition: opacity 0.3s; }

.at-card.at-mini:hover .at-click-hint { opacity: 1; }

.at-card.at-featured .at-card-avatar { width: 38px; height: 38px; font-size: 15px; border-radius: 8px; }

.at-card.at-mini .at-card-avatar { width: 28px; height: 28px; font-size: 11px; border-radius: 5px; }

.at-card.at-featured .at-card-name { font-size: 14px; }

.at-card.at-mini .at-card-name { font-size: 12px; }

.at-card.at-featured .at-card-role { font-size: 11px; }

.at-card.at-mini .at-card-role { font-size: 10px; }

.at-card.at-featured .at-stat-val { font-size: 18px; }

.at-card.at-mini .at-stat-val { font-size: 14px; }

.at-card.at-featured .at-stat-lbl { font-size: 9px; }

.at-card.at-mini .at-stat-lbl { font-size: 8px; }

.at-prog-dot { height: 3px; border-radius: 2px; transition: width 0.4s ease, background 0.4s ease; cursor: pointer; }

.at-mobile-dots { display: none; }

@media (max-width: 768px) {
    .at-sidebar { display: none !important; }
    .at-stage { grid-template-columns: 1fr !important; min-height: unset !important; }
    .at-cards-wrapper { border-radius: 0 !important; border-left: none; border-right: none; }
    .at-mobile-dots { display: flex !important; }
    .at-cards-row { flex-direction: column !important; height: auto !important; }
    .at-card { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); flex: unset !important; width: 100% !important; transition: height 0.65s cubic-bezier(0.4,0,0.2,1) !important; }
    .at-card:last-child { border-bottom: none; }
    .at-card.at-featured { height: 340px; }
    .at-card.at-mini { height: 110px; }
    .at-card-inner { padding: 18px !important; }
    .at-feat-tag { display: none !important; }
    .at-card.at-mini .at-card-stats { display: none !important; }
    .at-click-hint { display: none !important; }
}

@media (max-width: 480px) {
    .at-card.at-featured { height: 280px; }
    .at-card.at-mini { height: 90px; }
}

@media (prefers-reduced-motion: reduce) { .at-card, .at-card-photo, .at-feat-quote, .at-mini-quote { transition: none !important; } }

/* ── Pricing slider ──────────────────────────────────────────────── */

.lv2-range { -webkit-appearance: none; -moz-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 9999px;
    background: var(--lv-rule-md); outline: none; cursor: pointer; }

.lv2-range::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 9999px;
    background: var(--lv-teal); border: 3px solid var(--lv-bg); box-shadow: 0 2px 8px rgba(0,0,0,.2); cursor: -webkit-grab; cursor: grab; }

.lv2-range::-moz-range-thumb {
    width: 24px; height: 24px; border-radius: 9999px;
    background: var(--lv-teal); border: 3px solid var(--lv-bg); box-shadow: 0 2px 8px rgba(0,0,0,.2); cursor: grab; }

.lv2-range:active::-webkit-slider-thumb { cursor: -webkit-grabbing; cursor: grabbing; }

/* ── Pricing section ─────────────────────────────────────────────── */

.lv2-pricing {
    background:
        radial-gradient(60% 55% at 15% 100%, var(--lv-teal-bg), transparent 60%),
        var(--lv-bg);
    border-top: 1px solid var(--lv-rule);
}

/* Header with floating money-back card */

.lv2-pricing-head {
    display: flex; flex-wrap: wrap; gap: 24px;
    align-items: flex-start; justify-content: space-between;
    margin-bottom: 32px;
}

.lv2-pricing-head-main { max-width: 640px; }

.lv2-guarantee-card {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 16px 18px; max-width: 340px;
    background: var(--lv-bg); border: 1px solid var(--lv-rule);
    border-radius: var(--lv-r-md);
    box-shadow: 0 14px 34px -24px rgba(0, 0, 0, .45);
}

.lv2-guarantee-card svg { width: 20px; height: 20px; color: var(--lv-teal-text); flex: 0 0 auto; margin-top: 1px; }

.lv2-guarantee-card-title { display: block; font-size: 14px; font-weight: 700; color: var(--lv-ink); }

.lv2-guarantee-card-text { display: block; font-size: 12.5px; color: var(--lv-ink2); margin-top: 3px; line-height: 1.5; }

/* Budget panel */

.lv2-budget-card {
    display: grid; grid-template-columns: 1fr;
    background: var(--lv-bg); border: 1px solid var(--lv-rule);
    border-radius: var(--lv-r-lg);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 24px 60px -38px rgba(0, 0, 0, .32);
}

@media (min-width: 1024px) { .lv2-budget-card { grid-template-columns: minmax(0, 300px) minmax(0, 1fr); } }

.lv2-budget-left { padding: clamp(22px, 2.6vw, 30px); }

.lv2-budget-right { padding: clamp(22px, 2.6vw, 30px); border-top: 1px solid var(--lv-rule); }

@media (min-width: 1024px) { .lv2-budget-right { border-top: 0; border-left: 1px solid var(--lv-rule); } }

.lv2-control-label {
    display: block;
    font-family: var(--lv-font-sans); font-size: 11px; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase; color: var(--lv-muted);
}

.lv2-price-display { display: flex; align-items: baseline; gap: 2px; margin-top: 12px; color: var(--lv-ink); }

.lv2-price-cur { font-size: clamp(22px, 3vw, 28px); font-weight: 700; line-height: 1; }

.lv2-price-num {
    font-size: clamp(40px, 5.5vw, 52px); font-weight: 800; line-height: .95;
    letter-spacing: -.025em; font-variant-numeric: tabular-nums;
}

.lv2-price-sub { font-size: 13px; color: var(--lv-muted); margin-top: 6px; }

/* Inline-editable "Your budget" value + preset dropdown */

.lv2-price-wrap { position: relative; }

.lv2-price-trigger {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none; background: none; border: 0; padding: 2px 4px; margin: 0 -4px;
    cursor: pointer; border-radius: var(--lv-r-sm); transition: background .15s ease;
}

.lv2-price-trigger:hover { background: var(--lv-teal-bg); }

.lv2-price-trigger:focus-visible { outline: 2px solid var(--lv-teal); outline-offset: 2px; }

.lv2-price-caret {
    align-self: center; width: 20px; height: 20px; margin-left: 6px;
    color: var(--lv-muted); transition: transform .18s ease;
}

.lv2-price-trigger[aria-expanded="true"] .lv2-price-caret { transform: rotate(180deg); }

.lv2-price-edit { position: relative; }

.lv2-price-edit::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
    background: var(--lv-teal); border-radius: 2px;
}

.lv2-price-input {
    font-family: inherit; font-size: clamp(40px, 5.5vw, 52px); font-weight: 800;
    line-height: .95; letter-spacing: -.025em; font-variant-numeric: tabular-nums;
    color: var(--lv-ink); background: transparent; border: 0; padding: 0; margin: 0;
    width: 4.5ch; -moz-appearance: textfield;
}

.lv2-price-input::-webkit-outer-spin-button,
.lv2-price-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.lv2-price-input:focus { outline: none; }

.lv2-budget-presets {
    position: absolute; top: calc(100% + 8px); left: 0; z-index: 40;
    min-width: 280px; max-width: min(92vw, 340px); padding: 6px;
    background: var(--lv-bg); border: 1px solid var(--lv-rule); border-radius: var(--lv-r-lg);
    box-shadow: 0 20px 44px -20px rgba(0, 0, 0, .38), 0 4px 12px -4px rgba(0, 0, 0, .16);
}

.lv2-budget-presets-hint { font-size: 11px; color: var(--lv-muted); padding: 6px 10px 8px; }

.lv2-preset-row {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    width: 100%; min-height: 44px; padding: 8px 10px;
    background: none; border: 0; border-radius: var(--lv-r-md); cursor: pointer;
    text-align: left; transition: background .12s ease;
}

.lv2-preset-row:hover { background: var(--lv-bg-alt); }

.lv2-preset-row:focus-visible { outline: 2px solid var(--lv-teal); outline-offset: -2px; }

.lv2-preset-row.is-active { background: var(--lv-teal-bg); }

.lv2-preset-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.lv2-preset-name { font-size: 13.5px; font-weight: 600; color: var(--lv-ink); }

.lv2-preset-results { font-size: 11.5px; color: var(--lv-muted); }

.lv2-preset-price {
    flex: 0 0 auto; font-size: 15px; font-weight: 700; color: var(--lv-teal-text);
    font-variant-numeric: tabular-nums;
}

.lv2-trust-stars { display: flex; align-items: center; gap: 8px; margin-top: 18px; }

.lv2-trust-today { font-size: 12px; color: var(--lv-muted); margin-top: 6px; }

.lv2-budget-right-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }

.lv2-popular-pill {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 600; color: var(--lv-teal-text);
    background: var(--lv-teal-bg); border: 1px solid var(--lv-teal-border);
    padding: 4px 11px; border-radius: 9999px; cursor: pointer;
    transition: background .15s, transform .15s;
}

.lv2-popular-pill:hover { background: var(--lv-teal-border); }

.lv2-popular-pill:active { transform: scale(.97); }

.lv2-popular-pill:focus-visible { outline: 2px solid var(--lv-teal); outline-offset: 2px; }

.lv2-popular-pill svg { width: 13px; height: 13px; }

.lv2-range-ends {
    display: flex; justify-content: space-between; margin-top: 8px;
    font-size: 12px; color: var(--lv-muted);
    font-family: var(--lv-font-mono); font-variant-numeric: tabular-nums;
}

.lv2-msg {
    display: flex; gap: 10px; align-items: center;
    margin-top: 18px; padding: 13px 15px;
    background: var(--lv-teal-bg); border: 1px solid var(--lv-teal-border);
    border-radius: var(--lv-r-md);
    font-size: 13.5px; color: var(--lv-ink); line-height: 1.45;
}

.lv2-msg svg { width: 22px; height: 12px; color: var(--lv-teal); flex: 0 0 auto; }

/* Stat cards */

.lv2-stats { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 16px; }

@media (min-width: 768px) { .lv2-stats { grid-template-columns: repeat(2, 1fr); } }

.lv2-stat-card {
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
    min-height: 200px; padding: clamp(18px, 2vw, 22px);
    background: var(--lv-bg); border: 1px solid var(--lv-rule);
    border-radius: var(--lv-r-lg);
}

.lv2-stat-head { display: flex; align-items: center; gap: 8px; }

.lv2-stat-head svg { width: 16px; height: 16px; color: var(--lv-teal-text); flex: 0 0 auto; }

.lv2-stat-head span { font-family: var(--lv-font-sans); font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--lv-muted); }

.lv2-stat-big {
    font-size: clamp(26px, 3.2vw, 34px); font-weight: 800; color: var(--lv-teal-text);
    line-height: 1; letter-spacing: -.02em; margin-top: 12px;
    font-variant-numeric: tabular-nums;
}

.lv2-stat-sub { font-size: 12.5px; color: var(--lv-muted); margin-top: 6px; }

.lv2-stat-viz { margin-top: auto; padding-top: 16px; }

/* Mini charts */

.lv2-chart { display: flex; gap: 8px; align-items: stretch; }

.lv2-chart-y {
    display: flex; flex-direction: column; justify-content: space-between;
    font-family: var(--lv-font-mono); font-size: 9px; color: var(--lv-muted); text-align: right;
}

.lv2-chart svg { flex: 1 1 auto; width: 100%; height: 84px; }

/* Live Estimated-views curve animates as the budget changes (Chrome/Edge
   support animating `d`; other browsers snap, which is fine). */

.lv2-chart-area, .lv2-chart-line { transition: d .35s ease; }

@media (prefers-reduced-motion: reduce) {
    .lv2-chart-area, .lv2-chart-line { transition: none; }
}

/* Videos card: phone grid clustered on the right, content above */

.lv2-videos-card .phone-grid { left: 0; }

/* spread phones across the full (now wider) card */

.lv2-videos-content { position: relative; z-index: 2; }

/* Mobile: hide the review rating on phone. */

@media (max-width: 767px) {
    .lv2-budget-left .lv2-trust-stars { display: none; }
}

/* Full-bleed CTA strip */

.lv2-pricing-ctabar { background: var(--lv-bg-alt); border-top: 1px solid var(--lv-rule); }

.lv2-ctabar-inner {
    display: grid; grid-template-columns: 1fr; gap: 18px; align-items: center;
    padding: 26px 0; justify-items: center; text-align: center;
}

@media (min-width: 900px) {
    .lv2-ctabar-inner { grid-template-columns: 1fr auto 1fr; justify-items: stretch; text-align: left; }
}

.lv2-ctabar-trust { display: flex; align-items: center; gap: 12px; justify-self: center; }

@media (min-width: 900px) { .lv2-ctabar-trust { justify-self: start; } }

.lv2-avatars { display: flex; }

.lv2-avatars img, .lv2-avatars-more {
    width: 36px; height: 36px; border-radius: 9999px; -o-object-fit: cover; object-fit: cover;
    border: 2px solid var(--lv-bg); margin-left: -10px;
}

.lv2-avatars img:first-child { margin-left: 0; }

.lv2-avatars-more {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--lv-rule-md); color: var(--lv-ink2); font-size: 11px; font-weight: 700;
}

.lv2-ctabar-trust-text { font-size: 13px; color: var(--lv-ink2); }

.lv2-cta-main { display: flex; flex-direction: column; align-items: center; justify-self: center; }

.lv2-cta-btn-lg { padding: 15px 30px; font-size: 16px; }

.lv2-cta-note {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    font-size: 12.5px; color: var(--lv-muted); margin-top: 10px;
}

.lv2-cta-note svg { width: 14px; height: 14px; color: var(--lv-teal-text); flex: 0 0 auto; }

/* Clickable tier markers on the budget slider (ported from vsound-two) */

.lv2-slider-wrap { position: relative; padding-bottom: 30px; }

.lv2-ticks { position: absolute; left: 0; right: 0; top: 0; height: 24px; pointer-events: none; z-index: 3; }

.lv2-tick {
    position: absolute; top: 0; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    min-width: 44px; /* touch target */
    background: none; border: 0; padding: 0; cursor: pointer; pointer-events: auto;
}

.lv2-tick-dot {
    width: 10px; height: 10px; margin-top: 7px; border-radius: 9999px;
    background: var(--lv-bg); border: 2px solid var(--lv-rule-md);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
    transition: border-color .15s ease, background .15s ease, transform .15s ease, box-shadow .15s ease;
}

.lv2-tick:hover .lv2-tick-dot,
.lv2-tick:focus-visible .lv2-tick-dot { transform: scale(1.35); border-color: var(--lv-teal); }

.lv2-tick.is-passed .lv2-tick-dot { background: var(--lv-teal); border-color: var(--lv-teal); }

.lv2-tick.is-current .lv2-tick-dot { background: var(--lv-teal); border-color: var(--lv-teal); box-shadow: 0 0 0 5px var(--lv-teal-bg); transform: scale(1.35); }

.lv2-tick:focus-visible { outline: none; }

.lv2-tick:focus-visible .lv2-tick-dot { box-shadow: 0 0 0 3px var(--lv-bg), 0 0 0 5px var(--lv-teal); }

.lv2-tick-cap {
    margin-top: 8px;
    font-family: var(--lv-font-mono); font-size: 11px; font-weight: 600;
    font-variant-numeric: tabular-nums; letter-spacing: .01em;
    color: var(--lv-muted); line-height: 1; white-space: nowrap;
    transition: color .15s ease;
}

.lv2-tick:hover .lv2-tick-cap,
.lv2-tick:focus-visible .lv2-tick-cap,
.lv2-tick.is-passed .lv2-tick-cap { color: var(--lv-teal-text); }

.lv2-tick.is-current .lv2-tick-cap { color: var(--lv-ink); }

/* Estimate tooltip ─ revealed on hover/focus, never relying on hover alone */

.lv2-tip {
    box-sizing: border-box;
    position: absolute; bottom: calc(100% + 12px); z-index: 40;
    display: flex; flex-direction: column; gap: 4px;
    min-width: 168px; padding: 12px 14px;
    background: var(--lv-bg); border: 1px solid var(--lv-rule-md);
    border-radius: var(--lv-r-md, 12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .14), 0 2px 6px rgba(0, 0, 0, .08);
    text-align: left; pointer-events: none;
    opacity: 0; transform: translateY(4px) scale(.97); transform-origin: bottom center;
    transition: opacity .18s ease, transform .18s ease;
}

.lv2-tip-center { left: 50%; margin-left: -84px; }

.lv2-tip-left   { left: -12px; }

.lv2-tip-right  { right: -12px; }

.lv2-tick:hover .lv2-tip,
.lv2-tick:focus-visible .lv2-tip { opacity: 1; transform: translateY(0) scale(1); }

/* downward arrow */

.lv2-tip::after {
    content: ''; position: absolute; top: 100%;
    width: 10px; height: 10px; margin-top: -6px;
    background: var(--lv-bg);
    border-right: 1px solid var(--lv-rule-md); border-bottom: 1px solid var(--lv-rule-md);
    transform: rotate(45deg);
}

.lv2-tip-center::after { left: 50%; margin-left: -5px; }

.lv2-tip-left::after   { left: 18px; }

.lv2-tip-right::after  { right: 18px; }

.lv2-tip-eyebrow {
    font-family: var(--lv-font-sans); font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em; color: var(--lv-teal-text);
}

.lv2-tip-price { font-size: 18px; font-weight: 700; color: var(--lv-ink); line-height: 1; margin-bottom: 2px; }

.lv2-tip-row {
    display: flex; align-items: center; gap: 7px;
    font-size: 12.5px; color: var(--lv-ink2); font-variant-numeric: tabular-nums;
}

.lv2-tip-row svg { width: 14px; height: 14px; color: var(--lv-teal-text); flex: 0 0 auto; }

.lv2-tip-row b { font-weight: 700; color: var(--lv-ink); }

@media (prefers-reduced-motion: reduce) {
    .lv2-tick-dot, .lv2-tick-cap, .lv2-tip { transition: none; }
    .lv2-tip { transform: none; }
    .lv2-tick:hover .lv2-tip, .lv2-tick:focus-visible .lv2-tip { transform: none; }
}

/* Phone grid (ported 1:1 from vsound-two campaign/phone-grid.css) */

.phone-grid {
    position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 50%, transparent 85%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 50%, transparent 85%);
}

.phone-icon {
    width: 36px; height: 60px; border-radius: 7px;
    border: 1.5px solid rgba(0,0,0,0.1); background: rgba(0,0,0,0.03);
    position: absolute; opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.34,1.56,0.64,1), transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

html.dark .phone-icon { border-color: rgba(255,255,255,0.18); background-color: rgba(255,255,255,0.04); box-shadow: 0 2px 8px rgba(0,0,0,0.3); }

.phone-icon.visible { opacity: 1; }

.phone-icon::before {
    content: ''; position: absolute; top: 3px; left: 50%; transform: translateX(-50%);
    width: 10px; height: 2.5px; border-radius: 2px; background: rgba(0,0,0,0.12);
}

html.dark .phone-icon::before { background: rgba(255,255,255,0.2); }

.phone-icon::after {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-35%, -50%);
    width: 0; height: 0; border-style: solid; border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent rgba(0,0,0,0.12);
}

html.dark .phone-icon::after { border-color: transparent transparent transparent rgba(255,255,255,0.25); }

.phone-icon.clr-0 { border-color: rgba(254,44,85,0.4);  background: rgba(254,44,85,0.08);  box-shadow: 0 2px 10px rgba(254,44,85,0.15); }

.phone-icon.clr-1 { border-color: rgba(168,85,247,0.35); background: rgba(168,85,247,0.07); box-shadow: 0 2px 10px rgba(168,85,247,0.12); }

.phone-icon.clr-2 { border-color: rgba(34,211,238,0.35); background: rgba(34,211,238,0.07); box-shadow: 0 2px 10px rgba(34,211,238,0.12); }

.phone-icon.clr-3 { border-color: rgba(52,211,153,0.35); background: rgba(52,211,153,0.07); box-shadow: 0 2px 10px rgba(52,211,153,0.12); }

.phone-icon.clr-4 { border-color: rgba(251,191,36,0.35); background: rgba(251,191,36,0.07); box-shadow: 0 2px 10px rgba(251,191,36,0.12); }

/* Phones carrying a real creator video cover (pricing-slider grid) */

.phone-icon.has-cover {
    background-size: cover; background-position: center; background-repeat: no-repeat;
    background-color: var(--lv-bg-alt); /* placeholder tint while the jpeg decodes */
}

.phone-icon.has-cover::before { display: none; }

/* hide speaker notch over the photo */

.phone-icon.has-cover::after {
    /* white play glyph reads as "video" on any thumbnail */
    border-color: transparent transparent transparent rgba(255,255,255,0.95);
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.55));
}

html.dark .phone-icon.has-cover::after { border-color: transparent transparent transparent rgba(255,255,255,0.95); }

.est-content-typical { text-shadow: 0 1px 8px rgba(255,255,255,0.85); }

html.dark .est-content-typical { text-shadow: 0 2px 12px rgba(6,6,10,0.8); }

@media (prefers-reduced-motion: reduce) { .phone-icon { transition: opacity 0.4s ease; } }

/* ── Final CTA: full-bleed scattered TikTok-video collage framing the copy ── */

.lv2-cta {
    position: relative; overflow: hidden;
    background: var(--lv-bg); border-top: 1px solid var(--lv-rule);
    min-height: clamp(640px, 88vh, 900px);
    display: flex; align-items: center; justify-content: center;
    padding: 88px 20px;
}

.lv2-cta-collage {
    position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
    /* Fade the collage toward the centre so the copy sits in a readable clearing. */
    -webkit-mask-image: radial-gradient(ellipse 62% 62% at 50% 49%, transparent 0%, transparent 34%, rgba(0,0,0,.5) 52%, #000 70%);
    mask-image: radial-gradient(ellipse 62% 62% at 50% 49%, transparent 0%, transparent 34%, rgba(0,0,0,.5) 52%, #000 70%);
}

.lv2-cta-phone {
    position: absolute; width: clamp(96px, 10vw, 152px); aspect-ratio: 9 / 16;
    transform: translate(-50%, -50%) rotate(var(--rot, 0deg)) scale(var(--scale, 1));
    border-radius: 15px; overflow: hidden; background: var(--lv-bg-alt);
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .45), 0 4px 10px -4px rgba(0, 0, 0, .2);
}

html.dark .lv2-cta-phone { border-color: rgba(255, 255, 255, .08); box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .7); }

.lv2-cta-phone-img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; display: block; }

.lv2-cta-phone::after {
    content: ''; position: absolute; inset: auto 0 0 0; height: 44%;
    background: linear-gradient(to top, rgba(0, 0, 0, .55), transparent);
}

.lv2-cta-phone-views {
    position: absolute; left: 8px; bottom: 7px; z-index: 1;
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 10px; font-weight: 600; color: #fff;
    font-variant-numeric: tabular-nums; text-shadow: 0 1px 3px rgba(0, 0, 0, .6);
}

.lv2-cta-phone-views::before {
    content: ''; width: 0; height: 0; border-style: solid;
    border-width: 4px 0 4px 6px; border-color: transparent transparent transparent #fff;
}

.lv2-cta-inner {
    position: relative; z-index: 2; width: 100%; max-width: 720px;
    margin: 0 auto; text-align: center;
}

.lv2-cta-inner::before {
    /* Soft readable halo behind the copy. */
    content: ''; position: absolute; z-index: -1; inset: -10% -14%;
    background: radial-gradient(58% 60% at 50% 50%, var(--lv-bg) 42%, transparent 74%);
}

.lv2-cta-title {
    font-size: clamp(30px, 4.4vw, 54px); font-weight: 700; letter-spacing: -.03em;
    line-height: 1.04; color: var(--lv-ink); margin-bottom: 18px;
}

.lv2-cta-sub {
    font-size: clamp(16px, 1.6vw, 19px); color: var(--lv-ink2);
    max-width: 40rem; margin: 0 auto 28px; line-height: 1.6;
}

.lv2-cta-avatars { display: flex; justify-content: center; margin-bottom: 30px; }

.lv2-cta-avatars img {
    width: 48px; height: 48px; border-radius: 9999px; -o-object-fit: cover; object-fit: cover;
    border: 3px solid var(--lv-bg); margin-left: -16px;
}

.lv2-cta-avatars img:first-child { margin-left: 0; }

.lv2-cta-actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }

@media (min-width: 640px) { .lv2-cta-actions { flex-direction: row; } }

@media (max-width: 640px) {
    .lv2-cta { min-height: 600px; padding: 64px 18px; }
    .lv2-cta-phone { width: clamp(76px, 27vw, 116px); }
}

/* ── Footer ──────────────────────────────────────────────────────── */

.lv2-footer { background: var(--lv-bg-alt); border-top: 1px solid var(--lv-rule); }

.lv2-foot-blurb { font-size: 14px; line-height: 1.65; color: var(--lv-ink2); max-width: 30ch; }

.lv2-foot-label { font-family: var(--lv-font-sans); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--lv-muted); margin-bottom: 14px; }

.lv2-foot-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--lv-ink2); padding: 6px 0; line-height: 1.2; transition: color .15s; border-radius: 3px; }

.lv2-foot-link:hover { color: var(--lv-teal-text); }

.lv2-foot-link:focus-visible { outline: 2px solid var(--lv-teal); outline-offset: 3px; }

.lv2-foot-link .lv2-foot-arrow { opacity: 0; transform: translateX(-3px); transition: opacity .15s, transform .15s; }

.lv2-foot-link:hover .lv2-foot-arrow { opacity: 1; transform: translateX(0); }

.lv2-soc { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--lv-rule); color: var(--lv-ink2); background: transparent; transition: color .18s, border-color .18s, background .18s, transform .18s; }

.lv2-soc:hover { color: var(--lv-teal-text); border-color: var(--lv-teal-border); background: var(--lv-teal-bg); transform: translateY(-2px); }

.lv2-soc:focus-visible { outline: 2px solid var(--lv-teal); outline-offset: 2px; }

.lv2-foot-bottom { border-top: 1px solid var(--lv-rule); }

.lv2-foot-meta { font-size: 12.5px; color: var(--lv-muted); }

.lv2-foot-meta a { color: var(--lv-muted); transition: color .15s; }

.lv2-foot-meta a:hover { color: var(--lv-teal-text); }

@media (prefers-reduced-motion: reduce) { .lv2-soc:hover { transform: none; } }

/* ── Misc ────────────────────────────────────────────────────────── */

.lv2 [x-cloak] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
    .lv2-arrow-path { stroke-dashoffset: 0 !important; -webkit-animation: none !important; animation: none !important; }
    .lv2-arrow-head { opacity: 1 !important; -webkit-animation: none !important; animation: none !important; }
}

/* ── Hero sound-link box — "How it works" card design language ──────── */

.lv2-soundbox {
    position: relative;
    padding: clamp(22px, 2.4vw, 30px);
    background: var(--lv-bg);
    border: 1px solid var(--lv-rule-md);
    border-radius: var(--lv-r-lg);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 18px 40px -32px rgba(0, 0, 0, .25);
    scroll-margin-top: 150px;
}

.lv2-sf { display: flex; flex-direction: column; gap: 16px; }

/* Header reuses the How-It-Works card classes (.hiw-num / .hiw-title / .hiw-desc) */

.lv2-sf-head .hiw-num { margin-bottom: 14px; }

.lv2-sf-head .hiw-title { font-size: 18px; }

.lv2-sf-head .hiw-desc { margin-bottom: 0; }

.lv2-sf-field { display: flex; flex-direction: column; gap: 7px; }

.lv2-sf-label {
    font-family: var(--lv-font-sans); font-size: 10px; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase; color: var(--lv-muted);
}

.lv2-sf-inputwrap { position: relative; }

.lv2-sf-icon {
    position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
    color: var(--lv-muted); pointer-events: none; transition: color .15s;
}

.lv2-sf-icon svg { width: 18px; height: 18px; display: block; }

.lv2-sf-input {
    width: 100%; padding: 12px 14px 12px 42px;
    font-size: 14px; color: var(--lv-ink);
    background: var(--lv-bg-alt); border: 1px solid var(--lv-rule-md);
    border-radius: var(--lv-r-md); outline: none; -webkit-appearance: none; -moz-appearance: none; appearance: none;
    transition: border-color .15s, box-shadow .15s, background .15s;
}

.lv2-sf-input::-moz-placeholder { color: var(--lv-muted); }

.lv2-sf-input:-ms-input-placeholder { color: var(--lv-muted); }

.lv2-sf-input::placeholder { color: var(--lv-muted); }

.lv2-sf-input:focus { background: var(--lv-bg); border-color: var(--lv-teal); box-shadow: 0 0 0 3px var(--lv-teal-bg); }

.lv2-sf-inputwrap:focus-within .lv2-sf-icon { color: var(--lv-teal-text); }

.lv2-sf-input.is-valid { border-color: var(--lv-teal); padding-right: 40px; }

.lv2-sf-input-check { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: var(--lv-teal-text); }

.lv2-sf-input-check svg { width: 18px; height: 18px; display: block; }

.lv2-sf-hint { min-height: 1.25rem; font-size: 12.5px; line-height: 1.4; }

.lv2-sf-hint-muted { color: var(--lv-muted); }

.lv2-sf-hint-ok, .lv2-sf-hint-warn, .lv2-sf-hint-err { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }

.lv2-sf-hint-ok { color: var(--lv-teal-text); }

.lv2-sf-hint-warn { color: #c2780c; }

.lv2-sf-hint-err { color: #d6455d; }

html.dark .lv2-sf-hint-warn { color: #f0b13c; }

html.dark .lv2-sf-hint-err { color: #f4768a; }

.lv2-sf-hint-ok svg, .lv2-sf-hint-warn svg, .lv2-sf-hint-err svg { width: 15px; height: 15px; flex: 0 0 auto; }

.lv2-sf-submit { width: 100%; padding: 13px 22px; font-size: 15px; }

.lv2-sf-submit:disabled { opacity: .55; cursor: default; }

.lv2-sf-spin { width: 18px; height: 18px; margin-right: 2px; -webkit-animation: lv2-spin .7s linear infinite; animation: lv2-spin .7s linear infinite; }

@-webkit-keyframes lv2-spin { to { transform: rotate(360deg); } }

@keyframes lv2-spin { to { transform: rotate(360deg); } }

.lv2-sf-foot { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; justify-content: space-between; }

.lv2-sf-foot-note { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--lv-muted); }

.lv2-sf-foot-note svg { width: 15px; height: 15px; color: var(--lv-teal-text); flex: 0 0 auto; }

.lv2-sf-guide { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: var(--lv-ink2); transition: color .15s; }

.lv2-sf-guide svg { width: 13px; height: 13px; }

.lv2-sf-guide:hover { color: var(--lv-teal-text); }

.lv2-sf-guide:focus-visible { outline: 2px solid var(--lv-teal); outline-offset: 2px; border-radius: 3px; }

/* ── Fractional star rating (review badge) ───────────────────────── */

.lv2-stars { position: relative; display: inline-flex; line-height: 0; flex: 0 0 auto; }

.lv2-stars-row { display: inline-flex; gap: 2px; }

.lv2-stars-row svg { width: var(--lv-star-size, 16px); height: var(--lv-star-size, 16px); display: block; flex: 0 0 auto; }

.lv2-stars-empty svg { fill: var(--lv-rule-md); }

.lv2-stars-fill { position: absolute; top: 0; left: 0; overflow: hidden; white-space: nowrap; }

.lv2-stars-fill svg { fill: #facc15; }

/* ── Hero right-column visual (big TikTok phone + notifications + glow) ── */

.lv2-hv { position: relative; height: 600px; width: 100%; }

/* Multi-green glow behind the phone */

.lv2-hv-glow {
    position: absolute; inset: -90px -60px -70px -110px; z-index: 0; pointer-events: none;
    background:
        radial-gradient(34% 38% at 40% 24%, rgba(0, 214, 150, .60), transparent 70%),
        radial-gradient(40% 42% at 22% 52%, rgba(160, 230, 70, .52), transparent 72%),
        radial-gradient(46% 48% at 40% 64%, rgba(0, 196, 168, .58), transparent 72%),
        radial-gradient(40% 40% at 64% 40%, rgba(70, 222, 178, .46), transparent 72%),
        radial-gradient(32% 34% at 70% 76%, rgba(120, 226, 90, .40), transparent 72%);
    filter: blur(48px);
}

html.dark .lv2-hv-glow { opacity: .95; }

/* Testimonials: light-grey heart + soft pink/teal/lime glow behind it */

.lv2-heart-bg {
    display: flex;
    align-items: center;        /* desktop: centrerat (nuvarande utseende) */
    justify-content: center;
    /* Ingen overflow:hidden — glöden ska få blöda ut i grannsektionerna.
       Sektionen är heller inte längre overflow-hidden (se blade). */
}

.lv2-heart-wrap {
    position: relative;
    display: inline-flex;
    width: min(94%, 1100px);
    max-height: 92%;
}

.lv2-heart-svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
}

.lv2-heart-glow {
    position: absolute;
    /* Negativ topp/botten => färgklicken flödar över sektionens kant och in i
       grannsektionerna. Sidoinset hålls positiv så ingen horisontell scroll uppstår. */
    inset: -40% 9%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(44% 42% at 45% 41%, rgba(247, 37, 133, .52), transparent 66%),  /* pink */
        radial-gradient(44% 42% at 58% 47%, rgba(0, 180, 162, .50), transparent 66%),   /* teal */
        radial-gradient(46% 44% at 50% 60%, rgba(181, 226, 46, .48), transparent 66%);  /* lime */
    filter: blur(72px);
}

html.dark .lv2-heart-glow { opacity: .85; }

/* Mobil: håll hjärtat uppe i toppen, bakom rubriken */

@media (max-width: 767px) {
    .lv2-heart-bg {
        align-items: flex-start;
        padding-top: 2.5rem;
    }
    .lv2-heart-wrap {
        width: min(135%, 560px);   /* lite större/synligt högst upp bakom rubriken */
    }
}

/* Sparkles + dashed flight path */

.lv2-hv-spark { position: absolute; z-index: 3; }

.lv2-hv-spark-1 { width: 26px; height: 26px; top: 38px; left: 74px; -webkit-animation: lv2-hv-twinkle 3s ease-in-out infinite; animation: lv2-hv-twinkle 3s ease-in-out infinite; }

.lv2-hv-spark-2 { width: 15px; height: 15px; top: 92px; left: 42px; -webkit-animation: lv2-hv-twinkle 3.6s ease-in-out infinite .6s; animation: lv2-hv-twinkle 3.6s ease-in-out infinite .6s; }

/* Phone */

.lv2-hv-phone {
    position: absolute; z-index: 2; top: 50%; right: 6px;
    width: 300px; height: 600px;
    transform: translateY(-50%) rotate(4deg);
    border-radius: 44px; background: #0b0b0c; padding: 7px;
    box-shadow: 0 50px 90px -34px rgba(0,0,0,.5), 0 16px 40px -16px rgba(0,0,0,.35);
}

.lv2-hv-screen {
    position: relative; width: 100%; height: 100%;
    border-radius: 38px; overflow: hidden;
    background-color: #1a1a1a; background-size: cover; background-position: center; color: #fff;
}

.lv2-hv-cover {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity .8s ease;
}

.lv2-hv-cover.is-on { opacity: 1; }

.lv2-hv-screen-shade {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,.28) 0%, transparent 22%, transparent 52%, rgba(0,0,0,.58) 100%);
}

/* Phone top bar */

.lv2-hv-top {
    position: absolute; top: 0; left: 0; right: 0; z-index: 3;
    display: flex; align-items: center; justify-content: center; gap: 16px;
    padding: 16px; font-size: 14px; font-weight: 600;
}

.lv2-hv-tab { color: rgba(255,255,255,.72); text-shadow: 0 1px 3px rgba(0,0,0,.45); }

.lv2-hv-tab.is-active { color: #fff; position: relative; }

.lv2-hv-tab.is-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: #fff; border-radius: 2px; }

.lv2-hv-search { position: absolute; right: 16px; top: 16px; width: 18px; height: 18px; color: #fff; filter: drop-shadow(0 1px 2px rgba(0,0,0,.45)); }

/* Action rail */

.lv2-hv-rail { position: absolute; right: 10px; bottom: 72px; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 15px; }

.lv2-hv-rail-item { display: flex; flex-direction: column; align-items: center; gap: 3px; color: #fff; }

.lv2-hv-rail-item svg { width: 27px; height: 27px; filter: drop-shadow(0 1px 3px rgba(0,0,0,.5)); }

.lv2-hv-rail-item span { font-size: 11px; font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,.55); }

.lv2-hv-rail-avatar { position: relative; width: 40px; height: 40px; border-radius: 9999px; border: 2px solid #fff; margin-bottom: 6px; }

.lv2-hv-rail-avatar img { width: 100%; height: 100%; border-radius: 9999px; -o-object-fit: cover; object-fit: cover; }

.lv2-hv-rail-plus { position: absolute; bottom: -9px; left: 50%; transform: translateX(-50%); width: 18px; height: 18px; border-radius: 9999px; background: #fe2c55; color: #fff; font-size: 13px; line-height: 1; font-weight: 700; display: flex; align-items: center; justify-content: center; }

.lv2-hv-rail-disc { width: 40px; height: 40px; border-radius: 9999px; overflow: hidden; border: 4px solid rgba(0,0,0,.4); flex: 0 0 auto; -webkit-animation: lv2-spin 6s linear infinite; animation: lv2-spin 6s linear infinite; }

.lv2-hv-rail-disc img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }

/* Phone bottom meta */

.lv2-hv-meta { position: absolute; left: 16px; right: 120px; bottom: 18px; z-index: 3; color: #fff; }

.lv2-hv-handle { font-size: 15px; font-weight: 700; text-shadow: 0 1px 4px rgba(0,0,0,.55); }

/* Bottom-right: "Your sound" label next to the spinning disc */

.lv2-hv-sound { position: absolute; right: 12px; bottom: 16px; z-index: 3; display: flex; align-items: center; gap: 8px; color: #fff; }

.lv2-hv-sound-label { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; text-shadow: 0 1px 4px rgba(0,0,0,.6); }

.lv2-hv-sound-label svg { width: 14px; height: 14px; }

/* Floating notifications */

/* Notification feed: notes pop in (grow + fade), stack with older ones faded,
   then pop out (collapse + fade). Ported from the old homepage feed. */

.lv2-hv-notes {
    position: absolute; z-index: 4; top: 62px; left: -22px; width: 252px;
    display: flex; flex-direction: column-reverse; align-items: stretch;
}

.lv2-hv-note {
    position: relative; display: flex; align-items: center; gap: 10px;
    width: 252px; padding: 11px 12px; overflow: hidden;
    background: var(--lv-bg); border: 1px solid var(--lv-rule); border-radius: 14px;
    box-shadow: 0 20px 44px -20px rgba(0,0,0,.38), 0 4px 12px -4px rgba(0,0,0,.16);
    transition: max-height .42s ease, opacity .42s ease, margin .42s ease, padding .42s ease, transform .42s ease;
}

.lv2-hv-note.is-in  { max-height: 130px; margin-bottom: 10px; transform: translateY(0) scale(1); }

.lv2-hv-note.is-out { max-height: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; transform: translateY(8px) scale(.94); border-top-width: 0; border-bottom-width: 0; pointer-events: none; }

.lv2-hv-note-av { width: 36px; height: 36px; border-radius: 9999px; -o-object-fit: cover; object-fit: cover; flex: 0 0 auto; }

.lv2-hv-note-txt { font-size: 12.5px; line-height: 1.35; color: var(--lv-ink2); }

.lv2-hv-note-txt b { color: var(--lv-ink); font-weight: 700; }

.lv2-hv-note-tt { flex: 0 0 auto; margin-left: auto; width: 22px; height: 22px; border-radius: 9999px; background: #0f0f0e; color: #fff; display: inline-flex; align-items: center; justify-content: center; }

html.dark .lv2-hv-note-tt { background: #000; border: 1px solid var(--lv-rule-md); }

.lv2-hv-note-tt svg { width: 13px; height: 13px; }

/* Active creators card */

.lv2-hv-creators {
    position: absolute; z-index: 4; left: 0; bottom: 64px; width: 138px; padding: 16px;
    background: var(--lv-bg); border: 1px solid var(--lv-rule); border-radius: 18px;
    box-shadow: 0 20px 44px -20px rgba(0,0,0,.38);
    -webkit-animation: lv2-hv-in .6s ease-out .3s both, lv2-hv-float 6.4s ease-in-out infinite 1s;
            animation: lv2-hv-in .6s ease-out .3s both, lv2-hv-float 6.4s ease-in-out infinite 1s;
}

.lv2-hv-creators-icon { display: inline-flex; width: 36px; height: 36px; border-radius: 10px; background: var(--lv-teal-bg); color: var(--lv-teal-text); align-items: center; justify-content: center; margin-bottom: 10px; }

.lv2-hv-creators-icon svg { width: 18px; height: 18px; }

.lv2-hv-creators-text { font-size: 13px; color: var(--lv-muted); line-height: 1.45; margin: 0; }

.lv2-hv-creators-text b { color: var(--lv-ink); font-weight: 700; }

@-webkit-keyframes lv2-hv-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

@keyframes lv2-hv-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

@-webkit-keyframes lv2-hv-in { from { opacity: 0; transform: translateY(12px) scale(.96); } to { opacity: 1; transform: none; } }

@keyframes lv2-hv-in { from { opacity: 0; transform: translateY(12px) scale(.96); } to { opacity: 1; transform: none; } }

@-webkit-keyframes lv2-hv-twinkle { 0%, 100% { opacity: .4; transform: scale(.85); } 50% { opacity: 1; transform: scale(1.12); } }

@keyframes lv2-hv-twinkle { 0%, 100% { opacity: .4; transform: scale(.85); } 50% { opacity: 1; transform: scale(1.12); } }

@media (prefers-reduced-motion: reduce) {
    .lv2-hv-note, .lv2-hv-creators, .lv2-hv-rail-disc, .lv2-hv-spark { -webkit-animation: none !important; animation: none !important; opacity: 1 !important; transform: none !important; }
    .lv2-hv-phone { transform: translateY(-50%) rotate(4deg) !important; }
}

/* ── Launch-campaign → scroll → teal "look here" glow ring ─────── */

.lv2-soundbox--flash::after {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    pointer-events: none;
    box-shadow: 0 0 0 0 rgba(0, 180, 162, 0);
    -webkit-animation: lv2-soundbox-flash 2s ease-in-out;
            animation: lv2-soundbox-flash 2s ease-in-out;
}

@-webkit-keyframes lv2-soundbox-flash {
    0%   { box-shadow: 0 0 0 0 rgba(0, 180, 162, 0); }
    14%  { box-shadow: 0 0 0 9px rgba(0, 180, 162, .55); }
    70%  { box-shadow: 0 0 0 9px rgba(0, 180, 162, .55); }
    100% { box-shadow: 0 0 0 0 rgba(0, 180, 162, 0); }
}

@keyframes lv2-soundbox-flash {
    0%   { box-shadow: 0 0 0 0 rgba(0, 180, 162, 0); }
    14%  { box-shadow: 0 0 0 9px rgba(0, 180, 162, .55); }
    70%  { box-shadow: 0 0 0 9px rgba(0, 180, 162, .55); }
    100% { box-shadow: 0 0 0 0 rgba(0, 180, 162, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .lv2-soundbox--flash::after { -webkit-animation: none; animation: none; box-shadow: 0 0 0 9px rgba(0, 180, 162, .5); }
}

/* Hero review pill → links to the Trustpilot page */

.lv2-reviewpill { cursor: pointer; background: rgba(255, 255, 255, 0.7); transition: border-color .15s, box-shadow .15s, transform .15s, background .15s; }

html.dark .lv2-reviewpill { background: rgba(255, 255, 255, 0.06); }

.lv2-reviewpill:hover { border-color: var(--lv-teal-border) !important; box-shadow: 0 6px 18px -8px rgba(0, 0, 0, .22); transform: translateY(-1px); }

html.dark .lv2-reviewpill:hover { background: rgba(255, 255, 255, 0.09); }

.lv2-reviewpill:focus-visible { outline: 2px solid var(--lv-teal); outline-offset: 2px; }

/* ── Artist testimonials — theme-adaptive band (light in light mode, dark in
   dark mode). Text sitting on the artist PHOTOS stays white-on-gradient inline;
   section/card/stat surfaces use tokens so they follow the theme. ── */

.lv2-tm {
    position: relative; overflow: hidden;
    background: radial-gradient(70% 55% at 82% -5%, var(--lv-teal-bg), transparent 60%), var(--lv-bg-alt);
    border-top: 1px solid var(--lv-rule);
}

.lv2-tm-eyebrow { color: var(--lv-teal-text); }

.lv2-tm-title { font-size: clamp(30px, 4.2vw, 52px); font-weight: 700; letter-spacing: -.03em; line-height: 1.02; color: var(--lv-ink); }

.lv2-tm-tag { font-size: 15px; color: var(--lv-muted); max-width: 320px; line-height: 1.6; }

.lv2-tm-stage { display: flex; gap: 16px; align-items: stretch; }

.lv2-tm-featured { flex: 1.9 1 0; min-width: 0; }

.lv2-tm-sides { display: flex; gap: 16px; flex: 1.5 1 0; min-width: 0; }

.lv2-tm-side { flex: 1 1 0; min-width: 0; }

.lv2-tm-card { background: var(--lv-bg); border: 1px solid var(--lv-rule); border-radius: 20px; overflow: hidden; }

.lv2-tm-photo { position: relative; background: #1a1a1a; background-size: cover; background-position: center; }

.lv2-tm-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; border-radius: 9999px; font-size: 12px; font-weight: 600; }

.lv2-tm-stat-ico, .lv2-tm-meta-ico { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; border-radius: 9999px; background: rgba(0,180,162,.14); color: var(--lv-teal); }

.lv2-tm-stat-ico { width: 38px; height: 38px; }

.lv2-tm-meta-ico { width: 26px; height: 26px; }

.lv2-tm-num { font-variant-numeric: tabular-nums; }

.lv2-tm-arrow { width: 44px; height: 44px; border-radius: 9999px; border: 1px solid var(--lv-rule-md); background: transparent; color: var(--lv-ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s ease; }

.lv2-tm-arrow:hover { background: var(--lv-bg); }

.lv2-tm-arrow:focus-visible { outline: 2px solid var(--lv-teal); outline-offset: 2px; }

.lv2-tm-dot { height: 8px; border-radius: 9999px; cursor: pointer; transition: width .2s ease, background .2s ease; }

.lv2-tm-trust { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }

.lv2-tm-trust > :nth-child(1) { justify-self: start; }

.lv2-tm-trust > :nth-child(3) { justify-self: end; }

@media (max-width: 1000px) {
    .lv2-tm-stage { flex-direction: column; }
    .lv2-tm-sides { flex: none; }
    .lv2-tm-trust { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 20px; }
    .lv2-tm-trust > :nth-child(1), .lv2-tm-trust > :nth-child(3) { justify-self: center; }
}

@media (max-width: 560px) {
    .lv2-tm-sides { flex-direction: column; }
}

/* Equal-height cards when the stage is a row: the featured card keeps a constant
   height across artists (no jump on carousel rotate) and the photo tops grow to fill. */

@media (min-width: 1001px) {
    .lv2-tm-featured { min-height: 500px; }
    .lv2-tm-featured > .lv2-tm-card { height: 100%; display: flex; flex-direction: column; }
    .lv2-tm-featured > .lv2-tm-card > div:first-child { flex: 1 1 auto; }
    .lv2-tm-side { display: flex; flex-direction: column; }
    .lv2-tm-side > div:first-child { flex: 1 1 auto; }
}

@media (prefers-reduced-motion: reduce) {
    .lv2-tm-dot, .lv2-tm-arrow { transition: none; }
}

/* ── FAQ accordion ─────────────────────────────────────────────── */

.lv2-faq-item { border-bottom: 1px solid var(--lv-rule); }

.lv2-faq-item:first-child { border-top: 1px solid var(--lv-rule); }

.lv2-faq-q {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    width: 100%; min-height: 48px; padding: 18px 4px;
    background: none; border: 0; cursor: pointer; text-align: left; border-radius: var(--lv-r-sm);
}

.lv2-faq-q:hover .lv2-faq-q-text { color: var(--lv-teal-text); }

.lv2-faq-q:focus-visible { outline: 2px solid var(--lv-teal); outline-offset: 2px; }

.lv2-faq-q-text { font-size: 16px; font-weight: 600; color: var(--lv-ink); transition: color .12s ease; }

.lv2-faq-chevron { width: 20px; height: 20px; color: var(--lv-teal-text); flex: 0 0 auto; transition: transform .2s ease; }

.lv2-faq-chevron.is-open { transform: rotate(180deg); }

.lv2-faq-a { font-size: 14.5px; color: var(--lv-ink2); line-height: 1.65; padding: 0 4px 20px; margin: 0; max-width: 42rem; }

@media (prefers-reduced-motion: reduce) {
    .lv2-faq-chevron, .lv2-faq-q-text { transition: none; }
}

