.page-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.7;
}

.form-field {
  margin-bottom: 2rem;
}

.field-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.field-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.input-goal {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.15s;
}

.input-goal:focus {
  outline: none;
  border-color: #999;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.choice-grid--time {
  grid-template-columns: repeat(3, 1fr);
}

.choice-btn {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: inherit;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  text-align: left;
  line-height: 1.4;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.choice-btn:hover {
  border-color: #999;
  color: var(--text);
}

.choice-btn.selected {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}

.convert-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--text);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 2rem;
  transition: opacity 0.15s;
}

.convert-btn:hover {
  opacity: 0.85;
}

.error-msg {
  font-size: 0.8rem;
  color: #c0392b;
  min-height: 1.2em;
  margin-top: 0.5rem;
}

.result-panel {
  margin-top: 2.5rem;
}

.result-panel.hidden {
  display: none;
}

.result-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}

.result-meta-sep {
  color: var(--text-light);
}

.result-card {
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.result-card--highlight {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}

.result-card--not {
  background: var(--surface);
  border-color: transparent;
}

.result-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.result-card--highlight .result-card-label {
  color: rgba(255, 255, 255, 0.65);
}

.result-card-body {
  font-size: 0.92rem;
  line-height: 1.75;
}

.action-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.action-btn {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--text);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--text);
  color: #fff;
  transition: opacity 0.15s;
}

.action-btn:hover {
  opacity: 0.85;
}

.action-btn--ghost {
  background: transparent;
  color: var(--text);
}

.action-btn--ghost:hover {
  opacity: 1;
  background: var(--surface);
}

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