:root {
  --bg:#050b08;
  --panel:#0d1c15;
  --panel2:#13281f;
  --text:#f4efe3;
  --muted:#aeb9af;
  --green:#19b66d;
  --gold:#c9a646;
  --line:rgba(255,255,255,.13);
}

* { box-sizing:border-box; }

body {
  margin:0;
  min-height:100vh;
  font-family:Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(25,182,109,.25), transparent 32rem),
    radial-gradient(circle at 85% 8%, rgba(201,166,70,.16), transparent 28rem),
    var(--bg);
  color:var(--text);
}

.wrap {
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:6vw;
}

.hero { max-width:900px; }

.logo {
  width:64px;
  height:64px;
  border:1px solid rgba(201,166,70,.75);
  border-radius:18px;
  display:grid;
  place-items:center;
  color:var(--green);
  font-weight:900;
  letter-spacing:-1px;
  background:rgba(255,255,255,.04);
  margin-bottom:1.5rem;
}

.eyebrow {
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.78rem;
  font-weight:800;
}

h1 {
  font-size:clamp(3rem,8vw,7rem);
  line-height:.9;
  letter-spacing:-.07em;
  margin:.4rem 0 1rem;
}

.lead {
  color:var(--muted);
  font-size:1.25rem;
  line-height:1.55;
}

.cards {
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:1rem;
  margin-top:3rem;
}

.card {
  color:var(--text);
  text-decoration:none;
  padding:2rem;
  min-height:260px;
  border:1px solid var(--line);
  border-radius:28px;
  background:linear-gradient(160deg, rgba(19,40,31,.95), rgba(13,28,21,.78));
  box-shadow:0 28px 70px rgba(0,0,0,.25);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:transform .18s ease, border-color .18s ease;
}

.card:hover {
  transform:translateY(-4px);
  border-color:rgba(25,182,109,.65);
}

.badge {
  color:var(--gold);
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:800;
}

.card h2 {
  font-size:2.2rem;
  margin:1.75rem 0 .75rem;
}

.card p {
  color:var(--muted);
  line-height:1.6;
  margin:0 0 2rem;
}

.card strong { color:var(--green); }

footer {
  display:flex;
  justify-content:space-between;
  gap:1rem;
  margin-top:4rem;
  padding-top:1.5rem;
  border-top:1px solid var(--line);
  color:var(--muted);
}

footer a {
  color:var(--green);
  text-decoration:none;
}

@media (max-width:760px) {
  .cards { grid-template-columns:1fr; }
  footer { flex-direction:column; }
}
