:root {
    --landing-navy: #0f2744;
    --landing-blue: #2563eb;
    --landing-teal: #0891b2;
    --landing-teal-light: #67e8f9;
    --landing-slate: #64748b;
    --landing-border: rgba(255, 255, 255, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.landing-page {
    margin: 0;
    font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0f172a;
    background: #f4f7fb;
    line-height: 1.6;
}

.landing-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.75rem;
    background: rgba(8, 22, 40, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--landing-border);
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.landing-brand img {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
}

.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.landing-nav-link {
    color: rgba(226, 232, 240, 0.82);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.45rem 0.7rem;
    border-radius: 0.5rem;
}
.landing-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem;
    border-radius: 0.65rem;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.landing-btn:hover {
    transform: translateY(-1px);
}

.landing-btn-ghost {
    color: #e2e8f0;
    border-color: rgba(255, 255, 255, 0.18);
    background: transparent;
}

.landing-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.landing-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--landing-teal), var(--landing-blue));
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.35);
}

.landing-btn-primary:hover {
    color: #fff;
    box-shadow: 0 12px 28px rgba(8, 145, 178, 0.45);
}

.landing-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 12%, rgba(8, 145, 178, 0.32), transparent 42%),
        radial-gradient(circle at 8% 88%, rgba(37, 99, 235, 0.26), transparent 40%),
        linear-gradient(155deg, #071526 0%, #123152 48%, #0e7490 100%);
    color: #fff;
    padding: 5rem 1.5rem 5.5rem;
}
.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(ellipse at center, #000 40%, transparent 78%);
    pointer-events: none;
}

.landing-hero-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.landing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.landing-hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.landing-hero-lead {
    margin: 0 0 1.75rem;
    max-width: 34rem;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.86);
}

.landing-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.landing-btn-lg {
    padding: 0.75rem 1.35rem;
    font-size: 1rem;
}

.landing-btn-white {
    background: #fff;
    color: var(--landing-navy);
    box-shadow: 0 10px 30px rgba(15, 39, 68, 0.25);
}

.landing-btn-white:hover {
    color: var(--landing-navy);
    background: #f8fafc;
}

.landing-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.landing-stat {
    min-width: 7rem;
}

.landing-stat strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.1;
}

.landing-stat span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
}

.landing-hero-visual {
    position: relative;
    min-height: 22rem;
}

.landing-mockup {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.25rem;
    padding: 1rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.landing-mockup-bar {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.landing-mockup-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.landing-mockup-card {
    background: #fff;
    color: #1e293b;
    border-radius: 0.9rem;
    padding: 0.95rem 1rem;
    margin-bottom: 0.7rem;
    border: 1px solid #e8eef5;
    box-shadow: 0 8px 20px rgba(15, 39, 68, 0.08);
    animation: landingCardIn 0.55s ease both;
}
.landing-mockup-card:nth-child(2) { animation-delay: 0.08s; }
.landing-mockup-card:nth-child(3) { animation-delay: 0.16s; }
.landing-mockup-card:nth-child(4) { animation-delay: 0.24s; }
.landing-mockup-card.is-progress { border-left: 3px solid #2563eb; }
.landing-mockup-card.is-done { border-left: 3px solid #059669; }
.landing-mockup-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}
.landing-mockup-meta {
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.02em;
}
@keyframes landingCardIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.landing-mockup-card:last-child {
    margin-bottom: 0;
}

.landing-mockup-card h3 {
    margin: 0 0 0.35rem;
    font-size: 0.92rem;
}

.landing-mockup-card p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--landing-slate);
}

.landing-mockup-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.landing-badge-stat {
    background: rgba(220, 38, 38, 0.12);
    color: #dc2626;
}

.landing-badge-ihc {
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
}

.landing-badge-done {
    background: rgba(5, 150, 105, 0.12);
    color: #059669;
}

.landing-glow {
    position: absolute;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.45;
    pointer-events: none;
}

.landing-glow-a {
    top: -2rem;
    right: -1rem;
    background: #0891b2;
}

.landing-glow-b {
    bottom: -2rem;
    left: 1rem;
    background: #2563eb;
}

.landing-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.landing-kicker {
    display: inline-block;
    margin: 0 0 0.55rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--landing-teal);
}
.landing-section-head {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

.landing-section-head h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: -0.02em;
    color: var(--landing-navy);
}

.landing-section-head p {
    margin: 0;
    color: var(--landing-slate);
}

.landing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.landing-feature {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(15, 39, 68, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border-top: 3px solid transparent;
}
.landing-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(15, 39, 68, 0.1);
    border-top-color: var(--landing-blue);
}
.landing-feature:nth-child(2):hover { border-top-color: var(--landing-teal); }
.landing-feature:nth-child(3):hover { border-top-color: #059669; }

.landing-feature-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
}

.landing-icon-blue {
    background: rgba(37, 99, 235, 0.12);
    color: var(--landing-blue);
}

.landing-icon-teal {
    background: rgba(8, 145, 178, 0.12);
    color: var(--landing-teal);
}

.landing-icon-green {
    background: rgba(5, 150, 105, 0.12);
    color: #059669;
}

.landing-feature h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    color: var(--landing-navy);
}

.landing-feature p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--landing-slate);
}

.landing-workflow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
}
.landing-step {
    position: relative;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.1rem;
    padding: 1.35rem 1.1rem 1.25rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.landing-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(15, 39, 68, 0.08);
}

.landing-step-num {
    width: 2rem;
    height: 2rem;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--landing-teal), var(--landing-blue));
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.landing-step h3 {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    color: var(--landing-navy);
}

.landing-step p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--landing-slate);
}

.landing-cta-band {
    margin: 0 1.5rem 3rem;
    max-width: calc(1120px - 3rem);
    margin-left: auto;
    margin-right: auto;
    padding: 2.75rem 2rem;
    border-radius: 1.4rem;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.14), transparent 40%),
        linear-gradient(135deg, #0e7490, #1d4ed8);
    box-shadow: 0 24px 50px rgba(29, 78, 216, 0.28);
}

.landing-cta-band h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.landing-cta-band p {
    margin: 0 0 1.35rem;
    color: rgba(255, 255, 255, 0.88);
}

.landing-footer {
    padding: 1.5rem;
    text-align: center;
    color: var(--landing-slate);
    font-size: 0.85rem;
    border-top: 1px solid #e2e8f0;
    background: #fff;
}

.landing-footer strong {
    color: var(--landing-navy);
}

.landing-footer-credit {
    margin: 0.35rem 0 0;
    font-size: 0.82rem;
    color: var(--landing-slate);
}

@media (max-width: 960px) {
    .landing-hero-grid {
        grid-template-columns: 1fr;
    }

    .landing-hero-visual {
        order: -1;
        min-height: auto;
    }

    .landing-features {
        grid-template-columns: 1fr;
    }

    .landing-workflow {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .landing-nav {
        flex-wrap: wrap;
    }
    .landing-nav-link { display: none; }

    .landing-workflow {
        grid-template-columns: 1fr;
    }

    .landing-hero {
        padding-top: 3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-mockup-card,
    .landing-feature,
    .landing-step,
    .landing-btn {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}
