:root {
  --bg: #0b1220;
  --line: rgba(226, 248, 252, 0.12);
  --text: #eef6f8;
  --muted: #9fb0c0;
  --cyan: #22d3ee;
  --cyan-2: #67e8f9;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  height: 100%;
}
body {
  font-family: Inter, system-ui, sans-serif;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(34, 211, 238, 0.16), transparent 50%), var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
main {
  min-height: 100%;
  min-height: 100dvh;
}

.profile-card {
  min-height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: max(28px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
}
.avatar {
  width: min(280px, 58vw);
  height: min(280px, 58vw);
  border-radius: 36px;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(34, 211, 238, 0.45);
  margin: 0 auto clamp(20px, 3vh, 32px);
}
.kicker {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
h1 {
  margin: 0 0 14px;
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.role, .lead {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 auto 12px;
  font-size: clamp(16px, 2.1vw, 24px);
  max-width: 18em;
}
.lead {
  margin-bottom: clamp(24px, 4vh, 40px);
  max-width: 28em;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 720px;
  min-height: clamp(52px, 7vh, 72px);
  padding: 0 22px;
  border-radius: 16px;
  background: var(--cyan);
  color: #062027;
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 22px);
  text-align: center;
}
.btn:hover { background: var(--cyan-2); }

@media (min-width: 900px) {
  .profile-card {
    padding: 6vh 8vw;
  }
  .role { max-width: none; }
  .lead { max-width: 34em; }
}
