:root {
  color-scheme: dark;
  --pitch: #05070b;
  --royal: #165dff;
  --royal-soft: rgba(22, 93, 255, 0.18);
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.11);
  --copy: rgba(247, 250, 255, 0.74);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  max-width: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(22, 93, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #05070b 0%, #04060a 100%);
}

.font-display {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
}

.site-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.site-logo-header {
  height: 3.4rem;
  margin-left: 0.75rem;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.site-logo-footer {
  height: 4.5rem;
  margin-left: 0.75rem;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.26));
}

.social-link-header {
  height: 2.6rem;
  width: 2.6rem;
}

.nav-link,
.footer-link {
  position: relative;
  color: rgba(247, 250, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-link::after,
.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--royal), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover,
.footer-link:hover,
.mobile-link:hover {
  color: white;
}

.nav-link:hover::after,
.footer-link:hover::after {
  transform: scaleX(1);
}

.nav-link-active {
  color: white;
}

.nav-link-active::after {
  transform: scaleX(1);
}

.mobile-link {
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  color: rgba(247, 250, 255, 0.82);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}

.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.mobile-donate-btn,
.mobile-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.mobile-donate-btn {
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, #165dff 0%, #2b78ff 100%);
  color: white;
  box-shadow: 0 16px 36px rgba(22, 93, 255, 0.24);
}

.mobile-donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(22, 93, 255, 0.34);
}

.mobile-menu-button {
  width: 2.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.mobile-menu-button svg {
  transition: transform 220ms ease;
}

.mobile-menu-button:hover,
.mobile-menu-button[aria-expanded="true"] {
  transform: translateY(-1px);
  border-color: rgba(22, 93, 255, 0.4);
  background: rgba(22, 93, 255, 0.12);
}

.mobile-menu-button[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

.mobile-menu-panel {
  position: relative;
  margin-top: 0.85rem;
  overflow: hidden;
  max-height: 0;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(7, 10, 16, 0.82), rgba(7, 10, 16, 0.72)),
    radial-gradient(circle at top right, rgba(22, 93, 255, 0.22), transparent 34%);
  padding: 0 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  backdrop-filter: blur(22px);
  transition:
    max-height 320ms ease,
    opacity 220ms ease,
    transform 220ms ease,
    padding 220ms ease,
    border-color 220ms ease;
}

.mobile-menu-video,
.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.mobile-menu-video {
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1.04);
  filter: saturate(0.98) contrast(1.03) brightness(0.8);
}

.mobile-menu-overlay {
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.22), rgba(5, 7, 11, 0.54)),
    linear-gradient(90deg, rgba(5, 7, 11, 0.42), rgba(5, 7, 11, 0.08) 45%, rgba(5, 7, 11, 0.44));
}

.mobile-menu-panel.is-open {
  max-height: 24rem;
  border-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-menu-nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, #165dff 0%, #2b78ff 100%);
  color: white;
  box-shadow: 0 18px 40px rgba(22, 93, 255, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 55px rgba(22, 93, 255, 0.36);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.hero-shell {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96) 0%, rgba(5, 7, 11, 0.7) 46%, rgba(5, 7, 11, 0.92) 100%);
}

.home-hero {
  min-height: 100svh;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 90%);
}

.hero-noise {
  background-image:
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.06) 0, transparent 18%),
    radial-gradient(circle at 85% 20%, rgba(22, 93, 255, 0.12) 0, transparent 24%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0, transparent 16%);
  mix-blend-mode: screen;
}

.hero-orb {
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.55;
}

.hero-orb-left {
  top: 15%;
  left: -8%;
  background: rgba(22, 93, 255, 0.28);
}

.hero-orb-right {
  right: -10%;
  bottom: 12%;
  background: rgba(255, 255, 255, 0.12);
}

.video-stage {
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 72% 30%, rgba(22, 93, 255, 0.22), transparent 24%),
    linear-gradient(120deg, rgba(10, 13, 19, 0.88), rgba(5, 7, 11, 0.2));
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  transform: scale(1.02);
  filter: saturate(0.96) contrast(1.02) brightness(0.82);
}

.video-mask {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.68) 0%, rgba(5, 7, 11, 0.12) 48%, rgba(5, 7, 11, 0.56) 100%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.08), rgba(5, 7, 11, 0.38));
}

.video-label {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.45);
  padding: 0.85rem 1.15rem;
  color: rgba(247, 250, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  backdrop-filter: blur(20px);
}

.hero-content-shell {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.hero-title {
  max-width: 17ch;
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  line-height: 0.92;
}

.hero-copy {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
}

.hero-cta-group {
  align-items: flex-start;
}

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

.hero-stat,
.editorial-panel,
.event-preview,
.event-tile {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(14px);
}

.hero-stat {
  border-radius: 1.6rem;
  padding: 1.35rem;
  min-width: 0;
}

.hero-stat-value {
  font-size: clamp(2.05rem, 4.8vw, 3.75rem);
  line-height: 0.9;
}

.hero-stat-copy {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  line-height: 1.55;
  letter-spacing: 0.22em;
}

.editorial-panel {
  border-radius: 2rem;
  padding: 1.65rem;
}

.about-preview-cta {
  display: flex;
  width: 100%;
  max-width: 22rem;
  flex-direction: column;
  gap: 1rem;
}

.about-preview-frame {
  overflow: hidden;
  border-radius: 2rem;
}

.about-preview-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 260ms ease;
}

