:root {
  --void: #0a0b0f;
  --panel: #171a24;
  --line: #262a38;
  --exotic: #ceae33;
  --text: #e8e9ee;
  --text-dim: #8b8fa3;
  --text-faint: #565a6b;
  --font-display: "Rajdhani", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--void);
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  padding: 22px 32px;
  border-bottom: 1px solid var(--line);
}

.topbar__mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 15px;
}

.topbar__logo {
  width: 18px;
  height: 18px;
  display: block;
}

.stage {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 48px;
  row-gap: 36px;
}

.tile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.tile__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.tile__icon--exotic {
  background: linear-gradient(160deg, #3a3110, #171a24);
  border: 1px solid #4a3f18;
  color: var(--exotic);
}

.tile__icon--pending {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text-faint);
}

.tile__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

.tile__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--text);
}

.tile__desc {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-dim);
}

.tile:hover .tile__name {
  color: var(--exotic);
}

.tile--pending {
  cursor: default;
}

.tile--pending .tile__name,
.tile--pending .tile__desc {
  color: var(--text-faint);
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .stage { padding: 40px 20px 60px; }
}
