/* ==========================================================================
   LEXURA Landing — self-contained (no lexura.css required)
   ========================================================================== */

:root {
    --primary: #C8A96A;
    --primary-hover: #B8924E;
    --primary-light: rgba(200, 169, 106, 0.12);

    --secondary: #070608;
    --secondary-elevated: #121014;

    --background: #F8FAFC;
    --surface: #FFFFFF;

    --text: #111827;
    --text-secondary: #6B7280;
    --text-on-dark: #FFFFFF;
    --text-muted-on-dark: rgba(255, 255, 255, 0.55);

    --border: #E5E7EB;
    --border-dark: rgba(255, 255, 255, 0.08);

    --radius-card: 12px;
    --radius-btn: 10px;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.12);
    --transition: 180ms ease;

    --lp-topbar-height: 68px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

.landing-body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    background: var(--secondary);
    color: var(--text-on-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.lp-nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-btn);
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #000;
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: var(--background);
}

.btn-lg {
    padding: 13px 26px;
    font-size: 15px;
    font-weight: 600;
}

.btn svg {
    width: 16px;
    height: 16px;
}

/* ── Layout ───────────────────────────────────────────────────────────── */

.lp-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Header / Topbar ──────────────────────────────────────────────────── */

.lp-header-shell {
    position: sticky;
    top: 0;
    z-index: 300;
}

.lp-site-header {
    background: rgba(7, 6, 8, 0.96);
    border-bottom: 1px solid var(--border-dark);
}

.lp-topbar-wrap {
    position: relative;
    z-index: 2;
}

.lp-topbar {
    position: relative;
}

.lp-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--lp-topbar-height);
    gap: 16px;
}

.lp-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.brand-logo-landing {
    max-height: 40px;
    width: auto;
    max-width: min(190px, 52vw);
    filter: drop-shadow(0 2px 14px rgba(200, 169, 106, 0.25));
}

.brand-logo-footer {
    max-height: 34px;
    width: auto;
    max-width: 170px;
    filter: drop-shadow(0 2px 12px rgba(200, 169, 106, 0.2));
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.lp-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted-on-dark);
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
}

.lp-nav-link:hover {
    color: var(--text-on-dark);
    background: rgba(255, 255, 255, 0.05);
}

.lp-nav-cta {
    margin-left: 10px;
    padding: 9px 18px !important;
    font-weight: 600;
    font-size: 14px;
}

.lp-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0 -6px 0 auto;
    border: none;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s;
}

.lp-nav-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.lp-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
}

.lp-nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--text-on-dark);
    transform-origin: center;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

body.lp-nav-open .lp-nav-toggle .lp-nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.lp-nav-open .lp-nav-toggle .lp-nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

body.lp-nav-open .lp-nav-toggle .lp-nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 769px) {
    .lp-header-shell {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: var(--lp-topbar-height);
        align-items: center;
        background: rgba(7, 6, 8, 0.96);
        border-bottom: 1px solid var(--border-dark);
    }

    .lp-site-header {
        grid-row: 1;
        grid-column: 1;
        background: none;
        border-bottom: none;
    }

    .lp-nav {
        grid-row: 1;
        grid-column: 1;
        justify-self: end;
        align-self: center;
        padding-right: max(24px, calc((100vw - 1140px) / 2 + 24px));
        z-index: 3;
    }
}

.lp-nav-backdrop {
    display: none;
}

/* ── Shared ───────────────────────────────────────────────────────────── */

.lp-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(200, 169, 106, 0.1);
    border: 1px solid rgba(200, 169, 106, 0.28);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lp-text-accent {
    color: var(--primary);
}

.lp-eyebrow {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-hover);
}

.lp-eyebrow--light {
    color: var(--primary);
}

.lp-section-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 52px;
}

.lp-section-head h2 {
    margin: 0 0 14px;
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.lp-section-head p {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* ── Hero ─────────────────────────────────────────────────────────────── */

.lp-hero {
    position: relative;
    padding: 64px 0 0;
    overflow: hidden;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lp-hero-glow {
    position: absolute;
    top: -20%;
    left: 30%;
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(200, 169, 106, 0.12) 0%, transparent 65%);
    animation: lpGlowPulse 8s ease-in-out infinite;
}

.lp-hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black 30%, transparent 90%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 90%);
}

