:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0b0b0f;
  color: #f5f5f7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #20131d 0%, #0b0b0f 48%, #070709 100%);
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 40px;
}

.brand {
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 8px;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  opacity: 0.68;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 0.95;
}

.subtitle {
  max-width: 52ch;
  opacity: 0.72;
}

.profile-card,
.status-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
  border-radius: 24px;
}

.profile-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 28px;
}

.avatar {
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 18px;
  font-size: 5rem;
  font-weight: 700;
  background: linear-gradient(145deg, #47233c, #181219);
}

.profile-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.profile-heading h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.location {
  opacity: 0.62;
}

.bio {
  max-width: 54ch;
  line-height: 1.7;
  opacity: 0.86;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.tags li {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  font-size: 0.88rem;
}

.actions {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

button {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  cursor: pointer;
  font-weight: 650;
}

button.secondary {
  background: rgba(255, 255, 255, 0.09);
  color: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.status-panel {
  margin-top: 20px;
  padding: 20px 22px;
}

.status-panel h2 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.status-panel p {
  margin-bottom: 6px;
  opacity: 0.72;
}

footer {
  margin-top: 22px;
  opacity: 0.52;
}

@media (max-width: 680px) {
  .profile-card {
    grid-template-columns: 1fr;
  }

  .avatar {
    min-height: 160px;
  }
}
