:root {
    --bg: #f4f7fc;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: rgba(255, 255, 255, 0.9);
    --ink: #14213a;
    --muted: #56657f;
    --line: rgba(20, 33, 58, 0.12);
    --accent: #2e6df6;
    --accent-soft: rgba(46, 109, 246, 0.12);
    --hero-top: #eef4ff;
    --hero-mid: #f7f9fd;
    --hero-bottom: #edf5f2;
    --max-width: 76rem;
    --copy-width: 44rem;
    --shadow: 0 24px 80px rgba(24, 42, 74, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(91, 145, 255, 0.12), transparent 34rem),
        radial-gradient(circle at bottom right, rgba(137, 197, 172, 0.16), transparent 28rem),
        linear-gradient(180deg, var(--hero-top) 0%, var(--hero-mid) 45%, var(--bg) 100%);
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(20, 33, 58, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 33, 58, 0.03) 1px, transparent 1px);
    background-size: 3.5rem 3.5rem;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 75%);
    pointer-events: none;
}

a {
    color: inherit;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: clip;
    padding: 3rem 1.5rem 2rem;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.85;
    animation: drift 16s ease-in-out infinite alternate;
}

.hero::before {
    width: 30rem;
    height: 30rem;
    top: -8rem;
    right: -6rem;
    background: radial-gradient(circle, rgba(86, 137, 246, 0.18), transparent 68%);
}

.hero::after {
    width: 22rem;
    height: 22rem;
    left: -5rem;
    bottom: -7rem;
    background: radial-gradient(circle, rgba(122, 193, 170, 0.18), transparent 68%);
    animation-duration: 18s;
}

.hero-inner,
.content,
.footer {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 36rem;
    animation: lift-in 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
}

.headline {
    margin: 1rem 0 0;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 600;
    color: var(--muted);
    max-width: 30rem;
}

.support {
    margin: 1.25rem 0 0;
    max-width: 34rem;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: var(--ink);
}

.hero-actions {
    margin-top: 2rem;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    font-weight: 700;
    color: var(--accent);
}

.hero-link::after {
    content: "\2193";
    display: inline-block;
    transition: transform 220ms ease;
}

.hero-link:hover::after,
.hero-link:focus-visible::after {
    transform: translateY(0.2rem);
}

.content {
    padding: 0 1.5rem 6rem;
}

.policy-shell {
    max-width: var(--copy-width);
    margin: 0 auto;
    padding: 3rem 0 0;
}

.policy-intro {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
}

.eyebrow,
.updated {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.policy-title {
    margin: 0.6rem 0 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.policy-summary {
    margin: 1rem 0 0;
    color: var(--muted);
    max-width: 36rem;
}

.policy-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(1.4rem);
    transition:
        opacity 650ms ease,
        transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.policy-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.policy-section h2 {
    margin: 0 0 0.9rem;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.45rem, 2.6vw, 1.95rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.policy-section p,
.policy-section li {
    color: var(--ink);
    font-size: 1rem;
}

.policy-section p {
    margin: 0.85rem 0 0;
}

.policy-section ul {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
}

.policy-section li + li {
    margin-top: 0.5rem;
}

.inline-note {
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 2px solid var(--accent-soft);
    color: var(--muted);
}

.contact-line {
    margin-top: 1rem;
    font-weight: 600;
}

.footer {
    padding: 0 1.5rem 3rem;
}

.footer-inner {
    width: min(100%, var(--copy-width));
    margin: 0 auto;
    padding-top: 1.5rem;
    color: var(--muted);
    font-size: 0.95rem;
}

@keyframes drift {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(1.8rem, 1.2rem, 0) scale(1.06);
    }
}

@keyframes lift-in {
    from {
        opacity: 0;
        transform: translateY(1.4rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .hero::before,
    .hero::after,
    .hero-copy,
    .policy-section {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 42rem) {
    .hero {
        padding-top: 2rem;
        align-items: flex-end;
    }

    .policy-shell {
        padding-top: 2rem;
    }
}
