/* ============ ABOUT STRIP ============ */
.about-strip {
  position: relative;
  padding: 64px 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 184, 0, 0.03) 50%, transparent 100%);
  border-top: 1px solid rgba(255, 184, 0, 0.1);
  border-bottom: 1px solid rgba(255, 184, 0, 0.1);
  z-index: 2;
}
.about-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.about-name {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.about-name em {
  font-style: italic;
  color: var(--gold);
}
.about-body {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(244, 239, 232, 0.78);
  max-width: 520px;
  margin-bottom: 32px;
}
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.credentials span {
  padding: 6px 10px;
  border: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.03);
}
/* Portrait card */
.portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.portrait-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255, 184, 0, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #0a0818 0%, #15091c 100%);
  overflow: hidden;
  border: 3px solid rgba(255, 184, 0, 0.55);
}
.portrait-photo {
  position: absolute;
  inset: 0;
  background-image: var(--portrait-url);
  background-size: cover;
  background-position: center 25%;
  z-index: 1;
}
.portrait-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,5,14,0) 50%, rgba(3,5,14,0.55) 100%),
    radial-gradient(ellipse at 50% 40%, transparent 50%, rgba(3,5,14,0.35) 100%);
  mix-blend-mode: multiply;
}
.portrait-frame::before {
  content: none;
}
.portrait-silhouette {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.portrait-corner-tl, .portrait-corner-br {
  position: absolute;
  width: 32px; height: 32px;
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
  z-index: 3;
}
.portrait-corner-tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.portrait-corner-br { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.portrait-caption {
  position: absolute;
  bottom: 20px; left: 24px; right: 24px;
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 3;
}
.portrait-stamp {
  position: absolute;
  top: 20px; right: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(3, 5, 14, 0.85);
  padding: 6px 8px;
  border: 1px solid var(--gold);
  z-index: 3;
}

