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

:root {
    --ld-ink: #07111f;
    --ld-navy: #0c1b33;
    --ld-blue: #1a73e8;
    --ld-blue-bright: #4d9fff;
    --ld-mist: #eef3f9;
    --ld-paper: #f7f9fc;
    --ld-muted: #5a6b7d;
    --ld-line: rgba(12, 27, 51, 0.1);
    --ld-font-display: 'Syne', sans-serif;
    --ld-font-body: 'Figtree', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.landing {
    margin: 0;
    font-family: var(--ld-font-body);
    color: var(--ld-ink);
    background: var(--ld-paper);
    -webkit-font-smoothing: antialiased;
}

.landing a {
    text-decoration: none;
}

/* —— Nav —— */
.ld-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 1.25rem 0;
}

.ld-nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ld-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-family: var(--ld-font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    opacity: 0.9;
}

.ld-nav-brand svg {
    width: 22px;
    height: 22px;
}

.ld-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ld-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--ld-font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ld-btn:hover {
    transform: translateY(-1px);
}

.ld-btn-ghost {
    padding: 0.55rem 1rem;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
}

.ld-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

.ld-btn-solid {
    padding: 0.55rem 1.15rem;
    color: var(--ld-ink);
    background: #fff;
    border-radius: 8px;
}

.ld-btn-solid:hover {
    background: var(--ld-mist);
}

.ld-btn-primary {
    padding: 0.9rem 1.6rem;
    color: #fff;
    background: var(--ld-blue);
    border-radius: 10px;
    font-size: 1.05rem;
}

.ld-btn-primary:hover {
    background: #1557b0;
}

.ld-btn-primary-lg {
    padding: 1rem 1.85rem;
    font-size: 1.1rem;
}

.ld-btn-outline-dark {
    padding: 0.9rem 1.5rem;
    color: var(--ld-ink);
    background: transparent;
    border: 1.5px solid var(--ld-line);
    border-radius: 10px;
}

.ld-btn-outline-dark:hover {
    border-color: var(--ld-ink);
    background: rgba(7, 17, 31, 0.03);
}

/* —— Hero —— */
.ld-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--ld-navy);
    color: #fff;
}

.ld-hero-map {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.ld-hero-map svg {
    position: absolute;
    width: 140%;
    height: 140%;
    top: -15%;
    left: -15%;
    animation: ld-map-drift 28s ease-in-out infinite alternate;
}

.ld-hero-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(7, 17, 31, 0.35) 0%, rgba(7, 17, 31, 0.15) 35%, rgba(7, 17, 31, 0.72) 78%, rgba(7, 17, 31, 0.92) 100%),
        linear-gradient(90deg, rgba(12, 27, 51, 0.55) 0%, transparent 55%);
    pointer-events: none;
}

.ld-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 7rem 1.5rem 4.5rem;
}

.ld-brand {
    font-family: var(--ld-font-display);
    font-weight: 800;
    font-size: clamp(3.5rem, 12vw, 7.5rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
    margin: 0 0 1.25rem;
    animation: ld-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ld-brand span {
    color: var(--ld-blue-bright);
}

.ld-headline {
    font-family: var(--ld-font-display);
    font-weight: 700;
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    max-width: 18ch;
    margin: 0 0 0.85rem;
    animation: ld-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.ld-lede {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    max-width: 36ch;
    margin: 0 0 2rem;
    animation: ld-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.ld-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    animation: ld-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}

.ld-cta-row .ld-btn-ghost {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 0.9rem 1.4rem;
    border-radius: 10px;
}

/* Map pin pulse */
.ld-pin-pulse {
    transform-origin: center;
    animation: ld-pin-breathe 2.4s ease-in-out infinite;
}

.ld-pin-pulse:nth-child(2) { animation-delay: 0.4s; }
.ld-pin-pulse:nth-child(3) { animation-delay: 0.9s; }
.ld-pin-pulse:nth-child(4) { animation-delay: 1.3s; }

@keyframes ld-map-drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-4%, -3%) scale(1.04); }
}

@keyframes ld-rise {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ld-pin-breathe {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.12); }
}

/* —— Features —— */
.ld-features {
    padding: 5rem 0 4.5rem;
    background: var(--ld-paper);
}

.ld-features-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ld-section-label {
    font-family: var(--ld-font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ld-blue);
    margin: 0 0 0.75rem;
}

.ld-section-title {
    font-family: var(--ld-font-display);
    font-weight: 700;
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 0.65rem;
    max-width: 18ch;
}

.ld-section-copy {
    color: var(--ld-muted);
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 42ch;
    margin: 0 0 3rem;
}

.ld-feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--ld-line);
}

.ld-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--ld-line);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ld-feature.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ld-feature-num {
    font-family: var(--ld-font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--ld-blue);
    line-height: 1;
    letter-spacing: -0.03em;
    min-width: 2rem;
}

.ld-feature h3 {
    font-family: var(--ld-font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    margin: 0 0 0.35rem;
}

.ld-feature p {
    margin: 0;
    color: var(--ld-muted);
    line-height: 1.5;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .ld-feature-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        border-top: none;
    }

    .ld-feature {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1.75rem 0 0;
        border-bottom: none;
        border-right: 1px solid var(--ld-line);
    }

    .ld-feature:last-child {
        border-right: none;
        padding-right: 0;
    }

    .ld-feature:first-child {
        padding-left: 0;
    }
}

/* —— Employers —— */
.ld-employers {
    position: relative;
    padding: 5.5rem 0;
    background: var(--ld-ink);
    color: #fff;
    overflow: hidden;
}

.ld-employers::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 90% 50%, rgba(26, 115, 232, 0.28) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(77, 159, 255, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.ld-employers-inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .ld-employers-inner {
        grid-template-columns: 1.4fr 1fr;
        align-items: end;
        gap: 3rem;
    }
}

.ld-employers .ld-section-label {
    color: var(--ld-blue-bright);
}

.ld-employers .ld-section-title {
    color: #fff;
    max-width: 14ch;
}

.ld-employers .ld-section-copy {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
}

.ld-employers-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.ld-employers-cta .ld-btn-solid {
    padding: 0.95rem 1.6rem;
    border-radius: 10px;
    font-size: 1.05rem;
}

.ld-employers-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* —— Footer —— */
.ld-footer {
    padding: 1.75rem 0;
    background: var(--ld-paper);
    border-top: 1px solid var(--ld-line);
}

.ld-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.ld-footer-brand {
    font-family: var(--ld-font-display);
    font-weight: 700;
    color: var(--ld-ink);
    letter-spacing: -0.02em;
}

.ld-footer p {
    margin: 0;
    color: var(--ld-muted);
    font-size: 0.9rem;
}

/* —— Mobile nav —— */
@media (max-width: 520px) {
    .ld-nav-actions .ld-btn-ghost:first-child {
        display: none;
    }

    .ld-hero-content {
        padding-bottom: 3.25rem;
    }

    .ld-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .ld-cta-row .ld-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ld-hero-map svg,
    .ld-pin-pulse,
    .ld-brand,
    .ld-headline,
    .ld-lede,
    .ld-cta-row {
        animation: none;
    }

    .ld-feature {
        opacity: 1;
        transform: none;
    }
}
