:root {
  --max-width: 920px;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #111;
  background: #fff;
}

.wrap {
  width: min(var(--max-width), calc(100vw - 48px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.logo {
  width: min(720px, 100%);
  height: auto;
  display: block;
}

.nav {
  width: min(680px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 6px;
  border-radius: 14px;
  color: inherit;
  text-decoration: none;
}

.tile:hover {
  background: rgba(0, 0, 0, 0.04);
}

.shape {
  width: 64px;
  height: 40px;
  box-sizing: border-box;
  border: 4px solid #000;
  border-radius: 10px;
}

.label {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 520px) {
  .nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
