*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
:root{
  --dark:#0A0B0F;
  --card:#13151E;
  --card2:#1A1D2A;
  --orange:#FF6B00;
  --orange2:#FF8C3A;
  --red:#E63030;
  --gold:#FFB800;
  --white:#FFFFFF;
  --gray:#8B8FA8;
  --border:rgba(255,255,255,.08);
}
html{scroll-behavior:smooth;}
body{font-family:'Inter',sans-serif;background:var(--dark);color:var(--white);overflow-x:hidden;line-height:1.6;}

/* NAV */
.nav{position:fixed;inset:0 0 auto;z-index:999;display:flex;align-items:center;justify-content:space-between;padding:.9rem 3rem;background:rgba(10,11,15,.96);backdrop-filter:blur(20px);border-bottom:1px solid var(--border);}
.nav-logo{font-family:'Bebas Neue',cursive;font-size:1.8rem;letter-spacing:2px;color:var(--orange);display:flex;align-items:center;gap:.4rem;text-decoration:none;}
.nav-logo span{color:var(--white);}
.nav-donate{display:inline-flex;align-items:center;gap:8px;padding:.7rem 2rem;background:var(--red);color:#fff;font-weight:800;font-size:.85rem;letter-spacing:1.5px;text-transform:uppercase;text-decoration:none;border-radius:4px;animation:pulse 2s infinite;transition:background .2s,transform .2s;}
.nav-donate:hover{background:#ff2222;transform:scale(1.04);}
.nav-donate svg{flex-shrink:0;}
@keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(230,48,48,.5);}50%{box-shadow:0 0 0 12px rgba(230,48,48,0);}}

/* TICKER */
.ticker{
  margin-top:62px;
  background:linear-gradient(90deg,#FF5A00 0%,#FF6B00 40%,#FF8C3A 100%);
  overflow:hidden;
  position:relative;
  border-bottom:1px solid rgba(0,0,0,.12);
}
.ticker::before,.ticker::after{
  content:'';
  position:absolute;top:0;bottom:0;width:48px;z-index:2;pointer-events:none;
}
.ticker::before{left:0;background:linear-gradient(90deg,rgba(255,107,0,.95),transparent);}
.ticker::after{right:0;background:linear-gradient(270deg,rgba(255,140,58,.95),transparent);}
.ticker-track{
  display:flex;
  width:max-content;
  align-items:center;
  gap:0;
  padding:.85rem 0;
  animation:tickerMove 38s linear infinite;
  will-change:transform;
}
.ticker-track:hover{animation-play-state:paused;}
.ticker-item{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  flex-shrink:0;
  white-space:nowrap;
  padding:0 1.1rem 0 1.4rem;
  color:#1a0d00;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:1.4px;
  text-transform:uppercase;
  line-height:1.35;
}
.ticker-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;height:22px;
  border-radius:50%;
  background:rgba(0,0,0,.12);
  flex-shrink:0;
}
.ticker-icon svg{
  display:block;
  width:12px;height:12px;
  color:#1a0d00;
}
.ticker-sep{
  flex-shrink:0;
  width:5px;height:5px;
  border-radius:50%;
  background:rgba(0,0,0,.28);
  margin:0 .35rem;
}
@keyframes tickerMove{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}
@media (prefers-reduced-motion:reduce){
  .ticker-track{animation:none;}
}

