/* ============================================================
   COACHMACHER.AI — LANDING PAGE (LIGHT THEME)
   Premium conversion-optimized design with depth + motion
   ============================================================ */

html { scroll-behavior: smooth; }

body {
    background: #FAFBFF;
    color: #0F172A;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before { display: none !important; }

.lp {
    position: relative;
    font-family: var(--font-sans, 'Manrope', system-ui, sans-serif);
    color: #0F172A;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.lp * { box-sizing: border-box; }

/* ---------- Background canvas (soft pastel glow) ---------- */
.lp-backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%,  rgba(124, 58, 237, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 30%, rgba(219, 39, 119, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 10% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #FAFBFF 0%, #F4F5FB 50%, #FAFBFF 100%);
}

.lp-backdrop::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.06) 1px, transparent 0);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 100%);
}

.lp-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.40;
    pointer-events: none;
}

.lp-blob.b1 { width: 480px; height: 480px; top: -100px;  left: -80px;  background: #A78BFA; animation: blobFloat 18s ease-in-out infinite; }
.lp-blob.b2 { width: 560px; height: 560px; top:  300px;  right:-120px; background: #F472B6; animation: blobFloat 22s ease-in-out infinite reverse; }
.lp-blob.b3 { width: 420px; height: 420px; bottom:-200px; left: 30%;   background: #93C5FD; animation: blobFloat 26s ease-in-out infinite; }

@keyframes blobFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33%     { transform: translate(40px, -60px) scale(1.1); }
    66%     { transform: translate(-30px, 40px) scale(0.95); }
}

/* ---------- Container ---------- */
.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ============================================================
   NAV
   ============================================================ */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(250, 251, 255, 0.75);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.lp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #0F172A;
    font-family: var(--font-sans, 'Manrope', system-ui, sans-serif);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.lp-logo img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.lp-nav-link {
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.lp-nav-link:hover { color: #0F172A; }

.lp-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #0F172A;
    border: 1px solid #0F172A;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.lp-nav-cta:hover {
    background: #1E293B;
    border-color: #1E293B;
    transform: translateY(-1px);
}

.lp-nav-login {
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 6px;
    transition: color 0.2s;
}

.lp-nav-login:hover { color: #0F172A; }

/* ============================================================
   HERO
   ============================================================ */
.lp-hero {
    padding: 80px 0 100px;
    position: relative;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #1E293B;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px -2px rgba(15, 23, 42, 0.06);
}

.lp-badge-dot {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7C3AED, #DB2777);
    display: inline-grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.lp-h1 {
    font-family: var(--font-sans, 'Manrope', system-ui, sans-serif);
    font-size: clamp(42px, 6.2vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin: 0 0 24px;
    color: #0F172A;
}

.lp-h1 .lp-grad {
    background: linear-gradient(135deg, #7C3AED 0%, #DB2777 50%, #F59E0B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradShift 6s ease infinite;
    font-weight: 800;
    font-style: normal;
}

@keyframes gradShift {
    0%,100% { background-position: 0% 50%; }
    50%     { background-position: 100% 50%; }
}

.lp-sub {
    font-size: clamp(16px, 1.5vw, 19px);
    color: #475569;
    margin: 0 0 36px;
    max-width: 560px;
    line-height: 1.55;
}

.lp-sub strong { color: #0F172A; font-weight: 700; }

/* Hero signup card */
.lp-signup-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 24px;
    box-shadow:
        0 30px 60px -20px rgba(124, 58, 237, 0.25),
        0 10px 30px -10px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    max-width: 520px;
    position: relative;
}

.lp-signup-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(219, 39, 119, 0.3) 50%, transparent 80%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.lp-signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.lp-input {
    width: 100%;
    padding: 14px 16px;
    background: #F8FAFC;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 12px;
    color: #0F172A;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s;
}

.lp-input::placeholder { color: #94A3B8; }

.lp-input:focus {
    border-color: #7C3AED;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
}

.lp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #7C3AED 0%, #DB2777 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    margin-top: 6px;
    letter-spacing: -0.01em;
    transition: all 0.2s;
    box-shadow:
        0 10px 30px -8px rgba(124, 58, 237, 0.55),
        0 0 0 1px rgba(255,255,255,0.08) inset;
    position: relative;
    overflow: hidden;
}

.lp-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%   { background-position: -100% 0; }
    100% { background-position:  200% 0; }
}

.lp-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 20px 40px -8px rgba(124, 58, 237, 0.7),
        0 0 0 1px rgba(255,255,255,0.14) inset;
}

.lp-cta:active { transform: translateY(0); }

.lp-cta:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.lp-cta-note {
    margin-top: 14px;
    font-size: 12.5px;
    color: #64748B;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lp-cta-note svg { color: #16A34A; }

.lp-form-error {
    display: none;
    margin-top: 10px;
    padding: 10px 14px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.35);
    border-radius: 10px;
    color: #B91C1C;
    font-size: 13px;
}

.lp-loggedin-box {
    text-align: center;
    padding: 12px 0;
}

.lp-loggedin-msg {
    font-size: 15px;
    color: #475569;
    margin-bottom: 18px;
    font-weight: 500;
}

.lp-cta-link {
    text-decoration: none;
}

.lp-signin-hint {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    text-align: center;
    font-size: 13px;
    color: #64748B;
    font-weight: 500;
}

.lp-signin-hint a {
    color: #7C3AED;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.lp-signin-hint a:hover {
    color: #DB2777;
    text-decoration: underline;
}

/* Hero visual */
.lp-hero-visual {
    position: relative;
    height: 560px;
}

.lp-stack-card {
    position: absolute;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow:
        0 20px 40px -12px rgba(15, 23, 42, 0.1),
        0 4px 12px -4px rgba(15, 23, 42, 0.06);
    white-space: nowrap;
    transform: translate(var(--tx,0), var(--ty,0)) rotate(var(--rot,0));
}

@keyframes coreFloat {
    0%,100% { transform: translate(-50%, 0) scale(1.12); }
    50%     { transform: translate(-50%, -14px) scale(1.14); }
}

.lp-stack-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 6px 16px -4px rgba(15, 23, 42, 0.25);
}

.lp-stack-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.lp-stack-name {
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
}

.lp-stack-detail {
    font-size: 12px;
    color: #64748B;
}

.lp-stack-card.replaced {
    opacity: 0.75;
}

.lp-stack-card.replaced .lp-stack-name {
    text-decoration: line-through;
    text-decoration-color: #EF4444;
    text-decoration-thickness: 2px;
}

.lp-stack-card.core {
    background: linear-gradient(135deg, #7C3AED 0%, #DB2777 100%);
    border-color: transparent;
    box-shadow:
        0 30px 60px -10px rgba(124, 58, 237, 0.5),
        0 10px 30px -8px rgba(219, 39, 119, 0.3);
    z-index: 5;
    padding: 20px 24px;
    animation: coreFloat 5s ease-in-out infinite;
}

.lp-stack-card.core .lp-stack-icon {
    background: rgba(255,255,255,0.95);
    color: #7C3AED;
}

.lp-stack-card.core .lp-stack-name { font-size: 16px; color: #fff; }
.lp-stack-card.core .lp-stack-detail { color: rgba(255,255,255,0.85); }

/* Positioning (competitors stay static — only core card floats) */
.lp-stack-1    { top:  20px; left:  50%;  --tx: -110%; --ty: 0; }
.lp-stack-2    { top:  90px; right: 10px; --rot: 2deg; }
.lp-stack-3    { top: 180px; left:  -10px; --rot: -3deg; }
.lp-stack-core { top: 240px; left: 50%; }
.lp-stack-4    { top: 350px; right: 0;    --rot: 2deg; }
.lp-stack-5    { top: 420px; left:  10px; --rot: -2deg; }
.lp-stack-6    { top: 490px; right: 40px; --rot: 1deg; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.lp-stats {
    padding: 40px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    margin-top: 40px;
}

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.lp-stat-num {
    font-family: var(--font-sans, 'Manrope', system-ui, sans-serif);
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #0F172A 0%, #475569 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-stat-label {
    font-size: 13px;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 8px;
    font-weight: 600;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.lp-section {
    padding: 100px 0;
    position: relative;
}

.lp-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #DB2777;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.lp-h2 {
    font-family: var(--font-sans, 'Manrope', system-ui, sans-serif);
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #0F172A;
    margin: 0 0 20px;
    max-width: 880px;
}

.lp-h2 em {
    font-style: normal;
    font-weight: 800;
    background: linear-gradient(135deg, #7C3AED, #DB2777);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-lede {
    font-size: 18px;
    color: #475569;
    max-width: 680px;
    margin: 0 0 56px;
    line-height: 1.55;
}

.lp-section-head.center {
    text-align: center;
}

.lp-section-head.center .lp-h2,
.lp-section-head.center .lp-lede { margin-left: auto; margin-right: auto; }

/* ============================================================
   REPLACES SECTION
   ============================================================ */
.lp-replaces {
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.04) 50%, transparent 100%);
}

.lp-replace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.lp-replace-card {
    position: relative;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 18px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 8px 24px -12px rgba(15, 23, 42, 0.06);
}

.lp-replace-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(124, 58, 237, 0.14), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.lp-replace-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.22);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 20px 40px -16px rgba(124, 58, 237, 0.25);
}

.lp-replace-card:hover::before { opacity: 1; }

.lp-replace-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.lp-tool-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #F1F5F9;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    color: #64748B;
    text-decoration: line-through;
    text-decoration-color: #EF4444;
    text-decoration-thickness: 1.5px;
}

.lp-tool-chip-logo {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: inline-grid;
    place-items: center;
    font-size: 9px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.lp-replace-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.lp-replace-feat svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #7C3AED;
}

.lp-replace-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
}

.lp-replace-cost {
    margin-top: 14px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 12.5px;
    color: #94A3B8;
    position: relative;
    z-index: 1;
}

.lp-replace-cost b {
    font-size: 14px;
    color: #DB2777;
    font-weight: 700;
}

/* ============================================================
   COMPARISON TABLE / SAVINGS
   ============================================================ */
.lp-savings {
    background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(219, 39, 119, 0.06), transparent 70%);
    position: relative;
}

.lp-savings-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: start;
}

