/*
  Quash site layer. Spore door base lives in door.css (sync only).
  New classes only. Do not restyle door public classes.
*/

.love a { color: var(--pine); }

.hero-soon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 2rem 0 0;
  padding: 0.55rem 1rem 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.95), rgba(243, 239, 231, 0.85));
  box-shadow:
    0 0 0 1px rgba(138, 115, 73, 0.18),
    0 12px 40px rgba(20, 53, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: soon-glow 4s ease-in-out infinite;
}

.hero-soon-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(138, 115, 73, 0.7);
  animation: soon-pulse 2.4s ease-in-out infinite;
}

.pair {
  width: min(720px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1rem 0 3rem;
  text-align: center;
}

.pair-label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.pair-title {
  margin: 1rem 0 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.pair-lead {
  display: grid;
  gap: 0.35rem;
  margin: 1.15rem auto 0;
  max-width: 22rem;
  color: var(--muted);
  text-wrap: balance;
}

.pair-line { display: block; }

.duo {
  display: grid;
  gap: 0;
  margin-top: 2.75rem;
  text-align: left;
}

@media (min-width: 640px) {
  .duo {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    overflow: hidden;
  }
}

.duo-item {
  position: relative;
  display: grid;
  gap: 0.25rem;
  padding: 1.5rem 1.35rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.35);
  border-top: 1px solid var(--line);
  transition: background 0.35s ease;
}

.duo-item.is-soon { padding-top: 2.85rem; }

.duo-item:last-child { border-bottom: 1px solid var(--line); }

@media (min-width: 640px) {
  .duo-item {
    border-top: 0;
    border-bottom: 0;
  }

  .duo-item.is-soon { padding-top: 1.5rem; }
}

.duo-item:hover,
.duo-item:focus-visible { background: rgba(255, 255, 255, 0.62); }

.duo-item.is-here {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(196, 163, 106, 0.1), transparent 55%),
    rgba(255, 255, 255, 0.52);
}

.duo-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.duo-role {
  font-family: var(--serif);
  color: var(--pine);
}

.duo-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.soon-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  left: 1rem;
  width: fit-content;
  margin-inline: auto 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 0 0 1px rgba(138, 115, 73, 0.22),
    0 0 24px rgba(20, 53, 44, 0.08);
  animation: soon-glow 4s ease-in-out infinite;
}

.soon-tag::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(138, 115, 73, 0.65);
  animation: soon-pulse 2.4s ease-in-out infinite;
}

.subfold-title {
  margin: 3.5rem 0 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 16ch;
}

@keyframes soon-glow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(138, 115, 73, 0.18),
      0 12px 40px rgba(20, 53, 44, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(138, 115, 73, 0.32),
      0 16px 48px rgba(20, 53, 44, 0.12),
      0 0 28px rgba(196, 163, 106, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }
}

@keyframes soon-pulse {
  0%, 100% { opacity: 0.55; scale: 0.92; }
  50% { opacity: 1; scale: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-soon,
  .hero-soon-dot,
  .soon-tag,
  .soon-tag::before { animation: none; }
}
