/* ── Animations ── */
.will-animate {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.will-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:      #FF8A00;
  --orange-dark: #E07B00;
  --orange-soft: #FFD9B3;
  --peach-light: #FFF5EB;
  --grey-50:     #FAFAFA;
  --grey-100:    #E6E6E6;
  --grey-200:    #E6E6E6;
  --grey-400:    #999999;
  --grey-500:    #777777;
  --grey-600:    #555555;
  --grey-700:    #444444;
  --grey-800:    #333333;
  --grey-900:    #333333;
  --white:       #FFFFFF;
  --font:        'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-heading:'Playfair Display', Georgia, serif;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6, blockquote {
  font-family: var(--font-heading);
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Utilities ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.text--orange { color: var(--orange); }

.section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section__label--light {
  color: var(--orange);
  background: rgba(249,115,22,0.15);
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--grey-900);
  margin-bottom: 24px;
}
.section__title--light { color: var(--white); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  padding: 12px 28px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--grey-900);
  border-color: var(--grey-200);
}
.btn--outline:hover {
  border-color: var(--grey-800);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--grey-600);
  border-color: transparent;
  padding: 12px 16px;
}
.btn--ghost:hover { color: var(--grey-900); }
.btn--lg { font-size: 16px; padding: 16px 36px; }
.btn--full { width: 100%; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-100);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 116px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--grey-900);
  text-decoration: none;
}
.logo__img {
  height: 104px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.logo__img--footer {
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-600);
  padding: 8px 14px;
  border-radius: 100px;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--grey-900); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--grey-800);
  border-radius: 2px;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid var(--grey-100);
}
.nav__mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-700);
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-100);
}
.nav__mobile a:last-child { border: none; margin-top: 8px; }
.nav__mobile.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, var(--peach-light) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.hero__headline {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--grey-900);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 18px;
  color: var(--grey-600);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--grey-900);
}
.stat__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--grey-200);
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,138,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* ── MISSION ── */
.mission {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}
.mission .section__title { max-width: 600px; margin: 0 auto 20px; }
.mission__statement {
  font-size: 18px;
  color: var(--grey-600);
  max-width: 680px;
  margin: 0 auto 64px;
  line-height: 1.75;
}
.mission__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.value-card__icon { font-size: 36px; margin-bottom: 16px; }
.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--grey-900);
}
.value-card p { font-size: 15px; color: var(--grey-600); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 0;
  background: var(--grey-50);
}
.how-it-works .section__title { max-width: 480px; }
.paths {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-top: 56px;
  align-items: start;
}
.paths__divider {
  width: 1px;
  background: var(--grey-200);
  margin: 0 48px;
  align-self: stretch;
}
.path { padding: 40px 0; }
.path__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.path__tag--donor {
  color: var(--grey-800);
  background: var(--grey-100);
}
.path__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--grey-900);
  margin-bottom: 32px;
}
.path__steps { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.path__steps li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step__num {
  font-size: 12px;
  font-weight: 800;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 8px;
  padding: 6px 10px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.path__steps li strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 4px;
}
.path__steps li p { font-size: 14px; color: var(--grey-600); line-height: 1.6; }

/* ── SCHOLARS ── */
.scholars {
  padding: 100px 0;
  background: var(--white);
}
.scholars .section__title { max-width: 500px; }
.scholars__sub {
  font-size: 17px;
  color: var(--grey-600);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.scholars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 28px;
}
.scholar-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.scholar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.scholar-card--featured { border-color: var(--orange); border-width: 2px; }
.scholar-card__badge {
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  text-align: center;
}
.scholar-card__img-wrap {
  background: linear-gradient(135deg, var(--peach-light), var(--orange-soft));
  display: flex;
  justify-content: center;
  overflow: hidden;
  max-height: 380px;
}
.scholar-card__photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.scholar-card__img-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.scholar-card__body { padding: 28px; }
.scholar-card__caption {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 8px;
}
.scholar-card__name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--grey-900);
  margin-bottom: 8px;
}
.scholar-card__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--grey-400);
  margin-bottom: 16px;
}
.dot { opacity: 0.4; }
.scholar-card__story {
  font-size: 15px;
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.progress__labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 8px;
}
.progress__bar {
  background: var(--grey-100);
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}
.progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #FBBF24);
  border-radius: 100px;
  min-width: 8px;
}
.scholar-card__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.scholars__more {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--grey-500);
}
.scholars__more a { color: var(--orange); font-weight: 600; }

