*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.noscript-hide { display: none; }

body {
  background: #202426;
  color: #EFF1F1;
  font-family: Arial, sans-serif;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 40px;
}

.bio-wrap {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Logo */
.bio-emblem {
  width: 200px;
  max-width: 60vw;
  object-fit: contain;
}

/* Text */
.bio-tagline {
  margin-top: 20px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.18em;
  color: #A8AD8B;
  text-transform: uppercase;
  text-align: center;
}

.bio-sub {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #909090;
  text-align: center;
  line-height: 1.5;
}

/* Links */
.bio-links {
  margin-top: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bio-btn {
  display: block;
  width: 100%;
  padding: 18px 16px;
  background: transparent;
  border: 1.5px solid #A8AD8B;
  color: #EFF1F1;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.bio-btn:hover,
.bio-btn:focus-visible {
  background: #A8AD8B;
  color: #202426;
  outline: none;
}

.bio-btn--primary {
  background: #A8AD8B;
  color: #202426;
  border-color: #A8AD8B;
}

.bio-btn--primary:hover,
.bio-btn--primary:focus-visible {
  background: #c2c7a8;
  border-color: #c2c7a8;
  color: #202426;
}

/* Footer */
.bio-footer {
  margin-top: 40px;
  font-size: 11px;
  color: #555;
  letter-spacing: 0.05em;
  text-align: center;
}
