:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #d6d2dc;
  --pink: #ff3acb;
  --pink-dim: rgba(255, 58, 203, 0.72);
  --cyan: #21c7ff;
  --cyan-dim: rgba(33, 199, 255, 0.72);
  --blue: #297cff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
}

button,
input {
  font: inherit;
}

.poster-wrap {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: clamp(90px, 17vh, 260px) 16px 110px;
  background:
    radial-gradient(circle at 50% 35%, rgba(33, 199, 255, 0.08), transparent 32%),
    radial-gradient(circle at 34% 42%, rgba(255, 58, 203, 0.08), transparent 30%),
    #000;
}

.poster {
  width: min(100%, 690px);
  background: #000;
}

.poster-header {
  text-align: center;
}

.brand-logo {
  display: block;
  width: min(76vw, 540px);
  height: auto;
  margin: 0 auto -10px;
}

.star-divider {
  width: min(84%, 560px);
  margin: 0 auto 8px;
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  align-items: center;
  gap: 12px;
}

.star-divider span,
.thin-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--cyan), transparent);
  box-shadow: 0 0 10px rgba(33, 199, 255, 0.5);
}

.star-divider svg {
  width: 31px;
  height: 31px;
  color: var(--pink);
  fill: rgba(255, 58, 203, 0.18);
  filter: drop-shadow(0 0 7px rgba(255, 58, 203, 0.8));
}

.activity-title {
  margin: 0 0 16px;
  color: #f8f8fb;
  font-size: clamp(1.55rem, 4.7vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.72rem, 8.4vw, 4.7rem);
  font-weight: 1000;
  letter-spacing: 0.07em;
  line-height: 0.95;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--pink) 0%, #ff8bdf 34%, #bfb8ff 52%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 0 10px rgba(255, 58, 203, 0.75))
    drop-shadow(0 0 13px rgba(33, 199, 255, 0.55));
}

.tagline {
  margin: 10px 0 10px;
  color: #e6e3ea;
  font-size: clamp(0.83rem, 2vw, 1.03rem);
}

.thin-divider {
  width: min(68%, 450px);
  margin: 0 auto 18px;
}

.waitlist {
  width: 100%;
  margin: 0 auto;
}

.form-header {
  margin-bottom: 6px;
}

.form-kicker,
.choice-group legend {
  margin: 0;
  color: var(--pink);
  font-size: clamp(1rem, 2.3vw, 1.25rem);
  font-weight: 1000;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255, 58, 203, 0.65);
}

.field-grid {
  display: grid;
  gap: 8px;
}

.field {
  display: grid;
  gap: 3px;
}

.field span {
  color: #eeeaf1;
  font-size: 0.92rem;
  font-weight: 700;
}

.field input {
  width: 100%;
  min-height: 40px;
  border: 2px solid var(--pink-dim);
  border-radius: 7px;
  padding: 7px 10px;
  color: var(--text);
  background: #020103;
  outline: none;
  box-shadow: 0 0 8px rgba(255, 58, 203, 0.22), inset 0 0 9px rgba(255, 58, 203, 0.08);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(33, 199, 255, 0.4), inset 0 0 9px rgba(33, 199, 255, 0.12);
}

.choice-group {
  margin: 22px 0 0;
  padding: 0;
  border: 0;
}

.hint {
  display: none;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 10px;
  margin-top: 11px;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 60px;
  border: 2px solid var(--blue);
  border-radius: 7px;
  padding: 14px 52px;
  box-shadow: 0 0 10px rgba(33, 199, 255, 0.2), inset 0 0 10px rgba(33, 199, 255, 0.06);
}

.time-legend {
  width: 100%;
  margin: 14px 0 -2px;
  color: #dedbe5;
  font-size: clamp(0.98rem, 2.3vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  text-shadow: none;
}

.pill-grid label,
.segmented label,
.time-grid label {
  min-width: 0;
}

.pill-grid input,
.segmented input,
.time-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.pill-grid span,
.segmented span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 65px;
  border-radius: 7px;
  padding: 8px 6px;
  color: #ece8f0;
  background: #020103;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  cursor: pointer;
}