/* ── APPLY ── */
.apply {
  padding: 100px 0;
  background: var(--grey-900);
  color: var(--white);
}
.apply__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.apply__text p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 28px;
}
.apply__criteria {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.apply__criteria li {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}
.apply__criteria li::marker { content: ''; }
.apply__form-wrap { position: relative; }
.apply__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.apply__form h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--grey-900);
  margin-bottom: 6px;
}
.form__note { font-size: 13px; color: var(--grey-400); margin-bottom: 24px; }
.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form__group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-700);
}
.form__group input,
.form__group textarea {
  font-family: var(--font);
  font-size: 14px;
  color: var(--grey-900);
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form__group input:focus,
.form__group textarea:focus { border-color: var(--orange); background: var(--white); }
.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--grey-400); }
.form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px;
}
.form__success span { font-size: 36px; color: var(--orange); }
.form__success p { font-size: 15px; color: var(--grey-600); }

/* ── INVEST CTA ── */
.invest-cta {
  padding: 80px 0;
  background: var(--orange);
}
.invest-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.invest-cta__text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.invest-cta__text p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}
.invest-cta .btn--primary {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  flex-shrink: 0;
}
.invest-cta .btn--primary:hover {
  background: var(--grey-100);
  border-color: var(--grey-100);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ── FOOTER ── */
.footer {
  background: var(--grey-900);
  color: var(--white);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .nav__logo { color: var(--white); margin-bottom: 14px; display: flex; }
.footer__brand .logo__text-top { color: var(--white); }
.footer__brand .logo__text-sub { color: rgba(255,255,255,0.45); }
.footer__tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.footer__mission {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
  line-height: 1.65;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.footer__col a:hover { color: var(--white); }
.social__platform { font-weight: 600; }
.social__handle {
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.02em;
}
.footer__col a:hover .social__handle { color: #FFB347; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin: 0 24px;
}
.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer__handle {
  color: var(--orange) !important;
  font-weight: 600;
}

/* ── URGENCY BAR ── */
.urgency-bar {
  background: var(--grey-900);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.urgency-bar strong { color: var(--white); }
.urgency-bar a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.urgency-bar__dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ── IMPACT TICKER ── */
.impact-strip {
  background: var(--orange);
  overflow: hidden;
  padding: 14px 0;
}
.impact-strip__inner {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.impact-strip__inner span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SCRIPTURE ── */
.scripture {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 580px;
  padding: 32px 40px;
  background: var(--peach-light);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.scripture__verse {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--grey-800);
  line-height: 1.7;
  margin-bottom: 10px;
}
.scripture__ref {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--grey-900);
  padding: 80px 0;
  text-align: center;
}
.manifesto__quote {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  max-width: 760px;
  margin: 0 auto 20px;
  position: relative;
}
.manifesto__quote::before {
  content: '\201C';
  position: absolute;
  top: -24px;
  left: -16px;
  font-size: 80px;
  font-style: normal;
  color: var(--orange);
  opacity: 0.4;
  line-height: 1;
}
.manifesto__attr {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── SCHOLAR PLACEHOLDER CARD ── */
.scholar-card--placeholder {
  border: 2px dashed var(--grey-200);
  background: var(--grey-50);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.scholar-card__placeholder-inner {
  text-align: center;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.placeholder__icon {
  font-size: 32px;
  color: var(--orange);
  opacity: 0.6;
}
.scholar-card__placeholder-inner h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--grey-700);
}
.scholar-card__placeholder-inner p {
  font-size: 14px;
  color: var(--grey-400);
  line-height: 1.65;
  max-width: 240px;
}

/* ── SCHOLAR CARD EXTRAS ── */
.scholar-card__img-note {
  text-align: center;
  font-size: 11px;
  color: var(--grey-400);
  margin-top: 8px;
  font-style: italic;
}
.progress__raised { color: var(--orange); font-weight: 700; }
.progress__urgency {
  font-size: 12px;
  color: var(--orange-dark);
  font-weight: 600;
  margin-top: -8px;
  margin-bottom: 20px;
}

/* ── VIDEO SECTION ── */

/* ── FOOTER SOCIALS ── */
.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.footer__socials a:hover {
  background: var(--orange);
  color: var(--white);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .mission__values { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .paths {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .paths__divider { display: none; }
  .path { border-bottom: 1px solid var(--grey-200); padding: 40px 0; }
  .path:last-child { border-bottom: none; }

  .scholars__grid { grid-template-columns: 1fr; }

  .apply__inner { grid-template-columns: 1fr; gap: 48px; }

  .invest-cta__inner { flex-direction: column; text-align: center; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hero { padding: 72px 0 56px; }
  .hero__ctas { flex-direction: column; }
  .hero__stats { gap: 20px; }
  .stat__divider { display: none; }
  .section__title { font-size: 1.75rem; }
  .apply__form { padding: 24px; }
  .footer__links { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}
