.ta-05, .ta-05 *, .ta-05 *::before, .ta-05 *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
.ta-05 ::selection { background: #e2e8f0; color: #0f172a; }

.ta-05 {
  --bg: #0f0f0f;
  --gold: #c9a84c;
  min-height: 100%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -100px !important;
  transform: none !important;
  font-family: 'Playfair Display', Georgia, serif;
}

.ta-05__stage { text-align: left; }

.ta-05__line-wrap {
  overflow: hidden;
  line-height: 1.15;
}

.ta-05__line {
  font-size: clamp(1.8rem, 5.5vw, 3.2rem);
  font-weight: 700;
  color: #e2e8f0;
  display: block;
  transform: translateY(110%);
  animation: ta-05-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ta-05__line--1 { animation-delay: 0.55s; }
.ta-05__line--2 { animation-delay: 1.3s; font-style: italic; font-weight: 400; color: #94a3b8; }
.ta-05__line--3 { animation-delay: 1.55s; color: var(--gold); }

.ta-05__line-wrap--accent .ta-05__line {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.1em;
}

@keyframes ta-05-rise {
  to { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .ta-05__line { animation: none; transform: none; }
}

















.ta-16, .ta-16 *, .ta-16 *::before, .ta-16 *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
.ta-16 ::selection { background: #db2777; color: #fff; }

.ta-16 {
  --bg: #0a0015;
  --pink: #f472b6;
  --purple: #a855f7;
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-family: 'Syne', 'Helvetica Neue', sans-serif;
}

.ta-16__stage { text-align: center; }

.ta-16__label {
  font-size: 0.78rem;
  color: #6b21a8;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.ta-16__morph-wrap {
  position: relative;
  height: clamp(3.5rem, 9vw, 6rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ta-16__word {
  position: absolute;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 900;
  white-space: nowrap;
  transition: opacity 0.6s ease, filter 0.6s ease;
}

.ta-16__word--a {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ta-16__word--b {
  background: linear-gradient(90deg, var(--purple), #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  filter: blur(12px);
}

.ta-16__word.ta-16--out {
  opacity: 0;
  filter: blur(16px);
}

.ta-16__word.ta-16--in {
  opacity: 1;
  filter: blur(0);
}

.ta-16__sub {
  font-size: 0.65rem;
  color: #2d0a40;
  margin-top: 0.8rem;
  letter-spacing: 0.1em;
  font-family: 'Courier New', monospace;
}

@media (prefers-reduced-motion: reduce) {
  .ta-16__word { transition: none; filter: none; }
}