:root{
  --navy:#06213a;
  --deep:#003f2d;
  --green:#075f43;
  --gold:#d6a84f;
  --cream:#f6f1e7;
  --white:#ffffff;
  --text:#1f2937;
  --muted:#64748b;
  --border:#d8dee9;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--cream);
  color:var(--text);
  line-height:1.6;
}
.header{
  background:var(--deep);
  color:white;
  padding:22px 7%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  border-bottom:4px solid var(--gold);
}
.brand{
  display:flex;
  align-items:center;
  gap:16px;
}
.brand img{
  width:76px;
  height:76px;
}
.brand h1{
  margin:0;
  font-size:26px;
}
.brand p{
  margin:2px 0 0;
  color:#dbeafe;
}
.nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.nav a{
  color:white;
  text-decoration:none;
  font-weight:700;
}
.nav a:hover{color:var(--gold)}
.hero{
  background:
    linear-gradient(135deg,rgba(0,63,45,.96),rgba(6,33,58,.92)),
    radial-gradient(circle at top right,rgba(214,168,79,.18),transparent 35%);
  color:white;
  padding:86px 7%;
}
.hero-inner{
  max-width:1050px;
}
.kicker{
  display:inline-block;
  background:var(--gold);
  color:#111827;
  padding:8px 16px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.hero h2{
  font-size:48px;
  line-height:1.15;
  margin:20px 0 16px;
  max-width:900px;
}
.hero p{
  color:#e5f0ec;
  font-size:18px;
  max-width:900px;
}
.actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.btn{
  display:inline-block;
  padding:13px 20px;
  border-radius:10px;
  text-decoration:none;
  font-weight:800;
  background:#0f6b4c;
  color:white;
  border:1px solid rgba(255,255,255,.18);
}
.btn.gold,.gold{
  background:var(--gold);
  color:#111827;
}
.treasury-btn{
  background:#123b63;
}
.section{
  max-width:1180px;
  margin:36px auto;
  padding:0 22px;
}
.section h2{
  color:var(--navy);
  font-size:30px;
  margin-bottom:18px;
  border-bottom:3px solid var(--gold);
  padding-bottom:10px;
}
.grid,.stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:20px;
}
.card{
  background:white;
  border:1px solid var(--border);
  border-radius:18px;
  padding:26px;
  box-shadow:0 10px 26px rgba(6,33,58,.08);
}
.card h3{
  color:var(--deep);
  margin-top:0;
}
.stat strong{
  display:block;
  font-size:28px;
  color:var(--deep);
}
.stat p{
  color:var(--muted);
}
footer{
  background:var(--deep);
  color:white;
  text-align:center;
  padding:34px 20px;
  margin-top:50px;
}
footer a{
  color:var(--gold);
  text-decoration:none;
}
@media(max-width:780px){
  .header{
    display:block;
    text-align:center;
  }
  .brand{
    justify-content:center;
    flex-direction:column;
  }
  .nav{
    justify-content:center;
    margin-top:18px;
  }
  .hero{
    padding:54px 22px;
  }
  .hero h2{
    font-size:34px;
  }
}
