@import url('https://fonts.googleapis.com/css2?family=DM+Mono&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root { --ink: #0d1020; --paper: #f6f3ea; --sun: #ffdf3f; --pink: #ff5c8a; --blue: #8ac8ff; }
* { box-sizing: border-box; }
body { min-height: 100vh; margin: 0; color: var(--ink); background: var(--paper); font-family: 'Space Grotesk', system-ui, sans-serif; display: flex; flex-direction: column; }
main { flex: 1; }
.hero { min-height: calc(100vh - 82px); padding: clamp(2rem, 8vw, 7rem); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.hero::before, .hero::after { content: ''; position: absolute; border-radius: 50%; z-index: -1; }
.hero::before { width: min(48vw, 520px); height: min(48vw, 520px); background: var(--sun); top: -12vw; right: -10vw; }
.hero::after { width: min(26vw, 300px); height: min(26vw, 300px); background: var(--blue); bottom: -10vw; left: 45%; }
.eyebrow, .updated { font: 0.75rem/1.4 'DM Mono', monospace; text-transform: uppercase; letter-spacing: .08em; }
.eyebrow { margin: 0 0 1rem; }
h1 { font-size: clamp(4.6rem, 14vw, 11rem); line-height: .78; letter-spacing: -.09em; margin: 0; max-width: 860px; }
h1 span { color: var(--pink); }
.intro { max-width: 430px; font-size: clamp(1.1rem, 2vw, 1.45rem); line-height: 1.45; margin: 2.8rem 0 2rem; }
.button { display: inline-block; align-self: flex-start; padding: .85rem 1.2rem; color: var(--ink); background: var(--sun); border: 2px solid var(--ink); border-radius: 999px; font-weight: 600; text-decoration: none; box-shadow: 4px 4px 0 var(--ink); transition: transform .15s, box-shadow .15s; }
.button:hover { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
footer { display: flex; justify-content: space-between; gap: 1rem; padding: 1.5rem clamp(2rem, 8vw, 7rem); border-top: 2px solid var(--ink); font: .75rem 'DM Mono', monospace; }
a { color: inherit; }
.policy-wrap { width: min(100% - 3rem, 760px); margin: 0 auto; padding: 3.5rem 0 5rem; }
.back { font: .8rem 'DM Mono', monospace; text-decoration: none; }
.policy { margin-top: 4rem; }
.policy h1 { font-size: clamp(3rem, 8vw, 5.5rem); line-height: .95; letter-spacing: -.07em; }
.policy h1::first-line { color: var(--pink); }
.updated { margin: 1.5rem 0 3rem; color: #555; }
.policy p { font-size: 1.05rem; line-height: 1.65; }
.policy h2 { margin: 2.2rem 0 .5rem; font-size: 1.35rem; letter-spacing: -.03em; }
.policy a { text-decoration-thickness: 2px; text-underline-offset: 3px; }
@media (max-width: 560px) { .hero { min-height: calc(100vh - 75px); } .policy-wrap { width: min(100% - 2.5rem, 760px); } }
