.hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.form-field {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field input {
  border: none;
  outline: none;
  font-size: 0.95rem;
  padding: 0.4rem 0.2rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #1b2738;
}

.form-field input::placeholder {
  color: #6b7280;
}

.form-field:focus-within {
  border-color: rgba(255, 255, 255, 0.85);
}

.form-field--file input {
  background: #0f62fe;
  color: #fff;
  padding: 0.45rem;
  font-weight: 600;
  cursor: pointer;
}

.form-field__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.form-field__hint {
  font-size: 0.75rem;
  opacity: 0.8;
}

.card {
  background: var(--color-panel);
  border-radius: 18px;
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.card__header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.card__title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
}

.card__body {
  font-size: 0.95rem;
  color: #283046;
}

.card__body--summary {
  min-height: 110px;
}

.card__footnote {
  margin: 0;
  font-size: 0.8rem;
  color: #4b5563;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0f0f0f;
  width: fit-content;
}

.badge--accent {
  background: var(--color-accent);
}

.badge--soft {
  background: var(--color-soft);
  color: #0f2140;
}

.scene-preview {
  border-radius: 14px;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  background: linear-gradient(180deg, #121b3c, #0d1140);
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.scene-container {
  position: relative;
}

.scene-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.scene-container--has-image .scene-image {
  opacity: 1;
}

.scene-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

.scene-container--has-image .scene-placeholder {
  display: none;
}

.summary-placeholder {
  color: #4b5563;
  font-style: italic;
}

.content-grid .card {
  min-height: 260px;
}

@media (max-width: 600px) {
  .form-field {
    min-width: unset;
  }

  .scene-preview {
    min-height: 180px;
  }
}
