/* ========================= NEWSLETTER — REUSES CONTACT HEADER ========================= */
.ct-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 9, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 2.25rem;
}

.ct-header__logo img {
  width: 10rem;
  height: auto;
}

/* ========================= NEWSLETTER — LAYOUT ========================= */
.nl-main {
  max-width: 44rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
}

/* ========================= NEWSLETTER — CARD ========================= */
.nl-card {
  border-radius: 0.75rem;
  border: 1px solid #1b1c1d;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, #111213 0%, #0a0b0c 100%);
  padding: 2.5rem 2.5rem 2rem;
}

.nl-card__step {
  display: none;
}

.nl-card__step.is-active {
  display: block;
  animation: nl-step-in 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nl-card__step--success.is-active {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 20rem;
}

@keyframes nl-step-in {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}

.nl-card__title {
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.04rem;
  color: var(--fg);
}

.nl-card__desc {
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--gray);
  margin-top: 0.75rem;
  max-width: 36rem;
}

/* ========================= FIELDS ========================= */
.nl-card__fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.nl-card__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.nl-card__row {
  display: flex;
  gap: 1rem;
}

.nl-card__label {
  font-family: 'Test Sohne', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--fg);
}

.nl-card__required {
  color: var(--accent);
}

/* Radios */
.nl-card__radios {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nl-card__radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Test Sohne', sans-serif;
  font-size: 0.9375rem;
  color: var(--fg);
  cursor: pointer;
}

.nl-card__radio input[type="radio"] {
  accent-color: var(--accent);
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

/* Inputs & Selects */
.nl-card__input,
.nl-card__select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #1b1c1d;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg);
  font-family: 'Test Sohne', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: border-color 220ms ease, box-shadow 220ms ease;
  outline: none;
}

.nl-card__input::placeholder {
  color: #434345;
}

.nl-card__input:focus,
.nl-card__select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(216, 252, 20, 0.1);
}

.nl-card__input.is-invalid,
.nl-card__select.is-invalid {
  border-color: #f8280d;
  box-shadow: 0 0 0 3px rgba(248, 40, 13, 0.08);
}

/* Select */
.nl-card__select-wrap {
  position: relative;
}

.nl-card__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 3rem;
}

.nl-card__select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--gray);
  pointer-events: none;
}

.nl-card__select option {
  background: #0e0f10;
  color: var(--fg);
}

/* Consent */
.nl-card__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.nl-card__checkbox {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.nl-card__consent-label {
  font-family: 'Test Sohne', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray);
}

.nl-card__consent-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15rem;
  transition: opacity 220ms ease;
}

.nl-card__consent-link:hover {
  opacity: 0.7;
}

/* ========================= ACTIONS ========================= */
.nl-card__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1b1c1d;
}

.nl-card__status {
  flex: 1;
  margin: 0;
  font-family: 'Test Sohne', sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--gray);
}

.nl-card__status[data-tone="error"] {
  color: #ff7c6c;
}

.nl-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  padding: 0 1.75rem;
  border-radius: 100px;
  background: var(--accent);
  color: #08090a;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.02rem;
  line-height: 1.02;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.nl-card__btn:hover {
  background: #e5ff4d;
  transform: translateY(-1px);
  box-shadow: 0 0.75rem 1.75rem rgba(216, 252, 20, 0.18);
}

.nl-card__btn:disabled {
  cursor: wait;
  opacity: 0.8;
  transform: none;
  box-shadow: none;
}

/* Success icon */
.nl-card__success-icon {
  margin-bottom: 1.5rem;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 767px) {
  .ct-header { padding: 1rem 1.25rem; }
  .ct-header__logo img { width: 8rem; }

  .nl-main { padding: 2rem 1.25rem 4rem; }

  .nl-card {
    padding: 2rem 1.5rem 1.5rem;
  }

  .nl-card__title { font-size: 1.625rem; }
  .nl-card__row { flex-direction: column; gap: 1.5rem; }
  .nl-card__input, .nl-card__select { padding: 0.8125rem 0.875rem; }
  .nl-card__actions { flex-direction: column; align-items: stretch; }
  .nl-card__status { text-align: center; }
  .nl-card__btn { width: 100%; }
  .nl-card__radios { flex-wrap: wrap; gap: 1rem; }
}
