:root{
  --bg: #050914;
  --panel: rgba(255,255,255,.06);
  --panel-2: rgba(255,255,255,.09);
  --stroke: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);

  --brand: #60a5fa;      /* blue */
  --brand-2:#a78bfa;     /* purple */
  --gold: #fbbf24;       /* warm accent */

  --shadow: 0 18px 55px rgba(0,0,0,.45);
  --shadow-soft: 0 10px 30px rgba(0,0,0,.25);

  --radius: 18px;
  --radius-lg: 26px;

  --ring: 0 0 0 4px rgba(96,165,250,.22);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(900px 700px at 15% 15%, rgba(96,165,250,.25), transparent 60%),
    radial-gradient(900px 700px at 85% 20%, rgba(167,139,250,.22), transparent 60%),
    radial-gradient(900px 700px at 50% 100%, rgba(251,191,36,.10), transparent 55%),
    linear-gradient(180deg, #040716 0%, #070b1b 55%, #050914 100%);
}

/* nicer text rendering */
body, button, input { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* layout */
.container{
  width:100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section{ padding: 5.25rem 0; }
.text-center{ text-align:center; }

/* type */
h1,h2,h3{
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
h1{ font-size: clamp(2.2rem, 4vw, 3.3rem); }
h2{ font-size: clamp(1.7rem, 2.6vw, 2.2rem); color: rgba(255,255,255,.95); }
h3{ font-size: 1.25rem; color: rgba(255,255,255,.92); }
p{ margin-bottom: 1rem; color: var(--muted); font-size: 1.03rem; }
small{ color: rgba(255,255,255,.62); }

/* links */
a{ color: rgba(255,255,255,.90); text-decoration: none; }
a:hover{ color: #fff; }

/* header */
header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(5,9,20,.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: .9rem 0;
}
.logo{
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
  display:flex;
  align-items:center;
  gap:.6rem;
}
.logo-badge{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(16px 16px at 30% 30%, rgba(255,255,255,.55), transparent 60%),
    linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 30px rgba(96,165,250,.22);
  border: 1px solid rgba(255,255,255,.18);
}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  font-weight: 650;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  cursor:pointer;
  user-select:none;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow-soft);
}
.btn:focus{ outline: none; box-shadow: var(--shadow-soft), var(--ring); }
.btn:active{ transform: translateY(0px) scale(.99); }

.btn-primary{
  background:
    radial-gradient(18px 18px at 25% 20%, rgba(255,255,255,.45), transparent 60%),
    linear-gradient(135deg, var(--brand), var(--brand-2));
  border-color: rgba(255,255,255,.18);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}

.btn-ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.btn-ghost:hover{ background: rgba(255,255,255,.10); transform: translateY(-2px); }

.btn-lg{
  padding: 1.05rem 1.6rem;
  font-size: 1.05rem;
}

/* hero */
.hero{
  padding: 7.75rem 0 5.5rem;
  text-align:center;
  position: relative;
  overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(96,165,250,.20), transparent 60%),
    radial-gradient(700px 460px at 20% 20%, rgba(167,139,250,.16), transparent 60%);
  pointer-events:none;
  filter: blur(0px);
}
.hero .container{ position: relative; }
.hero h1{
  background: linear-gradient(90deg, #ffffff 0%, #cfe7ff 25%, #e9ddff 60%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .9rem;
}
.hero p{
  max-width: 820px;
  margin: 0 auto 1.15rem;
  font-size: 1.15rem;
  color: rgba(255,255,255,.76);
}
.hero .subnote{
  color: rgba(255,255,255,.70);
  font-style: italic;
}

/* section backgrounds */
.section-alt{
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

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

/* cards */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.55rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow:hidden;
}
.card:before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(300px 120px at 20% 0%, rgba(96,165,250,.22), transparent 55%),
    radial-gradient(260px 120px at 80% 0%, rgba(167,139,250,.18), transparent 55%);
  opacity: .55;
  pointer-events:none;
}
.card > *{ position: relative; }
.card p{ color: rgba(255,255,255,.72); }

/* impact tiers */
.impact-tier{
  text-align:center;
  padding-top: 1.75rem;
}
.impact-tier .price{
  font-size: 2.05rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  margin: .75rem 0 .9rem;
  background: linear-gradient(90deg, var(--gold), #fff1b5, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* little pill for section headings (optional but nice) */
.kicker{
  display:inline-flex;
  gap:.5rem;
  align-items:center;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: .9rem;
}

/* FAQ */
.faq-list{ margin-top: 1rem; }
.faq-item{ margin-bottom: .75rem; }
.faq-question{
  font-weight: 650;
  cursor:pointer;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  align-items:center;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}
.faq-question:hover{
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-1px);
}
.faq-answer{
  padding: .85rem 1.1rem 1rem;
  display:none;
}
.faq-answer.active{ display:block; }

/* donate section */
#donate .btn-primary{
  box-shadow: 0 20px 70px rgba(96,165,250,.20);
}
#donate a#copy-link{
  color: rgba(255,255,255,.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}
#donate a#copy-link:hover{ color: #fff; }

/* footer */
footer{
  padding: 3.25rem 0;
  text-align:center;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.15);
}
footer p{ color: rgba(255,255,255,.65); margin-bottom: .45rem; }
footer a{ color: rgba(255,255,255,.90); text-decoration: underline; text-underline-offset: 3px; }