.lp-compare-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 8px;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 20px 50px -20px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.lp-compare-head {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748B;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.lp-compare-body {
    padding: 4px;
}

.lp-compare-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-radius: 12px;
    transition: background 0.2s;
}

.lp-compare-row:hover { background: #F8FAFC; }

.lp-compare-row-tool {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.lp-compare-row-tool .lp-stack-icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
    border-radius: 8px;
}

.lp-compare-row-name {
    font-size: 14.5px;
    font-weight: 600;
    color: #0F172A;
}

.lp-compare-row-sub {
    font-size: 12.5px;
    color: #64748B;
    margin-top: 1px;
}

.lp-compare-row-price {
    font-size: 15px;
    font-weight: 700;
    color: #475569;
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.75);
    text-decoration-thickness: 2px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.lp-compare-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    margin-top: 4px;
}

.lp-compare-total-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #475569;
}

.lp-compare-total-val {
    font-family: var(--font-sans, 'Manrope', system-ui, sans-serif);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0F172A;
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.85);
    text-decoration-thickness: 2.5px;
}

/* Savings CTA panel */
.lp-savings-panel {
    position: sticky;
    top: 90px;
    padding: 36px;
    background:
        radial-gradient(ellipse 100% 80% at 50% 0%, rgba(124, 58, 237, 0.18), transparent 70%),
        #FFFFFF;
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 24px;
    box-shadow:
        0 40px 80px -20px rgba(124, 58, 237, 0.28),
        0 10px 30px -10px rgba(219, 39, 119, 0.15),
        0 1px 2px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

.lp-savings-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(244, 114, 182, 0.22), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
}

