:root {
  --bg: #07110f;
  --panel: #101a18;
  --panel2: #15231f;
  --ink: #f4f2ea;
  --muted: #aab8b1;
  --line: rgba(215, 185, 92, 0.24);
  --gold: #d7b95c;
  --green: #6fd0a4;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #0c211c, var(--bg));
  color: var(--ink);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.btn, .links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}
.btn.primary { background: var(--gold); color: #171103; border-color: var(--gold); }
.hero { padding: 74px 0 46px; }
.eyebrow {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 8px;
  border: 1px solid rgba(111,208,164,.3);
  color: #b9f0d5;
  background: rgba(111,208,164,.08);
  font-weight: 900;
  font-size: 13px;
}
h1 { margin: 16px 0 0; max-width: 850px; font-size: clamp(42px, 7vw, 72px); line-height: .96; letter-spacing: 0; }
.lead { max-width: 760px; margin: 20px 0 0; color: var(--muted); font-size: 18px; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
section { padding: 42px 0; border-top: 1px solid rgba(255,255,255,.08); }
h2 { margin: 0 0 16px; font-size: clamp(28px, 4vw, 42px); line-height: 1; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  padding: 18px;
}
.tag {
  width: fit-content;
  border-radius: 8px;
  padding: 5px 8px;
  background: rgba(215,185,92,.1);
  border: 1px solid var(--line);
  color: #f4dc8a;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}
h3 { margin: 0; font-size: 20px; line-height: 1.18; }
p { color: var(--muted); }
ul { margin: 12px 0 0; padding-left: 18px; color: var(--muted); }
.card .actions { margin-top: auto; padding-top: 16px; }
footer { padding: 26px 0 40px; color: var(--muted); border-top: 1px solid rgba(255,255,255,.08); }
@media (max-width: 860px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .links { justify-content: flex-start; }
  .grid { grid-template-columns: 1fr; }
  .btn, .links a { width: 100%; }
}
