:root{
  --bg:#07110a;
  --panel:#0c1a11;

  /* New theme: green + lime */
  --brand:#22c55e;
  --brand2:#a3e635;

  --text:#ffffff;
  --muted:#cbd5e1;
  --stroke:rgba(255,255,255,.08);
  --shadow:0 16px 55px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 420px at 15% 10%, rgba(34,197,94,.18), transparent 60%),
    radial-gradient(800px 420px at 90% 15%, rgba(163,230,53,.14), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.65)),
    var(--bg);
  min-height:100dvh;
}

.site-header{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:22px 16px;
  background:rgba(12,26,17,.85);
  border-bottom:1px solid var(--stroke);
  backdrop-filter: blur(8px);
}

.text-logo{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  letter-spacing:.4px;
  user-select:none;
}
.text-logo .mark{
  width:46px;height:46px;
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:14px;
  background:linear-gradient(90deg, var(--brand), var(--brand2));
  color:#07110a;
  box-shadow:0 10px 26px rgba(34,197,94,.18);
}
.text-logo .name{
  font-size:28px;
  text-shadow:1px 2px rgba(0,0,0,.55);
}

.subtitle{
  margin-top:8px;
  font-size:13px;
  color:rgba(255,255,255,.72);
  text-align:center;
}

article{
  max-width:980px;
  margin:32px auto;
  padding:0 16px;
}

h1{
  margin:0 0 12px;
  text-align:center;
  letter-spacing:.4px;
  text-shadow:1px 2px rgba(0,0,0,.55);
}

p,ul{color:var(--muted);line-height:1.75}
ul{padding-left:18px}
.center{text-align:center;margin:18px 0}

img{
  max-width:100%;
  height:auto;
  border-radius:16px;
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:260px;
  height:56px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  color:#07110a;
  background:linear-gradient(90deg, var(--brand), var(--brand2));
  box-shadow:0 14px 35px rgba(34,197,94,.14);
  transition:transform .18s ease, filter .18s ease;
}
.cta:hover{transform:translateY(-2px);filter:saturate(1.05)}
.cta.small{width:210px;height:50px}

.panel{
  margin:22px 0;
  padding:16px;
  background:rgba(12,26,17,.72);
  border:1px solid var(--stroke);
  border-radius:16px;
  box-shadow:0 14px 40px rgba(0,0,0,.25);
}

.section{margin-top:24px}
.muted{color:rgba(203,213,225,.86)}

.chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}
.chip{
  padding:10px 12px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  color:#fff;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.chip:hover{background:rgba(255,255,255,.10)}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:12px;
}
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:12px;
}
.two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:12px;
}

.card,.cat{
  background:rgba(12,26,17,.72);
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:14px;
  box-shadow:0 12px 32px rgba(0,0,0,.22);
}
.card h3,.cat h3{margin:0 0 6px}
.card p{margin:0}
.link{display:inline-block;margin-top:10px;font-weight:900;color:#d9ff7a;text-decoration:none}

.callout{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}

.table-wrapper{overflow-x:auto;margin:18px 0}
table{width:100%;border-collapse:collapse;min-width:720px}
th,td{padding:12px 14px;border:1px solid #1d3a2a;text-align:left}
th{background:rgba(34,197,94,.14)}
tbody tr:nth-child(odd){background:rgba(255,255,255,.03)}

.quote{
  margin:18px 0 0;
  padding:16px;
  border-left:5px solid var(--brand2);
  background:rgba(12,26,17,.72);
  border-radius:16px;
  box-shadow:0 10px 26px rgba(0,0,0,.25);
}

.faq{
  margin-top:10px;
  padding:12px 14px;
  background:rgba(12,26,17,.72);
  border:1px solid var(--stroke);
  border-radius:14px;
}
.faq summary{cursor:pointer;font-weight:900}

.footer{
  text-align:center;
  padding:18px;
  color:rgba(255,255,255,.68);
  border-top:1px solid var(--stroke);
  background:rgba(0,0,0,.12);
  margin-top:22px;
}

@media (max-width:900px){
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .two{grid-template-columns:1fr}
  table{min-width:560px}
  .callout{flex-direction:column;align-items:flex-start}
}
@media (max-width:600px){
  .cta{width:100%;max-width:360px}
  table, thead, tbody, th, td, tr{display:block}
  thead tr{position:absolute;top:-9999px;left:-9999px}
  tr{margin-bottom:14px}
  td{border:none;position:relative;padding-left:50%}
  td:before{
    content:attr(data-label);
    position:absolute;
    left:10px;
    top:10px;
    font-weight:900;
    font-size:.65rem;
    text-transform:uppercase;
    color:#fff;
  }
}