/* HERO */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden;}
.hero-bg{position:absolute;inset:0;background:url('https://images.pexels.com/photos/29879094/pexels-photo-29879094.jpeg?auto=compress&cs=tinysrgb&w=1920') center 40% / cover no-repeat;transform:scale(1.06);}
.hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(170deg,rgba(10,11,15,.55) 0%,rgba(10,11,15,.78) 55%,rgba(10,11,15,.97) 100%);}
.hero-body{position:relative;z-index:2;max-width:920px;padding:0 1.5rem;}
.badge{display:inline-flex;align-items:center;gap:6px;background:var(--red);color:#fff;font-size:.68rem;font-weight:800;letter-spacing:3px;text-transform:uppercase;padding:.35rem 1.1rem;border-radius:2px;margin-bottom:1.5rem;}
.hero h1{font-family:'Bebas Neue',cursive;font-size:clamp(4.5rem,13vw,10.5rem);line-height:.9;letter-spacing:-1px;text-shadow:0 4px 40px rgba(0,0,0,.7);margin-bottom:1.5rem;}
.hero h1 em{color:var(--orange);font-style:normal;}
.hero p{font-size:clamp(1rem,2.2vw,1.3rem);color:rgba(255,255,255,.82);max-width:600px;margin:0 auto 2.5rem;line-height:1.75;}
.hero p strong{color:var(--orange);font-weight:700;}
.hero-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}
.btn-main{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:1.1rem 3rem;background:var(--orange);color:#fff;font-weight:900;font-size:.95rem;letter-spacing:1px;text-transform:uppercase;text-decoration:none;border-radius:4px;border:none;cursor:pointer;transition:background .2s,transform .2s,box-shadow .2s;}
.btn-main:hover{background:var(--orange2);transform:translateY(-3px);box-shadow:0 10px 35px rgba(255,107,0,.4);}
.btn-ghost{padding:1.1rem 2.5rem;background:transparent;color:#fff;font-weight:600;font-size:.95rem;letter-spacing:1px;text-transform:uppercase;text-decoration:none;border-radius:4px;border:2px solid rgba(255,255,255,.35);transition:border-color .2s,background .2s;}
.btn-ghost:hover{border-color:#fff;background:rgba(255,255,255,.08);}
.scroll-down{position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);z-index:2;animation:bounce 2.2s infinite;}
.scroll-down span{display:block;width:22px;height:22px;border-right:2px solid rgba(255,255,255,.5);border-bottom:2px solid rgba(255,255,255,.5);transform:rotate(45deg);margin:-7px auto;}
@keyframes bounce{0%,100%{transform:translateX(-50%) translateY(0);}50%{transform:translateX(-50%) translateY(12px);}}

/* STATS BAR */
.stats-bar{background:var(--red);padding:1.1rem 2rem;display:flex;justify-content:center;align-items:center;gap:3.5rem;flex-wrap:wrap;}
.stat{text-align:center;}
.stat-n{font-family:'Bebas Neue',cursive;font-size:1.9rem;letter-spacing:1px;line-height:1;display:block;}
.stat-l{font-size:.65rem;font-weight:600;letter-spacing:2px;text-transform:uppercase;opacity:.85;}

/* GENERIC SECTION */
.section{padding:5.5rem 1.5rem;}
.container{max-width:1100px;margin:0 auto;}
.eyebrow{font-size:.72rem;font-weight:800;letter-spacing:4px;text-transform:uppercase;color:var(--orange);margin-bottom:.9rem;}
.section-title{font-family:'Bebas Neue',cursive;font-size:clamp(2.5rem,5.5vw,4.5rem);line-height:.98;letter-spacing:1px;margin-bottom:1.4rem;}

/* REALITY */
.reality{background:var(--card);}
.reality-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;}
.reality-text p{color:rgba(255,255,255,.68);font-size:1.05rem;line-height:1.85;margin-bottom:1.3rem;}
.reality-text p strong{color:var(--orange);}
.reality-img{position:relative;border-radius:10px;overflow:hidden;aspect-ratio:4/5;background:#1A1D2A;}
.reality-img img{width:100%;height:100%;object-fit:cover;display:block;filter:grayscale(20%);}
.reality-img::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(10,11,15,.9) 0%,transparent 55%);}
.reality-caption{position:absolute;bottom:1.2rem;left:1.2rem;right:1.2rem;z-index:2;font-family:'Bebas Neue',cursive;font-size:1.35rem;letter-spacing:1px;}

