:root {
  --bg: #0b0f17;
  --panel: #121826;
  --text: #e7eaf0;
  --muted: #9aa3b2;
  --accent: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at top, #162036, var(--bg));
  color: var(--text);
}

.wrap {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

/* NAV */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-wrap {
  display: flex;
  flex-direction: column;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
}

.aka {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.navlinks a {
  margin-left: 1rem;
  text-decoration: none;
  color: var(--text);
}

/* SYMBOL ROW */

.symbol-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0 2rem;
}

.symbol-img {
  width: 100%;
  max-width: 260px;
  justify-self: center;
  opacity: 0.85;
}

.unification-symbol {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.9;
}

/* HERO */

.hero h1 {
  font-size: 3rem;
  margin: 1rem 0;
}

.hero p {
  max-width: 640px;
  color: var(--muted);
}

/* BUTTONS */

.btn {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #000;
  text-decoration: none;
  margin-right: 0.6rem;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #333;
  color: var(--text);
}

/* CARDS */

.card {
  background: var(--panel);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* FOOTER */

.footer {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
}

/* MOBILE */

@media (max-width: 768px) {
  .symbol-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .unification-symbol {
    font-size: 4rem;
  }
}
