/* ─── LAYOUT REDISTRIBUTION OVERRIDES ─── */

/* Shell: wider max-width, more breathing room */
.shell {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header: tighter, cleaner */
.header {
  padding: 1.5rem 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Main wrapper: controlled vertical rhythm */
.coming-wrap {
  padding: 2.5rem 0 4rem;
}

/* Card: wider, less cramped horizontally */
.card.coming-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 3.5rem;
}

/* Eyebrow badge at top */
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
}

/* Subtitle hierarchy: clear size steps */
.coming-subtitle {
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

/* Primary subtitle — larger, more prominent */
.coming-subtitle:not(.secondary):not(.micro) {
  font-size: 1.2rem;
  font-weight: 500;
  max-width: 680px;
  margin-bottom: 1rem;
}

/* Secondary subtitle — medium weight */
.coming-subtitle.secondary {
  font-size: 1rem;
  font-weight: 400;
  max-width: 660px;
  margin-bottom: 0.75rem;
}

/* Micro subtitle — smallest, subdued */
.coming-subtitle.micro {
  font-size: 0.85rem;
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 1.5rem;
}

/* Private beta note */
.coming-note {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 2.75rem;
}

/* ─── NT ENTRY SECTION ─── */

.nt-entry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 2.75rem;
}

.nt-entry-copy {
  margin-bottom: 1.5rem;
}

.nt-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.nt-entry-copy h2 {
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.9rem;
  max-width: 560px;
}

.nt-entry-copy p {
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 640px;
}

/* Action buttons row */
.nt-entry-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.nt-btn {
  font-size: 0.82rem;
  padding: 0.65rem 1.4rem;
  letter-spacing: 0.04em;
}

/* ─── GATEWAY BOX ─── */

.nt-gateway-box {
  padding: 2rem 2.25rem;
  margin-bottom: 0;
}

.nt-gateway-head {
  margin-bottom: 1.5rem;
}

.nt-gateway-title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.4rem;
}

.nt-gateway-sub {
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Gateway form: two-column on wider screens */
.nt-gateway-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.nt-gateway-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nt-gateway-form .field label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
}

.nt-gateway-form .field input {
  font-size: 0.88rem;
  padding: 0.6rem 0.85rem;
}

.nt-gateway-actions {
  margin-bottom: 1.25rem;
}

.nt-gateway-note {
  font-size: 0.75rem;
  line-height: 1.55;
  max-width: 560px;
}

/* ─── CONTACT FORM ─── */

.coming-form {
  margin-top: 2.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid currentColor;
  /* inherits existing border color */
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.coming-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.coming-form .field label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
}

.coming-form .form-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--cyan2);
  text-transform: uppercase;
}

.coming-form .field input,
.coming-form .field textarea {
  font-size: 0.9rem;
  padding: 0.65rem 0.9rem;
  resize: vertical;
}

.coming-form .btn[disabled] {
  cursor: wait;
  opacity: 0.62;
}

.btn-row.coming-row {
  margin-top: 0.25rem;
}

/* Small note at the very bottom */
.small-note.coming-small {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  margin-top: 1.75rem;
  text-align: center;
}

/* ─── RESPONSIVE: collapse gateway form on narrow ─── */
@media (max-width: 640px) {
  .card.coming-card {
    padding: 2rem 1.5rem;
  }

  .nt-gateway-form {
    grid-template-columns: 1fr;
  }

  .nt-entry-top-actions {
    flex-direction: column;
  }
}