/* DONATION TIERS */
.donate-section{background:var(--dark);}
.donate-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(235px,1fr));gap:1.4rem;margin-top:2.5rem;}
.d-card{display:block;position:relative;background:var(--card);border:1px solid var(--border);border-radius:12px;padding:2rem 1.5rem 1.5rem;text-align:center;text-decoration:none;color:var(--white);overflow:hidden;transition:border-color .25s,transform .25s,box-shadow .25s;cursor:pointer;}
.d-card::before{content:'';position:absolute;inset:0 0 auto;height:3px;background:var(--orange);transform:scaleX(0);transition:transform .3s;}
.d-card:hover{border-color:var(--orange);transform:translateY(-7px);box-shadow:0 22px 55px rgba(255,107,0,.2);}
.d-card:hover::before{transform:scaleX(1);}
.d-card.popular{border-color:var(--orange);background:linear-gradient(145deg,#1A1D2A,#1F2235);}
.pop-tag{position:absolute;top:.9rem;right:.9rem;background:var(--orange);color:#fff;font-size:.6rem;font-weight:800;letter-spacing:2px;text-transform:uppercase;padding:.25rem .75rem;border-radius:20px;display:flex;align-items:center;gap:4px;}
.pop-tag svg{width:12px;height:12px;}
.d-icon{font-size:2rem;margin-bottom:.8rem;display:flex;justify-content:center;}
.d-icon svg{width:40px;height:40px;color:var(--orange);}
.d-amount{font-family:'Bebas Neue',cursive;font-size:3.8rem;color:var(--orange);line-height:1;letter-spacing:1px;}
.d-amount sup{font-size:1.6rem;vertical-align:top;margin-top:.6rem;}
.d-period{font-size:.78rem;color:var(--gray);margin-bottom:1.2rem;}
.d-card h3{font-size:1.05rem;font-weight:700;margin-bottom:.6rem;}
.d-card p{font-size:.88rem;color:rgba(255,255,255,.58);line-height:1.65;margin-bottom:1.5rem;}
.d-btn{display:block;width:100%;padding:.85rem;background:var(--orange);color:#fff;font-weight:800;font-size:.82rem;letter-spacing:1.5px;text-transform:uppercase;border-radius:6px;border:none;cursor:pointer;transition:background .2s;}
.d-card:hover .d-btn{background:var(--orange2);}

/* CUSTOM DONATE */
.custom-donate{margin-top:2.5rem;}
.custom-donate-inner{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:12px;
  padding:2rem 1.5rem;
  text-align:center;
  max-width:520px;
  margin:0 auto;
}
.custom-donate-title{
  font-family:'Bebas Neue',cursive;
  font-size:clamp(1.6rem,4vw,2.2rem);
  letter-spacing:1px;
  margin-bottom:.6rem;
}
.custom-donate-desc{
  color:rgba(255,255,255,.55);
  font-size:.92rem;
  margin-bottom:1.4rem;
  line-height:1.6;
}
.custom-donate-form{
  display:flex;
  flex-wrap:wrap;
  gap:.8rem;
  justify-content:center;
  align-items:stretch;
}
.custom-donate-label{
  display:flex;
  align-items:center;
  background:var(--card2);
  border:1px solid var(--border);
  border-radius:6px;
  padding:0 .9rem;
  min-width:min(100%,200px);
  flex:1 1 160px;
}
.custom-prefix{
  font-family:'Bebas Neue',cursive;
  font-size:1.5rem;
  color:var(--orange);
  margin-right:.35rem;
}
.custom-donate-label input{
  flex:1;
  background:transparent;
  border:none;
  outline:none;
  color:var(--white);
  font-family:'Inter',sans-serif;
  font-size:1.15rem;
  font-weight:700;
  padding:.85rem 0;
  width:100%;
  min-width:0;
}
.custom-donate-label input::placeholder{color:var(--gray);font-weight:500;}
.custom-donate-label input::-webkit-outer-spin-button,
.custom-donate-label input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0;}
.custom-donate-label input[type=number]{-moz-appearance:textfield;}
.custom-donate-btn{
  flex:0 0 auto;
  width:auto;
  min-width:180px;
  padding:.85rem 1.4rem;
  border:none;
  cursor:pointer;
}
.custom-donate-btn:disabled{opacity:.55;cursor:not-allowed;}
.custom-donate-msg{
  margin-top:1rem;
  font-size:.88rem;
  color:var(--gray);
}
.custom-donate-msg.is-error{color:#ff7b7b;}
.custom-donate-msg.is-ok{color:var(--orange2);}

/* GALLERY */
.gallery{padding:3rem 0;overflow:hidden;background:#0D0E14;}
.gallery-track{display:flex;gap:.8rem;width:max-content;animation:galleryScroll 38s linear infinite;}
.gallery-track:hover{animation-play-state:paused;}
@keyframes galleryScroll{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}
.g-item{position:relative;width:280px;height:380px;border-radius:10px;overflow:hidden;flex-shrink:0;background:#1A1D2A;}
.g-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s;filter:grayscale(30%);}
.g-item:hover img{transform:scale(1.06);filter:grayscale(0%);}
.g-item::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(10,11,15,.92) 0%,transparent 60%);}
.g-caption{position:absolute;bottom:1rem;left:1rem;right:1rem;z-index:2;font-family:'Bebas Neue',cursive;font-size:1.15rem;letter-spacing:.5px;line-height:1.25;}

/* HOW IT WORKS */
.how-section{background:var(--card);}
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2.8rem;}
.step{text-align:center;padding:1.5rem;}
.step-icon{width:5rem;height:5rem;background:linear-gradient(135deg,var(--orange),#FF8C3A);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:2rem;margin:0 auto 1.4rem;box-shadow:0 8px 25px rgba(255,107,0,.35);}
.step h3{font-family:'Bebas Neue',cursive;font-size:1.55rem;letter-spacing:1px;margin-bottom:.65rem;}
.step p{font-size:.95rem;color:rgba(255,255,255,.6);line-height:1.75;}

/* PROOF / COUNTER SECTION */
.proof{background:var(--dark);padding:4rem 1.5rem;}
.proof-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem;margin-top:2.5rem;}
.proof-card{background:var(--card);border-radius:12px;border:1px solid var(--border);padding:2rem;text-align:center;}
.proof-number{font-family:'Bebas Neue',cursive;font-size:3.5rem;color:var(--orange);line-height:1;display:block;}
.proof-label{font-size:.8rem;color:rgba(255,255,255,.55);letter-spacing:2px;text-transform:uppercase;margin-top:.4rem;}

/* URGENCY CTA */
.urgency{position:relative;padding:8rem 1.5rem;text-align:center;overflow:hidden;}
.urgency-bg{position:absolute;inset:0;background:url('https://images.pexels.com/photos/10722284/pexels-photo-10722284.jpeg?auto=compress&cs=tinysrgb&w=1920') center 40% / cover no-repeat;}
.urgency-bg::after{content:'';position:absolute;inset:0;background:rgba(10,11,15,.88);}
.urgency-body{position:relative;z-index:2;max-width:700px;margin:0 auto;}
.urgency-body h2{font-family:'Bebas Neue',cursive;font-size:clamp(3rem,7.5vw,6rem);line-height:.95;margin-bottom:1.4rem;}
.urgency-body h2 em{color:var(--orange);font-style:normal;}
.urgency-body p{font-size:1.05rem;color:rgba(255,255,255,.72);margin-bottom:2.5rem;line-height:1.8;}
.urgency-note{margin-top:1.4rem;font-size:.8rem;color:rgba(255,255,255,.35);}

/* TESTIMONIALS */
.testimonials{background:var(--card2);padding:5rem 1.5rem;}
.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem;margin-top:3rem;}
.testimonial-card{background:var(--card);border-radius:16px;padding:2rem;border:1px solid var(--border);transition:transform .3s ease,box-shadow .3s ease;}
.testimonial-card:hover{transform:translateY(-4px);box-shadow:0 20px 40px rgba(0,0,0,.3);}
.testimonial-stars{display:flex;gap:4px;margin-bottom:1rem;}
.testimonial-stars svg{flex-shrink:0;}
.testimonial-text{font-size:.95rem;color:rgba(255,255,255,.8);line-height:1.7;margin-bottom:1.5rem;font-style:italic;}
.testimonial-author{display:flex;align-items:center;gap:1rem;}
.testimonial-avatar{width:48px;height:48px;border-radius:50%;background:linear-gradient(135deg,var(--orange),var(--orange2));display:flex;align-items:center;justify-content:center;color:#fff;}
.author-name{font-weight:600;color:#fff;font-size:.95rem;}
.author-city{font-size:.8rem;color:var(--gray);}
.testimonials-stats{display:flex;justify-content:center;gap:4rem;margin-top:4rem;padding-top:3rem;border-top:1px solid var(--border);flex-wrap:wrap;}
.tstat{text-align:center;}
.tstat-n{display:block;font-family:'Bebas Neue',cursive;font-size:2.5rem;color:var(--orange);line-height:1;}
.tstat-l{font-size:.8rem;color:var(--gray);text-transform:uppercase;letter-spacing:1px;}

/* FOOTER */
footer{background:#060708;padding:4rem 1.5rem 2rem;border-top:1px solid var(--border);}
.footer-content{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 2fr;gap:3rem;text-align:left;}
.footer-brand{max-width:300px;}
.footer-logo{display:flex;align-items:center;gap:.5rem;font-family:'Bebas Neue',cursive;font-size:1.8rem;color:var(--orange);letter-spacing:2px;margin-bottom:1rem;}
.footer-logo svg{flex-shrink:0;}
.footer-brand p{color:var(--gray);font-size:.9rem;line-height:1.6;}
.footer-links{display:flex;gap:3rem;flex-wrap:wrap;justify-content:flex-end;}
.footer-col h4{color:#fff;font-size:.85rem;text-transform:uppercase;letter-spacing:2px;margin-bottom:1.2rem;font-weight:600;}
.footer-col a{display:block;color:var(--gray);text-decoration:none;font-size:.9rem;margin-bottom:.7rem;transition:color .2s;}
.footer-col a:hover{color:var(--orange);}
.footer-bottom{max-width:1100px;margin:3rem auto 0;padding-top:2rem;border-top:1px solid var(--border);text-align:center;}
.footer-bottom p{color:var(--gray);font-size:.85rem;display:flex;align-items:center;justify-content:center;gap:.4rem;flex-wrap:wrap;}
@media(max-width:768px){
  .footer-content{grid-template-columns:1fr;text-align:center;}
  .footer-brand{max-width:none;}
  .footer-logo{justify-content:center;}
  .footer-links{justify-content:center;}
}

/* REVEAL */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .65s ease,transform .65s ease;}
.reveal.visible{opacity:1;transform:none;}

/* RESPONSIVE */
@media(max-width:900px){
  .reality-grid{grid-template-columns:1fr;}
  .steps{grid-template-columns:1fr;}
  .nav{padding:.9rem 1.2rem;}
}
@media(max-width:560px){
  .donate-grid{grid-template-columns:1fr;}
  .stats-bar{gap:1.5rem;}
}
