:root{
  --maxw: 1100px;
  --space: 22px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --red: #e63946;
  --text: #0e1116;
  --muted: #5f6b7a;
  --card: #fff;
  --bg: #fff;
  --footer1: #0b0d16;
  --footer2: #0e101c;
  --border: #e9edf2;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
a{ color:inherit; text-decoration:none; }

.container{ max-width:var(--maxw); margin:0 auto; padding:0 calc(var(--space)*.9); }

.nav-wrap{
  position:sticky; top:0; z-index:50;
  background:#fff; border-bottom:1px solid var(--border);
  backdrop-filter:saturate(120%) blur(6px);
}
.nav{ height:64px; display:flex; align-items:center; justify-content:space-between; }
.brand{ font-weight:800; letter-spacing:.2px; }
.menu{ display:flex; gap:18px; align-items:center; }
.menu a{ color:#4c5663; font-weight:600; transition:color .2s ease; }
.menu a:hover{ color:#111; }

.section{ padding:80px 0; }
.section-title{ text-align:center; font-size:44px; font-weight:800; margin:0 0 10px; }
.section-sub{ text-align:center; color:var(--muted); margin:0 0 40px; }

.hero{
  min-height:100vh; display:grid; place-items:center; text-align:center; color:#fff;
  background:url("../images/Hero.jpg") center/cover no-repeat; position:relative;
}
.hero::after{ content:""; position:absolute; inset:0; background:rgba(0,0,0,.45); }
.hero-inner{ position:relative; z-index:1; padding:calc(var(--space)*2) var(--space); }
.hero h1{ font-size:60px; font-weight:800; letter-spacing:1px; margin:0 0 10px; }
.hero p{ font-weight:700; letter-spacing:2px; margin:0 0 22px; }
.btn{
  display:inline-block; background:var(--red); color:#fff; padding:12px 26px; border-radius:8px; font-weight:700;
  box-shadow:0 6px 16px rgba(230,57,70,.35); transition:filter .2s ease, transform .08s ease;
}
.btn:hover{ filter:brightness(.96); }
.btn:active{ transform:translateY(1px); }

.about{ display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; }
.about img{
  width:100%; aspect-ratio:1/1; object-fit:cover; object-position:center top;
  border-radius:14px; box-shadow:var(--shadow);
}
.about p{ color:#2a3442; }
.stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:24px; }
.stat{
  background:var(--card); border:1px solid var(--border); border-radius:12px;
  padding:18px; box-shadow:var(--shadow); text-align:center;
}
.stat strong{ color:var(--red); font-size:18px; display:block; }

.cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.card{ background:#fff; border:1px solid var(--border); border-radius:12px; overflow:hidden; box-shadow:var(--shadow); }
.card-media{ position:relative; }
.badge{
  position:absolute; top:10px; right:10px; background:var(--red); color:#fff; font-weight:700;
  padding:6px 10px; border-radius:8px; font-size:14px;
}
.card video{ display:block; width:100%; height:200px; object-fit:cover; }
.card h3{ margin:14px 16px 6px; font-size:22px; }
.card p{ margin:0 16px 18px; color:#3d4755; }

.chart-wrap{
  background:#fff; border:1px solid var(--border); border-radius:14px; padding:16px; box-shadow:var(--shadow);
}
.progress-graph{
  width:100%; max-width:800px; border-radius:14px; box-shadow:0 10px 25px rgba(0,0,0,.08);
  display:block; margin:0 auto 20px;
}

.post{
  max-width:820px; margin:0 auto 16px; background:#fff; border:1px solid var(--border);
  border-radius:12px; padding:18px 20px; box-shadow:var(--shadow);
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}
.post h3{ margin:0 0 6px; font-size:20px; }
.post p{ margin:0; color:#3d4755; }
.date{ white-space:nowrap; color:#7b8797; font-weight:600; }

footer{
  background:linear-gradient(180deg, var(--footer1), var(--footer2));
  color:#cfd8e3;
  padding:60px 0 28px;
  margin-top:40px;
  border-top:1px solid rgba(255,255,255,.06);
}
.footgrid{ display:grid; grid-template-columns:2fr 1fr 1fr; gap:22px; }
footer h5{ color:#e5edf7; margin:0 0 12px; font-size:18px; }
.footlinks a{ display:block; padding:6px 0; }

.social{ display:flex; gap:12px; }
.social a{
  display:grid; place-items:center; width:44px; height:44px; border-radius:10px;
  background:rgba(255,255,255,.06);
  transition:background .2s ease, transform .1s ease;
}
.social a:hover{ background:rgba(255,255,255,.15); transform:translateY(-2px); }
.social img{
  width:22px; height:22px;
  filter:brightness(0) invert(1);
  opacity:.85; transition:opacity .2s ease;
}
.social a:hover img{ opacity:1; }

.copyright{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:28px; padding-top:18px;
  text-align:center; color:#a9b6c8;
}

@media (max-width:980px){
  .about{ grid-template-columns:1fr; gap:22px; }
  .cards{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .hero h1{ font-size:42px; }
  .cards{ grid-template-columns:1fr; }
  .stats{ grid-template-columns:1fr; }
  .footgrid{ grid-template-columns:1fr; }
  .menu{ display:none; }
}
