.gate h1 {
  font-size: clamp(48px, 7vw, 96px);
  margin: 22px 0;
}

.gate-tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0c0f0d;
}

.language-switch a {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--muted);
  font: 9px var(--mono);
  text-decoration: none;
}

.language-switch a.active {
  color: #071007;
  background: var(--lime);
}

.profile-entry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 980px;
  margin-top: 26px;
}

.profile-option {
  min-height: 112px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(15, 19, 16, .88);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s, transform .2s, background .2s;
}

.profile-option:hover,
.profile-option:focus-visible {
  border-color: var(--lime);
  transform: translateY(-2px);
  outline: none;
}

.profile-option.primary-option {
  background: var(--lime);
  color: #071007;
  border-color: var(--lime);
}

.profile-option b,
.profile-option span { display: block; }
.profile-option b { font-size: 14px; }
.profile-option span { margin-top: 8px; font-size: 10px; line-height: 1.45; opacity: .68; }

@media (max-width: 760px) {
  .profile-entry { grid-template-columns: 1fr; }
  .profile-option { min-height: 88px; }
  .topbar {
    gap: 7px;
  }

  .topbar .language-switch a {
    padding: 6px 7px;
    font-size: 8px;
  }

  .gate-tools {
    gap: 8px;
  }
}
