:root{
  --bg:#0b0d12;
  --panel:#111522;
  --line:#242a3a;
  --text:#e8eaf0;
  --muted:#b3b8c7;
  --accent:#7aa7ff;
  --radius:16px;
  --shadow: 0 12px 34px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background:
    radial-gradient(1000px 600px at 10% 0%, rgba(122,167,255,.20), transparent 60%),
    radial-gradient(800px 500px at 85% 15%, rgba(122,167,255,.10), transparent 60%),
    var(--bg);
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 4px; }

.wrap{
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: 42px 0 28px;
}

.card{
  border: 1px solid rgba(36,42,58,.8);
  background: rgba(17,21,34,.62);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero{ padding: 22px 18px; }

.brand{
  display:flex;
  gap: 14px;
  align-items:center;
}

.mark{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  letter-spacing:.6px;
  border: 1px solid rgba(122,167,255,.35);
  background: rgba(122,167,255,.16);
}

h1{
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.12;
}

.subtitle{
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.lead{
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 850;
  border: 1px solid rgba(122,167,255,.40);
  background: linear-gradient(180deg, rgba(122,167,255,.24), rgba(122,167,255,.10));
}
.btn:hover{ filter: brightness(1.08); text-decoration:none; }

.btn.ghost{
  border: 1px solid rgba(36,42,58,.9);
  background: rgba(17,21,34,.55);
  font-weight: 750;
}

.chips{
  list-style:none;
  padding: 0;
  margin: 14px 0 0;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chips li{
  border: 1px solid rgba(36,42,58,.9);
  background: rgba(17,21,34,.45);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-weight: 650;
  font-size: .95rem;
  display:flex;
  gap: 8px;
  align-items: baseline;
}
.chips span{ color: var(--text); opacity:.9; font-weight: 850; }
.muted{ color: var(--muted); }

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

h2{
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{ margin: 8px 0; }

.note{
  margin-top: 12px;
  color: var(--muted);
  font-size: .95rem;
  border-top: 1px dashed rgba(36,42,58,.9);
  padding-top: 10px;
}

.footer{
  margin-top: 14px;
  border-top: 1px solid rgba(36,42,58,.6);
  padding-top: 14px;
  color: var(--muted);
  display:flex;
  justify-content:space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 650;
}
.sep{ opacity:.6; margin: 0 8px; }

@media (max-width: 860px){
  .grid{ grid-template-columns: 1fr; }
}


.logo{
  display:block;
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(122,167,255,.10);
  padding: 8px;
  border: 1px solid rgba(36,42,58,.9);
}