.lp-savings-panel-head {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #DB2777;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.lp-savings-big {
    font-family: var(--font-sans, 'Manrope', system-ui, sans-serif);
    font-size: clamp(56px, 7vw, 84px);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.045em;
    color: #0F172A;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #7C3AED 0%, #DB2777 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-savings-big sup {
    font-size: 0.45em;
    font-weight: 700;
    vertical-align: super;
}

.lp-savings-sub {
    font-size: 16px;
    color: #475569;
    margin-bottom: 28px;
    line-height: 1.45;
    position: relative;
    z-index: 1;
}

.lp-savings-vs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: #F8FAFC;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.lp-savings-vs-label {
    font-size: 12.5px;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-bottom: 3px;
}

.lp-savings-vs-price {
    font-family: var(--font-sans, 'Manrope', system-ui, sans-serif);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0F172A;
}

.lp-savings-vs-price.strike {
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.8);
    text-decoration-thickness: 2px;
    color: #475569;
}

.lp-savings-vs-price.highlight {
    background: linear-gradient(135deg, #7C3AED, #DB2777);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-savings-arrow {
    display: flex;
    justify-content: center;
    color: #DB2777;
    margin: -8px 0;
    position: relative;
    z-index: 1;
}

.lp-savings-yearly {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(22, 163, 74, 0.04));
    border: 1px solid rgba(22, 163, 74, 0.3);
    border-radius: 12px;
    color: #15803D;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* ============================================================
   FEATURE DEEP-DIVE GRID
   ============================================================ */
.lp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.lp-feat {
    padding: 28px;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 8px 24px -12px rgba(15, 23, 42, 0.06);
}

.lp-feat:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.22);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 24px 48px -16px rgba(124, 58, 237, 0.25);
}

