/* ============================================================
 * LANDING PAGE — Ledger theme variant. Tall scroll, dramatic gradients.
 * ============================================================ */
:root {
    --bg-deep: #060B17;
    --bg-mid:  #0B1220;
    --bg-soft: #131C2E;
    --gold:    #F5B544;
    --gold-2:  #D89821;
    --mint:    #34D399;
    --azure:   #4F8FFF;
    --rose:    #EF4444;
    --text:    #E8EEF7;
    --silver:  #B8C2D4;
    --muted:   #64748B;
    --numeric: #F5E6CC;
    --font-display: 'Fraunces', system-ui, serif;
    --font-ui: 'Inter', system-ui, sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.landing {
    font-family: var(--font-ui);
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.lp-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ============ NAV ============ */
.lp-nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(6, 11, 23, 0.7);
    backdrop-filter: blur(18px) saturate(150%);
    border-bottom: 1px solid rgba(245, 181, 68, 0.08);
}
.lp-nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; gap: 32px;
}
.lp-brand { display: flex; align-items: center; gap: 10px; }
.lp-brand-mark { width: 36px; height: 36px; border-radius: 8px; }
.lp-brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    background: linear-gradient(180deg, #fff, var(--numeric));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lp-nav-links { display: flex; gap: 32px; flex: 1; justify-content: center; }
.lp-nav-links a {
    font-size: 14px; font-weight: 500;
    color: var(--silver);
    transition: color .15s;
    position: relative;
}
.lp-nav-links a:hover { color: var(--gold); }
.lp-nav-cta { display: flex; gap: 10px; }
.lp-menu-toggle {
    display: none; background: transparent; border: 0;
    color: var(--silver); cursor: pointer;
}
.lp-menu-toggle svg { width: 24px; height: 24px; }

/* ============ BUTTONS ============ */
.lp-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-family: var(--font-ui);
    font-size: 14px; font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer; text-decoration: none;
    transition: transform .12s, filter .15s, background .15s, border-color .15s;
    white-space: nowrap;
}
.lp-btn svg { width: 16px; height: 16px; }
.lp-btn-primary {
    background: linear-gradient(180deg, var(--gold), var(--gold-2));
    color: #0B1220;
    box-shadow: 0 8px 24px -8px rgba(245, 181, 68, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.lp-btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.lp-btn-ghost {
    background: rgba(245, 181, 68, 0.06);
    border-color: rgba(245, 181, 68, 0.2);
    color: var(--gold);
}
.lp-btn-ghost:hover { background: rgba(245, 181, 68, 0.12); border-color: rgba(245, 181, 68, 0.4); }
.lp-btn-lg { padding: 14px 26px; font-size: 15px; }
.lp-btn-lg svg { width: 18px; height: 18px; }
.lp-btn-block { width: 100%; justify-content: center; }

/* ============ COMMON ============ */
.lp-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--gold);
    padding: 6px 14px;
    background: rgba(245, 181, 68, 0.08);
    border: 1px solid rgba(245, 181, 68, 0.18);
    border-radius: 999px;
    margin-bottom: 18px;
}
.lp-eyebrow.center { display: inline-flex; }
.lp-pulse {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
    animation: lp-pulse 2s infinite;
}
@keyframes lp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.lp-gold-grad {
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lp-h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.lp-sub {
    font-size: 17px;
    color: var(--silver);
    max-width: 640px;
    line-height: 1.6;
}
.lp-section { padding: 100px 0; position: relative; }
.lp-section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.lp-section-head .lp-sub { margin: 0 auto; }

/* ============ HERO ============ */
.lp-hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}
.lp-hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 800px 600px at 70% 30%, rgba(245, 181, 68, 0.18), transparent 60%),
        radial-gradient(ellipse 600px 500px at 20% 80%, rgba(79, 143, 255, 0.10), transparent 60%),
        linear-gradient(180deg, var(--bg-deep), var(--bg-mid));
    pointer-events: none;
}
.lp-hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(245, 181, 68, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 181, 68, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}
.lp-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}
.lp-hero-headline {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.5vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}
.lp-hero-sub {
    font-size: 18px;
    color: var(--silver);
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 540px;
}
.lp-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.lp-trust { display: flex; gap: 22px; flex-wrap: wrap; }
.lp-trust-item {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--muted); font-weight: 500;
}
.lp-trust-item svg { width: 14px; height: 14px; color: var(--mint); }

