/* ═══════════════════════════════════════════════════════════════
   STAKEBRICK LANDING PAGE — Modern Premium Design
   Inspired by getstake.com · Light + Airy · Gold Accent
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── Tokens ── */
:root {
    --lp-cream: #faf9f7;
    --lp-muted: #f5f7fb;
    --lp-white: #ffffff;
    --lp-ink: #0a1628;
    --lp-body: #5a6478;
    --lp-subtle: #8896a7;
    --lp-border: #e5e7eb;
    --lp-border-light: #f0f0f0;
    --lp-gold: #c9a84c;
    --lp-gold-dark: #b8963a;
    --lp-gold-light: rgba(201,168,76,.08);
    --lp-gold-border: rgba(201,168,76,.2);
    --lp-navy: #0a1628;
    --lp-navy-800: #132038;
    --lp-green: #059669;
    --lp-green-light: #ecfdf5;
    --lp-font: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    --lp-radius: 16px;
    --lp-radius-lg: 24px;
    --lp-radius-xl: 32px;
    --lp-max: 1240px;
}

html:has(body.lp) { scroll-behavior: smooth; }

body.lp {
    margin: 0;
    font-family: var(--lp-font);
    color: var(--lp-ink);
    background: var(--lp-white) !important;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.lp *, body.lp *::before, body.lp *::after {
    box-sizing: border-box;
}

/* ── Utilities ── */
.lp-container { max-width: var(--lp-max); margin: 0 auto; padding: 0 24px; }
@media (min-width:768px) { .lp-container { padding: 0 40px; } }
.lp-center { text-align: center; }

/* ── Section Shell ── */
.lp-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: var(--lp-white);
}
.lp-section--alt { background: var(--lp-muted); }
.lp-section--dark {
    background: #1a2e28;
    color: white;
    -webkit-font-smoothing: antialiased;
}
@media (min-width:768px) { .lp-section { padding: 100px 0; } }
@media (min-width:1024px) { .lp-section { padding: 120px 0; } }

/* ── Typography ── */
.lp-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--lp-gold);
    margin-bottom: 16px;
}
.lp-h2 {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--lp-ink);
    margin: 0 0 16px;
}
.lp-h2--white { color: white; }
.lp-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--lp-body);
    max-width: 540px;
    margin: 0 auto 0;
}
.lp-subtitle--light { color: rgba(255,255,255,.65); }
.lp-body-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--lp-body);
    margin-bottom: 24px;
}

/* ── Pill ── */
.lp-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--lp-gold-light);
    border: 1px solid var(--lp-gold-border);
    color: var(--lp-gold-dark);
    padding: 8px 22px;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: 24px;
}
.lp-pill--dark {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
}
.lp-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-gold);
    animation: lp-pulse 2s ease infinite;
}
@keyframes lp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.8); }
}

/* ── Buttons ── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--lp-font);
    font-size: .92rem;
    font-weight: 600;
    border-radius: 100px;
    padding: 14px 32px;
    text-decoration: none;
    transition: all .25s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
    border: none;
}
.lp-btn--primary {
    background: var(--lp-gold);
    color: var(--lp-navy);
}
.lp-btn--primary:hover {
    background: var(--lp-gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(201,168,76,.3);
}
.lp-btn--outline {
    background: transparent;
    color: var(--lp-ink);
    border: 1.5px solid var(--lp-border);
}
.lp-btn--outline:hover {
    background: rgba(0,0,0,.03);
    border-color: var(--lp-body);
}
.lp-btn--lg { padding: 18px 40px; font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════ */

.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all .35s cubic-bezier(.4,0,.2,1);
}
.lp-nav-inner {
    max-width: var(--lp-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
}
.lp-nav.scrolled {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--lp-border-light);
    box-shadow: 0 1px 12px rgba(0,0,0,.04);
}
.lp-nav.scrolled .lp-nav-inner { padding: 12px 40px; }

