/* /get-yours/ — signup form for the WeatherDog platform.
   Layered on top of /styles.css + /brand.css from the tenant overlay. */

.get-yours-page {
  max-width: 720px;
  padding-top: 32px;
  padding-bottom: 64px;
}

.hero-block {
  padding: 24px 4px 16px;
}

.hero-block .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-primary-deep, #1e40af);
  margin: 0 0 8px;
}

.hero-block h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.hero-block .lede {
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 24px;
  color: var(--text, #1a1a1a);
}

.hero-block .bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hero-block .bullets li {
  padding: 12px 14px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--brand-primary, #1d4ed8) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-primary, #1d4ed8) 12%, transparent);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-block code {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: color-mix(in srgb, var(--brand-primary, #1d4ed8) 14%, transparent);
  padding: 1px 6px;
  border-radius: 6px;
}

.form-card {
  margin-top: 24px;
}

.form-intro {
  font-size: 0.95rem;
  margin: 0 0 24px;
  color: var(--text-dim, #64748b);
}

.form-section {
  border: none;
  padding: 0;
  margin: 0 0 28px;
}

.form-section legend {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-primary-deep, #1e40af);
  padding: 0;
  margin-bottom: 14px;
}

.field {
  display: block;
  margin-bottom: 16px;
}

.field-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.field .muted {
  color: var(--text-dim, #64748b);
  font-weight: 400;
}

.field input[type="text"],
.field input[type="email"],
.field textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid color-mix(in srgb, var(--brand-primary, #1d4ed8) 14%, #ccc);
  font: inherit;
  background: #fff;
  color: var(--text, #1a1a1a);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input[type="text"]:focus,
.field input[type="email"]:focus,
.field textarea:focus {
  border-color: var(--brand-primary, #1d4ed8);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-primary, #1d4ed8) 22%, transparent);
}

.field textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.field-hint {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dim, #64748b);
  margin-top: 5px;
  line-height: 1.4;
}

.field code {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.95em;
}

.color-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.color-input-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.color-input-wrap input[type="color"] {
  width: 48px;
  height: 40px;
  border-radius: 8px;
  border: 1.5px solid color-mix(in srgb, var(--brand-primary, #1d4ed8) 14%, #ccc);
  padding: 2px;
  cursor: pointer;
  background: #fff;
}

.color-input-wrap input[type="text"] {
  flex: 0 0 100px;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.92rem;
  padding: 9px 10px;
  text-transform: uppercase;
}

.brand-preview {
  margin-top: 16px;
  padding: 14px;
  border-radius: 12px;
  background: #f3f4f6;
  border: 1px dashed color-mix(in srgb, var(--brand-primary, #1d4ed8) 18%, #cbd5e1);
}

.brand-preview__header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-primary-preview, #1d4ed8);
  border-bottom: 3px solid var(--brand-accent-preview, #facc15);
  padding: 12px 14px;
  border-radius: 10px;
  color: #fff;
}

.brand-preview__paw {
  font-size: 1.6rem;
}

.brand-preview__name {
  font-weight: 800;
  font-size: 1.1rem;
  flex: 1;
}

.brand-preview__btn {
  background: var(--brand-accent-preview, #facc15);
  color: #4a3700;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 12px;
  border-radius: 999px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.btn-primary {
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  background: var(--brand-accent, #facc15);
  color: #4a3700;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.1s, filter 0.15s;
}

.btn-primary:hover:not(:disabled) { filter: brightness(1.05); }
.btn-primary:active:not(:disabled) { transform: translateY(1px); }
.btn-primary:disabled { opacity: 0.55; cursor: progress; }

.form-status {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.form-status.is-success { color: #166534; }
.form-status.is-error   { color: #b91c1c; }

.numbered-list {
  margin: 0;
  padding-left: 20px;
}

.numbered-list li {
  margin-bottom: 10px;
  line-height: 1.55;
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .color-row { grid-template-columns: 1fr; }
  .hero-block h1 { font-size: 1.6rem; }
}