.lp-hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: center;
    padding-bottom: 72px;
}

.lp-hero-copy {
    max-width: 520px;
}

.lp-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(2.1rem, 4.8vw, 3.4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--text-on-dark);
}

.lp-hero-lead {
    margin: 0 0 32px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted-on-dark);
}

.lp-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.lp-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lp-btn-hero svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-btn-hero:hover svg {
    transform: translateX(4px);
}

.lp-btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-on-dark);
    border-color: rgba(255, 255, 255, 0.14);
}

.lp-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text-on-dark);
}

.lp-account-picker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.lp-account-picker-label {
    font-size: 13px;
    color: var(--text-muted-on-dark);
    margin-right: 4px;
}

.lp-account-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-dark);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted-on-dark);
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.lp-account-chip svg {
    width: 14px;
    height: 14px;
}

.lp-account-chip:hover {
    border-color: rgba(200, 169, 106, 0.4);
    color: var(--primary);
    background: rgba(200, 169, 106, 0.06);
}

/* Mockup */
.lp-hero-visual {
    position: relative;
}

.lp-mockup {
    display: grid;
    grid-template-columns: 52px 1fr;
    border-radius: 16px;
    background: var(--secondary-elevated);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 40px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.lp-mockup-glow {
    position: absolute;
    inset: 20% -10% -20% -10%;
    background: radial-gradient(ellipse at center, rgba(200, 169, 106, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.lp-mockup-sidebar {
    padding: 16px 10px;
    background: rgba(0, 0, 0, 0.35);
    border-right: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.lp-mockup-logo {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--primary-light);
    margin-bottom: 8px;
}

.lp-mockup-nav-item {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.lp-mockup-nav-item--active {
    background: var(--primary-light);
    box-shadow: 0 0 0 1px rgba(200, 169, 106, 0.3);
}

.lp-mockup-main {
    padding: 20px;
}

.lp-mockup-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-on-dark);
}

.lp-mockup-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-light);
    border: 1px solid rgba(200, 169, 106, 0.3);
}

.lp-mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.lp-mockup-stat {
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
}

.lp-mockup-stat small {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted-on-dark);
    margin-bottom: 4px;
}

.lp-mockup-stat strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-on-dark);
    line-height: 1;
}

.lp-mockup-stat--accent {
    border-color: rgba(200, 169, 106, 0.25);
    background: rgba(200, 169, 106, 0.07);
}

.lp-mockup-stat--accent strong {
    color: var(--primary);
}

.lp-mockup-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-mockup-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border-dark);
    font-size: 12px;
    color: var(--text-muted-on-dark);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lp-mockup-row svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--primary);
}

/* ── Stats bar ────────────────────────────────────────────────────────── */

.lp-stats {
    position: relative;
    margin-top: -1px;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    background: rgba(255, 255, 255, 0.02);
}

.lp-stats-list {
    list-style: none;
    margin: 0;
    padding: 28px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.lp-stats-list strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #e8d5a8 50%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-stats-list li:hover strong {
    animation: lpShimmer 1.2s linear;
}

.lp-stats-list span {
    font-size: 13px;
    color: var(--text-muted-on-dark);
}

/* ── Value props ──────────────────────────────────────────────────────── */

.lp-value {
    padding: 96px 0;
    background: var(--background);
    color: var(--text);
}

.lp-value .lp-section-head p {
    color: var(--text-secondary);
}

.lp-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-value-card {
    padding: 32px 28px;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s, transform 0.2s;
}

.lp-value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.lp-value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-value-icon svg {
    width: 24px;
    height: 24px;
}

.lp-value-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.lp-value-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* ── Features ─────────────────────────────────────────────────────────── */

.lp-features {
    padding: 96px 0;
    background: #fff;
    color: var(--text);
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.lp-feature-card {
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--background);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-feature-card:hover {
    border-color: rgba(200, 169, 106, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.lp-feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-feature-icon svg {
    width: 20px;
    height: 20px;
}

.lp-feature-card h3 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
}

.lp-feature-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-secondary);
}

/* ── Steps ────────────────────────────────────────────────────────────── */

