:root {
    --ink: #20243d;
    --muted: #6b7288;
    --line: #e2e7f0;
    --paper: #ffffff;
    --soft: #f4f7fb;
    --green: #5ec86f;
    --green-dark: #31944c;
    --blue: #3066d6;
    --coral: #ff735c;
    --navy: #2f3152;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--soft);
    color: var(--ink);
    font-family:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 76px;
    padding: 0 clamp(20px, 5vw, 72px);
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(226, 231, 240, 0.9);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand img {
    width: 142px;
    height: auto;
}

.brand span {
    color: var(--navy);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
}

.nav a {
    padding: 10px 14px;
    border-radius: 8px;
}

.nav a:hover {
    color: var(--ink);
    background: #eef4ff;
}

.nav-cta {
    color: #ffffff !important;
    background: var(--green-dark);
}

.hero {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 130px clamp(20px, 5vw, 72px) 72px;
    background: #eef3f7;
}

.hero-visual {
    position: absolute;
    right: -12vw;
    top: 110px;
    width: min(1120px, 78vw);
    max-width: none;
    filter: saturate(1.03);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #eef3f7 0%, #eef3f7 37%, rgba(238, 243, 247, 0.68) 62%, rgba(238, 243, 247, 0.08) 100%),
        linear-gradient(180deg, rgba(238, 243, 247, 0) 0%, #eef3f7 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

h1 {
    max-width: 760px;
    margin-bottom: 22px;
    color: var(--ink);
    font-size: clamp(44px, 7vw, 88px);
    line-height: 0.98;
    letter-spacing: 0;
}

.lead {
    max-width: 560px;
    margin-bottom: 32px;
    color: #4f5871;
    font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 42px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: 900;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
}

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

.primary {
    color: #ffffff;
    background: var(--green-dark);
    box-shadow: 0 16px 30px rgba(49, 148, 76, 0.22);
}

.primary:hover {
    background: #287c40;
}

.secondary {
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 620px;
    margin: 0;
}

.stats div {
    min-height: 108px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
}

.stats dt {
    color: var(--navy);
    font-size: 28px;
    font-weight: 900;
}

.stats dd {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.section {
    padding: 82px clamp(20px, 5vw, 72px);
    background: var(--paper);
}

.section + .section {
    border-top: 1px solid var(--line);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

h2 {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: 0;
}

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

.feature {
    min-height: 250px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.feature:hover {
    border-color: rgba(48, 102, 214, 0.45);
    box-shadow: 0 18px 36px rgba(33, 37, 61, 0.08);
}

.feature-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    margin-bottom: 24px;
    border-radius: 8px;
    background: var(--green);
}

.feature-icon.search {
    background: var(--green);
}

.feature-icon.filters {
    background: var(--blue);
}

.feature-icon.alerts {
    background: var(--coral);
}

.feature h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.15;
}

.feature p,
.copy p {
    color: var(--muted);
    font-size: 17px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    background: #f8fafc;
}

.copy {
    max-width: 560px;
}

.copy p {
    margin: 20px 0 28px;
}

.platforms {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 28px clamp(20px, 5vw, 72px);
    color: #ffffff;
    background: var(--navy);
}

.footer span {
    font-weight: 900;
}

.footer a {
    color: #bdf0c7;
    font-weight: 800;
}

@media (max-width: 980px) {
    .site-header {
        height: auto;
        min-height: 72px;
    }

    .nav a:not(.nav-cta) {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 112px;
    }

    .hero-visual {
        right: -42vw;
        top: 190px;
        width: 1180px;
        opacity: 0.3;
    }

    .hero-shade {
        background: linear-gradient(180deg, rgba(238, 243, 247, 0.95), rgba(238, 243, 247, 0.86));
    }

    .stats,
    .feature-grid,
    .split-section {
        grid-template-columns: 1fr;
    }

    .feature {
        min-height: 0;
    }
}

@media (max-width: 620px) {
    .site-header {
        padding-inline: 16px;
    }

    .brand img {
        width: 116px;
    }

    .brand span {
        display: none;
    }

    .hero,
    .section {
        padding-inline: 16px;
    }

    .hero {
        padding-bottom: 54px;
    }

    h1 {
        font-size: 42px;
    }

    .lead {
        font-size: 18px;
    }

    .button {
        width: 100%;
    }

    .stats {
        gap: 10px;
    }

    .stats div {
        min-height: 0;
    }

    .footer {
        flex-direction: column;
    }
}