.lp-hero-art {
    position: relative;
    animation: lp-float 6s ease-in-out infinite;
}
@keyframes lp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.lp-hero-mock {
    width: 100%;
    border-radius: 16px;
    box-shadow:
        0 30px 90px -20px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(245, 181, 68, 0.18);
}
.lp-hero-glow {
    position: absolute; inset: -40px;
    background: radial-gradient(ellipse at center, rgba(245, 181, 68, 0.25), transparent 60%);
    z-index: -1;
    filter: blur(40px);
}
.lp-float {
    position: absolute;
    background: rgba(11, 18, 32, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 181, 68, 0.25);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 20px 50px -16px rgba(0, 0, 0, 0.6);
    animation: lp-float-card 5s ease-in-out infinite;
}
.lp-float-1 {
    top: -10px; left: -40px;
    animation-delay: 0s;
}
.lp-float-2 {
    bottom: 20px; right: -30px;
    animation-delay: -2.5s;
}
@keyframes lp-float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.lp-float-icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(245, 181, 68, 0.15);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
}
.lp-float-icon.mint { background: rgba(52, 211, 153, 0.15); color: var(--mint); }
.lp-float-icon svg { width: 18px; height: 18px; }
.lp-float-label { font-size: 10px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.lp-float-value { font-family: var(--font-mono); font-size: 14px; color: var(--numeric); font-weight: 700; }
.lp-up { color: var(--mint); font-size: 11px; margin-left: 6px; }

/* ============ MARQUEE ============ */
.lp-marquee-section {
    padding: 50px 0;
    border-top: 1px solid rgba(245, 181, 68, 0.06);
    border-bottom: 1px solid rgba(245, 181, 68, 0.06);
    background: rgba(11, 18, 32, 0.4);
}
.lp-marquee-title {
    text-align: center;
    color: var(--muted);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.18em;
    margin-bottom: 24px;
}
.lp-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.lp-marquee-track {
    display: inline-flex;
    gap: 60px;
    animation: lp-marquee 30s linear infinite;
    white-space: nowrap;
}
.lp-marquee-track span {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 600;
    color: var(--silver);
    opacity: 0.6;
}
@keyframes lp-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ STATS ============ */
.lp-stats { padding: 80px 0; }
.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.lp-stat {
    text-align: center;
    padding: 32px 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(245, 181, 68, 0.06), rgba(11, 18, 32, 0.4));
    border: 1px solid rgba(245, 181, 68, 0.12);
    border-top: 3px solid var(--gold);
}
.lp-stat-val {
    font-family: var(--font-mono);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    background: linear-gradient(180deg, var(--gold), var(--gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}
.lp-stat-label {
    font-size: 12px; font-weight: 700; color: var(--silver);
    text-transform: uppercase; letter-spacing: 0.12em;
}

/* ============ FEATURES ============ */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.lp-feature {
    padding: 32px 26px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(26, 36, 56, 0.6), rgba(19, 28, 46, 0.6));
    border: 1px solid rgba(245, 181, 68, 0.1);
    transition: transform .25s, border-color .25s, background .25s;
}
.lp-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 181, 68, 0.35);
    background: linear-gradient(180deg, rgba(245, 181, 68, 0.08), rgba(19, 28, 46, 0.8));
}
.lp-feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(245, 181, 68, 0.12);
    border: 1px solid rgba(245, 181, 68, 0.25);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.lp-feature-icon svg { width: 22px; height: 22px; }
.lp-feature h3 {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.lp-feature p { color: var(--silver); font-size: 14px; line-height: 1.6; }

/* ============ HOW IT WORKS ============ */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}
.lp-steps::before {
    content: '';
    position: absolute;
    top: 60px; left: 16.5%; right: 16.5%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 6px, transparent 6px, transparent 12px);
    opacity: 0.4;
    z-index: 0;
}
.lp-step {
    background: linear-gradient(180deg, rgba(26, 36, 56, 0.7), rgba(11, 18, 32, 0.7));
    border: 1px solid rgba(245, 181, 68, 0.1);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.lp-step-num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 32px; font-weight: 700;
    background: linear-gradient(180deg, var(--gold), var(--gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    border: 2px solid rgba(245, 181, 68, 0.3);
    width: 64px; height: 64px;
    line-height: 60px;
    border-radius: 50%;
    background-color: rgba(245, 181, 68, 0.08);
}
.lp-step h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 10px; }
.lp-step p { color: var(--silver); font-size: 14px; line-height: 1.6; }

/* ============ BIG SELL ============ */
.lp-bigsell { background: linear-gradient(180deg, transparent, rgba(245, 181, 68, 0.03), transparent); }
.lp-bigsell-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.lp-checklist { list-style: none; margin-top: 24px; }
.lp-checklist li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0;
    color: var(--text); font-size: 15px;
}
.lp-checklist svg {
    width: 18px; height: 18px;
    color: var(--mint);
    background: rgba(52, 211, 153, 0.12);
    border-radius: 50%;
    padding: 3px;
    flex-shrink: 0;
    margin-top: 2px;
}
.lp-arch-art {
    padding: 30px;
    background: linear-gradient(180deg, rgba(26, 36, 56, 0.6), rgba(11, 18, 32, 0.8));
    border: 1px solid rgba(245, 181, 68, 0.15);
    border-radius: 20px;
}

