/* Coming-soon page — minimal centered stage */
.cs {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.cs::before {
  /* soft ambient glow */
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, var(--blush-soft) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.cs::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -15%;
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, var(--ivory) 0%, transparent 70%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.cs__head, .cs__main, .cs__foot {
  position: relative;
  z-index: 1;
}

.cs__head {
  padding: 28px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cs__main {
  display: grid;
  place-items: center;
  padding: var(--s4) var(--gutter);
}

.cs__inner {
  max-width: 640px;
  text-align: center;
}

.cs__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s2);
}

.cs__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 var(--s2);
  color: var(--espresso);
}
.cs__title em {
  font-style: italic;
  color: var(--gold);
}

.cs__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.075rem);
  color: var(--stone);
  line-height: 1.7;
  max-width: 44ch;
  margin: 0 auto var(--s4);
}

/* Countdown */
.count {
  display: flex;
  justify-content: center;
  gap: var(--s2);
  margin: var(--s3) 0 var(--s4);
  flex-wrap: wrap;
}
.count__cell {
  min-width: 72px;
}
.count__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1;
  color: var(--espresso);
  font-variant-numeric: tabular-nums;
}
.count__lbl {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 8px;
}

/* Form on dark hero-ish surface but here it's light */
.cs .field { margin: 0 auto; }
.cs__note {
  font-size: 0.75rem;
  color: var(--stone-soft);
  margin-top: var(--s1);
  letter-spacing: 0.02em;
}

.cs__foot {
  padding: 24px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.05em;
}
.cs__foot a { color: var(--stone); }

/* Feedback state after signup */
.cs__thanks {
  display: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold);
  margin-top: var(--s2);
}
.cs.is-submitted .field { display: none; }
.cs.is-submitted .cs__thanks { display: block; }