.pill-grid span {
  grid-template-columns: 46px 1fr;
  gap: 4px;
  place-items: center;
  font-size: 0.95rem;
}

.pill-grid b {
  font-weight: 800;
}

.pill-grid svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.pill-grid label:nth-child(1) span,
.pill-grid label:nth-child(2) span,
.pill-grid label:nth-child(5) span,
.pill-grid label:nth-child(6) span,
.pill-grid label:nth-child(7) span,
.segmented label:nth-child(1) span,
.segmented label:nth-child(3) span,
.segmented label:nth-child(4) span,
.segmented label:nth-child(6) span {
  border: 2px solid var(--pink-dim);
  box-shadow: 0 0 8px rgba(255, 58, 203, 0.18), inset 0 0 8px rgba(255, 58, 203, 0.08);
}

.pill-grid label:nth-child(3) span,
.pill-grid label:nth-child(4) span,
.segmented label:nth-child(2) span,
.segmented label:nth-child(5) span {
  border: 2px solid var(--cyan-dim);
  box-shadow: 0 0 8px rgba(33, 199, 255, 0.18), inset 0 0 8px rgba(33, 199, 255, 0.08);
}

.pill-grid label:nth-child(1) svg,
.pill-grid label:nth-child(2) svg,
.pill-grid label:nth-child(5) svg,
.pill-grid label:nth-child(6) svg,
.pill-grid label:nth-child(7) svg {
  color: var(--pink);
  filter: drop-shadow(0 0 5px rgba(255, 58, 203, 0.65));
}

.pill-grid label:nth-child(3) svg,
.pill-grid label:nth-child(4) svg {
  color: var(--cyan);
  filter: drop-shadow(0 0 5px rgba(33, 199, 255, 0.65));
}

.segmented span {
  min-height: 48px;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-note {
  margin: 8px 0 0;
  color: #efebf2;
  font-size: 0.78rem;
  text-align: center;
}

.time-grid span {
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #dedbe5;
  font-size: 1.02rem;
  font-weight: 500;
  cursor: pointer;
}

.time-grid span::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #e1deea;
  border-radius: 50%;
  flex: 0 0 auto;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.14);
}

.pill-grid input:checked + span,
.segmented input:checked + span {
  color: #ffffff;
  border-color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 58, 203, 0.34), rgba(33, 199, 255, 0.22)),
    #120517;
  box-shadow:
    0 0 14px rgba(255, 58, 203, 0.48),
    0 0 12px rgba(33, 199, 255, 0.32),
    inset 0 0 18px rgba(255, 255, 255, 0.12);
}

.pill-grid input:checked + span::after,
.segmented input:checked + span::after {
  content: "✓";
  position: absolute;
  top: 5px;
  right: 7px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #050006;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 1000;
  line-height: 1;
  box-shadow: 0 0 9px rgba(255, 255, 255, 0.72);
}

.time-grid input:checked + span::before {
  border-color: var(--cyan);
  background: radial-gradient(circle, var(--cyan) 0 42%, transparent 48%);
  box-shadow: 0 0 9px var(--cyan);
}

.time-grid input:checked + span {
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 0 7px rgba(33, 199, 255, 0.7);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px auto 0;
  width: min(100%, 560px);
  color: #e1dde6;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.consent input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--pink);
  filter: drop-shadow(0 0 5px rgba(255, 58, 203, 0.65));
}

.consent span {
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.18);
}

.submit-button {
  position: relative;
  width: calc(100% - 72px);
  min-height: 70px;
  display: block;
  margin: 22px auto 0;
  border: 4px solid transparent;
  border-radius: 12px;
  color: var(--text);
  background:
    linear-gradient(#17071b, #06060a) padding-box,
    linear-gradient(90deg, var(--pink), var(--cyan)) border-box;
  font-size: clamp(1.25rem, 4.2vw, 2rem);
  font-weight: 1000;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 0 18px rgba(255, 58, 203, 0.82),
    0 0 22px rgba(33, 199, 255, 0.68),
    inset 0 0 18px rgba(255, 58, 203, 0.28);
  transition: transform 150ms ease, filter 150ms ease;
}

.submit-button::before,
.submit-button::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 34px;
  transform: translateY(-50%);
  background:
    linear-gradient(var(--pink), var(--pink)) center 2px / 20px 3px no-repeat,
    linear-gradient(var(--pink), var(--pink)) left 50% / 34px 3px no-repeat,
    linear-gradient(var(--pink), var(--pink)) center calc(100% - 2px) / 20px 3px no-repeat;
  filter: drop-shadow(0 0 7px rgba(255, 58, 203, 0.85));
}

