:root {
    --green: #0c6b38;
    --green-dark: #084d2a;
    --green-soft: #edf7f0;
    --navy: #12375b;
    --ink: #183047;
    --muted: #5f7180;
    --line: #dbe5e8;
    --white: #ffffff;
    --surface: #f7faf9;
    --shadow: 0 18px 45px rgba(24, 48, 71, .10);
    --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow { width: min(820px, calc(100% - 40px)); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand img { width: 62px; height: 62px; object-fit: contain; }

.brand span { display: grid; line-height: 1.2; }
.brand strong { color: var(--navy); font-size: 1.02rem; letter-spacing: .03em; }
.brand small { color: var(--muted); font-size: .74rem; }

.main-nav { display: flex; gap: 22px; align-items: center; }
.main-nav a { text-decoration: none; font-weight: 700; color: var(--navy); }
.main-nav a:hover { color: var(--green); }

.hero {
    background:
        radial-gradient(circle at 82% 16%, rgba(12,107,56,.14), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
    padding: 78px 0 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 54px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    color: var(--green);
    font-weight: 800;
    letter-spacing: .08em;
    font-size: .78rem;
    margin-bottom: 14px;
}

h1, h2, h3 { line-height: 1.12; margin-top: 0; color: var(--navy); }

h1 { font-size: clamp(2.5rem, 5vw, 4.7rem); margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }

.lead {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    color: var(--muted);
    max-width: 720px;
}

.actions, .campaign-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .01em;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(12,107,56,.20);
}

.button-primary:hover { background: var(--green-dark); }

.button-secondary {
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--navy);
}

.hero-logo-card {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(12,107,56,.14);
    border-radius: 34px;
    box-shadow: var(--shadow);
    padding: 30px;
}

.hero-logo-card img { margin: 0 auto; }

.microcopy, .legal-note {
    color: var(--muted);
    font-size: .9rem;
    max-width: 690px;
}

.section { padding: 72px 0; }
.section-soft { background: var(--surface); }

.section-heading { max-width: 780px; margin-bottom: 30px; }
.section-heading p { color: var(--muted); font-size: 1.06rem; }

.campaign-preview {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.campaign-preview p { color: var(--muted); margin-bottom: 0; }

.status-pill {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: .78rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.three-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 26px;
}

.info-card p { color: var(--muted); margin-bottom: 0; }

.card-number {
    font-weight: 900;
    color: var(--green);
    font-size: .9rem;
}

.campaign-hero {
    min-height: 68vh;
    padding: 86px 0;
    background:
        radial-gradient(circle at 15% 12%, rgba(18,55,91,.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f3f9f5 100%);
}

.notice-card {
    margin-top: 30px;
    padding: 24px;
    border: 1px solid rgba(12,107,56,.22);
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.notice-card p { color: var(--muted); margin-bottom: 0; }

.site-footer {
    border-top: 1px solid var(--line);
    background: #f6f9f8;
    padding: 42px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr .8fr;
    gap: 34px;
    align-items: start;
}

.footer-logo { width: 86px; margin-bottom: 10px; }
.footer-grid p { color: var(--muted); margin: 0 0 8px; }
.footer-grid a { display: block; color: var(--navy); font-weight: 700; margin-bottom: 8px; }

@media (max-width: 860px) {
    .header-inner { align-items: flex-start; padding: 12px 0; }
    .main-nav { display: none; }
    .hero { padding-top: 42px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-logo-card { order: -1; max-width: 500px; }
    .three-cards { grid-template-columns: 1fr; }
    .campaign-preview { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    .container, .narrow { width: min(100% - 28px, 1160px); }
    .brand small { display: none; }
    .brand img { width: 54px; height: 54px; }
    .actions .button, .campaign-actions .button { width: 100%; }
    .hero-logo-card { padding: 18px; border-radius: 24px; }
}
