:root{
  --bg: #070A12;
  --surface: rgba(255,255,255,.06);
  --line: rgba(255,255,255,.12);

  --text: #F3F6FF;
  --muted: rgba(243,246,255,.70);

  --accent: #7C9BFF;
  --accent2: #5EEAD4;

  --shadow: 0 16px 40px rgba(0,0,0,.35);
  --radius: 18px;

  --wrap: min(1120px, 92vw);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% -10%, rgba(124,155,255,.20), transparent 60%),
              radial-gradient(900px 600px at 90% 0%, rgba(94,234,212,.12), transparent 55%),
              var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
.wrap{ width: var(--wrap); margin: 0 auto; }

.small{ font-size: .92rem; }
.muted{ color: var(--muted); }
.dot{ opacity:.6; padding: 0 .35rem; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding: .88rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(124,155,255,.35);
  background: linear-gradient(135deg, rgba(124,155,255,.22), rgba(94,234,212,.10));
  color: var(--text);
  font-weight: 700;
  letter-spacing: .2px;
  transition: transform .12s ease, filter .12s ease;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.08); }
.btn:active{ transform: translateY(0px); filter: brightness(1.02); }
.btn--ghost{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.btn--sm{ padding: .7rem .95rem; font-weight: 700; }
.btn--block{ width:100%; }

.topbar{
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .55rem 0;
  gap: 1rem;
}
.topbar__left, .topbar__right{
  display:flex;
  align-items:center;
  gap: .6rem;
  flex-wrap: wrap;
}
.topbar__link{
  color: var(--muted);
  font-size: .92rem;
}
.topbar__link:hover{ color: var(--text); }

.chip{
  display:inline-flex;
  align-items:center;
  padding: .25rem .6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-size: .82rem;
  color: var(--muted);
}

.header{
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7,10,18,.62);
  backdrop-filter: blur(12px);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .95rem 0;
  gap: 1rem;
}
.brand{
  display:flex;
  align-items:center;
  gap: .75rem;
  min-width: 220px;
}
.brand__mark{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 30%, rgba(124,155,255,.9), rgba(94,234,212,.45));
  box-shadow: 0 12px 26px rgba(124,155,255,.16);
  border: 1px solid rgba(255,255,255,.14);
}
.brand__text{ line-height: 1.05; }
.brand__name{ font-weight: 800; letter-spacing: .2px; }
.brand__sub{ color: var(--muted); font-weight: 600; font-size: .95rem; }

.nav{
  display:flex;
  align-items:center;
  gap: .8rem;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.nav a{
  color: var(--muted);
  padding: .55rem .6rem;
  border-radius: 12px;
  font-weight: 600;
}
.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,.05);
}

.navbtn{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  align-items:center;
  justify-content:center;
  gap: 5px;
}
.navbtn span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(243,246,255,.85);
  border-radius: 99px;
}

/* Hero */
.hero{
  position: relative;
  min-height: 76vh;
  display:flex;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__bg{
  position:absolute;
  inset: 0;
  background-image: url("/images/centerpoint.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.02);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,10,18,.92) 0%, rgba(7,10,18,.74) 45%, rgba(7,10,18,.55) 100%),
    linear-gradient(180deg, rgba(7,10,18,.35) 0%, rgba(7,10,18,.85) 100%);
}
.hero__inner{
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 4.1rem) 0;
  display:grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 1.3rem;
  align-items: start;
}
.eyebrow{
  margin: 0 0 .8rem;
  color: rgba(94,234,212,.95);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
}
.hero h1{
  margin:0 0 .85rem;
  font-weight: 900;
  line-height: 1.02;
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  letter-spacing: -0.02em;
}
.lead{
  margin:0 0 1.25rem;
  color: rgba(243,246,255,.78);
  font-size: 1.12rem;
  max-width: 60ch;
}
.hero__cta{
  display:flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.35rem;
}
.hero__cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .9rem;
  margin-top: .7rem;
}
.stat{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  padding: 1.05rem 1.05rem;
  box-shadow: var(--shadow);
}
.stat__kicker{ color: var(--muted); font-weight: 700; font-size: .92rem; }
.stat__value{ font-weight: 900; font-size: 1.35rem; margin-top: .25rem; }
.stat__meta{ color: var(--muted); font-size: .92rem; margin-top: .15rem; }

.panel{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(12,16,28,.76);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}
.panel--glass{
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}
.panel h3{ margin:0 0 .6rem; font-size: 1.15rem; }
.stack{ display:grid; gap:.6rem; }
.divider{ height:1px; background: rgba(255,255,255,.12); margin: 1.05rem 0; }

/* Sections */
.section{ padding: 3.2rem 0; }
.section--alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.section__actions{ display:flex; gap:.7rem; flex-wrap: wrap; }

h2{
  margin: 0 0 .25rem;
  font-size: clamp(1.6rem, 2.2vw, 2.05rem);
  letter-spacing: -0.01em;
}
h3{ margin: 0 0 .55rem; }