.lp-steps {
    padding: 96px 0;
    background: var(--background);
    color: var(--text);
}

.lp-steps-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.lp-steps-list::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.lp-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px;
}

.lp-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--primary);
    color: var(--primary-hover);
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 0 0 6px var(--background);
}

.lp-step h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 600;
}

.lp-step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ── Pricing ──────────────────────────────────────────────────────────── */

.lp-pricing {
    padding: 96px 0;
    background: var(--secondary);
}

.lp-pricing-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: center;
}

.lp-pricing-intro h2 {
    margin: 0 0 16px;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-on-dark);
}

.lp-pricing-intro > p {
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-muted-on-dark);
}

.lp-pricing-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-pricing-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
}

.lp-pricing-checklist svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.lp-plan {
    padding: 36px 32px;
    border-radius: 20px;
    background: var(--secondary-elevated);
    border: 1px solid rgba(200, 169, 106, 0.22);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45);
}

.lp-plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.lp-plan-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--primary);
}

.lp-plan-tag {
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
}

.lp-plan-price {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 20px;
}

.lp-plan-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.lp-plan-amount {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text-on-dark);
    line-height: 1;
}

.lp-plan-interval {
    font-size: 14px;
    color: var(--text-muted-on-dark);
    margin-bottom: 10px;
    margin-left: 4px;
}

.lp-plan-annual {
    margin-bottom: 28px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(200, 169, 106, 0.08);
    border: 1px solid rgba(200, 169, 106, 0.18);
}

.lp-plan-annual strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    color: var(--primary);
}

.lp-plan-annual span {
    font-size: 13px;
    color: var(--text-muted-on-dark);
}

.lp-plan-btn {
    width: 100%;
}

.lp-plan-note {
    margin: 14px 0 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted-on-dark);
}

/* ── FAQ ──────────────────────────────────────────────────────────────── */

.lp-faq {
    padding: 96px 0;
    background: #fff;
    color: var(--text);
}

.lp-faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.lp-faq-intro h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lp-faq-intro p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.lp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--background);
    overflow: hidden;
    transition: border-color 0.15s;
}

.lp-faq-item[open] {
    border-color: rgba(200, 169, 106, 0.4);
    background: var(--surface);
}

.lp-faq-item summary {
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
}

.lp-faq-item summary::-webkit-details-marker {
    display: none;
}

.lp-faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: transform 0.15s;
}

.lp-faq-item[open] summary::after {
    content: '−';
    color: var(--primary-hover);
}

.lp-faq-item p {
    margin: 0;
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* ── Final CTA ────────────────────────────────────────────────────────── */

.lp-cta {
    padding: 80px 0 96px;
    background: var(--background);
}

.lp-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 52px 56px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, #0f0d11 100%);
    border: 1px solid var(--border-dark);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
    position: relative;
    overflow: hidden;
}

.lp-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(200, 169, 106, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.lp-cta-copy {
    position: relative;
}

.lp-cta-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-on-dark);
}

.lp-cta-copy p {
    margin: 0;
    font-size: 15px;
    color: var(--text-muted-on-dark);
    line-height: 1.6;
}

.lp-cta-actions {
    position: relative;
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.lp-cta-secondary {
    background: transparent;
    color: var(--text-on-dark);
    border-color: rgba(255, 255, 255, 0.2);
}

.lp-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--text-on-dark);
}

/* ── Footer ───────────────────────────────────────────────────────────── */

.lp-footer {
    padding: 64px 0 0;
    border-top: 1px solid var(--border-dark);
    background: var(--secondary);
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.lp-footer-brand p {
    margin: 16px 0 0;
    max-width: 260px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted-on-dark);
}

.lp-footer-col h4 {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-on-dark);
}

.lp-footer-col a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-muted-on-dark);
    transition: color 0.15s;
}

.lp-footer-col a:hover {
    color: var(--primary);
}

.lp-footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-dark);
}

.lp-footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
}

