.sc-profile-intro {
  --intro-pink: #ef6680;
  --intro-ink: #fff7f9;
  --intro-muted: rgba(255, 247, 249, .82);
  position: relative;
  min-height: clamp(680px, 44vw, 880px);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(64px, 8vw, 132px) clamp(24px, 7vw, 116px);
  color: var(--intro-ink);
  background-color: #171214;
  border-bottom: 10px solid #fff;
  scroll-margin-top: 72px;
}

.sc-profile-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.sc-profile-intro::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 10, 12, .9) 0%, rgba(15, 10, 12, .76) 36%, rgba(15, 10, 12, .38) 62%, rgba(15, 10, 12, .12) 100%),
    linear-gradient(0deg, rgba(15, 10, 12, .5) 0%, transparent 52%, rgba(15, 10, 12, .22) 100%);
}

.sc-profile-intro::after {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 34%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--intro-pink), transparent);
}

.sc-profile-orb { display: none; }

.sc-profile-hero {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  max-width: 1540px;
  min-height: calc(clamp(680px, 44vw, 880px) - clamp(128px, 16vw, 264px));
  margin: 0 auto;
  align-items: center;
  grid-template-columns: minmax(0, 760px);
}

.sc-profile-copy {
  max-width: 760px;
  padding-top: clamp(70px, 8vh, 110px);
}

.sc-profile-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--intro-pink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .24em;
}

.sc-profile-kicker::before {
  width: 46px;
  height: 1px;
  content: "";
  background: var(--intro-pink);
}

.sc-profile-copy h1 {
  margin: 0 0 30px -.08em;
  color: var(--intro-ink);
  font-family: "Songti SC", STSong, "Noto Serif CJK SC", serif;
  font-size: clamp(4.8rem, 9.8vw, 10rem);
  font-weight: 800;
  line-height: .86;
  letter-spacing: -.13em;
  text-shadow: 0 10px 34px rgba(0, 0, 0, .34);
}

.sc-profile-copy h1 span { color: var(--intro-pink); }

.sc-profile-role {
  margin: 0 0 18px;
  color: #fff7f9;
  font-size: clamp(.92rem, 1.25vw, 1.16rem);
  font-weight: 750;
  letter-spacing: .11em;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .38);
}

.sc-profile-lead {
  max-width: 650px;
  margin: 0;
  color: var(--intro-muted);
  font-size: clamp(.9rem, 1vw, 1.02rem);
  line-height: 1.9;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .4);
}

.sc-profile-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.sc-profile-actions a {
  display: inline-flex;
  width: min(248px, calc(50vw - 34px));
  min-height: 94px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 1.62rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.sc-profile-actions a:hover { transform: translateY(-2px); }
.sc-profile-action-primary { color: #fff; background: var(--intro-pink); }
.sc-profile-action-primary:hover { color: #fff; background: #ff7b94; }

.sc-profile-action-chevron {
  width: 16px;
  height: 16px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translateY(-4px) rotate(45deg);
}

.sc-profile-action-secondary {
  color: #fff7f9;
  background: rgba(22, 15, 18, .24);
  border: 2px solid rgba(255, 255, 255, .34);
  backdrop-filter: blur(8px);
}

.sc-profile-action-secondary:hover {
  color: #fff;
  border-color: var(--intro-pink);
}

body.dark-mode .sc-profile-intro {
  --intro-muted: #d4c7cc;
  background-color: #171416;
  border-bottom-color: #090708;
}

body.dark-mode .sc-profile-intro::before {
  background:
    linear-gradient(90deg, rgba(12, 9, 10, .94) 0%, rgba(12, 9, 10, .82) 36%, rgba(12, 9, 10, .46) 62%, rgba(12, 9, 10, .18) 100%),
    linear-gradient(0deg, rgba(12, 9, 10, .58) 0%, transparent 50%, rgba(12, 9, 10, .28) 100%);
}

@media (max-width: 780px) {
  .sc-profile-intro {
    min-height: 700px;
    padding: 48px 20px 66px;
    scroll-margin-top: 56px;
  }

  .sc-profile-video { object-position: center top; }

  .sc-profile-intro::before {
    background:
      linear-gradient(90deg, rgba(15, 10, 12, .76), rgba(15, 10, 12, .48)),
      linear-gradient(0deg, rgba(15, 10, 12, .78), rgba(15, 10, 12, .2));
  }

  body.dark-mode .sc-profile-intro::before {
    background:
      linear-gradient(90deg, rgba(12, 9, 10, .86), rgba(12, 9, 10, .58)),
      linear-gradient(0deg, rgba(12, 9, 10, .88), rgba(12, 9, 10, .26));
  }

  .sc-profile-hero {
    min-height: 586px;
    align-items: end;
    grid-template-columns: 1fr;
  }

  .sc-profile-copy { padding-top: 0; }
  .sc-profile-copy h1 { margin-bottom: 24px; font-size: clamp(3.5rem, 17vw, 5rem); }
  .sc-profile-kicker { margin-bottom: 16px; font-size: .64rem; }
  .sc-profile-role { font-size: .84rem; }
  .sc-profile-lead { font-size: .86rem; line-height: 1.75; }
  .sc-profile-actions { gap: 14px; margin-top: 28px; }
  .sc-profile-actions a {
    min-height: 62px;
    gap: 18px;
    padding: 0 20px;
    font-size: 1.05rem;
  }
  .sc-profile-action-chevron {
    width: 11px;
    height: 11px;
    border-width: 0 2px 2px 0;
    transform: translateY(-3px) rotate(45deg);
  }
}

@media (max-width: 420px) {
  .sc-profile-actions { align-items: stretch; flex-direction: column; }
  .sc-profile-actions a { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .sc-profile-actions a { transition: none; }
}
