:root{
  --bg:#0d0f13;
  --panel:#141922;
  --panel-2:#1a2029;
  --text:#f4ecdf;
  --muted:#b9ad9d;
  --gold:#f2c14e;
  --gold-2:#ffcc66;
  --red:#cf2338;
  --red-2:#ff4d2d;
  --line:rgba(255,255,255,.08);
  --shadow:0 30px 80px rgba(0,0,0,.42);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(255,77,45,.16), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(242,193,78,.12), transparent 24%),
    linear-gradient(180deg,#141922 0%,#090a0d 100%);
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.site-header,.site-footer,.section,.hero{position:relative;z-index:1}
.site-header{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:1rem;
  align-items:center;
  padding:1rem clamp(1rem,3vw,2.3rem);
  position:sticky;
  top:0;
  backdrop-filter:blur(14px);
  background:rgba(13,15,19,.78);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.brand{display:flex;gap:.8rem;align-items:center}
.brand-logo{width:154px}
.brand-kicker,.eyebrow{color:var(--gold);text-transform:uppercase;letter-spacing:.16em;font-size:.73rem}
.brand-copy{display:flex;flex-direction:column;gap:.2rem}
.help-nav{display:flex;gap:.95rem;flex-wrap:wrap;justify-content:center}
.help-nav a{color:var(--muted)}
.header-cta,.btn{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.8rem 1.1rem;
  border-radius:999px;
  font-weight:700;
}
.header-cta,.btn-primary{background:linear-gradient(135deg,var(--red),var(--red-2))}
.btn-secondary{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1)}
main{padding:clamp(1rem,2vw,1.6rem)}
.hero,.section,.site-footer{
  max-width:1180px;
  margin:0 auto 1.15rem;
  border:1px solid rgba(255,255,255,.06);
  border-radius:28px;
  background:linear-gradient(180deg, rgba(20,25,34,.95), rgba(9,10,13,.96));
  box-shadow:var(--shadow);
}
.hero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:1.2rem;
  padding:clamp(1.2rem,3vw,2rem);
}
.hero h1,.section h2{margin:.35rem 0 0;font-size:clamp(2rem,4vw,4rem);line-height:.94;letter-spacing:-.03em}
.hero-text,.section p,.step-card p,.support-card,.cause-list{color:var(--muted);line-height:1.7}
.hero-actions{display:flex;flex-wrap:wrap;gap:.8rem;margin:1.1rem 0 0}
.status-board{display:flex;gap:.7rem;flex-wrap:wrap}
.status-chip,.support-card,.step-card,.cause-panel{
  padding:.8rem 1rem;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}
.status-chip{font-weight:800}
.status-chip.danger{background:rgba(255,77,45,.12)}
.status-chip.warn{background:rgba(242,193,78,.12)}
.status-chip.ok{background:rgba(242,193,78,.06)}
.state-panel{
  margin-top:1rem;
  padding:1rem;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
.state-head{font-weight:800;margin-bottom:.8rem;color:#fff}
.state-row{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  padding:.8rem 0;
  border-top:1px solid rgba(255,255,255,.06);
}
.state-row:first-of-type{border-top:0;padding-top:0}
.state-row span{color:var(--gold)}
.section{padding:clamp(1.1rem,2.5vw,1.55rem)}
.section-head h2{font-size:clamp(1.45rem,2.8vw,2.4rem)}
.step-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.step-card{border-radius:22px;padding:1rem}
.step-card span{
  display:inline-flex;
  width:2rem;height:2rem;
  align-items:center;justify-content:center;
  border-radius:999px;
  background:rgba(207,35,56,.18);
  color:#fff;font-weight:800;
}
.step-card.active{background:linear-gradient(135deg, rgba(207,35,56,.12), rgba(255,255,255,.03))}
.split-section{display:grid;grid-template-columns:1fr 1fr;gap:1rem;align-items:center}
.cause-list{margin:0;padding-left:1.1rem}
.cause-list li{margin:.6rem 0}
.cause-panel{display:grid;gap:.8rem}
.cause-panel div{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  padding:.8rem 0;
  border-top:1px solid rgba(255,255,255,.06);
}
.cause-panel div:first-child{border-top:0;padding-top:0}
.cause-panel span{color:var(--gold)}
.support-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.support-card{display:flex;justify-content:center;align-items:center;min-height:82px;text-align:center}
.site-footer{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:center;
  padding:1.15rem 1.3rem;
}
.footer-links{display:flex;gap:1rem;flex-wrap:wrap}
.footer-links a{color:var(--gold)}
@media (max-width: 980px){
  .site-header,.hero,.step-grid,.split-section,.support-grid,.site-footer{grid-template-columns:1fr;display:grid}
  .site-header{position:static}
  .help-nav{justify-content:flex-start}
}
@media (max-width: 640px){
  main{padding:.75rem}
  .brand-logo{width:130px}
  .hero h1{font-size:2rem}
  .hero-actions,.footer-links{gap:.65rem}
  .state-row,.cause-panel div{flex-direction:column}
}
