* { box-sizing: border-box; }

:root {
  --bg: #05070b;
  --panel: rgba(17, 21, 30, 0.82);
  --text: #f7f9fc;
  --muted: #aeb7c7;
  --blue: #4da3ff;
  --blue2: #1f6fff;
  --border: rgba(255,255,255,.10);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(31,111,255,.18), transparent 34rem),
    radial-gradient(circle at 0% 100%, rgba(77,163,255,.08), transparent 26rem),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.page {
  width: min(100% - 32px, 620px);
  margin: 0 auto;
  padding: 54px 0 28px;
}

.profile { text-align: center; animation: rise .65s ease both; }

.avatar {
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 42px;
  font-weight: 800;
  color: white;
  background: linear-gradient(145deg, #17233a, #0a0e17);
  border: 2px solid rgba(77,163,255,.55);
  box-shadow: 0 0 0 7px rgba(77,163,255,.07), 0 18px 60px rgba(0,0,0,.45);
  overflow: hidden;
}

.avatar img { width: 100%; height: 100%; object-fit: cover; }

h1 {
  margin: 0;
  font-size: clamp(42px, 10vw, 68px);
  line-height: .95;
  letter-spacing: .08em;
  font-weight: 900;
}

.tagline {
  margin: 12px 0 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.intro {
  max-width: 430px;
  margin: 15px auto 28px;
  color: var(--muted);
  line-height: 1.6;
}

.links { display: grid; gap: 12px; }

.link-card {
  min-height: 62px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 750;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(77,163,255,.55);
  background: rgba(23,29,41,.94);
  box-shadow: 0 18px 38px rgba(0,0,0,.28), 0 0 24px rgba(31,111,255,.08);
}

.icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  font-size: 16px;
}

.arrow { text-align: right; color: var(--muted); font-size: 18px; }

.work {
  border-color: rgba(77,163,255,.35);
  background: linear-gradient(100deg, rgba(31,111,255,.16), rgba(17,21,30,.82));
}

.latest {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(19,25,37,.94), rgba(9,12,18,.88));
  box-shadow: 0 20px 55px rgba(0,0,0,.25);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .17em;
}

.latest h2 { margin: 0; font-size: 23px; }
.latest p:not(.eyebrow) { color: var(--muted); line-height: 1.55; }

.watch {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: white;
  text-decoration: none;
  font-weight: 800;
}

.watch:hover { color: var(--blue); }

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding: 0 4px;
  color: #778195;
  font-size: 11px;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 460px) {
  .page { padding-top: 38px; }
  .link-card { min-height: 58px; border-radius: 16px; }
  .latest { padding: 20px; }
}