.lp-feat::before {
    content: "";
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(124, 58, 237, 0.08) 12%, transparent 25%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    animation: spin 8s linear infinite;
}

.lp-feat:hover::before { opacity: 1; }

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

.lp-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #7C3AED, #DB2777);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 24px -8px rgba(124, 58, 237, 0.45);
}

.lp-feat-icon svg { width: 22px; height: 22px; }

.lp-feat h3 {
    font-family: var(--font-sans, 'Manrope', system-ui, sans-serif);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    color: #0F172A;
    position: relative;
    z-index: 1;
}

.lp-feat p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.55;
    margin: 0;
    position: relative;
    z-index: 1;
}

.lp-feat-tag {
    display: inline-block;
    margin-top: 14px;
    padding: 3px 10px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.22);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #7C3AED;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
    z-index: 1;
}

/* ============================================================
   PRICING
   ============================================================ */
.lp-pricing {
    position: relative;
}

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.lp-price-card {
    position: relative;
    padding: 36px 32px 32px;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 12px 32px -16px rgba(15, 23, 42, 0.1);
}

.lp-price-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 24px 48px -16px rgba(124, 58, 237, 0.2);
}

.lp-price-card.featured {
    background:
        radial-gradient(ellipse 100% 80% at 50% 0%, rgba(124, 58, 237, 0.12), transparent 60%),
        #FFFFFF;
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow:
        0 40px 80px -20px rgba(124, 58, 237, 0.3),
        0 10px 30px -10px rgba(219, 39, 119, 0.18),
        0 1px 2px rgba(15, 23, 42, 0.04);
    transform: scale(1.04);
}

.lp-price-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.lp-price-card.featured::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.7), rgba(219, 39, 119, 0.4) 50%, transparent 80%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.lp-price-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    background: linear-gradient(135deg, #7C3AED, #DB2777);
    color: #fff;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 10px 20px -4px rgba(124, 58, 237, 0.55);
}

.lp-price-name {
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #475569;
    margin-bottom: 14px;
}

.lp-price-main {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 8px;
}

.lp-price-num {
    font-family: var(--font-sans, 'Manrope', system-ui, sans-serif);
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.045em;
    color: #0F172A;
}

.lp-price-per {
    color: #64748B;
    font-size: 15px;
    padding-bottom: 10px;
    font-weight: 500;
}

.lp-price-tagline {
    font-size: 14px;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.5;
}

.lp-price-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 24px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #FFFFFF;
    color: #0F172A;
    font-family: inherit;
}

.lp-price-cta:hover {
    background: #F8FAFC;
    border-color: rgba(15, 23, 42, 0.22);
    transform: translateY(-1px);
}

