:root {
  --bg: #10131a;
  --panel: #171c24;
  --panel-2: #1d2430;
  --panel-3: #202936;
  --border: #334052;
  --text: #edf1f7;
  --muted: #aeb9c8;
  --accent: #7ab87a;
  --accent-strong: #9fd08e;
  --gold: #d8b767;
  --custom: #9ca7ff;
  --custom-strong: #c3c8ff;

  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 22%, rgba(122, 184, 122, 0.06), transparent 40%),
    radial-gradient(circle at 75% 88%, rgba(156, 167, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(122, 184, 122, 0.08), transparent 35%),
    var(--bg);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.sky {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(122, 184, 122, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(16, 19, 26, 0.25), rgba(16, 19, 26, 0.72) 45%, rgba(16, 19, 26, 0.96) 75%);
  filter: blur(2px);
}

.teaser-shell {
  position: relative;
  z-index: 1;
  width: min(92vw, 760px);
  min-height: 52vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.teaser-card {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(23, 28, 36, 0.92), rgba(29, 36, 48, 0.82));
  box-shadow:
    0 30px 90px rgba(4, 6, 10, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: clamp(1.25rem, 5vw, 3rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
}

#teaser-copy {
  margin: 0;
  font-size: clamp(1.7rem, 6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-shadow: 0 0 36px rgba(122, 184, 122, 0.18);
}

.muted-copy {
  margin: 0.9rem 0 0;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.copyright {
  margin: 1.25rem 0 0;
  color: #8ea2be;
  font-size: 0.8rem;
}

.constellation {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  background:
    repeating-linear-gradient(
      120deg,
      rgba(212, 222, 255, 0.15) 0,
      rgba(212, 222, 255, 0.15) 1px,
      transparent 1px,
      transparent 16px
    ),
    repeating-linear-gradient(
      60deg,
      rgba(122, 184, 122, 0.12) 0,
      rgba(122, 184, 122, 0.12) 1px,
      transparent 1px,
      transparent 24px
    );
}

.constellation span {
  position: absolute;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(122, 184, 122, 0.55));
  animation: pulse 12s linear infinite;
}

.constellation span:nth-child(1) {
  top: 28%;
  left: 24%;
  width: 60px;
  animation-delay: 0s;
}

.constellation span:nth-child(2) {
  top: 56%;
  left: 43%;
  width: 45px;
  animation-delay: 2.6s;
}

.constellation span:nth-child(3) {
  top: 42%;
  left: 68%;
  width: 52px;
  animation-delay: 5.3s;
}

.constellation span:nth-child(4) {
  top: 74%;
  left: 36%;
  width: 40px;
  animation-delay: 8.1s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.12;
    transform: translateX(0);
  }

  50% {
    opacity: 0.66;
    transform: translateX(22px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .constellation span {
    animation: none;
    opacity: 0.22;
    transform: none;
  }
}

@media (max-width: 600px) {
  .teaser-shell {
    min-height: 64vh;
  }

  .teaser-card {
    padding: 1.4rem 0.95rem 1.2rem;
  }
}
