*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #0d1a3a;
    --ink-soft: #2a3a5c;
    --ink-muted: #6b7a99;
    --cream: #f0ede4;
    --cream-dark: #e2ddd3;
    --cyan: #00e5ff;
    --cyan-light: #b3f6ff;
    --cyan-dark: #00b8cc;
    --blue: #1257d8;
    --blue-mid: #1a6af0;
    --blue-light: #e8f0fd;
    --white: #ffffff;
    --radius: 4px;
    --radius-lg: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    font-size: 16px;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(240, 237, 228, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(18, 87, 216, 0.12);
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-mark {
    width: 40px;
    height: 40px;
    background: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--blue);
    line-height: 1.1;
}

.nav-brand span {
    display: block;
    font-size: 10px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: var(--ink-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--forest);
}

.btn-nav {
    background: var(--blue);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 2px;
    font-weight: 500 !important;
    font-size: 13px !important;
    letter-spacing: 0.04em;
    transition: background 0.2s !important;
}

.btn-nav:hover {
    background: var(--blue-mid) !important;
}

/* HERO */
.hero {
    min-height: clamp(600px, 100vh, 1000px);
    padding-top: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-left {
    background: linear-gradient(135deg, var(--blue) 0%, #0d3fa8 100%);
    padding: 80px 64px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    bottom: 0;
    width: 80px;
    background: var(--blue);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: 2;
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title em {
    font-style: normal;
    color: var(--cyan);
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 48px;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
}

.btn-primary {
    display: block;
    padding: 16px 28px;
    background: var(--cyan);
    color: var(--blue);
    border: none;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: var(--cyan-light);
    transform: translateY(-1px);
}

.btn-secondary {
    display: block;
    padding: 15px 28px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

.hero-trust {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.trust-badge svg {
    width: 14px;
    height: 14px;
    fill: var(--cyan);
    flex-shrink: 0;
}

/* HERO DONATE TOP */
.hero-donate-top {
    margin-bottom: 28px;
}

.hero-donate-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

.hero-donate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-donate-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 16px;
    background: var(--blue);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(18, 87, 216, 0.25);
}

.hero-donate-btn:hover {
    background: var(--blue-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(18, 87, 216, 0.35);
}

.hero-donate-logo {
    height: 34px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.hero-donate-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-donate-arrow {
    font-size: 12px;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.04em;
}

/* HERO RIGHT */
.hero-right {
    background: var(--cream);
    padding: 80px 80px 80px 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.endowment-explainer {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 36px;
}

.explainer-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 16px;
}

.explainer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.3;
}

.explainer-text {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 24px;
}

.flow-diagram {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
}

.flow-step {
    flex: 1;
    padding: 14px 12px;
    text-align: center;
}

.flow-step-icon {
    font-size: 20px;
    margin-bottom: 6px;
}

.flow-step-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.flow-step-sub {
    font-size: 10px;
    color: var(--ink-muted);
}

.flow-arrow {
    color: var(--blue);
    font-size: 18px;
    flex-shrink: 0;
    padding: 0 4px;
}

.stat-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: var(--ink-muted);
    line-height: 1.4;
}

/* DIVIDER */
.section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 80px;
    margin: 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--cream-dark);
}

.divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* HOW IT WORKS */
.section {
    padding: 96px 80px;
}

.section-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 2.6vw, 36px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 600px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 56px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 60px;
    right: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 50%, var(--blue) 100%);
}

.step {
    padding: 0 24px 0 0;
    position: relative;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.step-text {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.65;
}

/* FUNDS */
.funds-section {
    padding: 96px 80px;
    background: linear-gradient(135deg, var(--blue) 0%, #0a3bbf 100%);
    position: relative;
    overflow: hidden;
}

.funds-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 60px solid rgba(0, 229, 255, 0.08);
}

.funds-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 40px solid rgba(0, 229, 255, 0.06);
}

.funds-section .section-label {
    color: var(--cyan);
}

.funds-section .section-title {
    color: var(--white);
}

.funds-section .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.funds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.fund-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.fund-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cyan);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.fund-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-4px);
}

.fund-card:hover::before {
    transform: scaleX(1);
}

.fund-logo {
    height: 52px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    margin-bottom: 28px;
    display: block;
}

.fund-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.fund-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 28px;
}

.fund-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.fund-tag {
    padding: 5px 12px;
    background: rgba(0, 229, 255, 0.12);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 2px;
    font-size: 11px;
    font-weight: 500;
    color: var(--cyan);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.fund-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.04em;
}

.fund-cta-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.fund-card:hover .fund-cta-arrow {
    background: var(--cyan);
    border-color: var(--cyan);
}

.fund-cta-arrow svg {
    width: 12px;
    height: 12px;
    stroke: var(--cyan);
    fill: none;
    stroke-width: 2;
}

.fund-card:hover .fund-cta-arrow svg {
    stroke: var(--blue);
}

