/* =========================================================================
   Wonderdoodle: socials holding page.
   The channels don't exist yet, so the page names them, marks them as not
   ready, and offers the newsletter as the thing a visitor can actually do.
   ========================================================================= */

.soon { max-width: 720px; }

.soon__title {
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.soon__list {
  list-style: none;
  margin: 0 0 56px;
  padding: 0;
  border-top: 1px solid var(--line);
}

.soon__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
}

.soon__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  background: var(--green-soft);
  color: var(--green);
}

.soon__name {
  font-weight: 600;
  font-size: 1.02rem;
  flex: 1;
}

/* Same butter yellow as the promo code chip and the closing CTA button. */
.soon__badge {
  flex: none;
  background: var(--butter);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
}

/* Newsletter ------------------------------------------------------------ */
.news {
  background: var(--cream-2);
  border: 1px solid var(--line);
  padding: 34px 32px;
}

.news__title { font-size: 1.5rem; margin-bottom: 0.35em; }
.news__p { margin: 0 0 22px; max-width: 52ch; color: var(--ink-soft); }

.news__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.news__input {
  flex: 1 1 260px;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 13px 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.news__input::placeholder { color: var(--muted); }
.news__input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(54, 117, 136, 0.16);
}
.news__input.has-error { border-color: #a33a2a; }
.news__form .btn { flex: none; }

.news__status {
  margin: 16px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-dark);
}
.news__status:empty { display: none; }
.news__status.is-error { color: #a33a2a; }

.news__privacy {
  margin: 12px 0 0;
  font-size: 0.84rem;
  color: var(--muted);
  max-width: 52ch;
}

@media (max-width: 560px) {
  .news { padding: 26px 20px; }
  .news__form .btn { width: 100%; justify-content: center; }
}

/* Unlocked code ---------------------------------------------------------- */
.news__unlock {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.news__unlock-label {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.news__unlock-code {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 12px;
}

/* Same butter chip as the promo bar, sized up now that it is the point of the
   section rather than a detail in a one-line bar. */
.news__code {
  margin-left: 0;
  font-size: 1.15rem;
  padding: 9px 16px;
  letter-spacing: 0.08em;
}

.news__copy {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-dark);
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 2px 0;
  cursor: pointer;
}
.news__copy:hover { border-color: var(--green); }

.news__unlock-note { margin: 0; font-size: 0.9rem; color: var(--ink-soft); max-width: 52ch; }