.lp-brand {
    font-family: var(--lp-font);
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--lp-ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lp-brand-icon { color: var(--lp-gold); font-size: 1rem; }

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.lp-nav-links a {
    font-size: .84rem;
    font-weight: 500;
    color: var(--lp-body);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all .2s;
}
.lp-nav-links a:hover {
    color: var(--lp-ink);
    background: rgba(0,0,0,.04);
}
.lp-nav-cta {
    background: var(--lp-gold) !important;
    color: var(--lp-navy) !important;
    font-weight: 600 !important;
    border-radius: 100px !important;
    padding: 8px 22px !important;
}
.lp-nav-cta:hover {
    background: var(--lp-gold-dark) !important;
}

.lp-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.lp-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--lp-ink);
    border-radius: 2px;
    transition: all .3s;
}
.lp-nav-open .lp-mobile-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.lp-nav-open .lp-mobile-toggle span:nth-child(2) { opacity: 0; }
.lp-nav-open .lp-mobile-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width:768px) {
    .lp-nav-inner { padding: 14px 20px; }
    .lp-mobile-toggle { display: flex; }
    .lp-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 12px 20px 20px;
        box-shadow: 0 16px 48px rgba(0,0,0,.1);
        border-top: 1px solid rgba(0,0,0,.06);
    }
    .lp-nav-open .lp-nav-links { display: flex; }
    .lp-nav-links a { padding: 12px 0; font-size: .95rem; }
    .lp-nav-cta { text-align: center; margin-top: 8px; border-radius: var(--lp-radius) !important; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */

.lp-hero {
    position: relative;
    min-height: 560px;
    height: calc(100vh - 56px);
    max-height: 960px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--lp-cream);
}

/* Aurora blobs */
.lp-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.lp-hero-blob--1 {
    width: 600px;
    height: 600px;
    top: -10%;
    left: -5%;
    background: radial-gradient(circle, rgba(201,168,76,.16) 0%, transparent 70%);
}
.lp-hero-blob--2 {
    width: 500px;
    height: 500px;
    bottom: -10%;
    right: -5%;
    background: radial-gradient(circle, rgba(56,189,248,.1) 0%, transparent 70%);
}
.lp-hero-blob--3 {
    width: 400px;
    height: 400px;
    top: 40%;
    left: 30%;
    background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
}

.lp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--lp-max);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.lp-hero-text h1 {
    font-family: var(--lp-font);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.03em;
    color: var(--lp-ink);
    margin: 0 0 20px;
}
.lp-accent { color: var(--lp-gold); }
.lp-hero-sub {
    font-size: 1.06rem;
    line-height: 1.7;
    color: var(--lp-body);
    margin: 0 0 32px;
    max-width: 480px;
}
.lp-hero-sub strong { color: var(--lp-ink); font-weight: 600; }
.lp-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero property cards — diagonal grid */
.lp-hero-cards {
    position: relative;
    perspective: 1000px;
}
.lp-hero-cards-grid {
    display: flex;
    gap: 16px;
    transform: rotate(-8deg);
    transform-origin: center center;
}
.lp-prop-card {
    width: 200px;
    flex-shrink: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px -6px rgba(0,0,0,.14);
    ring: 1px solid rgba(0,0,0,.04);
    opacity: 0;
    transform: translateY(30px) scale(.95);
    animation: lp-card-in .8s cubic-bezier(.16,1,.3,1) forwards;
    animation-delay: var(--delay, 0s);
}
.lp-prop-card:nth-child(1) { margin-top: -40px; }
.lp-prop-card:nth-child(2) { margin-top: 40px; }
.lp-prop-card:nth-child(3) { margin-top: -20px; }

@keyframes lp-card-in {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.lp-prop-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.lp-prop-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 50%);
}
.lp-prop-yield {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,.92);
    color: var(--lp-green);
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 2;
}
.lp-prop-body {
    padding: 14px 16px;
}
.lp-prop-body strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--lp-ink);
    line-height: 1.3;
    margin-bottom: 4px;
}
.lp-prop-body span {
    font-size: .76rem;
    color: var(--lp-subtle);
}

@media (max-width:1024px) {
    .lp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .lp-hero-cards { display: flex; justify-content: center; }
    .lp-hero-cards-grid { transform: rotate(-4deg); }
    .lp-hero { min-height: auto; height: auto; max-height: none; padding: 120px 0 60px; }
}
@media (max-width:640px) {
    .lp-hero-inner { padding: 0 20px; }
    .lp-hero-cards-grid { gap: 10px; }
    .lp-prop-card { width: 160px; }
    .lp-prop-img { height: 130px; }
}