/* IMPACT */
.impact-section {
    padding: 96px 80px;
    background: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.impact-left .section-title {
    max-width: 440px;
}

.impact-pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pillar {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.pillar:last-child {
    border-bottom: none;
}

.pillar-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.5;
}

.pillar-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.pillar-text {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.impact-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.impact-stat {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}

.impact-stat:first-child {
    grid-column: span 2;
    background: var(--blue);
    padding: 36px 32px;
}

.impact-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--blue);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.impact-stat:first-child .impact-num {
    color: var(--cyan);
    font-size: 52px;
}

.impact-stat:first-child .impact-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.impact-label {
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.5;
}

/* TESTIMONIAL / QUOTE */
.quote-section {
    padding: 80px;
    background: var(--cream);
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
}

.quote-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 0.6;
    color: var(--cyan-dark);
    display: block;
    margin-bottom: 20px;
}

.quote-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 32px;
}

.quote-author {
    font-size: 14px;
    color: var(--ink-muted);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* CTA SECTION */
.cta-section {
    padding: 96px 80px;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-left .section-title {
    max-width: 480px;
}

.cta-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.cta-perk {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.perk-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.perk-check svg {
    width: 10px;
    height: 10px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2.5;
}

.perk-text {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.perk-text strong {
    color: var(--ink);
    font-weight: 600;
}

.cta-right {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    border: 1px solid var(--cream-dark);
}

.cta-right-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-right-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.2;
}

.cta-right-sub {
    font-size: 15px;
    color: var(--ink-soft);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.choice-btn {
    display: block;
    padding: 20px 16px;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--cream-dark);
    background: var(--white);
    text-decoration: none;
    transition: border-color 0.2s, transform 0.15s;
    cursor: pointer;
    text-align: center;
}

.choice-btn:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.choice-logo {
    height: 36px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}

.choice-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.choice-desc {
    font-size: 11px;
    color: var(--ink-muted);
}

.cta-or {
    text-align: center;
    font-size: 12px;
    color: var(--ink-muted);
    margin: 16px 0;
    position: relative;
}

.cta-or::before, .cta-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: var(--cream-dark);
}

.cta-or::before {
    left: 0;
}

.cta-or::after {
    right: 0;
}

.contact-link {
    display: block;
    text-align: center;
    font-size: 14px;
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    padding: 14px;
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s;
    background: var(--white);
}

.contact-link:hover {
    background: var(--blue);
    color: var(--white);
}

/* CERTIFICATIONS */
.certs-section {
    padding: 48px 80px;
    background: var(--cream);
    display: flex;
    align-items: center;
    gap: 48px;
}

.certs-text {
    font-size: 13px;
    color: var(--ink-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.certs-list {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.65;
}

.cert-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--cyan-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.cert-badge svg {
    width: 24px;
    height: 24px;
    fill: var(--blue);
}

.cert-name {
    font-size: 10px;
    font-weight: 600;
    color: var(--ink-muted);
    letter-spacing: 0.1em;
}

/* FOOTER */
footer {
    background: #050f24;
    padding: 64px 80px 40px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.65;
    max-width: 300px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-address {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    animation: fadeUp 0.6s ease both;
}

.hero-title {
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero-subtitle {
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-ctas {
    animation: fadeUp 0.7s 0.3s ease both;
}

.hero-trust {
    animation: fadeUp 0.7s 0.4s ease both;
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1024px) {
    nav {
        padding: 0 1.5rem;
    }

    .nav-links li:not(:last-child) {
        display: none;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-brand {
        font-size: 13px;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 100px 40px 60px;
        align-items: center;
        text-align: center;
    }

    .hero-left::after {
        display: none;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-right {
        padding: 60px 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid::before {
        display: none;
    }

    .funds-grid, .impact-grid, .cta-section {
        grid-template-columns: 1fr;
    }

    .section, .funds-section, .impact-section, .cta-section {
        padding: 72px 40px;
    }

    .certs-section {
        padding: 40px;
        flex-direction: column;
        align-items: flex-start;
    }

    footer {
        padding: 56px 40px 32px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
    }

    .hero-left {
        padding: 100px 20px 40px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-right {
        padding: 40px 20px;
    }

    .endowment-explainer {
        padding: 24px 20px;
    }

    .hero-donate-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-trio {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .flow-diagram {
        flex-direction: column;
        gap: 12px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step {
        padding: 0;
    }

    .section, .funds-section, .impact-section, .cta-section {
        padding: 60px 20px;
    }

    .funds-grid, .impact-right {
        grid-template-columns: 1fr;
    }

    .impact-stat:first-child {
        grid-column: span 1;
    }

    .cta-choice-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .certs-section {
        padding: 32px 20px;
    }

    footer {
        padding: 40px 20px 20px;
    }

    .quote-section {
        padding: 60px 20px;
    }

    .quote-mark {
        font-size: 48px;
    }

    .quote-text {
        font-size: 18px;
    }
}