.grid{
  display:grid;
  gap: 1rem;
}
.grid--2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4{ grid-template-columns: repeat(4, minmax(0,1fr)); }

.card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
  padding: 1.2rem;
}
.card:hover{ border-color: rgba(124,155,255,.28); }

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
  align-items: start;
}

.times{
  margin-top: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}
.times__row{
  display:grid;
  grid-template-columns: 1.2fr .7fr 1fr;
  gap: .75rem;
  padding: .95rem 1rem;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.times__row:last-child{ border-bottom: none; }
.times__day{ font-weight: 800; }
.times__time{ font-weight: 900; color: rgba(94,234,212,.95); }
.times__desc{ color: var(--muted); }

.pillrow{ display:flex; gap:.55rem; flex-wrap: wrap; margin-top: 1rem; }
.pill{
  display:inline-flex;
  align-items:center;
  padding: .35rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
}

.quote__box{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: radial-gradient(800px 340px at 20% 0%, rgba(124,155,255,.18), transparent 60%),
              rgba(255,255,255,.06);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.quote__text{
  margin:0 0 .85rem;
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 700;
}
.quote__meta{ margin:0; }

.tile{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 1.2rem;
  display:block;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  transition: transform .12s ease, border-color .12s ease, filter .12s ease;
}
.tile:hover{
  transform: translateY(-2px);
  border-color: rgba(124,155,255,.30);
  filter: brightness(1.06);
}
.tile__icon{ font-size: 1.5rem; }
.tile__title{ font-weight: 900; margin-top: .65rem; }
.tile__text{ color: var(--muted); margin-top: .3rem; }

.anchorgrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.anchor{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  padding: 1.1rem;
}

.video{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}
.video__frame{
  aspect-ratio: 16 / 9;
  background: rgba(0,0,0,.25);
}
.video__frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
}
.video__meta{ padding: 1rem 1.1rem; }
.video__title{ font-weight: 900; }

.linklist{
  margin: .75rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.linklist a{ color: rgba(124,155,255,.95); font-weight: 700; }
.linklist a:hover{ color: rgba(94,234,212,.95); }

.event{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  padding: 1.1rem;
  display:flex;
  gap: 1rem;
}
.event__date{
  width: 64px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding: .6rem .4rem;
}
.event__month{
  font-weight: 900;
  font-size: .8rem;
  letter-spacing: .16em;
  color: rgba(94,234,212,.95);
}
.event__day{ font-weight: 900; font-size: 1.55rem; margin-top: .15rem; }
.event__title{ font-weight: 900; margin-bottom: .2rem; }

.give{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
  align-items: start;
}
.give__card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.form{
  display:grid;
  gap: .85rem;
}
label{
  display:grid;
  gap: .35rem;
  color: var(--muted);
  font-weight: 600;
}
input, textarea{
  width: 100%;
  padding: .85rem .95rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--text);
  font: inherit;
}
input:focus, textarea:focus{
  outline: 2px solid rgba(124,155,255,.20);
  border-color: rgba(124,155,255,.35);
}

/* Footer */
.footer{
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  padding: 1.8rem 0;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__brand{ display:flex; align-items:center; gap: .75rem; }
.brand__mark--footer{ width: 34px; height: 34px; border-radius: 12px; }
.footer__title{ font-weight: 900; }
.footer__links{
  display:flex;
  gap: .75rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}
.footer__links a:hover{ color: var(--text); }

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .give{ grid-template-columns: 1fr; }
  .grid--4{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .anchorgrid{ grid-template-columns: 1fr; }

  .navbtn{ display:flex; }
  .nav{
    display:none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: .75rem 0 0;
    gap: .2rem;
  }
  .nav a{
    padding: .9rem .8rem;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
  }
  .nav a.btn{ text-align:center; }
  .header__inner{ flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; transition: none !important; }
}
.formnote{
  margin-top: .8rem;
  font-size: .95rem;
  color: rgba(243,246,255,.72);
}

.formSuccess{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
  padding: 1.2rem;
}
/* --- Fix background "color band" bleeding through sections --- */

/* Make sections sit on a consistent base so the body gradient doesn't show through */
.section {
  position: relative;
  background: rgba(7,10,18,.92);
}

/* Only tint alternate sections, but keep it uniform (no gradient bands) */
.section.section--alt {
  background: rgba(7,10,18,.92);
}

/* Add a subtle overlay tint to alt sections without affecting cards */
.section.section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.03);
  pointer-events: none;
  z-index: 0;
}

/* Ensure content is above the overlay */
.section > .wrap {
  position: relative;
  z-index: 1;
}

/* Fix footer gradient bleeding through text */
.footer{
  position: relative;
  background: rgba(7,10,18,.96) !important;
  border-top: 1px solid rgba(255,255,255,.10);
}

.footer::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(7,10,18,.96);
  pointer-events:none;
  z-index:0;
}

.footer .wrap,
.footer__inner{
  position: relative;
  z-index: 1;
}
