.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-size: 11px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.hero {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-line {
  font-size: clamp(3rem, 11vw, 7.5rem);
  line-height: 0.9;
  color: var(--paper);
  letter-spacing: -0.02em;
  text-shadow: 3px 0 0 rgba(95,176,196,0.3), -3px 0 0 rgba(201,143,74,0.28);
  text-align: center;
  z-index: 1;
}

.hero-line--top { margin-bottom: -0.14em; }
.hero-line--bottom { margin-top: -0.35em; }

.tv-stage {
  position: relative;
  z-index: 2;
  width: min(480px, 82vw);
  aspect-ratio: 729 / 700;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.6));
  opacity: 0;
  animation: power-on 1.2s ease-out 0.2s forwards;
}

@keyframes power-on {
  0% { opacity: 0; filter: brightness(0.3) contrast(1.5) drop-shadow(0 18px 30px rgba(0,0,0,0.6)); }
  55% { opacity: 1; filter: brightness(1.25) contrast(1.1) drop-shadow(0 18px 30px rgba(0,0,0,0.6)); }
  100% { opacity: 1; filter: brightness(1) contrast(1) drop-shadow(0 18px 30px rgba(0,0,0,0.6)); }
}

.tv-cutout {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.tv-stage { cursor: pointer; transition: transform 0.2s ease; display: block; }
.tv-stage:hover { transform: scale(1.015); }

.tv-hint {
  margin: 26px 0 0;
  font-size: 10px;
  color: var(--amber);
  text-align: center;
  opacity: 0.85;
}

.tagline {
  margin: 34px 0 0;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

.credits {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 40px;
  font-size: 9px;
  color: var(--text-muted);
  line-height: 1.8;
  text-transform: none;
  letter-spacing: 0.02em;
}

.back-link {
  color: var(--text-muted);
  text-decoration: none;
}

.back-link:hover {
  color: var(--amber);
}

.about-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 24px 70px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.about-kicker {
  color: var(--amber);
  font-size: 11px;
  margin: 0 0 18px;
}

.about-title {
  font-size: clamp(5rem, 16vw, 12rem);
  line-height: 0.82;
  color: var(--paper);
  letter-spacing: -0.04em;
  text-shadow: 3px 0 0 rgba(95,176,196,0.3), -3px 0 0 rgba(201,143,74,0.28);
  margin: 0 0 34px;
}

.about-copy p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 22px;
  max-width: 62ch;
}

.about-copy em {
  color: var(--paper);
}

.about-signoff {
  color: var(--amber) !important;
  font-size: 11px !important;
  margin-top: 34px !important;
}

.about-photo-wrap {
  margin: 0;
  position: relative;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.6));
}

.about-photo {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transform: rotate(1.2deg);
  filter: contrast(1.06) saturate(0.92);
}

.about-photo-wrap figcaption {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 10px;
  text-align: right;
}

@media (max-width: 850px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .about-photo {
    transform: rotate(0deg);
  }

  .about-photo-wrap figcaption {
    text-align: left;
  }
}