:root {
  --color-canvas: #fafbff;
  --color-surface: #f0f5ff;
  --color-surface-raised: #ffffff;
  --color-blue: #2251cc;
  --color-blue-light: #c5d6f7;
  --color-blue-faint: #ebf1fd;
  --color-ink: #0d1a40;
  --color-muted: #5577bb;
  --color-subtle: #9aafdd;
  --color-border: #c5d6f7;
  --color-border-strong: #8aade2;

  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;

  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-ambient: 18s;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-canvas);
  color: var(--color-ink);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: linear-gradient(180deg, #fafbff 0%, #f2f6fd 100%);
}

.hero {
  position: relative;
  z-index: 1;
  width: min(840px, 100%);
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 28px 30px;
  border-radius: 20px;
  border: 0.5px solid rgba(197, 214, 247, 0.72);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.photo-card {
  flex: 0 0 248px;
  height: 320px;
  padding: 0;
  border-radius: 18px;
  border: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 0;
}

.content {
  flex: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color-blue);
}

h1 {
  margin: 0;
  font-size: 39px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--color-ink);
}

.lede {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--color-muted);
}

.body-copy {
  margin: 0;
  max-width: 60ch;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-ink);
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  transition: color var(--duration-fast) var(--ease-out), opacity var(--duration-fast) var(--ease-out);
}

.social-link:hover {
  color: var(--color-ink);
  text-decoration: none;
}

.social-separator {
  color: var(--color-subtle);
  font-size: 13px;
  line-height: 1;
  flex: 0 0 auto;
}

.ambient {
  position: absolute;
  border-radius: var(--radius-full);
  pointer-events: none;
}

.ambient-a {
  left: -180px;
  top: 90px;
  width: 460px;
  height: 460px;
  background: rgba(194, 214, 247, 0.42);
  filter: blur(28px);
  animation: driftA var(--duration-ambient) ease-in-out infinite alternate;
}

.ambient-b {
  right: -40px;
  top: 50px;
  width: 500px;
  height: 500px;
  background: rgba(34, 81, 204, 0.08);
  filter: blur(32px);
  animation: driftB calc(var(--duration-ambient) * 1.2) ease-in-out infinite alternate;
}

.ambient-c {
  right: 180px;
  bottom: 120px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(18px);
  animation: driftC calc(var(--duration-ambient) * 1.4) ease-in-out infinite alternate;
}

@keyframes driftA {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(24px, -18px, 0) scale(1.05);
  }
}

@keyframes driftB {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-18px, 16px, 0) scale(1.04);
  }
}

@keyframes driftC {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(18px, -12px, 0) scale(1.03);
  }
}

@media (max-width: 1024px) {
  .hero {
    width: min(100%, 760px);
    gap: 28px;
    padding: 24px 24px;
  }

  h1 {
    font-size: 36px;
  }

  .lede {
    font-size: 17px;
  }
}

@media (max-width: 820px) {
  .page-shell {
    padding: 24px;
  }

  .hero {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    max-width: 560px;
  }

  .photo-card {
    flex-basis: auto;
    width: 100%;
    height: 360px;
  }

  .content {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding: 16px;
  }

  .hero {
    gap: 24px;
  }

  .photo-card {
    height: 320px;
  }

  h1 {
    font-size: 31px;
  }

  .lede {
    font-size: 15px;
  }

  .body-copy {
    font-size: 14px;
    line-height: 1.55;
  }

  .social-link {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}