:root {
    --lp-primary: #2563eb;
    --lp-primary-dark: #1d4ed8;
    --lp-secondary: #1e293b;
    --lp-accent: #22c55e;
    --lp-heading: #0f172a;
    --lp-body: #475569;
    --lp-muted: #94a3b8;
    --lp-surface: #ffffff;
    --lp-surface-alt: #f8fafc;
    --lp-border: rgba(148, 163, 184, 0.18);
    --lp-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    --lp-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
    --lp-section-space: 96px;
}

body.feature-page {
    font-family: sans-serif;
    color: var(--lp-body);
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.feature-page h1,
body.feature-page h2,
body.feature-page h3,
body.feature-page h4,
body.feature-page h5,
body.feature-page h6 {
    color: var(--lp-heading);
    font-weight: 700;
    letter-spacing: -0.03em;
}

body.feature-page p {
    color: var(--lp-body);
    line-height: 1.75;
}

.feature-page main {
    position: relative;
}

.section-space {
    padding: var(--lp-section-space) 0;
}

.section-space.section-alt {
    background: var(--lp-surface-alt);
}

.feature-breadcrumbs {
    margin-bottom: 1rem;
}

.feature-breadcrumbs .breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.feature-breadcrumbs a {
    color: var(--lp-muted);
    text-decoration: none;
}

.feature-breadcrumbs .breadcrumb-item,
.feature-breadcrumbs .breadcrumb-item a {
    font-size: 14px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--lp-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.feature-tag::before {
    content: none;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    margin: 18px 0 14px;
}

.section-heading p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--lp-body);
    margin: 0;
}

.hero-wrap {
    padding: 120px 0 84px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero-panel,
.story-card,
.feature-tile,
.quote-card,
.step-card,
.media-card,
.info-stack,
.comparison-card,
.cta-panel,
.form-preview,
.signal-board,
.timeline-card,
.metric-tile {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 24px;
    box-shadow: var(--lp-shadow-soft);
}

.hero-panel {
    padding: 0;
    position: relative;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.hero-panel h1 {
    font-size: clamp(40px, 5vw, 48px);
    line-height: 1.05;
    margin: 22px 0 18px;
}

.hero-panel .lead {
    font-size: 18px;
    line-height: 1.75;
    color: var(--lp-body);
    margin-bottom: 18px;
}

.hero-wrap .feature-list,
.hero-wrap .hero-proof,
.hero-wrap .hero-actions,
.hero-wrap .feature-breadcrumbs {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.feature-list,
.check-list,
.signal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li,
.check-list li,
.signal-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--lp-body);
    line-height: 1.75;
}

.feature-list li::before,
.check-list li::before,
.signal-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.08);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn-feature-primary,
.btn-feature-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-feature-primary {
    background: var(--lp-primary);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
}

.btn-feature-primary:hover {
    color: #ffffff;
    background: var(--lp-primary-dark);
    transform: translateY(-2px);
}

.btn-feature-secondary {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(37, 99, 235, 0.16);
    color: var(--lp-heading);
}

.btn-feature-secondary:hover {
    color: var(--lp-heading);
    transform: translateY(-2px);
}

.hero-proof,
.logo-strip,
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.proof-chip,
.logo-pill,
.mini-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: var(--lp-secondary);
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.proof-chip strong {
    color: var(--lp-heading);
    font-size: 16px;
}

.window-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 28px;
    padding: 20px;
    box-shadow: var(--lp-shadow);
    position: relative;
}

.window-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.window-dots {
    display: flex;
    gap: 8px;
}

.window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.45);
}

.window-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--lp-secondary);
}

.window-shot {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.floating-note,
.floating-stat {
    position: absolute;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.floating-note strong,
.floating-stat strong {
    display: block;
    color: var(--lp-heading);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.floating-note span,
.floating-stat span {
    display: block;
    color: var(--lp-body);
    font-size: 0.9rem;
    line-height: 1.5;
}

.story-card,
.feature-tile,
.quote-card,
.step-card,
.timeline-card,
.comparison-card,
.metric-tile,
.media-card,
.signal-board,
.form-preview {
    padding: 28px;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.story-card:hover,
.feature-tile:hover,
.quote-card:hover,
.step-card:hover,
.timeline-card:hover,
.comparison-card:hover,
.metric-tile:hover,
.media-card:hover,
.signal-board:hover,
.form-preview:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow);
    border-color: rgba(37, 99, 235, 0.2);
}

.card-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--lp-primary);
    margin-bottom: 14px;
}

