:root{
  --green:#90C661;
  --graphite:#515253;
  --ink:#222425;
  --bg:#ffffff;
  --muted:#6b7280;
  --border: rgba(81,82,83,.18);
  --shadow: 0 18px 60px rgba(0,0,0,.12);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--ink);
  background: var(--bg);
}



.container{
  position:relative;
  max-width:1100px;
  margin:0 auto;
  padding:28px 18px 52px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:26px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
}
/*.brand img{*/
/*  width:44px;*/
/*  height:44px;*/
/*  border-radius:12px;*/
/*  background:#fff;*/
/*  box-shadow: 0 10px 30px rgba(0,0,0,.08);*/
/*}*/
.brand .name{
  font-weight:900;
  letter-spacing:.5px;
  text-transform:uppercase;
  color: var(--graphite);
}

.tag{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}
.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(144,198,97,.18);
}

.grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 920px){
  .grid{grid-template-columns:1fr}
}

.card{
  border:1px solid var(--border);
  background: rgba(255,255,255,.80);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding:24px;
  box-shadow: var(--shadow);
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(144,198,97,.35);
  background: rgba(144,198,97,.10);
  color: var(--graphite);
  font-weight:800;
  font-size: 13px;
  margin-bottom:14px;
}
.kicker svg{width:16px;height:16px}

h1{
  margin:0 0 10px;
  font-size: clamp(32px, 4vw, 54px);
  line-height:1.05;
  letter-spacing:-.02em;
  color: var(--graphite);
}
.lede{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height:1.65;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 0;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  text-decoration:none;
  font-weight:900;
  border:1px solid transparent;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background: linear-gradient(135deg, var(--green), #7fb84d);
  color:#0f140d;
  box-shadow: 0 14px 30px rgba(144,198,97,.24);
}
.btn-secondary{
  border-color: rgba(81,82,83,.22);
  background: rgba(255,255,255,.75);
  color: var(--graphite);
}

.info{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  margin-top:18px;
}
.info-long {
    grid-template-columns: repeat(1, 1fr);
    margin-top:12px;
}

@media (max-width: 520px){
  .info{grid-template-columns:1fr}
}

.tile{
  border:1px solid rgba(81,82,83,.18);
  background: rgba(255,255,255,.72);
  border-radius: 16px;
  padding:14px;
}
.tile .label{
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}
.tile .value{
  font-weight:900;
  color: var(--graphite);
}

.links{
  display:grid;
  gap:10px;
  margin-top:12px;
}
.linkbox{
  border:1px solid rgba(81,82,83,.18);
  border-radius:16px;
  padding:14px;
  background: rgba(255,255,255,.72);
}
.linkbox .label{color:var(--muted); font-size:12px; margin-bottom:6px}
.linkbox a{color:var(--graphite); font-weight:900; text-decoration:none}
.linkbox a:hover{text-decoration:underline}

.footer{
  margin-top:20px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px;
  color: var(--muted);
  font-size:13px;
}
.footer a{
  color: var(--graphite);
  text-decoration:none;
  font-weight:800;
  border-bottom:1px dashed rgba(81,82,83,.35);
}
.footer a:hover{border-bottom-color: rgba(144,198,97,.9)}

.page{
  max-width:900px;
  margin:0 auto;
}
.page h1{font-size:34px}
.page p, .page li{color:var(--muted); line-height:1.75}
.page .toplinks{display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 0}
.page .toplinks a{
  border:1px solid var(--border);
  background: rgba(255,255,255,.75);
  padding:10px 12px;
  border-radius:14px;
  text-decoration:none;
  color: var(--graphite);
  font-weight:900;
}
hr{border:0;border-top:1px solid rgba(81,82,83,.14); margin:18px 0}
.linkbox img {
  width: 200px;
  height: auto;
}

.images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:2rem;
}

.tag a {
    text-decoration:none;
    font-weight: 900;
    color: var(--graphite);
}