:root {
    --ink: #17201b;
    --muted: #5e675f;
    --soft: #f7f7f2;
    --panel: #ffffff;
    --line: #dce4dd;
    --green: #1f9d64;
    --green-dark: #136541;
    --teal: #0e8d98;
    --amber: #e4a72e;
    --shadow: 0 18px 50px rgba(23, 32, 27, .1);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(135deg, rgba(31, 157, 100, .1), rgba(31, 157, 100, 0) 36%),
        linear-gradient(235deg, rgba(228, 167, 46, .12), rgba(228, 167, 46, 0) 36%),
        var(--soft);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    letter-spacing: 0;
}

a {
    color: inherit;
}

.shell {
    min-height: 100vh;
    background-image:
        linear-gradient(rgba(23, 32, 27, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 32, 27, .025) 1px, transparent 1px);
    background-size: 44px 44px;
}

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

.topbar {
    border-bottom: 1px solid rgba(220, 228, 221, .85);
    background: rgba(247, 247, 242, .92);
    backdrop-filter: blur(16px);
}

.nav,
.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.nav {
    min-height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 850;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 22px rgba(31, 157, 100, .16);
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-links,
.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: .94rem;
}

.nav-links a,
.footer-links a {
    text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
    color: var(--ink);
}

.hero {
    padding: 70px 0 26px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid #d5ddd6;
    border-radius: var(--radius);
    color: var(--green-dark);
    background: #fff;
    font-size: .86rem;
    font-weight: 780;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--amber);
    box-shadow: 0 0 0 4px rgba(228, 167, 46, .14);
}

h1,
h2,
p {
    margin: 0;
}

h1 {
    max-width: 820px;
    margin-top: 18px;
    font-size: clamp(2.35rem, 6vw, 4.8rem);
    line-height: .98;
}

.lead {
    max-width: 760px;
    margin-top: 18px;
    color: #404a43;
    font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.document {
    margin: 28px 0 70px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow);
}

.notice {
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid rgba(31, 157, 100, .2);
    border-left: 5px solid var(--green);
    border-radius: var(--radius);
    background: #effaf4;
    color: #244333;
}

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

.section:first-of-type {
    border-top: 0;
    padding-top: 0;
}

h2 {
    margin-bottom: 10px;
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.15;
}

p + p {
    margin-top: 10px;
}

ul,
ol {
    margin: 12px 0 0;
    padding-left: 22px;
}

li + li {
    margin-top: 8px;
}

.meta {
    margin-top: 18px;
    color: var(--muted);
    font-size: .94rem;
}

.contact {
    display: inline-flex;
    margin-top: 12px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--green-dark);
    font-weight: 780;
    text-decoration: none;
}

footer {
    padding: 28px 0;
    color: var(--muted);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .82);
}

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

    .nav,
    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .hero {
        padding-top: 48px;
    }

    .document {
        padding: 20px;
    }
}
