*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100svh;
  font-family: "Syne", system-ui, sans-serif;
  color: #fff5fb;
  background: #000;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.cs-noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cs-glow {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(255,45,149,0.28), transparent 55%),
    radial-gradient(ellipse 45% 40% at 100% 80%, rgba(155,48,255,0.18), transparent 50%),
    radial-gradient(ellipse 40% 35% at 0% 60%, rgba(0,240,255,0.1), transparent 50%);
}
.cs-wrap {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1rem;
  padding: clamp(1.5rem, 5vw, 4rem);
  max-width: 48rem;
  margin: 0 auto;
}
.cs-kicker {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,236,248,0.62);
}
.cs-kicker span {
  width: 0.55rem; height: 0.55rem; border-radius: 50%;
  background: #ff2d95; box-shadow: 0 0 12px #ff2d95;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }
.cs-badge {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #00f0ff;
  border: 1px solid rgba(0,240,255,0.35);
  background: rgba(0,240,255,0.06);
  padding: 0.35rem 0.7rem; border-radius: 999px;
}
.cs-title {
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  line-height: 1.05; font-weight: 800;
  letter-spacing: -0.02em;
}
.cs-title em {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic; font-weight: 400;
  color: rgba(255,236,248,0.72);
  text-shadow: none;
  font-size: 0.48em;
  margin-top: 0.35rem;
  letter-spacing: 0.02em;
}
.cs-blurb {
  color: rgba(255,236,248,0.7);
  font-size: 1.05rem; line-height: 1.65;
  max-width: 36rem;
}
.cs-actions {
  display: flex; flex-wrap: wrap; gap: 0.65rem;
  margin-top: 0.75rem;
}
.cs-btn {
  display: inline-flex; align-items: center;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 1.15rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255,45,149,0.55);
  background: linear-gradient(135deg, rgba(255,45,149,0.28), rgba(155,48,255,0.2));
  box-shadow: 0 0 28px rgba(255,45,149,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255,45,149,0.4);
  border-color: rgba(255,45,149,0.85);
}
.cs-btn.ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.16);
  box-shadow: none;
  color: rgba(255,236,248,0.75);
}
.cs-btn.ghost:hover {
  border-color: rgba(0,240,255,0.45);
  color: #fff;
  box-shadow: 0 0 22px rgba(0,240,255,0.18);
}
.cs-foot {
  margin-top: 1.5rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,236,248,0.35);
}