/* ============ PRICING ============ */
.lp-pricing { background: radial-gradient(ellipse 1200px 600px at center, rgba(245, 181, 68, 0.04), transparent 60%); }

/* Calculator */
.lp-calc {
    max-width: 720px; margin: 0 auto 50px;
    text-align: center;
    padding: 28px 32px;
    background: linear-gradient(180deg, rgba(19, 28, 46, 0.85), rgba(11, 18, 32, 0.85));
    border: 1px solid rgba(245, 181, 68, 0.18);
    border-radius: 18px;
}
.lp-calc-controls {
    display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 14px;
}
.lp-calc-control {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.lp-calc-control label {
    font-size: 11px; font-weight: 800;
    color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.14em;
}
.lp-calc-stepper {
    display: inline-flex; align-items: center; gap: 14px;
    background: rgba(11, 18, 32, 0.7);
    border: 1px solid rgba(245, 181, 68, 0.2);
    border-radius: 999px;
    padding: 6px 14px;
}
.lp-calc-stepper button {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(245, 181, 68, 0.3);
    background: rgba(245, 181, 68, 0.1);
    color: var(--gold);
    font-size: 18px; font-weight: 700;
    cursor: pointer;
    transition: background .15s, transform .12s;
}
.lp-calc-stepper button:hover { background: rgba(245, 181, 68, 0.25); transform: scale(1.06); }
.lp-calc-stepper button:active { transform: scale(0.94); }
.lp-calc-stepper span {
    font-family: var(--font-mono);
    font-size: 28px; font-weight: 700;
    color: var(--numeric);
    min-width: 50px; text-align: center;
}
.lp-calc-hint { font-size: 13px; color: var(--muted); }

/* Tiers grid */
.lp-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}
.lp-tier {
    padding: 36px 28px 30px;
    background: linear-gradient(180deg, rgba(26, 36, 56, 0.7), rgba(11, 18, 32, 0.7));
    border: 1px solid rgba(245, 181, 68, 0.12);
    border-radius: 18px;
    display: flex; flex-direction: column;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    position: relative;
}
.lp-tier:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 181, 68, 0.3);
}
.lp-tier.featured {
    background:
        linear-gradient(180deg, rgba(245, 181, 68, 0.08), rgba(11, 18, 32, 0.85));
    border: 1.5px solid rgba(245, 181, 68, 0.45);
    box-shadow: 0 30px 80px -20px rgba(245, 181, 68, 0.25);
    transform: translateY(-6px) scale(1.02);
}
.lp-tier.featured:hover { transform: translateY(-10px) scale(1.02); }
.lp-tier-flag {
    position: absolute; top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
    color: #0B1220;
    font-size: 10px; font-weight: 800;
    letter-spacing: 0.16em;
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(245, 181, 68, 0.4);
}
.lp-tier-name {
    font-family: var(--font-display);
    font-size: 26px; font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}
.lp-tier-tagline { color: var(--silver); font-size: 13px; margin-bottom: 20px; min-height: 36px; }
.lp-tier-figure {
    display: flex; align-items: baseline; gap: 4px;
    margin-bottom: 6px;
}
.lp-tier-currency { font-family: var(--font-mono); font-size: 20px; color: var(--silver); }
.lp-tier-amount {
    font-family: var(--font-display);
    font-size: 48px; font-weight: 700;
    background: linear-gradient(180deg, var(--gold), var(--gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    transition: color .2s;
}
.lp-tier-period { color: var(--muted); font-size: 14px; margin-left: 4px; }
.lp-tier-rate {
    font-family: var(--font-mono);
    font-size: 11px; color: var(--silver);
    padding: 10px 12px;
    background: rgba(245, 181, 68, 0.05);
    border: 1px dashed rgba(245, 181, 68, 0.2);
    border-radius: 8px;
    margin: 14px 0 22px;
    text-align: center;
}
.lp-tier-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}
.lp-tier-features li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 8px 0;
    font-size: 13.5px; color: var(--text);
    line-height: 1.5;
}
.lp-tier-features svg {
    width: 16px; height: 16px;
    color: var(--mint);
    flex-shrink: 0; margin-top: 3px;
}

