/* Kind Active — core stylesheet
   Palette: black / grey / blue, high-energy bold sport-brand look */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --black: #0a0b0d;
  --near-black: #121417;
  --navy: #0d1b2e;
  --grey-900: #1b1f27;
  --grey-700: #3a4150;
  --grey-500: #6b7280;
  --grey-300: #b8bec8;
  --grey-100: #eceef1;
  --white: #f8f9fb;
  --blue: #1d4ed8;
  --blue-bright: #3b8bff;
  --blue-electric: #4fd2ff;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--near-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 14px;
}

.lede {
  font-size: 1.15rem;
  color: var(--grey-700);
  max-width: 640px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--blue-bright);
  color: var(--black);
  box-shadow: 0 6px 0 var(--blue);
}
.btn-primary:hover { box-shadow: 0 8px 0 var(--blue); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--blue); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 6px 0 var(--grey-700);
}
.btn-dark:hover { box-shadow: 0 8px 0 var(--grey-700); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--blue-bright);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo .dot { color: var(--blue-electric); }
.wordmark-img {
  height: 26px;
  width: auto;
  display: block;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-electric));
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-6deg);
}
.logo-mark svg { width: 20px; height: 20px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey-300);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); border-color: var(--blue-electric); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.8rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px; background: var(--white); border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 110px 0 140px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(79,210,255,0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(29,78,216,0.35), transparent 50%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 70%;
  height: 160%;
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 45%, transparent 46%);
  transform: skewX(-12deg);
  opacity: 0.55;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-inner { max-width: 680px; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 22px;
}
.hero h1 span { color: var(--blue-electric); }
.hero p.lede { color: var(--grey-300); margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Section basics ---------- */
section { padding: 96px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-grey { background: var(--grey-100); }

.section-head { max-width: 620px; margin-bottom: 56px; }
.section-head.center { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  background: var(--black);
  color: var(--white);
  border-radius: 14px;
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--grey-900);
  transition: transform .2s ease, border-color .2s ease;
}
.pillar:hover { transform: translateY(-6px); border-color: var(--blue-bright); }
.pillar .icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-electric));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.pillar .icon svg { width: 28px; height: 28px; stroke: var(--black); }
.pillar h3 { font-size: 1.3rem; margin-bottom: 12px; }
.pillar p { color: var(--grey-300); font-size: 0.96rem; }

/* ---------- Cards / Programs ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.card {
  background: var(--white);
  border: 2px solid var(--grey-100);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(10,11,13,0.12); border-color: var(--blue-bright); }
.card-media {
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}
.card-media svg { width: 46px; height: 46px; stroke: var(--blue-electric); }
.card-body { padding: 26px; }
.card-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(29,78,216,0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.card h3 { font-size: 1.1rem; text-transform: none; margin-bottom: 10px; }
.card p { color: var(--grey-700); font-size: 0.94rem; }
.card-list {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-list li {
  position: relative;
  padding-left: 18px;
  color: var(--grey-700);
  font-size: 0.88rem;
  line-height: 1.4;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
}
.card-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: 20px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); max-width: 480px; }
.cta-banner p { color: var(--grey-300); margin-top: 10px; }

/* ---------- Quote / testimonial ---------- */
.quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.quote p.q {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 700;
  text-transform: none;
  line-height: 1.4;
}
.quote .who {
  margin-top: 22px;
  color: var(--blue-electric);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* ---------- Values / list rows ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.value-item {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: var(--white);
  border-radius: 12px;
  border: 2px solid var(--grey-100);
}
.value-item .num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--blue-electric);
  -webkit-text-stroke: 1px var(--blue);
}
.value-item h4 { font-size: 1rem; margin-bottom: 6px; }
.value-item p { color: var(--grey-700); font-size: 0.92rem; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}
.team-card { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--grey-900), var(--navy));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.team-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
}
.team-photo svg { width: 56px; height: 56px; stroke: var(--blue-electric); position: relative; z-index: 1; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 0; }
.team-card h4 { font-size: 1rem; text-transform: none; }
.team-card .role { color: var(--blue); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 4px; }
.team-card .role-detail { color: var(--grey-500); font-size: 0.82rem; font-weight: 500; text-transform: none; letter-spacing: 0; margin-top: 6px; }

/* ---------- Donation tiers ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier {
  border: 2px solid var(--grey-100);
  border-radius: 16px;
  padding: 34px 26px;
  text-align: center;
  background: var(--white);
  transition: border-color .2s ease, transform .2s ease;
}
.tier:hover { transform: translateY(-4px); border-color: var(--blue-bright); }
.tier.featured { border-color: var(--blue-bright); background: var(--black); color: var(--white); position: relative; }
.tier.featured .tier-desc { color: var(--grey-300); }
.tier-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue-electric); color: var(--black);
  font-family: var(--font-head); font-weight: 800; font-size: 0.7rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
}
.tier .amount {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.4rem;
  margin: 10px 0;
}
.tier-desc { color: var(--grey-700); font-size: 0.9rem; margin-bottom: 22px; min-height: 60px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 2px solid var(--grey-100);
  border-radius: 16px;
  padding: 40px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--grey-700);
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--grey-100);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--white);
  color: var(--near-black);
  transition: border-color .15s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--blue-bright);
}
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 2px solid var(--grey-100);
  padding: 22px 0;
}
.faq-item h4 { font-size: 1rem; text-transform: none; margin-bottom: 8px; }
.faq-item p { color: var(--grey-700); font-size: 0.94rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--grey-300);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--grey-900);
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a:hover { color: var(--blue-electric); }
.footer-brand p { font-size: 0.9rem; max-width: 280px; margin-top: 14px; }
.footer-newsletter { display: flex; gap: 10px; margin-top: 16px; }
.footer-newsletter input {
  flex: 1;
  padding: 11px 14px;
  border-radius: 6px;
  border: 1px solid var(--grey-700);
  background: var(--near-black);
  color: var(--white);
}
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--grey-900);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.social-row a:hover { background: var(--blue-bright); }
.social-row svg { width: 17px; height: 17px; stroke: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.8rem;
  color: var(--grey-500);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Page header (inner pages) ---------- */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--blue-bright);
}
.page-hero::after {
  content: "";
  position: absolute; right: -5%; top: -40%;
  width: 50%; height: 200%;
  background: linear-gradient(160deg, var(--blue) 0%, transparent 60%);
  transform: skewX(-12deg);
  opacity: 0.4;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.page-hero p { color: var(--grey-300); max-width: 560px; margin-top: 16px; }
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-electric);
  font-weight: 700;
  margin-bottom: 18px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .nav { flex-wrap: wrap; height: auto; padding: 14px 0; row-gap: 12px; }
  .nav-cta { flex-basis: 100%; justify-content: flex-start; }
  .hero-stats { grid-template-columns: 1fr; }
  .pillars, .values-grid, .tiers, .footer-grid, .form-two { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
