* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #1f2933;
    background: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}


/* HEADER */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.main-nav a {
    font-size: 0.95rem;
    color: #4b5563;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #111827;
}


/* HERO */

.hero {
    background: linear-gradient(135deg, #f4f7fb 0%, #e9eef5 100%);
    padding: 110px 0 120px;
}

.hero-content {
    max-width: 900px;
}

.eyebrow {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.7rem, 6vw, 5rem);
    line-height: 1.05;
    letter-spacing: -2.5px;
    max-width: 900px;
    margin-bottom: 30px;
}

.hero-text {
    max-width: 720px;
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* BUTTONS */

.button {
    display: inline-block;
    padding: 14px 23px;
    border-radius: 7px;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.button-primary {
    background: #111827;
    color: #ffffff;
}

.button-secondary {
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #111827;
}

.button-light {
    background: #ffffff;
    color: #111827;
    margin-top: 25px;
}


/* SECTIONS */

.section {
    padding: 100px 0;
}

.section-light {
    background: #f7f8fa;
}

.section-dark {
    background: #111827;
    color: #ffffff;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.section-heading h2,
.two-column h2,
.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -1.2px;
    margin-bottom: 22px;
}

.section-heading p,
.two-column p,
.narrow p,
.cta-section p {
    font-size: 1.08rem;
    color: #667085;
}

.section-dark p {
    color: #cbd5e1;
}


/* FEATURES */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    border: 1px solid #e5e7eb;
    padding: 35px;
    border-radius: 10px;
    background: #ffffff;
}

.feature-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #667085;
    margin-bottom: 25px;
}

.text-link {
    font-weight: 700;
    font-size: 0.95rem;
}


/* TWO COLUMN */

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}


/* STATUS */

.status-box {
    background: #ffffff;
    color: #111827;
    padding: 25px;
    border-radius: 12px;
}

.status-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #e5e7eb;
}

.status-row:last-child {
    border-bottom: 0;
}

.status-row div {
    display: flex;
    flex-direction: column;
}

.status-row span:last-child {
    color: #6b7280;
    font-size: 0.9rem;
}

.status-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-yellow {
    background: #eab308;
}

.status-green {
    background: #22c55e;
}

.status-red {
    background: #ef4444;
}


/* WORKFLOW */

.workflow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.workflow-step {
    border: 1px solid #e5e7eb;
    padding: 22px 25px;
    min-width: 125px;
    border-radius: 8px;
    text-align: center;
    background: #ffffff;
}

.workflow-step span {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 5px;
}

.workflow-step strong {
    font-size: 0.95rem;
}

.workflow-arrow {
    font-size: 1.5rem;
    color: #9ca3af;
}


/* HIGHLIGHT */

.highlight-text {
    font-weight: 800;
    color: #111827 !important;
    margin-top: 25px;
}


/* HISTORY */

.status-history {
    margin-top: 25px;
    border-left: 3px solid #d1d5db;
    padding-left: 20px;
}

.status-history div {
    padding: 9px 0;
    font-weight: 600;
}


/* NARROW */

.narrow {
    max-width: 760px;
}


/* CTA */

.cta-section {
    padding: 110px 0;
    text-align: center;
    background: #e9eef5;
}

.cta-section p {
    max-width: 650px;
    margin: 0 auto 30px;
}


/* FOOTER */

.site-footer {
    background: #111827;
    color: #ffffff;
    padding: 45px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.site-footer p {
    color: #9ca3af;
    margin-top: 7px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #d1d5db;
    font-size: 0.9rem;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .header-inner {
        flex-direction: column;
        padding: 18px 0;
    }

    .main-nav {
        justify-content: center;
        gap: 14px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .workflow-arrow {
        display: none;
    }
}


@media (max-width: 600px) {

    .container {
        width: min(100% - 28px, 1120px);
    }

    .hero {
        padding: 75px 0 85px;
    }

    .hero h1 {
        letter-spacing: -1.5px;
    }

    .section {
        padding: 70px 0;
    }

    .main-nav {
        gap: 10px 15px;
    }

    .main-nav a {
        font-size: 0.85rem;
    }

    .feature-card {
        padding: 28px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}