/* ═══════════════════════════════════════════════════════════════
   PRESS STRIP
   ═══════════════════════════════════════════════════════════════ */

.lp-press {
    background: var(--lp-muted);
    padding: 32px 0;
    text-align: center;
    overflow: hidden;
}
.lp-press-label {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--lp-subtle);
    margin-bottom: 20px;
}
.lp-press-track {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.lp-press-logos {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: lp-ticker 30s linear infinite;
}
.lp-press-logos span {
    font-family: 'Georgia', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lp-ink);
    opacity: .25;
    white-space: nowrap;
    transition: opacity .3s;
}
.lp-press-logos span:hover { opacity: .5; }
@keyframes lp-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS — STEPS
   ═══════════════════════════════════════════════════════════════ */

.lp-steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 56px;
}
.lp-step-connector {
    display: none;
}
.lp-step-card {
    background: white;
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-border-light);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    opacity: 0;
    transform: translateY(24px);
}
.lp-step-card.lp-visible {
    opacity: 1;
    transform: translateY(0);
}
.lp-step-card:hover {
    border-color: rgba(201,168,76,.25);
    box-shadow: 0 16px 48px -8px rgba(201,168,76,.12);
    transform: translateY(-4px);
}
.lp-step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent, var(--lp-gold)), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.lp-step-card:hover::after { transform: scaleX(1); }

.lp-step-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--lp-gold), var(--lp-gold-dark));
    color: white;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.lp-step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lp-ink);
    margin: 0 0 10px;
}
.lp-step-card p {
    font-size: .9rem;
    line-height: 1.7;
    color: var(--lp-body);
    margin: 0 0 16px;
}
.lp-step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.lp-step-tags span {
    font-size: .68rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--lp-gold-light);
    border: 1px solid var(--lp-gold-border);
    color: var(--lp-gold-dark);
}

@media (max-width:768px) {
    .lp-steps { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   AI ENGINE — TWO COL
   ═══════════════════════════════════════════════════════════════ */

.lp-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}
.lp-two-col__text { padding-top: 20px; }
.lp-two-col__text .lp-h2 { text-align: left; }

.lp-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}
.lp-check {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.lp-check-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--lp-gold-light);
    color: var(--lp-gold);
    font-size: .8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.lp-check div strong {
    display: block;
    font-size: .92rem;
    font-weight: 700;
    color: var(--lp-ink);
    line-height: 1.3;
    margin-bottom: 3px;
}
.lp-check div span {
    font-size: .82rem;
    line-height: 1.6;
    color: var(--lp-body);
}

/* AI Score Card */
.lp-ai-card {
    background: white;
    border: 1px solid var(--lp-border-light);
    border-radius: var(--lp-radius-lg);
    padding: 28px;
    box-shadow: 0 8px 40px -8px rgba(0,0,0,.08);
    opacity: 0;
    transform: translateY(24px);
    transition: all .6s cubic-bezier(.4,0,.2,1);
}
.lp-ai-card.lp-visible { opacity: 1; transform: translateY(0); }

.lp-ai-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--lp-ink);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--lp-border-light);
}
.lp-ai-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-green);
    animation: lp-pulse 2s ease infinite;
}
.lp-ai-row {
    display: grid;
    grid-template-columns: 130px 1fr 32px;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}
.lp-ai-row span {
    font-size: .8rem;
    font-weight: 500;
    color: var(--lp-body);
}
.lp-ai-bar {
    height: 8px;
    background: var(--lp-muted);
    border-radius: 100px;
    overflow: hidden;
}
.lp-ai-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lp-gold), var(--lp-gold-dark));
    border-radius: 100px;
    transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.lp-ai-row strong {
    font-size: .8rem;
    font-weight: 700;
    color: var(--lp-ink);
    text-align: right;
}
.lp-ai-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--lp-border-light);
    font-size: .82rem;
    color: var(--lp-body);
    text-align: center;
}
.lp-ai-footer strong { color: var(--lp-gold); }

@media (max-width:900px) {
    .lp-two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════════════════════════════
   FEATURED PROPERTIES
   ═══════════════════════════════════════════════════════════════ */

.lp-properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.lp-property {
    background: white;
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-border-light);
    overflow: hidden;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    opacity: 0;
    transform: translateY(20px);
}
.lp-property.lp-visible { opacity: 1; transform: translateY(0); }
.lp-property:hover {
    border-color: var(--lp-border);
    box-shadow: 0 16px 48px -8px rgba(0,0,0,.1);
    transform: translateY(-4px);
}

