* {
    box-sizing: border-box;
}

:root {
    --bg: #f6f8fb;
    --surface: #ffffff;
    --text: #15202b;
    --muted: #667085;
    --line: #e5e7eb;
    --primary: #b42318;
    --primary-dark: #7a1710;
    --soft: #fff7f6;
    --success: #157f5b;
    --shadow: 0 20px 50px rgba(16, 24, 40, .10);
    --radius: 18px;
}

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(--bg);
    line-height: 1.6;
}

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

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

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    letter-spacing: -.03em;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1rem;
}

.brand small {
    color: var(--muted);
    font-size: .78rem;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: .95rem;
}

.nav-links > a:not(.btn) {
    color: #475467;
}

.nav-links > a:not(.btn):hover {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: .2s ease;
}

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

.btn-login,
.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-login:hover,
.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: #fff;
    border-color: var(--line);
}

.btn-light {
    background: #fff;
    color: var(--primary-dark);
}

.hero {
    padding: 84px 0 76px;
    background:
        radial-gradient(circle at top right, rgba(180, 35, 24, .09), transparent 34%),
        linear-gradient(180deg, #fff 0%, #f9fafb 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.hero-text {
    max-width: 700px;
    margin: 24px 0 0;
    font-size: 1.12rem;
    color: #475467;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-points {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    color: #475467;
    font-size: .92rem;
}

.hero-points span::first-letter {
    color: var(--success);
}

.hero-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.status-line {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #475467;
    font-size: .9rem;
    margin-bottom: 18px;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(21, 127, 91, .10);
}

.mini-dashboard {
    display: grid;
    gap: 14px;
}

.mini-card {
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #eaecf0;
    border-radius: 16px;
}

.mini-card.accent {
    background: var(--soft);
    border-color: #f4c7c3;
}

.mini-label {
    display: block;
    color: var(--primary);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mini-card strong {
    display: block;
    margin-top: 4px;
    font-size: 1.15rem;
}

.mini-card small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
}

.section {
    padding: 84px 0;
}

.section-soft {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 36px;
}

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.split h2,
.cta h2 {
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.1;
    letter-spacing: -.03em;
}

.section-heading p,
.lead {
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.05rem;
}

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

.feature-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}

.feature-card h3 {
    margin: 14px 0 8px;
    font-size: 1.1rem;
}

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

.icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--soft);
    color: var(--primary);
    font-weight: 800;
}

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

.checklist {
    display: grid;
    gap: 12px;
}

.check-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.check-item > span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(21, 127, 91, .10);
    color: var(--success);
    font-weight: 900;
}

.check-item strong {
    display: block;
}

.check-item p {
    margin: 4px 0 0;
    color: var(--muted);
}

.steps {
    margin-top: 38px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 18px;
    align-items: center;
}

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

.step > span {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
}

.step h3 {
    margin: 14px 0 6px;
}

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

.step-arrow {
    color: #98a2b3;
    font-size: 1.6rem;
}

.cta {
    padding: 0 0 84px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 44px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
}

.eyebrow-light {
    color: #ffd7d2;
}

.cta p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .78);
}

.footer {
    background: #111827;
    color: #fff;
    padding: 32px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer p {
    margin: 4px 0 0;
    color: #98a2b3;
    font-size: .9rem;
}

.footer-note {
    color: #98a2b3;
    font-size: .9rem;
}

@media (max-width: 900px) {
    .nav-links > a:not(.btn) {
        display: none;
    }

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

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

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

    .step-arrow {
        transform: rotate(90deg);
        text-align: center;
    }
}

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

    .brand small {
        display: none;
    }

    .nav {
        min-height: 66px;
    }

    .hero {
        padding: 58px 0 56px;
    }

    .hero h1 {
        font-size: 2.55rem;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 64px 0;
    }

    .cta-box,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-box {
        padding: 30px;
    }

    .btn-login {
        padding-inline: 14px;
    }
}