.about-preview-frame:hover .about-preview-image {
  transform: scale(1.03);
}

.impact-backdrop {
  background:
    radial-gradient(circle at top left, rgba(22, 93, 255, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.choose-role-section .impact-backdrop {
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.62), rgba(5, 7, 11, 0.72)),
    radial-gradient(circle at top center, rgba(255, 198, 129, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(5, 7, 11, 0.82), rgba(5, 7, 11, 0.2) 42%, rgba(5, 7, 11, 0.82)),
    url("./choose-your-role-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.impact-card {
  display: flex;
  min-height: 24rem;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 2rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(8, 10, 16, 0.78), rgba(8, 10, 16, 0.56)),
    radial-gradient(circle at top right, rgba(22, 93, 255, 0.16), transparent 35%);
  padding: 1.8rem;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease;
}

.impact-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(22, 93, 255, 0.55);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

.impact-link {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.impact-link::after {
  content: "->";
  color: var(--royal);
  transition: transform 180ms ease;
}

.impact-card:hover .impact-link::after {
  transform: translateX(6px);
}

.event-preview {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-radius: 2rem;
  padding: 1.35rem;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.event-preview:hover,
.event-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 93, 255, 0.4);
}

.date-badge {
  display: inline-flex;
  min-width: 5.8rem;
  flex-direction: column;
  gap: 0.4rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem 1rem 0.9rem;
  text-align: center;
}

.section-kicker,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(247, 250, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.section-kicker::before,
.panel-label::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--royal), transparent);
}

.events-grid {
  display: grid;
  gap: 1.25rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8rem 1rem 4rem;
}

.about-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.84) 0%, rgba(5, 7, 11, 0.56) 48%, rgba(5, 7, 11, 0.8) 100%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.28), rgba(5, 7, 11, 0.72)),
    url("./Untitled - June 17, 2026 at 10.59.40.png");
  background-position: center 24%;
  background-repeat: no-repeat;
  background-size: cover;
}

.core-pillars-backdrop {
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.76), rgba(5, 7, 11, 0.82)),
    linear-gradient(90deg, rgba(5, 7, 11, 0.8), rgba(5, 7, 11, 0.28) 40%, rgba(5, 7, 11, 0.76)),
    radial-gradient(circle at top left, rgba(255, 214, 132, 0.16), transparent 28%),
    url("./Untitled - June 17, 2026 at 14.12.27.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero-content {
  position: relative;
  margin: 0 auto;
  max-width: 80rem;
}

.page-title {
  margin-top: 1rem;
  max-width: 70rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: white;
}

.page-copy {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(247, 250, 255, 0.72);
}

.event-tile {
  overflow: hidden;
  border-radius: 2rem;
}

.event-feature {
  display: grid;
  gap: 0;
}

.event-media {
  min-height: 16rem;
  position: relative;
  background-size: cover;
  background-position: center;
}

.event-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(5, 7, 11, 0.4));
}

.event-media-feature {
  min-height: 21rem;
  background-image: url("https://chipositiveimpact.com/wp-content/uploads/2025/03/unnamed.jpg");
  background-position: center;
}

.event-media-blue {
  background-image: url("https://chipositiveimpact.com/wp-content/uploads/2025/03/Screenshot-2025-03-11-at-5.39.56%E2%80%AFPM.png");
  background-position: center;
}

.event-media-court {
  background-image: url("https://chipositiveimpact.com/wp-content/uploads/2025/03/unnamed-1.jpg");
  background-position: center;
}

.event-media-night {
  background-image: url("https://chipositiveimpact.com/wp-content/uploads/2025/03/unnamed-2.jpg");
  background-position: center;
}

.event-media-sponsor {
  background-image: url("https://chipositiveimpact.com/wp-content/uploads/2025/03/eventpic1.png");
  background-position: center;
}

.event-media-day {
  background-image: url("https://chipositiveimpact.com/wp-content/uploads/2025/03/unnamed.jpg");
  background-position: center;
}

.event-media-copy {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
}

.event-copy {
  padding: 1.45rem;
}

.story-block,
.support-tile,
.cta-banner,
.contact-panel,
.footer-cta-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(14px);
}

.story-block,
.support-tile {
  border-radius: 2rem;
  padding: 1.75rem;
}

.story-step {
  display: inline-flex;
  min-width: 4rem;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(22, 93, 255, 0.38);
  background: rgba(22, 93, 255, 0.12);
  padding: 0.6rem 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.16em;
  color: white;
}

.cta-banner {
  border-radius: 2.2rem;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at top right, rgba(22, 93, 255, 0.18), transparent 30%);
}

