:root {
  color-scheme: dark;
  --bg0: #0b1020;
  --bg1: #090a12;
  --card: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.10);
  --stroke2: rgba(255,255,255,.14);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --muted2: rgba(255,255,255,.55);
  --accent: rgba(155, 130, 255, 1);
  --accent2: rgba(90, 200, 255, 1);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(1200px 700px at 15% 10%, rgba(155,130,255,.18), transparent 60%),
    radial-gradient(900px 600px at 85% 20%, rgba(90,200,255,.14), transparent 55%),
    radial-gradient(700px 500px at 50% 95%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  color: var(--text);
}

.shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

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

.logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: .5px;
  color: rgba(255,255,255,.92);
  background: linear-gradient(135deg, rgba(155,130,255,.35), rgba(90,200,255,.25));
  border: 1px solid var(--stroke);
  box-shadow: 0 10px 35px rgba(0,0,0,.35);
}

.brandName {
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.1;
}

.brandTag {
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

.lang {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.langLabel {
  color: var(--muted2);
  font-size: 13px;
}

.langPills {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--stroke);
}

.pill {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255,255,255,.78);
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .6px;
  font-size: 12px;
}

.pill.active {
  background: rgba(155,130,255,.18);
  border-color: rgba(155,130,255,.35);
  color: rgba(255,255,255,.92);
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero {
  padding: 22px 22px 18px;
}

.title {
  font-size: 34px;
  margin: 6px 0 8px;
  letter-spacing: -0.4px;
}

.subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.ctaRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.btn {
  appearance: none;
  border: 1px solid var(--stroke2);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.90);
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 160px;
  transition: transform .08s ease, border-color .15s ease, background .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(155,130,255,.35);
  background: rgba(155,130,255,.08);
}

.btn.primary {
  border-color: rgba(155,130,255,.50);
  background: linear-gradient(135deg, rgba(155,130,255,.22), rgba(90,200,255,.12));
}

.microRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  border: 1px solid var(--stroke);
  color: rgba(255,255,255,.86);
  font-weight: 700;
  font-size: 13px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: rgba(120, 255, 160, .95);
  box-shadow: 0 0 0 6px rgba(120,255,160,.12);
}

.kv {
  color: var(--muted2);
  font-size: 13px;
}

.sep {
  border: none;
  border-top: 1px solid rgba(255,255,255,.10);
  margin: 18px 0 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini {
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.miniTitle {
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 8px;
}

.miniText {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.foot {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footNote {
  color: var(--muted2);
}

@media (max-width: 860px) {
  .grid { grid-template-columns: 1fr; }
  .title { font-size: 30px; }
  .btn { min-width: 140px; }
  .topbar { flex-direction: column; align-items: flex-start; }
}
