:root {
  --bg: #0b0f1a;
  --panel: #0f1524;
  --text: #e6e8ee;
  --muted: #a7b0c0;
  --brand: #4f86ff;
  --accent: #7a5cff;
  --ring: rgba(79,134,255,0.35);
  --success: #2cc38a;
  --chip: #1a2236;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: radial-gradient(1200px 600px at 20% 10%, #0e162b 0%, var(--bg) 55%),
              radial-gradient(1200px 600px at 90% 90%, #141b33 0%, var(--bg) 55%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.shell { max-width: 1120px; margin: 0 auto; padding: 32px 24px 64px; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 0; position: sticky; top: 0; backdrop-filter: blur(8px);
}
.nav .brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: 0.2px; }
.nav .brand img { width: 120px; height: 120px; border-radius: 8px; object-fit: cover; }
.nav .brand title {font-weight: 1000; letter-spacing: 1px; line-height: 3.0; margin: 12px 0 8px 20px; }
.nav .links { display: flex; gap: 16px; flex-wrap: wrap; }
.nav .links a { padding: 8px 12px; border-radius: 8px; background: transparent; border: 1px solid #1f2a44; }
.nav .links a:hover { border-color: var(--brand); box-shadow: 0 0 0 3px var(--ring); }

.hero {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 24px; align-items: center; margin-top: 24px;
}
.card {
  background: linear-gradient(180deg, #121a2f 0%, var(--panel) 100%);
  border: 1px solid #1f2a44; border-radius: 16px; padding: 24px; box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
.badge { display:inline-flex; gap:8px; align-items:center; border:1px solid #203052; background: var(--chip);
  color: var(--muted); font-size:12px; padding:6px 10px; border-radius:999px; }
.title { font-size: clamp(28px, 5vw, 44px); font-weight: 700; margin: 12px 0 8px; letter-spacing: 0.2px; }
.subtitle { font-size: clamp(16px, 3.5vw, 20px); color: var(--muted); }
.cta { display:flex; gap:12px; margin-top: 20px; flex-wrap: wrap; }
.btn {
  display:inline-flex; align-items:center; gap:10px; padding:10px 16px; border-radius:10px;
  border:1px solid #29406e; background: #142345; color: var(--text); font-weight:600;
}
.btn.primary { background: linear-gradient(180deg, #4f86ff 0%, #3a6fe6 100%); border-color: #3a6fe6; }
.btn:hover { box-shadow: 0 0 0 3px var(--ring); transform: translateY(-1px); transition: 120ms ease; }

.grid { display:grid; gap: 16px; grid-template-columns: repeat(3,1fr); margin-top: 24px; }
.metric { background: #0c1226; border: 1px solid #203052; border-radius: 12px; padding: 16px; }
.metric .kpi { font-size: 22px; font-weight: 700; }
.metric .lbl { color: var(--muted); font-size: 13px; }

.section { margin-top: 40px; }
.section h2 { font-size: 22px; margin: 0 0 12px; }
.chips { display:flex; flex-wrap:wrap; gap:8px; }
.chip { background: var(--chip); border:1px solid #203052; color: var(--text); padding:8px 12px; border-radius:999px; font-size:13px; }
.list { display:grid; gap:12px; }
.list .item { display:flex; gap:12px; align-items:flex-start; border-bottom:1px dashed #223255; padding-bottom:12px; }
.list .item:last-child { border-bottom:none; }

.footer { margin-top: 48px; padding-top: 24px; border-top: 1px solid #1f2a44; color: var(--muted); font-size: 13px; display:flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* Responsive */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr; }
}