:root{
  --bg:#0b0f0d;
  --card:#111915;
  --text:#e9f2ec;
  --muted:#b7c7be;
  --accent:#7bd389;
  --accent2:#f2c14e;
  --border:rgba(255,255,255,.10);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(900px 500px at 10% 10%, rgba(123,211,137,.12), transparent 60%),
    radial-gradient(700px 450px at 85% 20%, rgba(242,193,78,.10), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:1100px;margin:0 auto;padding:0 20px}
.nav{
  position:sticky; top:0;
  backdrop-filter: blur(10px);
  background: rgba(11,15,13,.70);
  border-bottom:1px solid var(--border);
  z-index:10;
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex;gap:10px;align-items:center;
  font-weight:750; letter-spacing:.3px;
}
.logo{
  width:34px;height:34px;border-radius:10px;
  background: linear-gradient(135deg, rgba(123,211,137,.95), rgba(242,193,78,.95));
  display:inline-flex;align-items:center;justify-content:center;
  color:#0b0f0d;font-weight:900;
}
.menu{display:flex;gap:18px;align-items:center}
.menu a{color:var(--muted);font-weight:600}
.menu a.active{color:var(--text)}
.button{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:12px;
  background: rgba(123,211,137,.14);
  border:1px solid rgba(123,211,137,.35);
  color:var(--text);
  font-weight:700;
}
.button:hover{text-decoration:none;background: rgba(123,211,137,.18)}
.button.secondary{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);
  color:var(--text);
}

.hero{padding:64px 0 26px}
.badge{
  display:inline-flex;gap:10px;align-items:center;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:650;
}
.badge-dot{
  width:10px;height:10px;border-radius:50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(123,211,137,.15);
}
h1{
  margin:16px 0 10px;
  font-size: clamp(34px, 5vw, 54px);
  line-height:1.05;
  letter-spacing:-.8px;
}
.lead{
  margin:0;
  max-width: 62ch;
  color:var(--muted);
  font-size: 18px;
}
.hero-actions{margin-top:20px;display:flex;gap:12px;flex-wrap:wrap}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
  padding: 18px 0 40px;
}
.card{
  grid-column: span 4;
  border:1px solid var(--border);
  background: rgba(17,25,21,.75);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.card h3{margin:0 0 8px;font-size:18px}
.card p{margin:0;color:var(--muted)}
.kicker{
  display:inline-block;
  color: rgba(123,211,137,.9);
  font-weight:800;
  letter-spacing:.4px;
  font-size:12px;
  text-transform:uppercase;
}

.section{padding:34px 0}
.section h2{margin:0 0 10px;font-size:28px;letter-spacing:-.3px}
.section p{margin:0;color:var(--muted);max-width:75ch}

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  margin-top:16px;
}
.panel{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius:18px;
  padding:16px;
}
ul{margin:10px 0 0;padding-left:18px;color:var(--muted)}
li{margin:6px 0}

.footer{
  border-top:1px solid var(--border);
  padding:18px 0;
  color:var(--muted);
  font-size:14px;
}
.footer a{color:var(--muted)}
small{color:var(--muted)}

.form{
  display:grid;
  gap:10px;
  margin-top:14px;
}
.input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px;resize:vertical}

@media (max-width: 900px){
  .card{grid-column: span 6}
  .split{grid-template-columns: 1fr}
}
@media (max-width: 620px){
  .menu{gap:12px}
  .card{grid-column: span 12}
}