:root {
    --bg: #07111f;
    --bg-soft: #0d1b2a;
    --surface: #ffffff;
    --surface-soft: #f4f7fb;
    --text: #102033;
    --muted: #5f6f82;
    --light-text: #d8e1ec;
    --accent: #2f6fed;
    --accent-dark: #1f56c5;
    --border: #dfe7f0;
    --success: #137a4f;
    --shadow: 0 18px 50px rgba(16, 32, 51, 0.10);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--text);
    background: var(--surface);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav nav > a:not(.button) {
    color: #405268;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav nav > a:not(.button):hover {
    color: var(--accent);
}

/* Buttons */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    font-weight: 750;
    box-shadow: 0 8px 24px rgba(47, 111, 237, 0.22);
    transition:
        transform 0.18s ease,
        background 0.18s ease;
}

.button:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.button-small {
    min-height: 42px;
    padding: 0 18px;
}

.button-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid #b9c6d5;
    box-shadow: none;
}

.button-secondary:hover {
    background: #f3f6fa;
    color: var(--text);
}

/* Hero */

.hero {
    padding: 96px 0 90px;
    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(47, 111, 237, 0.14),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 72px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 740px;
    margin-bottom: 22px;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

h2 {
    max-width: 760px;
    margin-bottom: 34px;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
}

.hero-copy {
    max-width: 680px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-note {
    margin-top: 20px;
    color: #647487;
    font-size: 0.92rem;
}

/* Recovery card */

.recovery-card {
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}

.card-label {
    color: #6c7b8c;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.money-found {
    margin-top: 14px;
    font-size: 3.6rem;
    line-height: 1;
    font-weight: 850;
    letter-spacing: -0.05em;
}

.money-caption {
    margin: 10px 0 28px;
    color: var(--muted);
}

.finding-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
}

.finding-row span {
    color: var(--muted);
}

.confidence {
    margin-top: 22px;
    padding: 13px 14px;
    border-radius: 10px;
    background: #ecf8f1;
    color: var(--success);
    font-weight: 750;
    text-align: center;
}

/* Sections */

.section {
    padding: 92px 0;
}

.section-muted {
    background: var(--surface-soft);
}

.section-copy {
    max-width: 620px;
    color: var(--muted);
    font-size: 1.05rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    min-height: 215px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
}

.feature-card p {
    color: var(--muted);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step {
    padding: 26px 24px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border);
}

.step span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf1ff;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 850;
}

.step p {
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.security-list {
    display: grid;
    gap: 14px;
}

.security-list div {
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    font-weight: 650;
}

/* CTA */

.cta {
    padding: 82px 0;
    background: var(--bg);
    color: #fff;
}

.cta .eyebrow {
    color: #8bb3ff;
}

.cta h2 {
    margin-bottom: 0;
    color: #fff;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    align-items: center;
    gap: 50px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.contact-link {
    color: var(--light-text);
    font-weight: 650;
}

/* Footer */

footer {
    padding: 46px 0 28px;
    background: #030a12;
    color: #d9e3ef;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-inner p {
    max-width: 520px;
    margin-top: 8px;
    color: #93a4b7;
}

.footer-links {
    display: flex;
    gap: 22px;
    font-weight: 650;
}

.copyright {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid #1a2a3c;
    color: #718399;
    font-size: 0.88rem;
}

/* Mobile */

@media (max-width: 900px) {
    .nav {
        align-items: flex-start;
        padding: 18px 0;
    }

    .nav nav {
        display: none;
    }

    .hero {
        padding: 72px 0;
    }

    .hero-grid,
    .split,
    .cta-inner {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 46px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .hero {
        padding: 54px 0 62px;
    }

    h1 {
        font-size: 3rem;
    }

    .feature-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 68px 0;
    }

    .recovery-card {
        padding: 26px 22px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }
}


/* Policy and contact pages */

.policy-page {
    min-height: 70vh;
    padding: 78px 0 92px;
    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 340px
        );
}

.policy-container {
    max-width: 860px;
}

.policy-page h1 {
    max-width: 820px;
    margin-bottom: 14px;
    font-size: clamp(2.7rem, 6vw, 4.6rem);
}

.policy-page h2 {
    margin-top: 46px;
    margin-bottom: 14px;
    font-size: 1.55rem;
    letter-spacing: -0.025em;
}

.policy-page p {
    color: var(--muted);
    font-size: 1.04rem;
}

.policy-page a:not(.button) {
    color: var(--accent);
    font-weight: 650;
}

.policy-updated {
    margin-bottom: 42px;
    color: #7b8999 !important;
    font-size: 0.92rem !important;
}

.contact-card {
    margin-top: 30px;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.contact-card h2 {
    margin-top: 0;
    margin-bottom: 16px;
}

.contact-card p {
    max-width: 680px;
}

.contact-address {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 1.2rem;
    font-weight: 750;
    word-break: break-word;
}

.contact-card .button {
    margin-top: 10px;
}

@media (max-width: 620px) {
    .policy-page {
        padding: 54px 0 68px;
    }

    .policy-page h1 {
        font-size: 2.8rem;
    }

    .contact-card {
        padding: 26px 22px;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}
