@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,500;0,600;0,700;0,800;0,900;1,700&family=Cinzel:wght@700;800;900&family=Inter:wght@400;500;600;700&display=swap");
.primary-nav a {
    text-decoration: none;
}
:root {
    --ink: #050208;
    --ink-2: #0b0611;
    --panel: #100817;
    --paper: #f4f1f7;
    --muted: #aaa1b2;
    --violet: #a62bff;
    --violet-2: #6d13bf;
    --orange: #ff6800;
    --lime: #b9ff00;
    --line: rgba(255, 255, 255, 0.14);
    --max: 1460px;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--ink);
    color: var(--paper);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
}
button,
input,
select,
textarea {
    font: inherit;
}
.container {
    width: min(calc(100% - 48px), var(--max));
    margin-inline: auto;
}
.skip-link {
    position: fixed;
    z-index: 1000;
    left: 18px;
    top: -100px;
    background: var(--lime);
    color: #0a0a0a;
    padding: 12px 18px;
    font-weight: 900;
}
.skip-link:focus {
    top: 18px;
}
.site-shell {
    min-height: 100vh;
    background: radial-gradient(circle at 20% 35%, rgba(125, 18, 211, 0.08), transparent 30%), var(--ink);
}
.event-strip {
    height: 38px;
    padding: 0 max(24px, calc((100vw - var(--max)) / 2));
    display: flex;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid var(--line);
    background: #030105;
    color: #c9c0d0;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}
.event-strip .strip-dot {
    width: 3px;
    height: 3px;
    border-radius: 99px;
    background: var(--orange);
}
.event-strip a {
    margin-left: auto;
    color: var(--lime);
    font-weight: 850;
}

.hero {
    position: relative;
    min-height: 1000px;
    padding: 210px 0 90px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(90deg, rgba(3, 1, 8, 0.82) 0%, rgba(3, 1, 8, 0.44) 50%, rgba(3, 1, 8, 0.16) 100%),
        linear-gradient(0deg, var(--ink) 0%, transparent 30%), url("../images/hero-night-8k.webp");
    background-size: cover;
    background-position: center;
    isolation: isolate;
    overflow: hidden;
}
.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0 49.85%, rgba(255, 255, 255, 0.08) 50%, transparent 50.15%),
        linear-gradient(0deg, transparent 0 49.85%, rgba(255, 255, 255, 0.035) 50%, transparent 50.15%);
    background-size: 160px 160px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
    opacity: 0.22;
    z-index: -1;
}
.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    mix-blend-mode: screen;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
    z-index: -1;
}
.hero-grid {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 46%;
    background: linear-gradient(transparent, rgba(5, 2, 8, 0.52));
    z-index: -1;
}
.hero-content {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 70px;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    font-weight: 900;
    color: #d8cfdf;
    margin: 0 0 23px;
}
.eyebrow span {
    color: var(--lime);
    margin-right: 14px;
}
.hero h1,
.section-heading h2,
.section-head h2,
.partnership h2,
.inquiry h2 {
    font-family: Impact, "Arial Narrow", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.83;
    letter-spacing: -0.025em;
    margin: 0;
}
.hero h1 {
    font-size: clamp(88px, 9vw, 172px);
    text-shadow: 0 10px 50px rgba(0, 0, 0, 0.65);
}
.hero h1 em,
.section-heading em,
.section-head em,
.partnership h2 em,
.inquiry h2 em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--orange);
    text-shadow: 0 0 30px rgba(255, 104, 0, 0.2);
}
.hero-lede {
    max-width: 720px;
    font-size: 20px;
    line-height: 1.62;
    color: #ddd4e2;
    margin: 35px 0 38px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 58px;
    padding: 0 26px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 12px;
    font-weight: 950;
    transition:
        transform 0.2s,
        filter 0.2s,
        background 0.2s;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.button:hover {
    transform: translateY(-2px);
    filter: brightness(1.12);
}
.button-primary {
    background: linear-gradient(110deg, var(--orange), #ff9a17);
    color: #130701;
    box-shadow: 0 0 44px rgba(255, 104, 0, 0.24);
}
.button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(2, 1, 4, 0.38);
    backdrop-filter: blur(10px);
}
.hero-logo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 660px;
}
.hero-logo {
    width: min(100%, 700px);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 35px 55px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 28px rgba(161, 39, 255, 0.24));
}
.logo-halo {
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(174, 63, 255, 0.34), rgba(255, 99, 0, 0.1) 38%, transparent 69%);
    filter: blur(24px);
    animation: breathe 5s ease-in-out infinite;
}
.hero-stamp {
    position: absolute;
    right: -20px;
    bottom: 55px;
    z-index: 3;
    width: 154px;
    height: 154px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(185, 255, 0, 0.65);
    background: rgba(2, 1, 5, 0.78);
    box-shadow:
        inset 0 0 25px rgba(185, 255, 0, 0.1),
        0 15px 40px rgba(0, 0, 0, 0.45);
    transform: rotate(7deg);
}
.hero-stamp:after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.28);
    border-radius: inherit;
}
.hero-stamp span,
.hero-stamp small {
    font-size: 9px;
    letter-spacing: 0.16em;
    z-index: 1;
}
.hero-stamp strong {
    font:
        42px/1 Impact,
        sans-serif;
    color: var(--lime);
    z-index: 1;
}
.hero-bottom {
    position: absolute;
    left: 50%;
    bottom: 42px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(5, 2, 8, 0.5);
    backdrop-filter: blur(8px);
}
.hero-stat {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid var(--line);
}
.hero-stat:last-child {
    border-right: 0;
}
.hero-stat strong {
    font:
        34px/1 Impact,
        sans-serif;
}
.hero-stat span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}
.hero-stat.accent strong {
    color: var(--lime);
}
@keyframes breathe {
    50% {
        transform: scale(1.08);
        opacity: 0.8;
    }
}
.signal-band {
    overflow: hidden;
    border-top: 1px solid rgba(185, 255, 0, 0.24);
    border-bottom: 1px solid rgba(185, 255, 0, 0.24);
    background: #09030f;
}
.signal-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 15px 0;
    animation: marquee 25s linear infinite;
    font:
        14px/1 Impact,
        "Arial Narrow",
        sans-serif;
    letter-spacing: 0.18em;
    color: #efe9f4;
}
.signal-track i {
    width: 8px;
    height: 8px;
    border: 2px solid var(--lime);
    transform: rotate(45deg);
}
@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}
.section {
    padding: 130px 0;
}
.section-index {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
    font-size: 10px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: #88808f;
    margin-bottom: 52px;
}
.mission-grid,
.partnership-grid,
.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
}
.section-heading h2,
.section-head h2,
.partnership h2,
.inquiry h2 {
    font-size: clamp(62px, 6vw, 112px);
}
.mission-copy {
    padding-top: 24px;
}
.mission-copy .lead,
.partnership-copy .lead {
    font-size: 23px;
    line-height: 1.5;
    color: #f0ebf4;
    margin: 0 0 25px;
}
.mission-copy > p:not(.lead),
.partnership-copy > p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted);
}
.mission-points {
    margin-top: 42px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.mission-points span {
    border: 1px solid var(--line);
    padding: 11px 14px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: #d9d1df;
}
.charities {
    background: linear-gradient(180deg, #0b0610, #08030d);
    position: relative;
}
.charities:before {
    content: "";
    position: absolute;
    left: -10%;
    top: 20%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: rgba(128, 25, 217, 0.1);
    filter: blur(120px);
}
.section-head.split {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 58px;
}
.section-head.split > p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 470px;
    margin: 0 0 10px;
}
.charity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.charity-card {
    min-height: 450px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}
.charity-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 15%, var(--glow), transparent 38%);
    opacity: 0.24;
}
.charity-card.violet {
    --accent: var(--violet);
    --glow: #a62bff;
}
.charity-card.lime {
    --accent: var(--lime);
    --glow: #b9ff00;
}
.charity-card.orange {
    --accent: var(--orange);
    --glow: #ff6800;
}
.charity-card:hover {
    border-color: color-mix(in srgb, var(--accent), transparent 30%);
}
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.card-number {
    font:
        25px/1 Impact,
        sans-serif;
    color: var(--accent);
}
.partner-mark {
    width: 112px;
    height: 112px;
    border: 1px solid color-mix(in srgb, var(--accent), transparent 25%);
    background: rgba(2, 1, 5, 0.62);
    display: grid;
    place-items: center;
    font:
        46px/1 Impact,
        sans-serif;
    color: var(--accent);
    box-shadow:
        inset 0 0 25px color-mix(in srgb, var(--accent), transparent 88%),
        0 0 32px color-mix(in srgb, var(--accent), transparent 88%);
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}
.card-body {
    position: relative;
    z-index: 1;
}
.card-body > p:first-child {
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 0.16em;
    color: var(--accent);
    font-weight: 900;
}
.card-body h3 {
    font:
        36px/1.02 Impact,
        "Arial Narrow",
        sans-serif;
    text-transform: uppercase;
    margin: 10px 0 18px;
    max-width: 380px;
}
.card-rule {
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin-bottom: 18px;
}
.card-copy {
    color: #aaa2b0;
    line-height: 1.65;
    font-size: 14px;
    margin: 0;
}
.card-corner {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58px;
    height: 58px;
    border-left: 1px solid var(--accent);
    border-top: 1px solid var(--accent);
    opacity: 0.42;
}
.impact-break {
    min-height: 720px;
    display: flex;
    align-items: center;
    position: relative;
    background: url("../images/impact-night-8k.webp") center/cover fixed;
    isolation: isolate;
}
.impact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 2, 8, 0.95), rgba(5, 2, 8, 0.57) 52%, rgba(5, 2, 8, 0.28)),
        linear-gradient(0deg, var(--ink), transparent 30%, transparent 70%, var(--ink));
    z-index: -1;
}
.impact-content {
    max-width: 1180px;
}
.impact-content blockquote {
    font:
        clamp(52px, 6.5vw, 112px) / 0.98 Impact,
        "Arial Narrow",
        sans-serif;
    text-transform: uppercase;
    margin: 0;
    max-width: 1150px;
}
.impact-content blockquote:first-letter {
    color: var(--orange);
}
.impact-meta {
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    letter-spacing: 0.15em;
}
.impact-meta a {
    color: var(--lime);
    font-weight: 900;
}
.sponsors {
    background: #07030a;
}
.sponsor-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.sponsor-card {
    min-height: 170px;
    padding: 28px;
    display: grid;
    grid-template-columns: 78px 1fr auto;
    align-items: center;
    gap: 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);
}
.sponsor-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(166, 43, 255, 0.14), transparent 38%);
    opacity: 0;
    transition: 0.3s;
}
.sponsor-card:hover:before {
    opacity: 1;
}
.sponsor-mark {
    width: 72px;
    height: 72px;
    border: 1px solid rgba(255, 255, 255, 0.23);
    display: grid;
    place-items: center;
    font:
        26px/1 Impact,
        sans-serif;
    color: var(--lime);
    background: #0d0711;
    box-shadow: inset 0 0 24px rgba(185, 255, 0, 0.05);
}
.sponsor-card h3 {
    font:
        24px/1.05 Impact,
        sans-serif;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.sponsor-card p {
    margin: 0;
    color: #8f8795;
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
.sponsor-arrow {
    color: var(--orange);
    font-size: 22px;
}
.approval-note {
    color: #716a77;
    font-size: 10px;
    letter-spacing: 0.08em;
    margin: 18px 0 0;
}
.partnership {
    background: radial-gradient(circle at 82% 42%, rgba(145, 33, 239, 0.17), transparent 35%), #0a050e;
}
.partnership-grid {
    align-items: start;
}
.activation-list {
    list-style: none;
    margin: 45px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
}
.activation-list li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d2cad8;
}
.activation-list span {
    color: var(--orange);
    font-weight: 900;
}
.tier-stack {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
    box-shadow: var(--shadow);
    padding: 26px;
    clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.tier-title {
    display: flex;
    justify-content: space-between;
    padding: 4px 4px 25px;
    border-bottom: 1px solid var(--line);
    font-size: 10px;
    letter-spacing: 0.14em;
}
.tier-title small {
    color: var(--lime);
}
.tier-row {
    padding: 26px 4px;
    display: flex;
    gap: 26px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}
.tier-row:last-child {
    border-bottom: 0;
}
.tier-row > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tier-row strong {
    font:
        30px/1 Impact,
        sans-serif;
    text-transform: uppercase;
}
.tier-row span {
    max-width: 390px;
    color: #908897;
    font-size: 13px;
    line-height: 1.5;
}
.tier-row > b {
    font:
        27px/1 Impact,
        sans-serif;
    color: var(--orange);
    white-space: nowrap;
}
.inquiry {
    background: linear-gradient(180deg, #050208, #0b0611);
}
.inquiry-grid {
    align-items: start;
}
.inquiry-intro {
    position: sticky;
    top: 45px;
}
.inquiry-intro > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
    max-width: 560px;
}
.contact-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 42px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.contact-block span {
    font-size: 9px;
    letter-spacing: 0.17em;
    color: var(--orange);
}
.contact-block a {
    font:
        clamp(24px, 2.3vw, 40px) / 1 Impact,
        sans-serif;
    text-transform: uppercase;
}
.contact-block small {
    color: #827a87;
}
.partner-form {
    position: relative;
    padding: 34px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow);
    clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}
.form-kicker {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    font-size: 9px;
    letter-spacing: 0.15em;
}
.form-kicker span {
    color: var(--lime);
}
.form-kicker b {
    font-weight: 600;
    color: #8d8592;
}
.field-grid.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
label {
    display: block;
    margin-bottom: 18px;
}
label > span {
    display: block;
    margin-bottom: 9px;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #bdb4c3;
    font-weight: 900;
}
input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.17);
    background: #09050d;
    color: #fff;
    padding: 15px 16px;
    outline: none;
    border-radius: 0;
    transition: 0.2s;
}
input:focus,
select:focus,
textarea:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(166, 43, 255, 0.12);
}
textarea {
    resize: vertical;
}
.submit-button {
    border: 0;
    width: 100%;
    cursor: pointer;
}
.form-note {
    font-size: 10px;
    color: #77707c;
    line-height: 1.5;
    margin: 14px 0 0;
}
.form-status {
    margin-bottom: 22px;
    padding: 14px 16px;
    border: 1px solid rgba(185, 255, 0, 0.45);
    background: rgba(185, 255, 0, 0.07);
    color: #eafacb;
    font-size: 13px;
    line-height: 1.5;
}
.form-status.error {
    border-color: rgba(255, 104, 0, 0.5);
    background: rgba(255, 104, 0, 0.08);
    color: #ffd9c0;
}
.hp-field {
    position: absolute !important;
    left: -9999px !important;
}
.site-footer {
    position: relative;
    padding: 85px 0 24px;
    background: #030105;
    border-top: 1px solid var(--line);
    overflow: hidden;
}
.footer-glow {
    position: absolute;
    left: 50%;
    top: -500px;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: rgba(136, 25, 230, 0.14);
    filter: blur(80px);
}
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 65px;
    position: relative;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer-brand img {
    width: 95px;
    height: 95px;
    object-fit: contain;
}
.footer-brand div {
    display: flex;
    flex-direction: column;
}
.footer-brand strong {
    font:
        25px/1 Impact,
        sans-serif;
    letter-spacing: 0.08em;
}
.footer-brand span {
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-top: 7px;
}
.footer-main > p {
    color: #8c8492;
    line-height: 1.75;
    margin: 10px 0;
}
.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.footer-links > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links span {
    color: var(--lime);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.footer-links a {
    font-size: 13px;
    color: #b4abb9;
}
.footer-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 58px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 9px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #756e79;
}
.footer-bottom a {
    color: var(--orange);
}
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}
.reveal.in-view {
    opacity: 1;
    transform: none;
}
@media (max-width: 1180px) {
    .nav-panel {
        gap: 18px;
    }
    .nav-panel > a {
        font-size: 10px;
    }
    .hero {
        min-height: 940px;
    }
    .hero-content {
        gap: 20px;
    }
    .hero-logo-wrap {
        min-height: 550px;
    }
    .charity-grid,
    .sponsor-wall {
        grid-template-columns: repeat(2, 1fr);
    }
    .mission-grid,
    .partnership-grid,
    .inquiry-grid {
        gap: 55px;
    }
}
@media (max-width: 860px) {
    .container {
        width: min(calc(100% - 30px), var(--max));
    }
    .event-strip {
        padding: 0 15px;
        font-size: 8px;
    }
    .event-strip span:nth-of-type(2),
    .event-strip .strip-dot {
        display: none;
    }
   
    .hero {
        padding-top: 170px;
        min-height: 1150px;
        background-position: 61% center;
    }
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: clamp(80px, 20vw, 130px);
    }
    .hero-lede {
        font-size: 17px;
    }
    .hero-logo-wrap {
        min-height: 460px;
        margin-top: -20px;
    }
    .hero-logo {
        max-width: 520px;
    }
    .hero-stamp {
        width: 120px;
        height: 120px;
        right: 10px;
        bottom: 35px;
    }
    .hero-stamp strong {
        font-size: 34px;
    }
    .hero-bottom {
        grid-template-columns: repeat(2, 1fr);
        bottom: 22px;
    }
    .hero-stat:nth-child(2) {
        border-right: 0;
    }
    .hero-stat:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }
    .section {
        padding: 90px 0;
    }
    .mission-grid,
    .partnership-grid,
    .inquiry-grid,
    .section-head.split {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    .section-head.split {
        align-items: start;
    }
    .section-heading h2,
    .section-head h2,
    .partnership h2,
    .inquiry h2 {
        font-size: clamp(58px, 14vw, 92px);
    }
    .charity-grid,
    .sponsor-wall {
        grid-template-columns: 1fr;
    }
    .charity-card {
        min-height: 390px;
    }
    .impact-break {
        min-height: 620px;
        background-attachment: scroll;
    }
    .impact-content blockquote {
        font-size: clamp(50px, 13vw, 80px);
    }
    .partnership-copy .lead,
    .mission-copy .lead {
        font-size: 20px;
    }
    .inquiry-intro {
        position: static;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .footer-main > p {
        max-width: 520px;
    }
}
@media (max-width: 560px) {
    .event-strip {
        height: 34px;
    }
    .event-strip span:first-child {
        font-size: 7px;
    }
    .event-strip a {
        font-size: 7px;
    }
   
    .hero {
        min-height: 1040px;
        padding-top: 145px;
    }
    .hero h1 {
        font-size: 76px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .button {
        width: 100%;
    }
    .hero-logo-wrap {
        min-height: 380px;
    }
    .hero-logo {
        width: 360px;
    }
    .hero-stamp {
        right: -4px;
    }
    .hero-bottom {
        width: calc(100% - 28px);
    }
    .hero-stat {
        padding: 14px 12px;
    }
    .hero-stat strong {
        font-size: 26px;
    }
    .hero-stat span {
        font-size: 8px;
    }
    .section-index {
        margin-bottom: 34px;
    }
    .section-head.split {
        margin-bottom: 40px;
    }
    .section-heading h2,
    .section-head h2,
    .partnership h2,
    .inquiry h2 {
        font-size: 55px;
    }
    .charity-card {
        padding: 22px;
    }
    .partner-mark {
        width: 88px;
        height: 88px;
        font-size: 34px;
    }
    .card-body h3 {
        font-size: 31px;
    }
    .sponsor-card {
        grid-template-columns: 62px 1fr auto;
        padding: 20px;
        min-height: 135px;
    }
    .sponsor-mark {
        width: 58px;
        height: 58px;
    }
    .sponsor-card h3 {
        font-size: 19px;
    }
    .impact-meta {
        align-items: flex-start;
        gap: 18px;
        flex-direction: column;
    }
    .field-grid.two {
        grid-template-columns: 1fr;
    }
    .partner-form {
        padding: 23px;
    }
    .tier-row {
        flex-direction: column;
    }
    .tier-row > b {
        align-self: flex-start;
    }
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .signal-track,
    .logo-halo {
        animation: none;
    }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
