@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
    --navy: #1b2b4a;
    --pink: #eb5b9b;
    --aqua: #9fe0dc;
    --amber: #faaa1d;
    --paper: #fbf8f1;
    --line: rgba(27, 43, 74, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--navy);
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.7;
}

a { color: inherit; font-weight: 700; }
a:hover { color: #b92768; }
a:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; }

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 20;
    padding: .7rem 1rem;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    transform: translateY(-180%);
}

.skip-link:focus { transform: none; }

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.site-header img,
footer img { display: block; width: 184px; height: auto; }

.back-link { text-decoration: none; }

main {
    position: relative;
    overflow: hidden;
}

main::before {
    content: "";
    position: absolute;
    top: 8rem;
    right: -12rem;
    width: 30rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--aqua);
    opacity: .48;
}

.legal-shell {
    position: relative;
    width: min(820px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(72px, 10vw, 130px) 0;
}

.eyebrow {
    margin: 0 0 18px;
    color: #b92768;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: .95;
    letter-spacing: -.07em;
}

.lede {
    max-width: 700px;
    margin: 32px 0 12px;
    color: #4f5e78;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.updated { margin-bottom: 64px; font-size: .9rem; font-weight: 700; }

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

h2 { margin: 0 0 10px; font-size: clamp(1.35rem, 3vw, 1.8rem); line-height: 1.2; }
p { margin: 0 0 12px; }

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 36px max(20px, calc((100% - 1180px) / 2));
    background: var(--navy);
    color: #fff;
    font-size: .9rem;
}

@media (max-width: 620px) {
    .site-header { width: min(100% - 28px, 1180px); padding: 20px 0; }
    .site-header img { width: 150px; }
    .back-link { font-size: .8rem; }
    .legal-shell { width: min(100% - 36px, 820px); padding: 64px 0; }
    .updated { margin-bottom: 44px; }
    footer { align-items: flex-start; flex-direction: column; }
}

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