.submit-button::before {
  left: -62px;
}

.submit-button::after {
  right: -62px;
  background:
    linear-gradient(var(--cyan), var(--cyan)) center 2px / 20px 3px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) right 50% / 34px 3px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) center calc(100% - 2px) / 20px 3px no-repeat;
  filter: drop-shadow(0 0 7px rgba(33, 199, 255, 0.85));
}

.submit-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.15);
}

.submit-button:disabled {
  cursor: wait;
  filter: grayscale(0.35);
  transform: none;
}

.submit-status {
  display: none;
  margin: 14px auto 0;
  width: min(100%, 520px);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.submit-status.is-visible {
  display: block;
}

.submit-status.is-success {
  color: #c9fbff;
  border: 1px solid rgba(33, 199, 255, 0.6);
  background: rgba(33, 199, 255, 0.14);
  box-shadow: 0 0 14px rgba(33, 199, 255, 0.22);
}

.submit-status.is-error {
  color: #ffd4f3;
  border: 1px solid rgba(255, 58, 203, 0.62);
  background: rgba(255, 58, 203, 0.14);
  box-shadow: 0 0 14px rgba(255, 58, 203, 0.22);
}

.privacy-note {
  margin: 15px 0 0;
  color: #e1dde6;
  font-size: clamp(0.9rem, 2vw, 1.06rem);
  text-align: center;
}

.privacy-note svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  color: var(--pink);
  vertical-align: middle;
  filter: drop-shadow(0 0 7px rgba(255, 58, 203, 0.75));
}

.alert {
  display: none;
  margin-bottom: 10px;
  border-radius: 6px;
  padding: 9px 10px;
  font-size: 0.86rem;
  line-height: 1.3;
}

.alert.is-visible {
  display: block;
}

.alert.is-success {
  color: #baf8ff;
  border: 1px solid rgba(33, 199, 255, 0.54);
  background: rgba(33, 199, 255, 0.11);
}

.alert.is-error {
  color: #ffd1f2;
  border: 1px solid rgba(255, 58, 203, 0.58);
  background: rgba(255, 58, 203, 0.12);
}

.builder-credit {
  position: fixed;
  right: 14px;
  bottom: 12px;
  z-index: 5;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.85);
  transition: color 150ms ease, text-shadow 150ms ease;
}

.builder-credit:hover,
.builder-credit:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 58, 203, 0.7), 0 0 10px rgba(33, 199, 255, 0.55);
}

@media (max-width: 720px) {
  .poster-wrap {
    padding: clamp(24px, 7vh, 72px) 20px 70px;
  }

  .poster {
    width: min(100%, 560px);
  }

  .brand-logo {
    width: min(90vw, 430px);
  }

  .pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .time-grid {
    gap: 4px 24px;
    padding-inline: 22px;
  }

  .submit-button {
    width: calc(100% - 48px);
  }

  .submit-button::before {
    left: -48px;
  }

  .submit-button::after {
    right: -48px;
  }

  .builder-credit {
    position: static;
    display: block;
    margin: -46px auto 22px;
    width: fit-content;
  }
}

@media (max-width: 460px) {
  .poster-wrap {
    padding: 22px 13px 60px;
  }

  .activity-title {
    letter-spacing: 0.1em;
  }

  h1 {
    font-size: clamp(2.05rem, 10.8vw, 2.8rem);
    letter-spacing: 0.04em;
  }

  .pill-grid span {
    grid-template-columns: 38px 1fr;
    font-size: 0.82rem;
  }

  .pill-grid svg {
    width: 29px;
    height: 29px;
  }

  .segmented {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .segmented span {
    font-size: 0.82rem;
  }

  .time-grid {
    grid-template-columns: 1fr;
  }

  .submit-button {
    min-height: 60px;
    letter-spacing: 0.16em;
  }
}