/* Early-pay strip */
.lp-early-strip {
    display: flex; gap: 22px; align-items: center;
    max-width: 900px; margin: 50px auto 30px;
    padding: 24px 30px;
    background: linear-gradient(135deg, rgba(245, 181, 68, 0.15), rgba(245, 181, 68, 0.04));
    border: 1px solid rgba(245, 181, 68, 0.35);
    border-radius: 16px;
    position: relative; overflow: hidden;
}
.lp-early-strip::before {
    content: '';
    position: absolute; right: -30px; top: -30px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(245, 181, 68, 0.3), transparent 70%);
    pointer-events: none;
}
.lp-early-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: rgba(245, 181, 68, 0.25);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.lp-early-icon svg { width: 26px; height: 26px; }
.lp-early-meta { position: relative; }
.lp-early-meta h3 {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 700;
    margin-bottom: 4px;
}
.lp-early-meta p { color: var(--silver); font-size: 13.5px; }
.lp-early-meta b { color: var(--gold); font-family: var(--font-mono); font-weight: 700; }

.lp-pricing-fine {
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    max-width: 720px;
    margin: 30px auto 0;
    line-height: 1.7;
}

/* legacy: keep old classes alive if referenced elsewhere */
.lp-price-card-wrap {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 24px;
    max-width: 1000px; margin: 0 auto;
}
.lp-price-card {
    padding: 40px 36px;
    background:
        linear-gradient(180deg, rgba(245, 181, 68, 0.06), rgba(11, 18, 32, 0.8));
    border: 1px solid rgba(245, 181, 68, 0.3);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 30px 80px -20px rgba(245, 181, 68, 0.2);
}
.lp-price-badge {
    position: absolute; top: -12px; left: 36px;
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
    color: #0B1220;
    font-size: 10px; font-weight: 800;
    letter-spacing: 0.14em;
    padding: 6px 14px;
    border-radius: 999px;
}
.lp-price-figure {
    display: flex; align-items: baseline; gap: 4px;
    margin: 12px 0 4px;
}
.lp-price-currency { font-family: var(--font-mono); font-size: 28px; color: var(--silver); }
.lp-price-amount {
    font-family: var(--font-display);
    font-size: 72px; font-weight: 700;
    background: linear-gradient(180deg, var(--gold), var(--gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.lp-price-period { color: var(--muted); font-size: 16px; margin-left: 6px; }
.lp-price-tagline { color: var(--silver); margin-bottom: 24px; }
.lp-price-features { list-style: none; margin-bottom: 28px; }
.lp-price-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 0;
    font-size: 14px; color: var(--text);
    border-bottom: 1px solid rgba(245, 181, 68, 0.05);
}
.lp-price-features li:last-child { border-bottom: 0; }
.lp-price-features svg {
    width: 16px; height: 16px;
    color: var(--mint);
}
.lp-price-fine { text-align: center; font-size: 12px; color: var(--muted); margin-top: 14px; }

.lp-discount-card {
    padding: 36px 30px;
    background: linear-gradient(180deg, rgba(19, 28, 46, 0.85), rgba(11, 18, 32, 0.85));
    border: 1px solid rgba(245, 181, 68, 0.15);
    border-radius: 20px;
}
.lp-discount-headline {
    font-family: var(--font-display);
    font-size: 26px; font-weight: 700;
    margin-bottom: 8px;
}
.lp-discount-sub { color: var(--silver); font-size: 14px; margin-bottom: 24px; }
.lp-discount-tiers { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.lp-discount-tier {
    display: flex; align-items: center; gap: 18px;
    padding: 16px 18px;
    background: rgba(245, 181, 68, 0.04);
    border: 1px solid rgba(245, 181, 68, 0.12);
    border-radius: 12px;
}
.lp-discount-pct {
    font-family: var(--font-display);
    font-size: 42px; font-weight: 700;
    background: linear-gradient(180deg, var(--gold), var(--gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    width: 80px;
}
.lp-discount-pct small { display: block; font-size: 12px; font-weight: 800; opacity: 0.8; letter-spacing: 0.12em; }
.lp-discount-pct.mid { opacity: 0.85; }
.lp-discount-pct.low { opacity: 0.7; }
.lp-discount-line { font-size: 15px; color: var(--text); }
.lp-discount-meta { font-family: var(--font-mono); font-size: 12px; color: var(--silver); margin-top: 2px; }
.lp-discount-fine { font-size: 12px; color: var(--muted); }

/* ============ QUOTES ============ */
.lp-quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.lp-quote {
    padding: 32px 28px;
    background: linear-gradient(180deg, rgba(26, 36, 56, 0.7), rgba(11, 18, 32, 0.7));
    border: 1px solid rgba(245, 181, 68, 0.12);
    border-radius: 16px;
    display: flex; flex-direction: column; gap: 22px;
}
.lp-quote blockquote {
    font-size: 15px; line-height: 1.7;
    color: var(--text);
    font-style: italic;
    quotes: "“" "”";
}
.lp-quote blockquote::before { content: open-quote; color: var(--gold); font-size: 32px; line-height: 0; vertical-align: -10px; margin-right: 2px; }
.lp-quote figcaption { display: flex; align-items: center; gap: 12px; }
.lp-quote-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #0B1220;
    font-weight: 800; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
}
.lp-quote figcaption b { display: block; font-size: 14px; font-weight: 700; }
.lp-quote figcaption small { color: var(--muted); font-size: 12px; }

/* ============ FAQ ============ */
.lp-faq-wrap { max-width: 820px; }
.lp-faq-list { display: flex; flex-direction: column; gap: 12px; }
.lp-faq-item {
    background: rgba(19, 28, 46, 0.6);
    border: 1px solid rgba(245, 181, 68, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .15s;
}
.lp-faq-item[open] { border-color: rgba(245, 181, 68, 0.3); }
.lp-faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600; font-size: 16px;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
    content: '+';
    color: var(--gold);
    font-size: 22px; font-weight: 400;
    transition: transform .2s;
}
.lp-faq-item[open] summary::after { content: '−'; }
.lp-faq-body {
    padding: 4px 22px 20px;
    color: var(--silver);
    font-size: 14px;
    line-height: 1.7;
}

/* ============ FINAL CTA ============ */
.lp-finalcta-card {
    text-align: center;
    padding: 70px 40px;
    background:
        radial-gradient(ellipse at top, rgba(245, 181, 68, 0.2), transparent 70%),
        linear-gradient(180deg, rgba(26, 36, 56, 0.85), rgba(11, 18, 32, 0.85));
    border: 1px solid rgba(245, 181, 68, 0.3);
    border-radius: 24px;
    box-shadow: 0 40px 100px -20px rgba(245, 181, 68, 0.15);
    position: relative; overflow: hidden;
}
.lp-finalcta-card::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(245, 181, 68, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 181, 68, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black, transparent 70%);
}
.lp-finalcta-card > * { position: relative; }
.lp-finalcta-card p { color: var(--silver); font-size: 16px; max-width: 580px; margin: 16px auto 32px; }
.lp-finalcta-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.lp-footer {
    padding: 70px 0 40px;
    border-top: 1px solid rgba(245, 181, 68, 0.08);
    background: var(--bg-deep);
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.lp-footer h4 {
    font-size: 11px; font-weight: 800;
    color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.15em;
    margin-bottom: 14px;
}
.lp-footer a {
    display: block; color: var(--silver); font-size: 14px;
    padding: 4px 0; transition: color .12s;
}
.lp-footer a:hover { color: var(--gold); }
.lp-footer-tag { color: var(--muted); font-size: 13px; margin-top: 14px; }
.lp-footer-bottom {
    display: flex; justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(245, 181, 68, 0.06);
    color: var(--muted); font-size: 12px;
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .lp-nav-links, .lp-nav-cta .lp-btn-ghost { display: none; }
    .lp-menu-toggle { display: flex; }
    .lp-hero-grid, .lp-bigsell-grid, .lp-price-card-wrap { grid-template-columns: 1fr; gap: 40px; }
    .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-steps { grid-template-columns: 1fr; }
    .lp-steps::before { display: none; }
    .lp-quotes-grid { grid-template-columns: 1fr; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; }
    .lp-tiers-grid { grid-template-columns: 1fr; }
    .lp-tier.featured { transform: none; }
    .lp-tier.featured:hover { transform: translateY(-4px); }
    .lp-early-strip { flex-direction: column; text-align: center; gap: 14px; }
    .lp-section { padding: 70px 0; }
    .lp-float-1 { left: 0; top: -20px; }
    .lp-float-2 { right: 0; bottom: -10px; }
}
@media (max-width: 560px) {
    .lp-stats-grid { grid-template-columns: 1fr; }
    .lp-footer-grid { grid-template-columns: 1fr; }
    .lp-hero-ctas .lp-btn { width: 100%; justify-content: center; }
}
