.intro-block h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
}

.intro-copy {
  margin: 14px 0 0;
  line-height: 1.65;
}

.hero-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-step {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(138, 180, 255, 0.1);
  border: 1px solid rgba(138, 180, 255, 0.14);
  color: #d7e5ff;
  font-size: 0.88rem;
}

.share-form {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

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

.field > span {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--muted);
}

textarea {
  min-height: 128px;
  resize: vertical;
  line-height: 1.55;
}

.quick-prompts {
  display: grid;
  gap: 10px;
}

.quick-prompts__label {
  font-size: 0.9rem;
  font-weight: 600;
}

.quick-prompts__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-prompt {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.quick-prompt:hover {
  border-color: rgba(138, 180, 255, 0.5);
  background: rgba(138, 180, 255, 0.08);
}

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

.provider-chip {
  text-align: left;
  background: #303442;
  color: var(--text);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 14px;
  display: grid;
  gap: 6px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.provider-chip:hover,
.provider-chip.is-active {
  border-color: rgba(138, 180, 255, 0.7);
  background: #353a49;
}

.provider-chip__badge {
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: #baf5cc;
  font-size: 0.72rem;
  font-weight: 700;
}

.provider-chip__name {
  font-weight: 700;
}

.toggle-field {
  justify-items: start;
}

.toggle-button {
  width: 64px;
  height: 38px;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 3px;
}

.toggle-button__thumb {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  transform: translateX(0);
  transition: transform 160ms ease;
}

.toggle-button[data-active='true'] {
  background: var(--green);
}

.toggle-button[data-active='true'] .toggle-button__thumb {
  transform: translateX(26px);
}

.primary-button {
  flex: 1;
}

.summary-card {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.summary-kicker {
  margin: 0 0 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.summary-header h2,
.section-head h2 {
  margin: 0;
  font-size: 1.05rem;
}

.summary-row {
  align-items: flex-start;
}

.summary-label {
  min-width: 84px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.summary-question,
.summary-provider,
.provider-notes {
  margin: 0;
  line-height: 1.6;
}

.share-link {
  word-break: break-all;
}

.notes-block {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.other-providers {
  font-size: 0.92rem;
  line-height: 1.6;
}

.flash-success .ghost-button {
  border-color: rgba(34, 197, 94, 0.35);
}

@media (max-width: 720px) {
  .recommended-grid {
    grid-template-columns: 1fr;
  }
}
