:root {
    --navy: #1d245f;
    --navy-deep: #11173d;
    --lime: #b4d82d;
    --lime-soft: #d9ee81;
    --paper: #f7f8f1;
    --paper-strong: #ffffff;
    --ink: #161821;
    --muted: #5e6273;
    --line: rgba(29, 36, 95, 0.12);
    --shadow: 0 28px 60px rgba(17, 23, 61, 0.10);
    --radius: 28px;
    --radius-sm: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(180, 216, 45, 0.20), transparent 30%),
        linear-gradient(180deg, #fbfcf7 0%, #f1f4e8 100%);
    color: var(--ink);
    font-family: Candara, "Segoe UI", sans-serif;
}

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

a {
    color: inherit;
    text-decoration: none;
}

p,
li {
    line-height: 1.7;
}

.site-shell {
    position: relative;
    overflow: hidden;
}

.site-shell::before,
.site-shell::after {
    content: "";
    position: absolute;
    inset: auto auto 78% -10%;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(135deg, rgba(29, 36, 95, 0.14), rgba(180, 216, 45, 0.18));
    clip-path: polygon(0 35%, 70% 0, 100% 26%, 28% 100%);
    pointer-events: none;
}

.site-shell::after {
    inset: 42% -8% auto auto;
    width: 18rem;
    height: 18rem;
    background: linear-gradient(135deg, rgba(180, 216, 45, 0.16), rgba(29, 36, 95, 0.08));
    transform: rotate(12deg);
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 5.5rem 0;
}

.section-surface {
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(12px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 20;
    background: rgba(247, 248, 241, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(29, 36, 95, 0.08);
    box-shadow: 0 10px 30px rgba(17, 23, 61, 0.06);
}

main {
    padding-top: 4.5rem;
}

.header-bar,
.header-right,
.site-nav,
.hero-actions,
.footer-actions {
    display: flex;
    align-items: center;
}

.header-bar {
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.55rem 0;
}

.header-right {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.brand {
    width: min(10.5rem, 36vw);
    flex: 0 0 auto;
}

.site-nav {
    gap: 0.35rem;
    flex-wrap: wrap;
}

.site-nav a {
    padding: 0.25rem 0.55rem;
    font-family: Bahnschrift, "Trebuchet MS", sans-serif;
    font-size: 0.82rem;
    color: var(--navy);
    border-radius: 999px;
    transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(29, 36, 95, 0.08);
    color: var(--navy-deep);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    font-family: Bahnschrift, "Trebuchet MS", sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button-primary {
    background: var(--lime);
    color: var(--navy-deep);
    box-shadow: 0 18px 30px rgba(180, 216, 45, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: #c4e63f;
}

.button-secondary {
    background: transparent;
    color: var(--navy);
    border: 1px solid rgba(29, 36, 95, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: rgba(29, 36, 95, 0.06);
}

.button-compact {
    padding: 0.55rem 0.9rem;
    font-size: 0.82rem;
}

.hero {
    padding-top: 4.2rem;
    padding-bottom: 4rem;
}

.hero-grid,
.section-grid,
.footer-grid,
.process-grid,
.stats-grid,
.card-grid {
    display: grid;
    gap: 1.4rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--navy);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: Bahnschrift, "Trebuchet MS", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
}

h1,
h2,
h3,
.stat-card strong {
    margin: 0;
    font-family: Bahnschrift, "Trebuchet MS", sans-serif;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.95;
    max-width: 11ch;
}

h2 {
    font-size: clamp(2rem, 3vw, 3.3rem);
    line-height: 1;
    max-width: 14ch;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.15;
}

.hero-text,
.story-card p,
.info-card p,
.pathway-card p,
.partner-card p,
.process-card p,
.cta-panel p,
.footer-note,
.footer-brand p {
    color: var(--muted);
}

.hero-text {
    max-width: 58ch;
    font-size: 1.08rem;
}

.hero-actions {
    gap: 0.9rem;
    flex-wrap: wrap;
    margin: 2rem 0 1.8rem;
}

.hero-list,
.value-list,
.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-list li,
.value-list li,
.footer-list li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--muted);
}

.hero-list li + li,
.value-list li + li,
.footer-list li + li {
    margin-top: 0.85rem;
}

.hero-list li::before,
.value-list li::before,
.footer-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(180, 216, 45, 0.18);
}

.hero-panel {
    display: grid;
    gap: 1.2rem;
}

.hero-card,
.story-card,
.values-card,
.info-card,
.pathway-card,
.partner-card,
.process-card,
.cta-panel,
.footer-card,
.stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card,
.story-card,
.values-card,
.cta-panel {
    padding: 1.8rem;
}

.hero-card-brand {
    background:
        linear-gradient(135deg, rgba(29, 36, 95, 0.96), rgba(29, 36, 95, 0.78)),
        linear-gradient(135deg, rgba(180, 216, 45, 0.18), transparent);
    color: #eef1ff;
}

.hero-card-brand p {
    color: rgba(238, 241, 255, 0.86);
}

.hero-card-brand img {
    width: min(18rem, 100%);
    margin: 1rem 0 1.25rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 24px;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.25));
}