.lp-property-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.lp-property-type {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    font-size: .7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    color: var(--lp-ink);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.lp-property-yield {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--lp-gold), var(--lp-gold-dark));
    color: white;
    font-size: .72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
}

.lp-property-body {
    padding: 20px 22px 22px;
}
.lp-property-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-ink);
    margin: 0 0 4px;
    line-height: 1.3;
}
.lp-property-loc {
    font-size: .82rem;
    color: var(--lp-subtle);
    margin: 0 0 16px;
}
.lp-property-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--lp-border-light);
    padding-top: 14px;
    margin-bottom: 14px;
}
.lp-property-stats div {
    text-align: center;
}
.lp-property-stats div:not(:last-child) {
    border-right: 1px solid var(--lp-border-light);
}
.lp-property-stats small {
    display: block;
    font-size: .66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--lp-subtle);
    margin-bottom: 4px;
}
.lp-property-stats strong {
    font-size: .95rem;
    font-weight: 700;
    color: var(--lp-ink);
}

.lp-property-progress span {
    display: block;
    font-size: .72rem;
    color: var(--lp-subtle);
    margin-top: 8px;
}
.lp-property-bar {
    height: 5px;
    background: var(--lp-muted);
    border-radius: 100px;
    overflow: hidden;
}
.lp-property-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lp-gold), var(--lp-gold-dark));
    border-radius: 100px;
}

@media (max-width:640px) {
    .lp-properties-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   EARN SECTION
   ═══════════════════════════════════════════════════════════════ */

.lp-earn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.lp-earn-card {
    background: white;
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-border-light);
    padding: 36px 30px;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    opacity: 0;
    transform: translateY(20px);
}
.lp-earn-card.lp-visible { opacity: 1; transform: translateY(0); }
.lp-earn-card:hover {
    border-color: rgba(201,168,76,.2);
    box-shadow: 0 16px 48px -8px rgba(201,168,76,.1);
    transform: translateY(-4px);
}

.lp-earn-icon {
    font-size: 1.6rem;
    margin-bottom: 18px;
}
.lp-earn-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-ink);
    margin: 0 0 10px;
}
.lp-earn-desc {
    font-size: .88rem;
    line-height: 1.7;
    color: var(--lp-body);
    margin: 0 0 24px;
}
.lp-earn-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.lp-earn-stats div {
    background: var(--lp-gold-light);
    border: 1px solid var(--lp-gold-border);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}
.lp-earn-stats strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--lp-gold-dark);
    margin-bottom: 2px;
}
.lp-earn-stats span {
    font-size: .68rem;
    font-weight: 500;
    color: var(--lp-body);
}

@media (max-width:900px) { .lp-earn-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   TRACK RECORD STATS
   ═══════════════════════════════════════════════════════════════ */

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.lp-stat {
    background: white;
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border-light);
    padding: 30px 24px;
    text-align: center;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    opacity: 0;
    transform: translateY(16px);
}
.lp-stat.lp-visible { opacity: 1; transform: translateY(0); }
.lp-stat:hover {
    border-color: var(--lp-border);
    box-shadow: 0 8px 30px -6px rgba(0,0,0,.06);
}

.lp-stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--lp-gold-dark);
    letter-spacing: -.02em;
    margin-bottom: 6px;
}
.lp-stat-label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--lp-ink);
    margin-bottom: 4px;
}
.lp-stat-sub {
    display: block;
    font-size: .72rem;
    color: var(--lp-subtle);
}

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

/* ═══════════════════════════════════════════════════════════════
   CALCULATOR
   ═══════════════════════════════════════════════════════════════ */

.lp-calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 20px;
}
.lp-calc-text .lp-h2 { text-align: left; }

.lp-calc-drivers {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}
.lp-calc-drivers > div {
    display: flex;
    gap: 14px;
    align-items: center;
}
.lp-calc-driver-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--lp-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.lp-calc-drivers strong {
    display: block;
    font-size: .86rem;
    font-weight: 700;
    color: var(--lp-ink);
}
.lp-calc-drivers span {
    font-size: .76rem;
    color: var(--lp-body);
}

