.intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: calc(4vh + 20px);
  padding-right: 48px;
  padding-bottom: 24px;
  padding-left: 160px;
}

.intro__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 760px;
  font-family: var(--font-heading);
  text-align: left;
}

.intro__line {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-muted);
  animation: line-reveal 0.8s var(--ease-out) 0.25s both;
}

.intro__name {
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 800;
  line-height: 1;
  margin-top: 4px;
  color: var(--color-accent);
  animation: name-ignite 1.1s var(--ease-out) 0.5s both;
}

.intro__subtitle {
  max-width: 610px;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  animation: line-reveal 0.8s var(--ease-out) 0.85s both;
}

.intro__time {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
  font-variant-numeric: tabular-nums;
}

@keyframes line-reveal {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes name-ignite {
  0% {
    opacity: 0;
    filter: blur(20px);
    text-shadow: 0 0 0 rgba(253, 233, 204, 0);
    transform: translateY(14px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
  100% {
    text-shadow: 0 0 46px rgba(253, 233, 204, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro__line,
  .intro__name,
  .intro__subtitle,
  .people__title,
  .people__subtitle {
    animation: none;
  }

  .intro__name {
    text-shadow: 0 0 46px rgba(253, 233, 204, 0.5);
  }
}

@media (max-width: 640px) {
  .intro {
    align-items: center;
    justify-content: center;
    padding: 72px 24px 40px;
  }

  .intro__heading {
    align-items: center;
    max-width: 100%;
    text-align: center;
  }

  .intro__subtitle {
    max-width: 100%;
    text-align: center;
  }
}

.people {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding: 24px 96px 32px 48px;
}

.people__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: color-mix(in srgb, var(--color-accent) 15%, var(--color-text));
  margin-bottom: 10px;
  animation: line-reveal 0.8s var(--ease-out) 1s both;
}

.people__subtitle {
  max-width: 560px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 16px;
  animation: line-reveal 0.8s var(--ease-out) 1.2s both;
}

.people__cta {
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(253, 233, 204, 0.4);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-shadow 0.3s ease;
}

.people__cta:hover {
  text-shadow: 0 0 20px rgba(253, 233, 204, 0.6);
}

.people__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  column-gap: 44px;
  row-gap: 24px;
}

/* The entrance reveal lives on this wrapper, not on the logo itself —
   an animation with fill-mode:both keeps "owning" the properties it
   touches even after it finishes, which sits above plain :hover rules
   in the cascade and silently blocks them. Splitting it across two
   elements keeps the reveal and the hover interaction independent. */
.people__logo-wrap {
  position: relative;
  display: inline-flex;
  animation: logo-reveal 0.6s var(--ease-out) both;
}

.people__logo-wrap:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 6px;
}

.people__logos .people__logo-wrap:nth-child(1) {
  animation-delay: 1.4s;
}

.people__logos .people__logo-wrap:nth-child(2) {
  animation-delay: 1.48s;
}

.people__logos .people__logo-wrap:nth-child(3) {
  animation-delay: 1.56s;
}

.people__logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: drop-shadow(0 0 5px rgba(253, 233, 204, 0.12));
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.35s var(--ease-spring);
}

.people__logo:hover {
  opacity: 1;
  filter: drop-shadow(0 0 14px rgba(253, 233, 204, 0.4));
  transform: translateY(-2px);
}

.people__tooltip {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 12px 18px;
  border-radius: 12px;
  background-color: rgba(10, 9, 7, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.85);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 0.25s ease, transform 0.25s var(--ease-out);
}

.people__tooltip::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: rgba(10, 9, 7, 0.92);
}

.people__tooltip-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-accent);
}

.people__tooltip-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.people__tooltip-stat i {
  color: var(--color-accent);
  font-size: 0.85rem;
}

.people__logo-wrap:hover .people__tooltip,
.people__logo-wrap:focus-visible .people__tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (prefers-reduced-motion: reduce) {
  .people__tooltip {
    transition: opacity 0.25s ease;
  }
}

@keyframes logo-reveal {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .people__logo-wrap {
    animation: none;
  }
}

@media (max-width: 640px) {
  .people {
    align-items: center;
    text-align: center;
    padding: 48px 24px 64px;
  }

  .people__subtitle {
    max-width: 100%;
  }

  .people__logos {
    justify-content: center;
  }
}
