:root{
  --bg:#07110c;
  --bg-soft:#0d1a12;
  --panel:#102018;
  --panel-2:#14261c;
  --line:#284433;
  --green:#a7df55;
  --green-deep:#2e8b4b;
  --gold:#ef9f2d;
  --gold-deep:#9f5712;
  --text:#f6fbf2;
  --muted:#c9d7c7;
  --muted-2:#91a294;
  --white:#ffffff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.6;
  background:
    radial-gradient(circle at 15% 4%,rgba(46,139,75,.35),transparent 28%),
    linear-gradient(180deg,#07110c 0%,#0b1710 48%,#07110c 100%);
}
a{color:inherit}
.wrap{width:min(1180px,calc(100% - 36px));margin:0 auto}
.topbar{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(7,17,12,.92);
  border-bottom:1px solid rgba(167,223,85,.18);
  backdrop-filter:blur(14px);
}
.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  width:154px;
  max-width:42vw;
}
.brand img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.28));
}
.links{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.links a{
  color:var(--muted);
  text-decoration:none;
  font-size:15px;
  font-weight:800;
}
.links a:hover{color:var(--white)}
.nav-cta{
  display:inline-flex;
  min-height:44px;
  align-items:center;
  justify-content:center;
  padding:0 20px;
  border-radius:999px;
  color:#0b1309!important;
  background:var(--green);
  box-shadow:0 12px 28px rgba(167,223,85,.22);
}
.hero{
  border-bottom:1px solid rgba(167,223,85,.16);
  background:
    linear-gradient(90deg,rgba(7,17,12,.95) 0%,rgba(7,17,12,.84) 54%,rgba(7,17,12,.70) 100%),
    url('assets/hero_bg.webp') center/cover no-repeat;
}
.hero-inner{
  padding:72px 0 64px;
}
.kicker{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  align-items:center;
  gap:8px;
  border:1px solid rgba(167,223,85,.38);
  border-radius:999px;
  padding:8px 13px;
  color:var(--green);
  background:rgba(18,42,26,.72);
  font-size:14px;
  font-weight:900;
}
.hero h1{
  margin:18px 0 0;
  max-width:880px;
  font-size:clamp(36px,6vw,68px);
  line-height:1.04;
  font-weight:900;
}
.hero .lead{
  margin:18px 0 0;
  max-width:880px;
  color:var(--green);
  font-size:clamp(20px,3vw,30px);
  line-height:1.22;
  font-weight:900;
}
.hero .copy{
  max-width:760px;
  margin:16px 0 0;
  color:#e1eadf;
  font-size:18px;
}
.actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:8px;
  text-decoration:none;
  font-weight:900;
  font-size:16px;
}
.btn-primary{background:var(--green);color:#08110b}
.btn-secondary{border:1px solid rgba(167,223,85,.5);background:rgba(167,223,85,.1);color:var(--green)}
.section{padding:64px 0}
.section-head{max-width:860px;margin:0 0 28px}
.section-head h2{
  margin:12px 0 0;
  font-size:clamp(30px,4vw,48px);
  line-height:1.08;
}
.section-head p{
  margin:14px 0 0;
  color:var(--muted);
  font-size:18px;
}
.chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:20px 0 0;
}
.chip{
  padding:9px 13px;
  border-radius:999px;
  border:1px solid rgba(167,223,85,.22);
  background:rgba(18,32,24,.8);
  color:var(--muted);
  font-size:14px;
  font-weight:800;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.card{
  background:linear-gradient(180deg,rgba(18,32,24,.96),rgba(11,22,16,.96));
  border:1px solid rgba(167,223,85,.14);
  border-radius:20px;
  padding:24px;
  box-shadow:0 18px 34px rgba(0,0,0,.20);
}
.card h3{
  margin:0 0 10px;
  font-size:22px;
  color:var(--white);
}
.card p{
  margin:0;
  color:var(--muted);
}
.metric-card{
  background:linear-gradient(180deg,rgba(23,41,31,.98),rgba(12,23,17,.98));
}
.metric-list{
  display:grid;
  gap:14px;
}
.metric{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(167,223,85,.12);
}
.metric:last-child{
  border-bottom:none;
  padding-bottom:0;
}
.metric-label{color:var(--muted-2);font-weight:800}
.metric-value{color:var(--white);font-weight:900;text-align:right}
.notice{
  margin-top:18px;
  padding:16px 18px;
  border-radius:16px;
  background:linear-gradient(180deg,rgba(239,159,45,.18),rgba(159,87,18,.16));
  border:1px solid rgba(239,159,45,.28);
  color:#fff2dd;
  font-weight:700;
}
.legal-document{
  max-width:920px;
  margin:0 auto;
}
.legal-document h2{
  margin:42px 0 14px;
  color:var(--green);
  font-size:clamp(24px,3vw,34px);
  line-height:1.2;
}
.legal-document h2:first-child{margin-top:0}
.legal-document h3{
  margin:28px 0 10px;
  color:var(--white);
  font-size:22px;
}
.legal-document p,
.legal-document li{
  color:var(--muted);
}
.legal-document p{margin:0 0 16px}
.legal-document ul{
  margin:0 0 18px;
  padding-left:24px;
}
.legal-document a{color:var(--gold)}
.footer{
  padding:26px 0 38px;
  border-top:1px solid rgba(167,223,85,.16);
  color:var(--muted-2);
}
.footer-row{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap}
.footer-brand{display:flex;align-items:center;gap:12px}
.footer-logo{width:82px;height:auto}
.footer-links{display:flex;gap:14px;flex-wrap:wrap}
.footer-links a{color:var(--gold);text-decoration:none;font-weight:800}
.footer-links a:hover{text-decoration:underline}
@media (max-width: 920px){
  .grid-3,.grid-2{grid-template-columns:1fr}
}
@media (max-width: 720px){
  .nav{padding:14px 0}
  .links{gap:14px}
  .links a{font-size:14px}
  .hero-inner{padding:52px 0 44px}
  .section{padding:52px 0}
}
