:root {
    --navy: #101d33;
    --blue: #397fc2;
    --muted: #64728a;
    --light: #f3f6fa;
    --line: #dbe4ef;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--navy);
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
}

a {
    color: inherit;
}

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

.site-header {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    background: var(--navy);
}

.site-header .header-inner {
    width: min(1080px, calc(100% - 40px));
    min-height: 122px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
}

.wordmark {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
}

.wordmark-logo {
    display: block;
    width: 185px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.site-nav a {
    color: #dbe5f1;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #fff;
}

.site-nav .contact-link {
    padding: 12px 18px;
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
}

.site-nav .contact-link:hover,
.site-nav .contact-link:focus-visible {
    background: #e7eff8;
    color: var(--navy);
}

.eyebrow {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero {
    padding: 110px 0 92px;
    background: linear-gradient(135deg, #fff 25%, #eef5fb);
}

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

h1 {
    margin: 18px 0 28px;
    font-size: clamp(48px, 7vw, 86px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.055em;
}

.lead {
    max-width: 700px;
    color: var(--muted);
    font-size: 21px;
    line-height: 1.65;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.btn {
    display: inline-block;
    padding: 16px 23px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
}

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

.btn-light {
    background: #e5eff9;
    color: #226aa9;
}

.portal-card {
    padding: 38px;
    border-radius: 28px;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 24px 70px #101d332e;
}

.portal-card h2 {
    margin: 18px 0;
    font-size: 29px;
}

.portal-card p,
.service p,
.step p {
    color: #c1cde0;
    line-height: 1.7;
}

.dots {
    display: grid;
    grid-template-columns: 8px 8px;
    gap: 4px;
    width: max-content;
}

.dots i {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.dots i:nth-child(1) { background: #3da099; }
.dots i:nth-child(2) { background: #68a87e; }
.dots i:nth-child(3) { background: #6d9ed3; }
.dots i:nth-child(4) { background: #8d7bc4; }

.content-section {
    padding: 94px 0;
}

.services {
    background: var(--light);
}

.section-head {
    max-width: 760px;
    margin-bottom: 46px;
}

.section-head h2 {
    margin: 16px 0;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.section-head p {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.65;
}

.service-list {
    display: grid;
    gap: 18px;
}

.service {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
}

.service h3 {
    margin: 0 0 8px;
    font-size: 25px;
}

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

.num {
    width: 58px;
    height: 58px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    background: #e7f1fa;
    color: var(--blue);
    font-size: 20px;
    font-weight: 900;
}

.badge {
    padding: 8px 12px;
    border-radius: 999px;
    background: #e5f5ee;
    color: #267a5b;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

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

.step {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
}

.step b {
    display: block;
    margin: 18px 0 10px;
    font-size: 21px;
}

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

.notice {
    padding: 24px 28px;
    border-left: 5px solid #ef4452;
    border-radius: 16px;
    background: #fff1f2;
    color: #7d2830;
    line-height: 1.65;
}

.privacy-main {
    background: var(--light);
}

.privacy-hero {
    padding: 76px 0 58px;
    background: linear-gradient(135deg, #fff 25%, #eef5fb);
}

.privacy-hero h1 {
    max-width: 920px;
    font-size: clamp(42px, 6vw, 72px);
}

.privacy-wrap {
    max-width: 980px;
}

.privacy-date {
    margin-top: 24px;
    color: var(--muted);
    font-weight: 700;
}

.privacy-content {
    padding-top: 44px;
    padding-bottom: 88px;
}

.privacy-index {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 28px;
    padding: 20px 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.privacy-index a {
    color: #226aa9;
    font-weight: 700;
}

.privacy-card {
    margin: 20px 0;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(16, 29, 51, .06);
}

.privacy-card h2 {
    margin: 0 0 18px;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.2;
}

.privacy-card h3 {
    margin: 28px 0 8px;
    font-size: 20px;
}

.privacy-card p,
.privacy-card li {
    color: #3f4f66;
    font-size: 17px;
    line-height: 1.75;
}

.privacy-card li + li {
    margin-top: 8px;
}

.privacy-card a {
    color: #226aa9;
}

.privacy-section-title {
    margin: 54px 0 22px;
    font-size: clamp(34px, 5vw, 52px);
    letter-spacing: -.035em;
}

.privacy-app-label {
    width: max-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #e7f1fa;
    color: #226aa9;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.privacy-sensitive {
    border-left: 5px solid #d14b57;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 28px;
    padding: 58px;
    border-radius: 30px;
    background: var(--navy);
    color: #fff;
}

.cta-box h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 56px);
}

.cta-box p {
    max-width: 680px;
    margin: 0;
    color: #c1cde0;
    line-height: 1.65;
}

.cta-box .btn {
    background: #fff;
    color: var(--navy);
    white-space: nowrap;
}

.error-main {
    min-height: 590px;
    padding: 110px 0 130px;
    background: linear-gradient(135deg, #fff 25%, #eef5fb);
}

.error-copy {
    max-width: 980px;
}

.error-copy h1 {
    font-size: clamp(48px, 8vw, 88px);
}

.error-copy p {
    max-width: 720px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.65;
}

.site-footer {
    padding: 58px 0 26px;
    background: var(--navy);
    color: #fff;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding-bottom: 34px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px 24px;
}

.footer-nav a {
    color: #d5deeb;
    font-size: 14px;
    text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: #fff;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    color: #b8c5d7;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 850px) {
    .site-header .header-inner,
    .footer-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-header .header-inner {
        padding: 28px 0;
    }

    .site-nav,
    .footer-nav {
        justify-content: flex-start;
    }

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

    .service {
        grid-template-columns: 60px 1fr;
    }

    .service .badge {
        grid-column: 2;
        width: max-content;
    }

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

@media (max-width: 560px) {
    .wrap,
    .site-header .header-inner {
        width: min(100% - 26px, 1180px);
    }

    .site-nav {
        width: 100%;
        gap: 12px 18px;
        flex-wrap: wrap;
    }

    .site-nav .contact-link {
        padding: 10px 15px;
    }

    .wordmark-logo {
        width: 165px;
    }

    .hero,
    .content-section,
    .error-main {
        padding: 70px 0;
    }

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

    .service .badge {
        grid-column: 1;
    }

    .cta-box {
        padding: 34px 26px;
    }
}
