:root {
    --bg: #f3f0ea;
    --bg-soft: #fffaf1;
    --text: #1f2730;
    --muted: #5f6872;
    --accent: #055f5b;
    --accent-2: #d26f27;
    --card: rgba(255, 255, 255, 0.78);
    --border: rgba(31, 39, 48, 0.12);
    --shadow: 0 18px 50px rgba(8, 17, 27, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(1200px 600px at -10% 10%, #f8e7d5 0%, transparent 50%),
        radial-gradient(900px 500px at 110% 35%, #dcefeb 0%, transparent 50%),
        linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 100%);
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
}

.bg-orb {
    position: fixed;
    z-index: -1;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.45;
    pointer-events: none;
}

.bg-orb-1 {
    width: 22rem;
    height: 22rem;
    background: #f9b97f;
    top: -7rem;
    right: -4rem;
    animation: driftA 16s ease-in-out infinite alternate;
}

.bg-orb-2 {
    width: 20rem;
    height: 20rem;
    background: #8bc8bc;
    bottom: -6rem;
    left: -5rem;
    animation: driftB 18s ease-in-out infinite alternate;
}

.hero {
    max-width: 1050px;
    margin: 0 auto;
    padding: 4.6rem 1.2rem 2.2rem;
    animation: riseIn 650ms ease-out;
}

.kicker {
    display: inline-block;
    margin: 0;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(5, 95, 91, 0.15);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: "Fraunces", Georgia, serif;
    line-height: 1.2;
}

h1 {
    margin: 1rem 0 0.45rem;
    font-size: clamp(2rem, 4.5vw, 3.8rem);
}

.subtitle {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.updated {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #38414b;
}

.home-hero {
    padding-bottom: 2.8rem;
}

.hero-cta {
    display: inline-flex;
    margin-top: 1.2rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(120deg, #055f5b, #1f7d75);
    box-shadow: 0 10px 28px rgba(5, 95, 91, 0.25);
}

.hero-cta:hover,
.hero-cta:focus-visible {
    filter: brightness(1.06);
}

.container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 1.2rem 3rem;
    display: grid;
    gap: 1.2rem;
}

.single-column {
    grid-template-columns: minmax(0, 1fr);
}

.summary {
    backdrop-filter: blur(8px);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.2rem 1.25rem;
    box-shadow: var(--shadow);
    animation: riseIn 720ms ease-out;
}

.summary h2 {
    margin: 0 0 0.9rem;
    font-size: 1.2rem;
}

.summary ol {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.42rem;
}

.summary a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: border-color 180ms ease;
}

.summary a:hover,
.summary a:focus-visible {
    border-color: var(--accent);
}

.policy-content {
    display: grid;
    gap: 1rem;
}

.home-grid {
    display: grid;
    gap: 1rem;
}

.card {
    backdrop-filter: blur(8px);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.3rem 1.2rem;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(8px);
    animation: revealCard 500ms ease forwards;
}

.card:nth-child(2) {
    animation-delay: 50ms;
}

.card:nth-child(3) {
    animation-delay: 90ms;
}

.card:nth-child(4) {
    animation-delay: 130ms;
}

.card:nth-child(5) {
    animation-delay: 170ms;
}

.card:nth-child(6) {
    animation-delay: 210ms;
}

.card:nth-child(7) {
    animation-delay: 250ms;
}

.card:nth-child(8) {
    animation-delay: 290ms;
}

.card h2 {
    margin: 0 0 0.6rem;
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}

.card h3 {
    margin: 1.1rem 0 0.4rem;
    font-size: 1.09rem;
}

.feature-card {
    border-color: rgba(5, 95, 91, 0.28);
}

.card-label {
    display: inline-flex;
    margin: 0 0 0.5rem;
    padding: 0.2rem 0.55rem;
    border-radius: 8px;
    font-size: 0.77rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0f5d59;
    background: rgba(15, 93, 89, 0.14);
}

.text-link {
    display: inline-block;
    margin-top: 0.4rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(9, 77, 134, 0.2);
}

.text-link:hover,
.text-link:focus-visible {
    border-bottom-color: rgba(9, 77, 134, 0.85);
}

.manifesto-card {
    border-color: rgba(31, 39, 48, 0.22);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.86), rgba(232, 245, 242, 0.86));
}

p,
ul {
    margin: 0.55rem 0;
}

ol {
    margin: 0.55rem 0;
    padding-left: 1.2rem;
}

ul {
    padding-left: 1.2rem;
}

a {
    color: #094d86;
}

.contact-card {
    border-color: rgba(210, 111, 39, 0.35);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.84), rgba(254, 243, 231, 0.9));
}

.email-pill {
    display: inline-flex;
    margin-top: 0.5rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(5, 95, 91, 0.12);
    border: 1px solid rgba(5, 95, 91, 0.25);
    font-weight: 700;
}

.steps {
    display: grid;
    gap: 0.35rem;
}

.template-box {
    border: 1px dashed var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.65);
    padding: 0.8rem 0.9rem;
}

.footer {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0.6rem 1.2rem 2.2rem;
    color: var(--muted);
    font-size: 0.92rem;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes driftA {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(-20px, 24px, 0) scale(1.07);
    }
}

@keyframes driftB {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(22px, -18px, 0) scale(1.05);
    }
}

@media (min-width: 1000px) {
    .container:not(.single-column) {
        grid-template-columns: 280px 1fr;
        align-items: start;
    }

    .summary {
        position: sticky;
        top: 1rem;
    }
}

@media (max-width: 999px) {
    .hero {
        padding-top: 3.4rem;
    }

    .summary ol {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .summary ol {
        grid-template-columns: 1fr;
    }

    .card,
    .summary {
        border-radius: 14px;
        padding: 1rem;
    }

    .footer {
        padding-bottom: 1.4rem;
    }
}

@media (min-width: 800px) {
    .home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}