.card-title-lg,
.feature-tile h3,
.story-card h3,
.timeline-card h3,
.comparison-card h3,
.quote-card h3,
.form-preview h3,
.signal-board h3 {
    color: var(--lp-heading);
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-tile p,
.story-card p,
.timeline-card p,
.comparison-card p,
.quote-card p,
.form-preview p,
.signal-board p,
.metric-tile p {
    margin: 0;
    color: var(--lp-body);
    line-height: 1.7;
}

.icon-badge {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    color: var(--lp-primary);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.metric-tile strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: var(--lp-heading);
    margin-bottom: 10px;
}

.step-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 16px;
}

.comparison-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.comparison-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.comparison-line span {
    color: var(--lp-body);
    font-weight: 600;
}

.comparison-line strong {
    color: var(--lp-heading);
}

.phone-shell {
    max-width: 290px;
    margin: 0 auto;
    padding: 14px;
    border-radius: 34px;
    background: #0f172a;
    box-shadow: var(--lp-shadow);
}

.phone-notch {
    width: 88px;
    height: 14px;
    background: #1e293b;
    border-radius: 999px;
    margin: 0 auto 12px;
}

.phone-shot {
    width: 100%;
    border-radius: 24px;
    background: #ffffff;
}

.quote-card blockquote {
    margin: 0 0 22px;
    color: var(--lp-heading);
    font-size: 1.04rem;
    line-height: 1.8;
    font-weight: 600;
}

.quote-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--lp-body);
    font-size: 0.95rem;
}

.quote-meta strong {
    display: block;
    color: var(--lp-heading);
    font-size: 1rem;
}

.cta-panel {
    padding: 38px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(34, 197, 94, 0.1));
    position: relative;
    overflow: hidden;
}

.cta-panel h2 {
    color: var(--lp-heading);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    margin: 16px 0 12px;
}

.cta-panel p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 0;
}

.register-panel {
    position: sticky;
    top: 110px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    box-shadow: var(--lp-shadow-soft);
    padding: 18px;
}

.hero-benefit-card {
    position: sticky;
    top: 110px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: var(--lp-shadow);
    overflow: hidden;
}

.hero-benefit-card::before {
    content: "";
    position: absolute;
    inset: -30% auto auto 55%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 68%);
    filter: blur(18px);
    pointer-events: none;
    animation: benefitFloat 7s ease-in-out infinite;
}

.hero-benefit-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--lp-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-benefit-card h3 {
    position: relative;
    z-index: 1;
    font-size: 26px;
    line-height: 1.15;
    margin: 18px 0 10px;
}

.hero-benefit-copy {
    position: relative;
    z-index: 1;
    font-size: 15px;
    color: var(--lp-body);
    margin-bottom: 18px;
}

.hero-benefit-list {
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.hero-benefit-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: benefitPulse 6s ease-in-out infinite;
    animation-delay: var(--benefit-delay, 0s);
}

.hero-benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    border-color: rgba(37, 99, 235, 0.18);
}

.hero-benefit-index {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(34, 197, 94, 0.12));
    color: var(--lp-primary);
    font-size: 14px;
    font-weight: 800;
}

.hero-benefit-item strong {
    display: block;
    color: var(--lp-heading);
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 4px;
}

.hero-benefit-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--lp-body);
}

@keyframes benefitFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-10px, 12px, 0);
    }
}

@keyframes benefitPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.video-frame {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(145deg, #dbeafe, #ecfeff);
}

.video-play {
    position: absolute;
    left: 24px;
    top: 24px;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-primary);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.video-play::before {
    content: "";
    margin-left: 4px;
    width: 0;
    height: 0;
    border-left: 14px solid currentColor;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.5;
    pointer-events: none;
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    .register-panel {
        position: static;
    }

    .hero-benefit-card {
        position: static;
    }

    .hero-wrap {
        padding-top: 104px;
        min-height: auto;
    }
}

@media (max-width: 991.98px) {
    .section-space {
        padding: 76px 0;
    }

    .step-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .section-space {
        padding: 62px 0;
    }

    .hero-wrap {
        padding: 96px 0 64px;
    }

    .hero-panel h1 {
        font-size: 2.25rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-feature-primary,
    .btn-feature-secondary {
        width: 100%;
    }

    .stat-grid,
    .step-track {
        grid-template-columns: 1fr;
    }

    .floating-note,
    .floating-stat {
        position: static;
        margin-top: 16px;
    }

    .hero-benefit-item {
        grid-template-columns: 38px 1fr;
        gap: 12px;
    }

    .hero-benefit-index {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }
}
