:root {
  color-scheme: light;
  --bg: #f2fffe;
  --bg-deep: #e4fbf7;
  --ink: #0e1b1a;
  --muted: #4d6b69;
  --teal-1: #0f766e;
  --teal-2: #14b8a6;
  --teal-3: #5eead4;
  --card: rgba(255, 255, 255, 0.75);
  --stroke: rgba(15, 118, 110, 0.15);
  --shadow: 0 30px 80px rgba(15, 118, 110, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", "Helvetica Neue", sans-serif;
  background: radial-gradient(circle at top left, var(--bg-deep), transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(20, 184, 166, 0.15), transparent 45%),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(94, 234, 212, 0.08), transparent 55%);
  pointer-events: none;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 3rem;
  align-items: center;
  animation: rise 800ms ease-out;
}

.hero__copy h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero__name {
  color: var(--teal-1);
  font-weight: 600;
}

.eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-1);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.lede {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 36rem;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__tags span {
  border: 1px solid var(--stroke);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--teal-1);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.hero__portrait {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.portrait__frame {
  position: relative;
  border-radius: 24px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(20, 184, 166, 0.2), rgba(94, 234, 212, 0.15));
  box-shadow: var(--shadow);
}

.portrait__frame img {
  display: block;
  width: min(320px, 78vw);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 1.75rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(15, 118, 110, 0.08);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.card h3 {
  font-size: 1.15rem;
  color: var(--teal-1);
  font-weight: 600;
}

.card p {
  color: var(--muted);
  font-weight: 300;
}

.card a {
  color: var(--teal-1);
  text-decoration: none;
  font-weight: 500;
}

.card a:hover {
  color: var(--teal-2);
  text-decoration: underline;
}

.muted {
  color: var(--muted);
}

.footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}

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

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__portrait {
    align-items: center;
  }
}

@media (max-width: 600px) {
  .page {
    padding-top: 3.5rem;
  }

  .hero__copy h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero__tags {
    gap: 0.5rem;
  }

  .hero__tags span {
    width: fit-content;
  }
}