.contact-panel,
.footer-cta-card {
  border-radius: 2rem;
  padding: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at top right, rgba(22, 93, 255, 0.14), transparent 32%);
}

.team-list {
  display: grid;
  gap: 1.15rem;
  margin-inline: auto;
  max-width: 68rem;
}

.team-member {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at top right, rgba(22, 93, 255, 0.14), transparent 32%);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.team-member:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 93, 255, 0.4);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.team-photo-shell {
  position: relative;
  min-height: 16rem;
  background: #09101a;
}

.team-photo-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(5, 7, 11, 0.18)),
    linear-gradient(90deg, rgba(5, 7, 11, 0.12), rgba(5, 7, 11, 0));
}

.team-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-copy-shell {
  padding: 1.35rem;
}

.team-name {
  margin-top: 0.8rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.3rem, 4.4vw, 3.7rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: white;
}

.team-copy-shell p:not(.panel-label) {
  margin-top: 1rem;
  color: rgba(247, 250, 255, 0.72);
  line-height: 1.9;
}

.team-more-toggle {
  margin-top: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.9rem 1.2rem;
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease;
}

.team-more-toggle::after {
  content: "+";
  color: var(--royal);
  font-size: 1rem;
  line-height: 1;
}

.team-more-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 93, 255, 0.45);
  background: rgba(22, 93, 255, 0.12);
}

.team-more-toggle[aria-expanded="true"]::after {
  content: "-";
}

.team-more-copy {
  margin-top: 1.1rem;
  padding-top: 0.2rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1rem;
}

.social-link {
  display: inline-flex;
  height: 2.9rem;
  width: 2.9rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 93, 255, 0.52);
  background: rgba(22, 93, 255, 0.16);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#site-header.header-solid > div > div {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

@media (max-width: 639px) {
  .home-hero {
    width: 100%;
    max-width: 100vw;
    min-height: auto;
  }

  .video-stage {
    overflow: hidden;
  }

  .hero-content-shell {
    padding-top: 6.65rem;
    padding-right: 0.9rem;
    padding-bottom: 2.25rem;
    padding-left: 1.2rem;
  }

  .hero-title {
    max-width: 11ch;
    font-size: clamp(2.1rem, 9vw, 2.8rem);
    line-height: 0.94;
  }

  .hero-copy {
    max-width: 20.5rem;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .hero-cta-group {
    margin-top: 1.65rem;
    gap: 0.85rem;
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    width: auto;
    min-width: 0;
    justify-content: flex-start;
    padding: 0.86rem 1.2rem;
    font-size: 0.72rem;
    letter-spacing: 0.19em;
  }

  .hero-stats-grid {
    margin-top: 1.8rem;
    gap: 0.65rem;
  }

  .hero-orb {
    display: none;
  }

  .hero-orb-left {
    left: -18%;
  }

  .hero-orb-right {
    right: -18%;
  }

  .hero-stat {
    border-radius: 1.2rem;
    padding: 0.9rem 0.75rem;
  }

  .hero-stat-value {
    font-size: clamp(1.5rem, 5.8vw, 2.1rem);
  }

  .hero-stat-copy {
    margin-top: 0.55rem;
    font-size: 0.56rem;
    line-height: 1.4;
    letter-spacing: 0.15em;
  }

  .hero-video {
    width: 100%;
    max-width: 100%;
    object-position: 68% center;
    opacity: 0.9;
    transform: none;
  }

  .video-mask {
    background:
      linear-gradient(180deg, rgba(5, 7, 11, 0.24), rgba(5, 7, 11, 0.48) 50%, rgba(5, 7, 11, 0.86)),
      linear-gradient(90deg, rgba(5, 7, 11, 0.74), rgba(5, 7, 11, 0.16) 60%, rgba(5, 7, 11, 0.44));
  }

  .video-label {
    display: none;
  }
}

@media (min-width: 640px) {
  .event-preview {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .page-hero {
    padding: 8.5rem 1.5rem 5rem;
  }

  .hero-content-shell {
    padding-top: 7.8rem;
    padding-bottom: 4.2rem;
  }
}

@media (min-width: 768px) {
  .event-copy {
    padding: 1.6rem;
  }

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

  .event-feature {
    grid-column: span 2;
    grid-template-columns: 1.1fr 0.9fr;
  }

  .page-copy {
    font-size: 1.05rem;
  }

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

  .hero-content-shell {
    padding-top: 8.25rem;
    padding-bottom: 5rem;
  }

  .hero-stats-grid {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .mobile-header-actions {
    display: none;
  }

  .about-preview-cta {
    align-items: flex-end;
  }

  .impact-card,
  .event-preview,
  .editorial-panel {
    padding: 2rem;
  }

  .event-copy {
    padding: 1.85rem;
  }

  .page-hero {
    padding: 9rem 2rem 5.5rem;
  }

  .cta-banner {
    padding: 2.3rem;
  }

  .team-copy-shell {
    padding: 1.55rem;
  }

  .hero-content-shell {
    padding-top: 8.5rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1280px) {
  .team-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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