@charset "utf-8";

:root {
    --blue: #154273;
    --blue-dark: #0b2f55;
    --blue-soft: #e5f1fb;
    --blue-pale: #f2f7fb;
    --yellow: #ffb612;
    --green: #39870c;
    --paper: #f3f5f7;
    --white: #ffffff;
    --text: #111111;
    --muted: #535353;
    --line: #d8dde3;
    --line-dark: #b8c0ca;
    --shadow: rgba(0, 0, 0, 0.10);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: var(--paper);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

form {
    margin: 0;
}

.skip {
    position: absolute;
    left: -9999px;
    top: auto;
}

.skip:focus {
    left: 16px;
    top: 16px;
    background: var(--white);
    color: var(--blue);
    padding: 10px 14px;
    z-index: 100;
    border: 2px solid var(--yellow);
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.topbar {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.logo-row {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text);
}

.logo-mark {
    width: 42px;
    height: 58px;
    background: var(--blue);
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}

.logo-mark::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 9px;
    background: var(--yellow);
}

.wordmark strong {
    display: block;
    color: var(--blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 39px;
    font-weight: 400;
    line-height: 1;
}

.wordmark span span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.navbar {
    background: var(--blue);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links a {
    display: block;
    padding: 19px 18px;
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.nav-links a:hover {
    background: var(--blue-dark);
}

.nav-action {
    display: inline-block;
    background: var(--yellow);
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    padding: 12px 18px;
}

.nav-action:hover {
    filter: brightness(0.96);
}

.hero {
    background:
        linear-gradient(90deg, rgba(21,66,115,0.04) 1px, transparent 1px),
        linear-gradient(rgba(21,66,115,0.04) 1px, transparent 1px),
        var(--white);
    background-size: 52px 52px;
    border-bottom: 1px solid var(--line);
}

.hero-inner {
    min-height: 390px;
    display: grid;
    grid-template-columns: 1.15fr 390px;
    gap: 46px;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

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

h1 {
    margin: 0;
    max-width: 760px;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--text);
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 400;
    line-height: 1.03;
}

.hero p {
    margin: 24px 0 0;
    max-width: 680px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.code-card {
    background: var(--blue-soft);
    border: 1px solid #b7d7ef;
    border-top: 8px solid var(--yellow);
    padding: 28px;
    box-shadow: 0 14px 34px var(--shadow);
}

.code-card h2 {
    margin: 0;
    color: var(--blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 400;
}

.code-card p {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.status-list {
    margin-top: 22px;
    border: 1px solid #b7d7ef;
    background: var(--white);
}

.status-row {
    display: grid;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid #d4e6f5;
}

.status-row:last-child {
    border-bottom: 0;
}

.status-row span,
.status-row strong {
    padding: 11px 13px;
    font-size: 13px;
}

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

.status-row strong {
    color: var(--blue);
}

.main {
    padding-top: 38px;
    padding-bottom: 44px;
}

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

.task-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 6px solid var(--blue);
    box-shadow: 0 12px 30px var(--shadow);
    padding: 26px;
    min-height: 205px;
}

.task-card h2 {
    margin: 0;
    color: var(--blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    font-weight: 400;
}

.task-card p {
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.68;
}

.info-row {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 25px;
}

.info-card h2 {
    margin: 0;
    color: var(--text);
    font-size: 22px;
}

.info-card p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.65;
}

.footer {
    background: var(--white);
    border-top: 1px solid var(--line);
}

.footer-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 700;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .nav-inner,
    .hero-inner,
    .task-grid,
    .info-row {
        display: block;
    }

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

    .nav-action {
        margin: 12px 0;
    }

    .code-card {
        margin-top: 28px;
    }

    .task-card,
    .info-card {
        margin-bottom: 18px;
    }

    .footer-inner {
        display: block;
        padding-top: 20px;
        padding-bottom: 20px;
        line-height: 1.8;
    }

    .footer-links {
        margin-top: 8px;
        flex-wrap: wrap;
    }
}