.lp-calc-card {
    background: white;
    border: 1px solid var(--lp-border-light);
    border-radius: var(--lp-radius-lg);
    padding: 32px;
    box-shadow: 0 8px 40px -8px rgba(0,0,0,.08);
}
.lp-calc-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lp-ink);
    margin: 0 0 24px;
}

.lp-calc-slider-wrap label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: var(--lp-subtle);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}
.lp-calc-amount {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--lp-ink);
    margin-bottom: 24px;
}

.lp-calc-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 100px;
    background: linear-gradient(to right, var(--lp-gold) 0%, var(--lp-gold) var(--pct, 5%), var(--lp-muted) var(--pct, 5%), var(--lp-muted) 100%);
    outline: none;
    margin-bottom: 8px;
}
.lp-calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--lp-gold);
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    cursor: pointer;
    transition: transform .15s;
}
.lp-calc-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.lp-calc-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--lp-gold);
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    cursor: pointer;
}

.lp-calc-results { margin: 24px 0; }
.lp-calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--lp-border-light);
}
.lp-calc-row span {
    font-size: .88rem;
    color: var(--lp-body);
}
.lp-calc-row strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-ink);
}
.lp-calc-row--highlight {
    border-bottom: none;
    background: var(--lp-gold-light);
    border-radius: 12px;
    padding: 16px;
    margin-top: 8px;
}
.lp-calc-row--highlight strong { color: var(--lp-gold-dark); font-size: 1.15rem; }

.lp-calc-note {
    font-size: .68rem;
    color: var(--lp-subtle);
    text-align: center;
    margin: 16px 0;
}

@media (max-width:900px) {
    .lp-calc-wrapper { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   REGULATION / TRUST (DARK)
   ═══════════════════════════════════════════════════════════════ */

.lp-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.lp-trust-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--lp-radius);
    padding: 28px 24px;
    backdrop-filter: blur(12px);
    transition: all .35s;
    opacity: 0;
    transform: translateY(16px);
}
.lp-trust-card.lp-visible { opacity: 1; transform: translateY(0); }
.lp-trust-card:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.2);
    transform: translateY(-4px);
}

.lp-trust-icon {
    font-size: 1.5rem;
    margin-bottom: 14px;
}
.lp-trust-card h4 {
    font-size: .95rem;
    font-weight: 700;
    color: white;
    margin: 0 0 8px;
}
.lp-trust-card p {
    font-size: .82rem;
    line-height: 1.65;
    color: rgba(255,255,255,.6);
    margin: 0;
}