/* ── Responsive ───────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .lp-hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-hero-copy {
        max-width: 100%;
        text-align: center;
    }

    .lp-hero-cta-row,
    .lp-account-picker {
        justify-content: center;
    }

    .lp-hero-visual {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

    .lp-value-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .lp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-pricing-layout,
    .lp-faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-pricing-intro {
        text-align: center;
    }

    .lp-pricing-checklist {
        align-items: center;
    }

    .lp-plan {
        max-width: 400px;
        margin: 0 auto;
    }

    .lp-faq-intro {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .lp-container {
        padding: 0 20px;
    }

    .lp-nav-toggle {
        display: flex;
        position: relative;
        z-index: 4;
    }

    .lp-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        top: var(--lp-topbar-height);
        z-index: 280;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    body.lp-nav-open .lp-nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .lp-nav {
        position: fixed;
        top: var(--lp-topbar-height);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 290;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 12px 20px;
        padding-bottom: max(24px, env(safe-area-inset-bottom));
        background: var(--secondary);
        border-top: 1px solid var(--border-dark);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0.25s, opacity 0.25s ease;
        pointer-events: none;
    }

    body.lp-nav-open .lp-nav {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .lp-nav-link {
        display: block;
        padding: 18px 4px;
        font-size: 18px;
        font-weight: 500;
        color: var(--text-on-dark);
        border-radius: 0;
        border-bottom: 1px solid var(--border-dark);
    }

    .lp-nav-link:hover {
        color: var(--primary);
        background: transparent;
    }

    .lp-nav-login {
        margin-top: 8px;
        border-top: none;
        border-bottom: 1px solid var(--border-dark);
        padding-top: 18px !important;
    }

    .lp-nav-cta {
        margin: 20px 0 0;
        padding: 16px 18px !important;
        text-align: center;
        justify-content: center;
        width: 100%;
        border-bottom: none;
    }

    .lp-hero {
        padding-top: 32px;
    }

    .lp-hero-layout {
        padding-bottom: 40px;
        gap: 32px;
    }

    .lp-hero-visual {
        order: -1;
        max-width: 100%;
    }

    .lp-hero h1 {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
    }

    .lp-hero-lead {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .lp-hero-cta-row {
        flex-direction: column;
    }

    .lp-hero-cta-row .btn {
        width: 100%;
    }

    .lp-account-picker {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-account-picker-label {
        margin-right: 0;
        text-align: center;
        margin-bottom: 4px;
    }

    .lp-account-chip {
        justify-content: center;
        padding: 10px 14px;
    }

    .lp-mockup-main {
        padding: 14px;
    }

    .lp-mockup-stat {
        padding: 8px;
    }

    .lp-mockup-stat small {
        font-size: 9px;
    }

    .lp-mockup-stat strong {
        font-size: 16px;
    }

    .lp-mockup-row {
        font-size: 10px;
        padding: 9px 10px;
        gap: 8px;
    }

    .lp-stats-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 24px 0;
    }

    .lp-value,
    .lp-features,
    .lp-steps,
    .lp-pricing,
    .lp-faq {
        padding: 64px 0;
    }

    .lp-section-head {
        margin-bottom: 36px;
    }

    .lp-section-head p {
        font-size: 16px;
    }

    .lp-steps-list {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 360px;
        margin: 0 auto;
    }

    .lp-steps-list::before {
        display: none;
    }

    .lp-features-grid {
        grid-template-columns: 1fr;
    }

    .lp-plan {
        padding: 28px 24px;
        max-width: 100%;
    }

    .lp-cta {
        padding: 56px 0 64px;
    }

    .lp-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }

    .lp-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .lp-cta-actions .btn {
        width: 100%;
    }

    .lp-footer {
        padding-top: 48px;
    }

    .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .lp-footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .lp-footer-brand p {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .lp-plan-amount {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    :root {
        --lp-topbar-height: 60px;
    }

    .lp-container {
        padding: 0 16px;
    }

    .lp-nav {
        padding: 8px 16px;
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }

    .lp-hero {
        padding-top: 24px;
    }

    .lp-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .lp-mockup {
        grid-template-columns: 40px 1fr;
        border-radius: 12px;
    }

    .lp-mockup-sidebar {
        padding: 12px 6px;
    }

    .lp-mockup-logo,
    .lp-mockup-nav-item {
        width: 24px;
        height: 24px;
    }

    .lp-stats-list strong {
        font-size: 1.5rem;
    }

    .lp-value,
    .lp-features,
    .lp-steps,
    .lp-pricing,
    .lp-faq {
        padding: 48px 0;
    }

    .lp-value-card {
        padding: 24px 20px;
    }

    .lp-faq-item summary {
        padding: 16px;
        font-size: 14px;
    }

    .lp-faq-item p {
        padding: 0 16px 16px;
    }

    .lp-plan-amount {
        font-size: 2.5rem;
    }

    .lp-plan-currency {
        font-size: 1.25rem;
        margin-bottom: 6px;
    }

    .lp-footer-bottom p {
        font-size: 11px;
        line-height: 1.5;
        padding: 0 8px;
    }
}

/* ── Animations ───────────────────────────────────────────────────────── */

