:root {
  --accent: #e07a22;
  --accent-dark: #b65d12;
  --bg: #171a1d;
  --panel: rgba(26, 30, 34, 0.94);
  --text: #f4f0eb;
  --muted: #c7c0b8;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(224, 122, 34, 0.28);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(224, 122, 34, 0.15), transparent 24%),
    radial-gradient(circle at right 18%, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, #16191d 0%, #1b1f23 38%, #15181b 100%);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 16px 48px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 20px;
  margin-bottom: 24px;
}

.hero-copy,
.hero-note,
.wizard-shell,
.summary-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(31, 35, 40, 0.96), rgba(14, 16, 18, 0.98));
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 34px;
}

.eyebrow,
.step-kicker,
.summary-kicker,
.final-label,
.hero-note-label {
  display: inline-flex;
  margin: 0 0 12px;
  color: #ffd0aa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
}

.hero-text {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.hero-actions,
.final-actions,
.wizard-nav,
.mini-board {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-secondary,
.nav-button,
.preset-chip {
  appearance: none;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary,
.nav-button {
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--accent), #cb6514);
  color: #fff;
  box-shadow: 0 12px 24px rgba(224, 122, 34, 0.24);
}

.btn-secondary,
.nav-button.ghost,
.preset-chip {
  padding: 13px 18px;
  color: #fff4ea;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover,
.btn-secondary:hover,
.nav-button:hover,
.preset-chip:hover {
  transform: translateY(-1px);
}

.btn-primary[disabled],
.btn-secondary[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 300px;
  padding: 16px 28px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff9a3c 0%, #e07a22 45%, #b85a12 100%);
  border: 1px solid rgba(255, 210, 168, 0.3);
  box-shadow: 0 18px 34px rgba(224, 122, 34, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.submit-button::before {
  content: "";
  position: absolute;
  inset: -30% auto -30% -18%;
  width: 120px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  transform: rotate(14deg);
  pointer-events: none;
  transition: transform 0.45s ease;
}

.submit-button:hover {
  background: linear-gradient(135deg, #ffab55 0%, #eb862d 45%, #c76318 100%);
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(224, 122, 34, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.submit-button:hover::before {
  transform: translateX(210px) rotate(14deg);
}

.submit-button .button-label {
  position: relative;
  z-index: 1;
}

.submit-button .loading-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-top-color: #fff;
  position: relative;
  z-index: 1;
}

.submit-button.is-loading .loading-spinner {
  display: inline-flex;
  animation: loadingSpin 0.8s linear infinite;
}

.submit-button-compact {
  width: 100%;
  min-width: 0;
}

@keyframes loadingSpin {
  to {
    transform: rotate(360deg);
  }
}

.hero-note {
  padding: 26px 24px;
}

.hero-note ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.hero-note li + li {
  margin-top: 10px;
}

.prototype-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(290px, 0.85fr);
  gap: 20px;
  align-items: start;
}

.wizard-shell {
  padding: 22px;
}

.wizard-progress {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.wizard-progress-top,
.score-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.wizard-progress-top {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.progress-track,
.score-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-value,
.score-value {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffcfaa, var(--accent));
  transition: width 0.25s ease;
}

.step-dots {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
}

.step-dots li {
  padding: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
}

.step-dots li.is-active {
  border-color: var(--line-strong);
  background: rgba(224, 122, 34, 0.12);
}

.step-tab {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.step-dots li.is-active .step-tab {
  color: #fff;
}

.wizard-form {
  margin-top: 18px;
}

.step-panel {
  display: none;
  padding: 12px 2px 4px;
}

.step-panel.is-active {
  display: block;
}

.step-header {
  margin-bottom: 20px;
}

.step-header h2,
.summary-card h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.12;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
}

.step-header p,
.summary-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.question-card {
  display: none;
  margin-top: 18px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.question-card.is-active {
  display: block;
}

.contact-highlight {
  border-color: rgba(224, 122, 34, 0.7);
  background:
    radial-gradient(circle at top right, rgba(224, 122, 34, 0.12), transparent 36%),
    linear-gradient(160deg, rgba(54, 41, 30, 0.68), rgba(31, 26, 22, 0.78));
  box-shadow: inset 0 0 0 1px rgba(255, 170, 104, 0.08);
}

.contact-highlight.has-error {
  border-color: rgba(255, 101, 101, 0.8);
  background:
    radial-gradient(circle at top right, rgba(255, 92, 92, 0.16), transparent 36%),
    linear-gradient(160deg, rgba(64, 28, 28, 0.75), rgba(38, 20, 20, 0.82));
  box-shadow: inset 0 0 0 1px rgba(255, 120, 120, 0.12);
}

.contact-highlight .question-index {
  background: rgba(224, 122, 34, 0.22);
  border-color: rgba(224, 122, 34, 0.55);
}

.contact-highlight .field span,
.contact-highlight .question-card-head h3 {
  color: #ffe0c0;
}

.contact-highlight.has-error .field span,
.contact-highlight.has-error .question-card-head h3 {
  color: #ffb4b4;
}

.question-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

.question-card-head h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.question-card-head p {
  margin: 0;
  color: var(--muted);
}

.question-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(224, 122, 34, 0.14);
  border: 1px solid rgba(224, 122, 34, 0.35);
  color: #ffd0aa;
  font-size: 13px;
  font-weight: 800;
}

.choice-grid,
.field-grid {
  display: grid;
  gap: 14px;
}

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

.layouts-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metal-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
  display: grid;
  gap: 8px;
  min-height: 180px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.choice-image {
  width: 100%;
  aspect-ratio: 16 / 9.5;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.metal-choice-image {
  aspect-ratio: 16 / 8.5;
}

.choice-card:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 122, 34, 0.38);
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card.is-selected {
  border-color: rgba(224, 122, 34, 0.85);
  box-shadow: 0 0 0 1px rgba(224, 122, 34, 0.24), 0 16px 30px rgba(0, 0, 0, 0.24);
  background: linear-gradient(155deg, rgba(224, 122, 34, 0.2), rgba(255, 255, 255, 0.04));
}

.choice-card.is-selected .choice-image {
  border-color: rgba(224, 122, 34, 0.42);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(224, 122, 34, 0.14);
}

.layout-card,
.metal-card {
  min-height: 116px;
}

.choice-title {
  font-size: 20px;
  font-weight: 800;
}

.choice-text {
  color: rgba(240, 232, 224, 0.78);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 500;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  letter-spacing: 0;
}

.metal-card .choice-text {
  color: rgba(244, 237, 229, 0.82);
  font-size: 15px;
  font-weight: 500;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.5;
  text-shadow: none;
}

.top-space {
  margin-top: 18px;
}

.field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-group {
  display: none;
}

.project-group.is-active {
  display: grid;
}

.project-group .metal-subgroup {
  display: none;
}

.project-group .metal-subgroup.is-active {
  display: block;
}

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

.field-span-2 {
  grid-column: 1 / -1;
}

.field span {
  color: #ffe2c3;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.32),
    1px 0 0 rgba(224, 122, 34, 0.26),
    -1px 0 0 rgba(224, 122, 34, 0.26),
    0 1px 0 rgba(224, 122, 34, 0.22),
    0 -1px 0 rgba(224, 122, 34, 0.18),
    0 0 10px rgba(224, 122, 34, 0.08);
}

.field input,
.field textarea,
.field select,
.summary-output {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(8, 10, 12, 0.9);
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field textarea,
.summary-output {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(224, 122, 34, 0.55);
  box-shadow: 0 0 0 4px rgba(224, 122, 34, 0.1);
}

.field.has-error span {
  color: #ffb4b4;
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: rgba(255, 101, 101, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 101, 101, 0.12);
  background: rgba(34, 10, 10, 0.94);
}

.field input.is-invalid:focus,
.field select.is-invalid:focus,
.field textarea.is-invalid:focus {
  border-color: rgba(255, 101, 101, 0.95);
  box-shadow: 0 0 0 4px rgba(255, 101, 101, 0.16);
}

.note-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(224, 122, 34, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.note-block span {
  color: var(--accent-soft);
  font-weight: 700;
  font-size: 13px;
}

.note-block p {
  margin: 0;
  color: rgba(255, 245, 236, 0.88);
  line-height: 1.6;
}

.note-block-strong {
  background: linear-gradient(180deg, rgba(224, 122, 34, 0.1), rgba(255, 255, 255, 0.03));
  border-color: rgba(224, 122, 34, 0.34);
}

.summary-output {
  min-height: 220px;
  overflow: auto;
  white-space: pre-wrap;
  line-height: 1.55;
}

.helper {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.decor-picker-heading {
  display: none;
}

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

.decor-picker {
  display: grid;
  gap: 8px;
  height: 100%;
  align-content: start;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

[data-project-group="Wizualizacja kuchni"] .decor-picker {
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  column-gap: 16px;
  row-gap: 10px;
  align-items: start;
}

[data-project-group="Wizualizacja kuchni"] .decor-picker > .decor-toggle,
[data-project-group="Wizualizacja kuchni"] .decor-picker > .decor-dropdown,
[data-project-group="Wizualizacja kuchni"] .decor-picker > .helper {
  grid-column: 1;
}

[data-project-group="Wizualizacja kuchni"] .decor-picker > .decor-preview {
  grid-column: 2;
  grid-row: 1 / span 3;
  min-height: 100%;
  padding-top: 0;
}

.decor-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0f1114;
  color: #fff;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.decor-toggle::after {
  content: "+";
  font-size: 18px;
  line-height: 1;
  color: #ffd3ab;
}

.decor-picker.is-open .decor-toggle::after {
  content: "-";
}

.decor-dropdown {
  display: none;
  gap: 10px;
}

.decor-picker.is-open .decor-dropdown {
  display: grid;
}

.decor-search,
.decor-producer {
  width: 100%;
  padding: 12px 13px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0f1114;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.decor-producer {
  appearance: none;
}

.decor-producer.is-hidden {
  display: none;
}

.decor-options {
  max-height: 260px;
  overflow: auto;
  display: grid;
  gap: 6px;
  padding-right: 2px;
}

.decor-option {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.decor-option:hover,
.decor-option.is-active {
  transform: translateY(-1px);
  border-color: rgba(224, 122, 34, 0.35);
  background: rgba(224, 122, 34, 0.08);
}

.decor-option img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.decor-option-label {
  font-size: 12px;
  line-height: 1.35;
  color: #f3f3f3;
  word-break: break-word;
}

.decor-option-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.decor-option-meta {
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffd3ab;
}

.decor-empty {
  color: var(--muted);
  line-height: 1.4;
}

.decor-preview {
  display: none;
  align-content: start;
  gap: 8px;
  min-height: 0;
  padding: 4px 0 0;
  border-radius: 12px;
}

.decor-preview.is-visible {
  display: grid;
  min-height: 300px;
}

.decor-preview-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.decor-preview img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.decor-preview:not(.is-visible) img {
  visibility: hidden;
}

.layout-shape {
  position: relative;
  display: block;
  width: 72px;
  height: 56px;
  margin-bottom: 8px;
}

.layout-segment {
  position: absolute;
  display: block;
  background: linear-gradient(135deg, #ffcfaa, var(--accent));
  border-radius: 999px;
}

.layout-shape-l .seg-v {
  left: 10px;
  top: 4px;
  width: 10px;
  height: 44px;
}

.layout-shape-l .seg-h {
  left: 10px;
  bottom: 8px;
  width: 42px;
  height: 10px;
}

.layout-shape-ii .seg-v-left,
.layout-shape-ii .seg-v-right,
.layout-shape-u .seg-v-left,
.layout-shape-u .seg-v-right {
  top: 4px;
  width: 10px;
  height: 44px;
}

.layout-shape-ii .seg-v-left,
.layout-shape-u .seg-v-left {
  left: 12px;
}

.layout-shape-ii .seg-v-right,
.layout-shape-u .seg-v-right {
  right: 12px;
}

.layout-shape-u .seg-h,
.layout-shape-i .seg-h {
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 10px;
}

.layout-shape-i .seg-h {
  top: 22px;
  bottom: auto;
}

.mini-board {
  margin-bottom: 16px;
}

.preset-chip {
  padding: 10px 14px;
}

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

.inspiration-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.inspiration-card {
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.inspiration-card:hover,
.inspiration-card.is-active {
  transform: translateY(-1px);
  border-color: rgba(224, 122, 34, 0.38);
  background: rgba(224, 122, 34, 0.1);
}

.inspiration-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.inspiration-card span {
  font-size: 13px;
  font-weight: 700;
}

.inspiration-empty {
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  color: var(--muted);
  line-height: 1.5;
}

.status-message {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 210, 168, 0.24);
  background: rgba(224, 122, 34, 0.08);
  color: #ffe4cb;
  line-height: 1.5;
}

.wizard-status {
  margin-top: 18px;
}

.gallery-chip {
  appearance: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff4ea;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.gallery-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(224, 122, 34, 0.4);
  background: rgba(224, 122, 34, 0.12);
}

.final-box {
  display: grid;
  gap: 18px;
  margin-top: 20px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.summary-actions {
  margin-top: 18px;
}

.summary-actions .btn-primary {
  width: 100%;
}

.wizard-nav {
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.summary-shell {
  display: grid;
  gap: 16px;
}

.summary-card {
  padding: 22px;
}

.sticky {
  position: sticky;
  top: 112px;
}

.score-row strong {
  font-size: 36px;
}

.score-row span {
  max-width: 180px;
  text-align: right;
  color: var(--muted);
  font-size: 13px;
}

.missing-list,
.preview-list {
  margin: 16px 0 0;
}

.missing-list {
  padding-left: 18px;
  color: var(--muted);
}

.missing-list li + li {
  margin-top: 8px;
}

.preview-list {
  display: grid;
  gap: 14px;
}

.preview-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-list div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.preview-list dt {
  font-size: 12px;
  color: #ffd0aa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-list dd {
  margin: 0;
  color: #fff;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.highlight {
  background:
    radial-gradient(circle at top right, rgba(224, 122, 34, 0.18), transparent 30%),
    linear-gradient(160deg, rgba(31, 35, 40, 0.96), rgba(14, 16, 18, 0.98));
}

@media (max-width: 1080px) {
  .prototype-layout,
  .hero {
    grid-template-columns: 1fr;
  }

  .sticky {
    position: static;
  }
}

@media (max-width: 760px) {
  main {
    padding-top: 18px;
  }

  .hero-copy,
  .hero-note,
  .wizard-shell,
  .summary-card {
    border-radius: 20px;
  }

  .hero-copy,
  .hero-note,
  .wizard-shell,
  .summary-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .choice-grid,
  .field-grid,
  .step-dots {
    grid-template-columns: 1fr;
  }

  .inspiration-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-project-group="Wizualizacja kuchni"] .decor-picker {
    grid-template-columns: 1fr;
  }

  [data-project-group="Wizualizacja kuchni"] .decor-picker > .decor-preview {
    grid-column: 1;
    grid-row: auto;
  }

  .field-span-2 {
    grid-column: auto;
  }

  .wizard-nav {
    gap: 10px;
  }

  .wizard-nav .nav-button {
    width: 100%;
  }
}