.thank-you {
  font-family: 'Brush Script MT', cursive;
  font-size: 1.2rem;
  color: rgba(255,255,255,.8);
  margin-top: 1.5rem;
  font-style: italic;
}
/* animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in{ animation: fadeIn .85s ease forwards; }
.delay-1{ animation-delay: .15s; }
.delay-2{ animation-delay: .30s; }
.delay-3{ animation-delay: .45s; }

/* responsive */
@media (max-width: 900px){
  section{ padding: 4.25rem 0; }
  .grid-cols-2,.grid-cols-3{ grid-template-columns: 1fr; }
  .hero{ padding: 7.25rem 0 4.75rem; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

.hero-media{
  margin: 2rem auto 0;
  max-width: 920px;
}

/* Cropped cinematic image */
.hero-media img{
  width: 100%;
  height: 260px;                 /* 👈 controls visible height (adjust if needed) */
  object-fit: cover;             /* crops instead of squishing */
  object-position: center;       /* keeps faces centered */
  display: block;

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
}

/* Optional subtle fade at top/bottom for luxury look */
.hero-media{
  position: relative;
}

.hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius: 22px;
  background: linear-gradient(
    to bottom,
    rgba(5,9,20,.45) 0%,
    transparent 20%,
    transparent 80%,
    rgba(5,9,20,.45) 100%
  );
}

.hero-media-caption{
  margin-top: .85rem;
  font-size: .95rem;
  color: rgba(255,255,255,.70);
}

.supporters-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.supporter-card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* Make supporter images square */
.supporter-photo{
  position: relative;
  aspect-ratio: 1 / 1;     /* 👈 forces perfect square */
  height: auto;            /* removes fixed height */
  overflow: hidden;
}

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


/* subtle overlay for readability / vibe */
.supporter-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(5,9,20,.08) 0%,
    rgba(5,9,20,.15) 55%,
    rgba(5,9,20,.45) 100%
  );
  pointer-events:none;
}

.supporter-meta{
  padding: 1rem 1.1rem 1.15rem;
}

.supporter-name{
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.95);
  font-size: 1.1rem;
}

.supporter-title{
  margin-top: .2rem;
  color: rgba(255,255,255,.70);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 900px){
  .supporters-grid{
    grid-template-columns: 1fr;
  }
  .supporter-photo{
    height: 260px;
  }
}