@media (max-width:768px) { .lp-trust-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */

.lp-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.lp-testimonial {
    background: white;
    border: 1px solid var(--lp-border-light);
    border-radius: var(--lp-radius-lg);
    padding: 32px 28px;
    transition: all .35s;
    opacity: 0;
    transform: translateY(16px);
}
.lp-testimonial.lp-visible { opacity: 1; transform: translateY(0); }
.lp-testimonial:hover {
    border-color: var(--lp-border);
    box-shadow: 0 12px 40px -8px rgba(0,0,0,.06);
}

.lp-testimonial-stars {
    color: var(--lp-gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.lp-testimonial p {
    font-size: .9rem;
    line-height: 1.75;
    color: var(--lp-body);
    font-style: italic;
    margin: 0 0 20px;
}
.lp-testimonial-author {
    display: flex;
    gap: 12px;
    align-items: center;
}
.lp-testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-gold-light), rgba(201,168,76,.15));
    border: 2px solid var(--lp-gold-border);
    color: var(--lp-gold-dark);
    font-size: .72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lp-testimonial-author strong {
    display: block;
    font-size: .86rem;
    font-weight: 700;
    color: var(--lp-ink);
}
.lp-testimonial-author span {
    font-size: .72rem;
    color: var(--lp-subtle);
}

@media (max-width:900px) { .lp-testimonials { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */

.lp-faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-faq {
    background: white;
    border: 1px solid var(--lp-border-light);
    border-radius: var(--lp-radius);
    overflow: hidden;
    transition: all .3s;
    opacity: 0;
    transform: translateY(12px);
}
.lp-faq.lp-visible { opacity: 1; transform: translateY(0); }
.lp-faq[open] {
    border-color: var(--lp-border);
    box-shadow: 0 4px 20px -4px rgba(0,0,0,.06);
}

.lp-faq summary {
    padding: 20px 24px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--lp-ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .2s;
}
.lp-faq summary:hover { background: var(--lp-muted); }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--lp-subtle);
    transition: transform .3s;
}
.lp-faq[open] summary::after {
    content: '−';
}

.lp-faq p {
    padding: 0 24px 20px;
    font-size: .88rem;
    line-height: 1.75;
    color: var(--lp-body);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════════ */

.lp-cta {
    background: linear-gradient(135deg, var(--lp-navy) 0%, var(--lp-navy-800) 100%);
    padding: 100px 24px;
    text-align: center;
}
.lp-cta-inner { max-width: 640px; margin: 0 auto; }
.lp-cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.12;
    letter-spacing: -.02em;
    margin: 0 0 16px;
}
.lp-cta p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,.65);
    margin: 0 0 32px;
}
.lp-cta .lp-hero-btns { justify-content: center; }
.lp-cta-note {
    display: block;
    margin-top: 20px;
    font-size: .76rem;
    color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.lp-footer {
    background: var(--lp-navy);
    padding: 64px 24px 0;
}
.lp-footer-inner {
    max-width: var(--lp-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.lp-footer-col--brand p {
    font-size: .82rem;
    line-height: 1.7;
    color: rgba(255,255,255,.45);
    margin-top: 12px;
    max-width: 280px;
}
.lp-footer-col--brand .lp-brand { color: white; }

.lp-footer-col h5 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.35);
    margin: 0 0 16px;
}
.lp-footer-col a {
    display: block;
    font-size: .84rem;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    padding: 4px 0;
    transition: color .2s;
}
.lp-footer-col a:hover { color: white; }

.lp-footer-bottom {
    max-width: var(--lp-max);
    margin: 0 auto;
    padding: 24px 0;
}
.lp-footer-bottom p {
    font-size: .72rem;
    line-height: 1.7;
    color: rgba(255,255,255,.3);
    margin: 0;
}
.lp-footer-bottom a { color: rgba(255,255,255,.5); text-decoration: underline; }

@media (max-width:768px) {
    .lp-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width:480px) {
    .lp-footer-inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS — Scroll Reveal
   ═══════════════════════════════════════════════════════════════ */

.lp-step-card:nth-child(1) { transition-delay: 0s; }
.lp-step-card:nth-child(2) { transition-delay: .1s; }
.lp-step-card:nth-child(3) { transition-delay: .2s; }

.lp-earn-card:nth-child(1) { transition-delay: 0s; }
.lp-earn-card:nth-child(2) { transition-delay: .1s; }
.lp-earn-card:nth-child(3) { transition-delay: .2s; }

.lp-stat:nth-child(1) { transition-delay: 0s; }
.lp-stat:nth-child(2) { transition-delay: .06s; }
.lp-stat:nth-child(3) { transition-delay: .12s; }
.lp-stat:nth-child(4) { transition-delay: .18s; }
.lp-stat:nth-child(5) { transition-delay: .24s; }
.lp-stat:nth-child(6) { transition-delay: .3s; }

.lp-trust-card:nth-child(1) { transition-delay: 0s; }
.lp-trust-card:nth-child(2) { transition-delay: .08s; }
.lp-trust-card:nth-child(3) { transition-delay: .16s; }
.lp-trust-card:nth-child(4) { transition-delay: .24s; }
.lp-trust-card:nth-child(5) { transition-delay: .32s; }
.lp-trust-card:nth-child(6) { transition-delay: .4s; }

.lp-testimonial:nth-child(1) { transition-delay: 0s; }
.lp-testimonial:nth-child(2) { transition-delay: .1s; }
.lp-testimonial:nth-child(3) { transition-delay: .2s; }

.lp-property:nth-child(1) { transition-delay: 0s; }
.lp-property:nth-child(2) { transition-delay: .08s; }
.lp-property:nth-child(3) { transition-delay: .16s; }
.lp-property:nth-child(4) { transition-delay: .24s; }
.lp-property:nth-child(5) { transition-delay: .32s; }
.lp-property:nth-child(6) { transition-delay: .4s; }
