:root {
    --pine: #1f3a34;
    --pine-deep: #16302b;
    --sage: #2e7d6b;
    --sage-soft: #e7f0ec;
    --paper: #fbfaf7;
    --surface: #ffffff;
    --ink: #252a28;
    --muted: #5c6360;
    --line: #e4e3dc;
    --amber: #b07d3c;
    --shadow: 0 1px 2px rgba(31,58,52,.04), 0 8px 28px rgba(31,58,52,.06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Mulish", system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* Masthead */
.masthead {
    background: var(--pine);
    background: linear-gradient(160deg, var(--pine) 0%, var(--pine-deep) 100%);
    color: #f4f3ee;
    padding: 64px 24px 56px;
    position: relative;
    overflow: hidden;
}
.masthead::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(46,125,107,.35) 0%, transparent 70%);
    pointer-events: none;
}
.masthead-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.eyebrow {
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #9fc7ba;
    margin: 0 0 18px;
}
.masthead h1 {
    font-family: "Spectral", Georgia, serif;
    font-weight: 500;
    font-size: clamp(2.1rem, 5.5vw, 3.1rem);
    line-height: 1.08;
    margin: 0 0 16px;
    letter-spacing: -.01em;
}
.masthead p.lede {
    font-size: 1.08rem;
    color: #cfdcd6;
    max-width: 56ch;
    margin: 0 0 22px;
}
.updated {
    display: inline-block;
    font-size: 13px;
    letter-spacing: .04em;
    color: #9fc7ba;
    border: 1px solid rgba(159,199,186,.4);
    border-radius: 999px;
    padding: 5px 14px;
}

/* Layout */
main {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

section {
    padding: 44px 0 8px;
    border-bottom: 1px solid var(--line);
}
section:last-of-type { border-bottom: none; }

h2 {
    font-family: "Spectral", Georgia, serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--pine);
    margin: 0 0 18px;
    letter-spacing: -.01em;
}
h3 {
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--ink);
    margin: 26px 0 10px;
}
p { margin: 0 0 16px; }
a { color: var(--sage); text-decoration: none; border-bottom: 1px solid rgba(46,125,107,.35); }
a:hover { border-bottom-color: var(--sage); }
a:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: 2px; }

ul { margin: 0 0 16px; padding-left: 0; list-style: none; }
ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 9px;
}
ul li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sage);
}
strong { font-weight: 700; color: var(--ink); }

/* Report card */
.report-card {
    background: var(--sage-soft);
    border: 1px solid #cfe2da;
    border-radius: 14px;
    padding: 28px 28px 22px;
    margin: 8px 0 4px;
}
.report-card h2 { margin-top: 0; }
.mail-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 4px 0 20px;
}
.mail-label { font-size: .85rem; color: var(--muted); }
.mail-link {
    font-family: "Spectral", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--pine);
    border-bottom: 2px solid rgba(46,125,107,.4);
}
.mail-link:hover { border-bottom-color: var(--sage); }

/* Two-column scope / recognition */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 6px;
}
@media (max-width: 620px) {
    .grid-2 { grid-template-columns: 1fr; gap: 8px; }
}
.col-label {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 12px;
}
.col-in .col-label { color: var(--sage); }
.col-out .col-label { color: var(--amber); }
.col-out ul li::before { background: var(--amber); }

.offer-no ul li::before {
    background: transparent;
    width: 12px;
    height: 2px;
    border-radius: 0;
    top: 14px;
    left: 2px;
    background: var(--amber);
}

.note {
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 3px solid var(--sage);
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    font-size: .96rem;
    color: var(--muted);
    margin: 8px 0 0;
}

footer {
    max-width: 760px;
    margin: 0 auto;
    padding: 28px 24px 60px;
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.6;
}
footer .org { color: var(--ink); font-weight: 600; }
