:root {
  --bg: #050816;
  --bg-deep: #02040b;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --border: rgba(255, 255, 255, 0.15);
  --border-strong: rgba(255, 255, 255, 0.3);
  --text: #eff4ff;
  --muted: #a5b3cf;
  --primary: #91b6ff;
  --accent: #95f2ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 1px 0 rgba(255, 255, 255, 0.16) inset;
  --radius: 32px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(106, 143, 255, 0.2), transparent 30%),
    radial-gradient(circle at bottom right, rgba(149, 242, 255, 0.14), transparent 32%),
    linear-gradient(180deg, #091120 0%, var(--bg) 52%, var(--bg-deep) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 48%);
  opacity: 0.65;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.profile-card {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 42%, rgba(255, 255, 255, 0.02)),
    rgba(10, 18, 34, 0.62);
  backdrop-filter: blur(30px) saturate(145%);
  -webkit-backdrop-filter: blur(30px) saturate(145%);
  box-shadow: var(--shadow), var(--shadow-glow);
  text-align: center;
  overflow: hidden;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.24), transparent 24%, transparent 68%, rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 28%);
  opacity: 0.9;
  pointer-events: none;
}

.profile-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.status-pill,
.eyebrow,
.tag-list span,
.social-links a,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: var(--shadow-glow);
}

.status-pill {
  padding: 0.55rem 1rem;
  color: #d9e5ff;
  font-size: 0.85rem;
}

.profile-photo {
  width: 142px;
  height: 142px;
  margin: 1.75rem auto;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, rgba(145, 182, 255, 0.95), rgba(149, 242, 255, 0.9));
  box-shadow: 0 20px 48px rgba(88, 128, 255, 0.3), var(--shadow-glow);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  background: radial-gradient(circle at top, rgba(18, 29, 52, 0.95), rgba(4, 8, 18, 0.98));
}

.profile-copy {
  display: grid;
  gap: 0.85rem;
}

.eyebrow {
  margin: 0 auto;
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  color: #dbe7ff;
}

h1 {
  margin: 0;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: clamp(2.75rem, 7vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.role {
  width: min(100%, 560px);
  margin: 0 auto;
  color: #d8e4ff;
  font-size: 1.08rem;
  font-weight: 500;
}

.tag-list,
.primary-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.tag-list {
  margin-top: 1.75rem;
}

.tag-list span {
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}

.primary-actions {
  margin-top: 1.75rem;
}

.button {
  min-width: 156px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.social-links a:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: #06111f;
  background: linear-gradient(135deg, rgba(145, 182, 255, 1), rgba(149, 242, 255, 0.92));
  box-shadow: 0 16px 30px rgba(96, 133, 255, 0.28);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.07);
}

.social-links {
  margin-top: 1.5rem;
}

.social-links a {
  min-height: 46px;
  gap: 0.6rem;
  padding: 0.72rem 1rem;
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-icon {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.social-links a:hover {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.1);
}

.background-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  pointer-events: none;
}

.glow-one {
  top: -7rem;
  left: -7rem;
  background: rgba(71, 108, 255, 0.85);
}

.glow-two {
  right: -8rem;
  bottom: -8rem;
  background: rgba(29, 196, 255, 0.75);
}

@media (max-width: 640px) {
  .page-shell {
    padding: 1rem;
  }

  .profile-card {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .profile-photo {
    width: 118px;
    height: 118px;
  }

  .role {
    font-size: 1rem;
  }

  .button,
  .social-links a,
  .tag-list span {
    width: 100%;
  }
}