@keyframes lpFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lpFadeDown {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes lpFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes lpScaleIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes lpGlowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes lpShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Hero entrance (page load) */
.lp-js .lp-hero-in {
    animation: lpFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--lp-hero-delay, 0ms);
}

.lp-js .lp-topbar-wrap.lp-hero-in {
    animation: lpFadeDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--lp-hero-delay, 0ms);
}

.lp-js .lp-mockup-row-in {
    opacity: 0;
    animation: lpFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--lp-row-delay, 800ms);
}

.lp-js .lp-mockup-float {
    animation: lpFloat 7s ease-in-out infinite;
    animation-delay: 1s;
}

.lp-js .lp-mockup-stat {
    animation: lpScaleIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lp-js .lp-mockup-stat:nth-child(1) { animation-delay: 0.7s; }
.lp-js .lp-mockup-stat:nth-child(2) { animation-delay: 0.82s; }
.lp-js .lp-mockup-stat:nth-child(3) { animation-delay: 0.94s; }

/* Scroll reveal */
.lp-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--lp-delay, 0ms);
}

.lp-reveal.lp-revealed {
    opacity: 1;
    transform: translateY(0);
}

.lp-reveal--scale {
    transform: translateY(24px) scale(0.96);
}

.lp-reveal--scale.lp-revealed {
    transform: translateY(0) scale(1);
}

/* Header scroll state */
.lp-header-shell {
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.lp-header-shell--scrolled .lp-site-header,
.lp-header-shell--scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.lp-header-shell--scrolled .lp-site-header {
    background: rgba(7, 6, 8, 0.98);
}

@media (min-width: 769px) {
    .lp-header-shell--scrolled {
        background: rgba(7, 6, 8, 0.98);
    }
}

/* Interactive hovers */
.lp-value-card,
.lp-feature-card,
.lp-step,
.lp-plan,
.lp-faq-item {
    transition:
        border-color 0.2s ease,
        box-shadow 0.25s ease,
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-value-card:hover,
.lp-feature-card:hover {
    transform: translateY(-4px);
}

.lp-value-icon,
.lp-feature-icon {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s;
}

.lp-value-card:hover .lp-value-icon,
.lp-feature-card:hover .lp-feature-icon {
    transform: scale(1.08) rotate(-3deg);
}

.lp-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.lp-step-num {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}

.lp-step:hover .lp-step-num {
    transform: scale(1.08);
    box-shadow: 0 0 0 6px var(--primary-light);
}

.lp-account-chip {
    transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s,
        transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-account-chip:hover {
    transform: translateY(-2px);
}

.lp-plan-btn {
    transition: transform 0.2s, box-shadow 0.2s;
}

.lp-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 169, 106, 0.35);
}

.lp-stats-list li {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-stats-list li:hover {
    transform: translateY(-4px);
}

.lp-faq-item summary {
    transition: color 0.2s;
}

.lp-faq-item[open] summary {
    color: var(--primary-hover);
}

.lp-cta-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-cta-card.lp-revealed:hover {
    transform: translateY(-2px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.28);
}

/* Reduced motion */
.lp-reduced-motion .lp-hero-in,
.lp-reduced-motion .lp-mockup-float,
.lp-reduced-motion .lp-mockup-row-in,
.lp-reduced-motion .lp-mockup-stat,
.lp-reduced-motion .lp-hero-glow {
    animation: none !important;
}

.lp-reduced-motion .lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

.lp-reduced-motion .lp-mockup-row-in {
    opacity: 1;
}