.hero-card-focus {
    padding: 1.6rem;
}

.card-kicker {
    display: inline-flex;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(180, 216, 45, 0.16);
    color: var(--navy);
    font-family: Bahnschrift, "Trebuchet MS", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.2rem 0 1rem;
}

.tag-grid span {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(29, 36, 95, 0.06);
    border: 1px solid rgba(29, 36, 95, 0.08);
    color: var(--navy);
    font-family: Bahnschrift, "Trebuchet MS", sans-serif;
    font-size: 0.9rem;
}

.microcopy {
    margin: 0;
    font-size: 0.95rem;
}

.stats-section {
    padding-top: 0;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
    padding: 1.5rem;
}

.stat-card strong {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--navy);
    font-size: 2rem;
}

.stat-card span {
    color: var(--muted);
}

.section-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) minmax(280px, 0.75fr);
    align-items: start;
}

.section-heading-block {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.section-grid .section-heading-block {
    margin-bottom: 0;
}

.story-card {
    min-height: 100%;
}

.values-card {
    background:
        linear-gradient(180deg, rgba(180, 216, 45, 0.16), rgba(180, 216, 45, 0.08)),
        rgba(255, 255, 255, 0.92);
}

.card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-up {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.pathway-card,
.partner-card,
.process-card,
.footer-card {
    padding: 1.5rem;
}

.partner-card {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(29, 36, 95, 0.08);
    border-radius: 22px;
}

.partner-logo img {
    width: 100%;
    max-width: 12rem;
    max-height: 3.4rem;
    object-fit: contain;
}

.info-card::before,
.pathway-card::before,
.partner-card::before,
.process-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 0.3rem;
    background: linear-gradient(90deg, var(--lime), rgba(29, 36, 95, 0.3));
    border-radius: var(--radius) var(--radius) 0 0;
}

.partners-grid .partner-card:nth-child(2n)::before,
.pathways-grid .pathway-card:nth-child(2n)::before {
    background: linear-gradient(90deg, rgba(29, 36, 95, 0.8), var(--lime));
}

.process-wrap {
    display: grid;
    gap: 2rem;
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
    padding-top: 4.25rem;
}

.process-card span {
    position: absolute;
    top: 1.2rem;
    left: 1.4rem;
    color: var(--navy);
    font-family: Bahnschrift, "Trebuchet MS", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.cta-section {
    padding-top: 1rem;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: 2rem;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(29, 36, 95, 0.98), rgba(17, 23, 61, 0.9)),
        linear-gradient(135deg, rgba(180, 216, 45, 0.12), transparent);
    color: #f8f9ff;
}

.cta-panel p {
    color: rgba(248, 249, 255, 0.82);
}

.site-footer {
    padding: 2rem 0 2.5rem;
    background: linear-gradient(180deg, rgba(17, 23, 61, 0.98), rgba(12, 16, 42, 1));
    color: #eef1ff;
}

.footer-grid {
    grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 1fr));
    align-items: start;
}

.footer-brand img {
    width: min(15rem, 100%);
    margin-bottom: 1rem;
    padding: 0.8rem 0.95rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
}

.footer-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.footer-card h3,
.footer-brand h3 {
    margin-bottom: 1rem;
}

.footer-list li,
.footer-note {
    color: rgba(238, 241, 255, 0.82);
}

.footer-list a:hover,
.footer-list a:focus-visible {
    color: var(--lime-soft);
}

.site-footer .button-secondary {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: #eef1ff;
}

.site-footer .button-secondary:hover,
.site-footer .button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.10);
}

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: rgba(238, 241, 255, 0.66);
}

@media (max-width: 1100px) {
    .hero-grid,
    .section-grid,
    .cta-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .four-up,
    .stats-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    main {
        padding-top: 9.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .header-bar,
    .header-right {
        align-items: flex-start;
    }

    .header-bar {
        flex-direction: column;
        gap: 0.75rem;
    }

    .header-right {
        width: 100%;
        flex-direction: column;
        gap: 0.6rem;
    }

    .brand {
        width: min(8.5rem, 42vw);
    }

    .site-nav {
        width: 100%;
        gap: 0.25rem;
    }

    .site-nav a {
        padding: 0.2rem 0.45rem;
        font-size: 0.76rem;
    }

    .site-header .button-compact {
        width: auto;
        align-self: flex-start;
    }

    .hero {
        padding-top: 3rem;
    }

    h1 {
        max-width: none;
    }

    .card-grid,
    .four-up,
    .stats-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .footer-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    main {
        padding-top: 11rem;
    }

    .site-nav {
        justify-content: flex-start;
    }
}
