:root {
  --bg-base: #f4f6ff;
  --bg-blue: rgba(176, 216, 255, 0.62);
  --bg-pink: rgba(255, 178, 228, 0.58);
  --bg-purple: rgba(206, 178, 255, 0.6);
  --text-title: #111227;
  --text-body: #54556a;
  --card-bg: rgba(255, 255, 255, 0.5);
  --card-border: rgba(255, 255, 255, 0.8);
  --card-shadow: rgba(28, 24, 56, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text-body);
  background:
    radial-gradient(circle at 10% 12%, var(--bg-blue) 0%, transparent 43%),
    radial-gradient(circle at 90% 26%, var(--bg-pink) 0%, transparent 45%),
    radial-gradient(circle at 52% 88%, var(--bg-purple) 0%, transparent 44%),
    var(--bg-base);
  display: grid;
  place-items: center;
  padding: 28px 16px 40px;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -90px;
  background: inherit;
  filter: blur(44px) saturate(1.12);
  transform: scale(1.06);
  z-index: -1;
  pointer-events: none;
}

.page {
  width: min(920px, 100%);
  text-align: center;
}

.avatar-wrap {
  width: 180px;
  height: 180px;
  margin: 0 auto 22px;
  border-radius: 50%;
  padding: 4px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 26px rgba(41, 31, 68, 0.15);
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

h1 {
  color: var(--text-title);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 34px;
}

.card {
  width: min(700px, 100%);
  margin: 0 auto 16px;
  text-align: left;
  border-radius: 20px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px var(--card-shadow);
}

.card + .card {
  margin-top: 18px;
}

h2 {
  color: var(--text-title);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

p {
  font-size: clamp(1.1rem, 1.8vw, 1.8rem);
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 14px;
  max-width: 34ch;
}

a {
  color: #1e2c7a;
  font-weight: 700;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

a:hover {
  color: #131b4f;
}

p:last-child {
  margin-bottom: 0;
}
