:root {
  --bg: #fff9fa;
  --blob: #f7dde5;
  --rose: #d98fa3;
  --rose-deep: #9e526b;
  --ink: #3a2930;
  --ink-muted: #77626b;
  --card: #ffffffcc;
  --card-border: #ead9de;
  --shadow: 0 10px 30px -12px rgba(58, 41, 48, 0.15), 0 2px 6px -2px rgba(58, 41, 48, 0.08);
  --radius: 14px;
  --radius-link: 999px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  background: var(--blob);
  filter: blur(60px);
  opacity: 0.7;
}

.blob--tl { width: 320px; height: 320px; top: -128px; left: -96px; opacity: 1; background: var(--rose); filter: blur(80px); opacity: 0.35; }
.blob--tr { width: 384px; height: 384px; top: -190px; right: -190px; opacity: 0.6; }
.blob--br { width: 384px; height: 384px; bottom: 20%; right: -130px; opacity: 0.7; }
.blob--bl { width: 384px; height: 384px; bottom: -190px; left: -130px; opacity: 0.7; }

.content {
  --design-w: 464px;
  --design-h: 900px;
  position: relative;
  z-index: 1;
  width: var(--design-w);
  text-align: center;
  padding: 0 20px;
  box-sizing: content-box;
  transform: scale(min(1, calc(100vh / var(--design-h))));
  transform-origin: center center;
}

.avatar {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 0 auto 32px;
}
.avatar__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.85;
}
.avatar__img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  z-index: 1;
  background: var(--rose);
}

.title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 37.5px;
  letter-spacing: -0.3px;
  margin: 0 0 12px;
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 11.2px;
  font-weight: 600;
  letter-spacing: 3.14px;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.bio {
  margin: 0 auto 32px;
  max-width: 384px;
  font-size: 14px;
  line-height: 22.75px;
  color: var(--ink-muted);
  font-weight: 400;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 32px;
}

.link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  min-height: 72px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-link);
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-align: left;
  backdrop-filter: blur(6px);
}

.link:hover,
.link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -14px rgba(58, 41, 48, 0.22), 0 4px 10px -2px rgba(58, 41, 48, 0.1);
  outline: none;
}

.link__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(247, 221, 229, 0.7);
  color: var(--rose-deep);
  flex-shrink: 0;
}
.link__icon svg { width: 20px; height: 20px; }

.link__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 2px;
}

.link__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--ink);
}

.link__subtitle {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--ink-muted);
}

.link--primary {
  background: var(--rose);
  border-color: transparent;
  color: #fff;
}
.link--primary .link__title { color: #fff; }
.link--primary .link__subtitle { color: rgba(255, 255, 255, 0.85); }
.link--primary .link__icon {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.info {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  text-align: left;
  backdrop-filter: blur(6px);
}

.info__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  line-height: 20px;
  color: var(--ink-muted);
}

.info__item svg {
  width: 16px;
  height: 16px;
  color: var(--rose-deep);
  flex-shrink: 0;
}

.footer {
  margin: 40px 0 0;
  font-size: 10.4px;
  font-weight: 400;
  letter-spacing: 2.91px;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
}

@media (max-width: 640px) {
  .page {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: visible;
    padding: 40px 20px;
    align-items: flex-start;
  }
  .content {
    width: 100%;
    max-width: 464px;
    padding: 0;
    transform: none;
  }
}
