:root {
  --bg: #f5f7fb;
  --card: rgba(255, 255, 255, 0.85);
  --text: #171a21;
  --muted: #5d6678;
  --accent: #1a76ff;
  --accent-soft: #dbe9ff;
  --border: rgba(23, 26, 33, 0.1);
  --shadow: 0 14px 34px rgba(16, 24, 40, 0.1);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 10%, #ffffff, transparent 44%),
    radial-gradient(circle at 90% 0%, #e8f0ff, transparent 48%), var(--bg);
  padding: 28px 16px 56px;
}

.page {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.hero {
  padding: 20px 8px;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
}

h1 {
  margin: 10px 0 8px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(110deg, #0f1729 0%, #1a76ff 58%, #0f1729 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-wrap: balance;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.card {
  background: var(--card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

h2 {
  margin: 0;
  font-size: 20px;
}

.hint {
  color: var(--muted);
  font-size: 13px;
}

.inline-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.inline-link:hover {
  text-decoration: underline;
}

.social-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.social-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 12px 14px;
  border-radius: inherit;
  transition: background-color 180ms ease;
}

.social-meta {
  display: grid;
  gap: 2px;
}

.social-name {
  font-weight: 700;
}

.social-desc {
  color: var(--muted);
  font-size: 13px;
}

.social-arrow {
  color: var(--accent);
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease;
}

.social-item:hover {
  transform: translateY(-1px);
  border-color: rgba(23, 26, 33, 0.16);
  box-shadow: 0 6px 14px rgba(23, 26, 33, 0.1);
}

.social-item:hover .social-link {
  background: linear-gradient(180deg, #ffffff, #fafbfc);
}

.social-item:hover .social-arrow {
  transform: translateX(2px);
  color: #4f596d;
}

.social-link:focus-visible {
  outline: 2px solid rgba(26, 118, 255, 0.45);
  outline-offset: 2px;
  border-radius: 10px;
}

.about-card {
  overflow: hidden;
}

.about-content {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  align-items: center;
}

.about-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #202433;
}

.about-text p + p {
  margin-top: 10px;
  color: var(--muted);
}

.about-figure {
  margin: 0;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #f7faff, #fff8f2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  padding: 10px;
}

.about-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.orb-1 {
  width: 220px;
  height: 220px;
  background: #d3e2ff;
  top: -70px;
  left: -50px;
}

.orb-2 {
  width: 260px;
  height: 260px;
  background: #ffe4cc;
  bottom: -100px;
  right: -80px;
}

@media (max-width: 560px) {
  body {
    padding: 18px 10px 34px;
  }

  .card {
    padding: 14px;
    border-radius: 14px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-text p {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-item,
  .social-link,
  .social-arrow {
    transition: none;
  }
}
