:root {
  --panel: rgba(9, 19, 36, 0.76);
  --line: rgba(152, 199, 255, 0.15);
  --text: #eef5ff;
  --muted: #aabbd3;
  --accent: #6ae3ff;
  --accent-2: #8effb4;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(106, 227, 255, 0.16), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(142, 255, 180, 0.12), transparent 28%),
    linear-gradient(135deg, #050b16 0%, #08111f 40%, #0d1730 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 92%);
}

.page-shell {
  width: min(920px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
  place-items: center;
}

.simple-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: center;
  width: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.simple-content {
  min-width: 0;
}

.photo-frame {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(142, 255, 180, 0.22);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

h1 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.simple-role {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
}

.simple-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.simple-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 24px;
}

.simple-tags span,
.contact-list a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-list a span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(106, 227, 255, 0.14), rgba(142, 255, 180, 0.14));
  border: 1px solid rgba(106, 227, 255, 0.18);
  flex: 0 0 auto;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

.contact-list a:hover {
  transform: translateX(4px);
  border-color: rgba(106, 227, 255, 0.35);
  background: rgba(106, 227, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .simple-card {
    grid-template-columns: 1fr;
  }

  .simple-photo {
    max-width: 320px;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 920px);
    padding: 20px 0;
  }

  .simple-card {
    padding: 18px;
    border-radius: 22px;
    gap: 20px;
  }

  .simple-content {
    text-align: center;
  }

  .simple-tags {
    justify-content: center;
  }

  .contact-list {
    justify-items: stretch;
  }

  .contact-list a {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }
}