.lp-price-card.featured .lp-price-cta {
    background: linear-gradient(135deg, #7C3AED 0%, #DB2777 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 25px -6px rgba(124, 58, 237, 0.55);
}

.lp-price-card.featured .lp-price-cta:hover {
    background: linear-gradient(135deg, #6D28D9 0%, #BE185D 100%);
    box-shadow: 0 15px 35px -6px rgba(124, 58, 237, 0.7);
}

.lp-price-feats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-price-feats li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #1E293B;
    line-height: 1.5;
}

.lp-price-feats li::before {
    content: "";
    flex-shrink: 0;
    margin-top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background-image:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='3.5 8.5 6.8 11.5 12.5 5'/></svg>"),
        linear-gradient(135deg, #7C3AED, #DB2777);
    background-size: 10px 10px, cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 2px 6px -1px rgba(124, 58, 237, 0.5);
}

.lp-price-feats li.lp-feats-head {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748B;
    padding: 6px 0 2px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    margin-top: 4px;
}

.lp-price-feats li.lp-feats-head::before {
    display: none;
}

.lp-price-foot {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 12.5px;
    color: #64748B;
    text-align: center;
}

.lp-price-foot b { color: #15803D; font-weight: 700; }

/* ============================================================
   FAQ
   ============================================================ */
.lp-faq {
    max-width: 820px;
    margin: 0 auto;
}

.lp-faq-item {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 6px 0;
}

.lp-faq-item:last-child { border-bottom: 0; }

.lp-faq-q {
    width: 100%;
    background: transparent;
    border: 0;
    text-align: left;
    padding: 22px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: -0.01em;
    transition: color 0.2s;
}

.lp-faq-q:hover { color: #DB2777; }

.lp-faq-q-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    background: #FFFFFF;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all 0.3s;
    color: #475569;
}

.lp-faq-item.open .lp-faq-q-icon {
    background: linear-gradient(135deg, #7C3AED, #DB2777);
    border-color: transparent;
    color: #fff;
    transform: rotate(45deg);
    box-shadow: 0 6px 16px -4px rgba(124, 58, 237, 0.5);
}

.lp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-faq-a-inner {
    padding: 0 8px 22px;
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
}

.lp-faq-a-inner b { color: #0F172A; }

.lp-faq-item.open .lp-faq-a {
    max-height: 400px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.lp-final {
    padding: 120px 0;
    position: relative;
}

.lp-final-card {
    position: relative;
    padding: 72px 56px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(167, 139, 250, 0.22), transparent 70%),
        radial-gradient(ellipse 60% 50% at 100% 100%, rgba(244, 114, 182, 0.18), transparent 60%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%);
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: 32px;
    text-align: center;
    overflow: hidden;
    box-shadow:
        0 40px 90px -20px rgba(124, 58, 237, 0.25),
        0 20px 40px -10px rgba(15, 23, 42, 0.08);
}

.lp-final-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.08) 1px, transparent 0);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 80%);
    opacity: 0.55;
}

.lp-final-card > * { position: relative; z-index: 1; }

.lp-final-card .lp-h2 {
    max-width: 720px;
    margin: 0 auto 16px;
}

.lp-final-card .lp-lede {
    max-width: 600px;
    margin: 0 auto 36px;
}

.lp-final-card .lp-signup-card {
    margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lp-foot {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    text-align: center;
    color: #64748B;
    font-size: 13.5px;
}

.lp-foot-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.lp-foot a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.lp-foot a:hover { color: #0F172A; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.lp-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.lp-reveal.lp-visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-reveal-d1 { transition-delay: 0.08s; }
.lp-reveal-d2 { transition-delay: 0.16s; }
.lp-reveal-d3 { transition-delay: 0.24s; }
.lp-reveal-d4 { transition-delay: 0.32s; }
.lp-reveal-d5 { transition-delay: 0.40s; }

/* ============================================================
   SUCCESS OVERLAY
   ============================================================ */
.lp-success {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: fadeIn 0.4s ease forwards;
}

.lp-success.active { display: flex; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lp-success-card {
    padding: 48px 40px;
    background: #FFFFFF;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    text-align: center;
    max-width: 440px;
    box-shadow:
        0 40px 100px -10px rgba(124, 58, 237, 0.35),
        0 10px 30px -8px rgba(15, 23, 42, 0.15);
    animation: popUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes popUp {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.lp-success-check {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22C55E, #10B981);
    display: grid;
    place-items: center;
    box-shadow: 0 20px 40px -8px rgba(34, 197, 94, 0.5);
    animation: bounce 1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes bounce {
    0%   { transform: scale(0); }
    80%  { transform: scale(1.12); }
    100% { transform: scale(1); }
}

.lp-success-check svg { width: 38px; height: 38px; color: #fff; }

.lp-success-title {
    font-family: var(--font-sans, 'Manrope', system-ui, sans-serif);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    color: #0F172A;
}

.lp-success-msg {
    font-size: 15px;
    color: #475569;
    margin-bottom: 22px;
    line-height: 1.6;
}

.lp-success-spinner {
    width: 28px;
    height: 28px;
    margin: 0 auto;
    border: 3px solid rgba(15, 23, 42, 0.08);
    border-top-color: #7C3AED;
    border-radius: 999px;
    animation: spin 0.8s linear infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
    .lp-hero { padding: 48px 0 64px; }
    .lp-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .lp-hero-visual { display: none; }

    .lp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }

    .lp-savings-grid { grid-template-columns: 1fr; gap: 32px; }
    .lp-savings-panel { position: static; }

    .lp-features { grid-template-columns: repeat(2, 1fr); }
    .lp-pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .lp-price-card.featured { transform: none; }
    .lp-price-card.featured:hover { transform: translateY(-4px); }

    .lp-nav-links { gap: 10px; }
    .lp-nav-link { display: none; }

    .lp-final-card { padding: 48px 24px; }
}

@media (max-width: 600px) {
    .lp-section { padding: 72px 0; }
    .lp-container { padding: 0 18px; }
    .lp-stats-grid { grid-template-columns: 1fr 1fr; }
    .lp-features { grid-template-columns: 1fr; }
    .lp-signup-grid { grid-template-columns: 1fr; }
    .lp-compare-head { padding: 14px 16px; font-size: 11px; }
    .lp-compare-row { padding: 12px 16px; }
    .lp-savings-panel { padding: 28px 22px; }
    .lp-final-card { padding: 40px 20px; border-radius: 20px; }
    .lp-final { padding: 60px 0; }
}
