:root {
  color-scheme: light;
  --navy: #152238;
  --navy-2: #20324f;
  --teal: #00a7a5;
  --teal-deep: #087c7a;
  --gold: #d8a23a;
  --coral: #d95d59;
  --mist: #eef4f4;
  --paper: #fbfaf6;
  --white: #ffffff;
  --slate: #667085;
  --line: rgba(21, 34, 56, 0.13);
  --shadow: 0 16px 48px rgba(21, 34, 56, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: #f7f8f6;
  color: var(--navy);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px;
  background: #172238;
  color: var(--white);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(135deg, rgba(0, 167, 165, 0.18), rgba(216, 162, 58, 0.16)),
    rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
}

.brand-lockup h1,
.topbar h2,
.hero-copy h3,
.panel h3 {
  margin: 0;
  line-height: 1.05;
}

.brand-lockup h1 {
  max-width: 170px;
  font-size: 20px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.nav-list {
  display: grid;
  gap: 6px;
}

.valtion-brand-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(0, 167, 165, 0.34);
  border-radius: 8px;
  background: rgba(0, 167, 165, 0.11);
}

.valtion-brand-card strong {
  color: var(--white);
  font-size: 15px;
}

.valtion-brand-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.nav-item,
.canvas-tile,
.phase,
.prompt-grid button,
.ghost-button,
.primary-button {
  border: 0;
  border-radius: 8px;
}

.nav-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
}

.nav-item strong {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.nav-item.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.nav-item.is-active strong {
  color: rgba(255, 255, 255, 0.72);
}

.book-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.book-card img {
  width: 82px;
  aspect-ratio: 0.68;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.34);
}

.book-card p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

main {
  min-width: 0;
  padding: 28px 32px;
}

.view:not(.is-active) {
  display: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.topbar h2 {
  max-width: 780px;
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: 0;
}

.topbar-subtitle {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.5;
}

.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.ghost-button,
.primary-button {
  min-height: 44px;
  padding: 0 16px;
  font-weight: 750;
}

.ghost-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: var(--navy);
}

.primary-button {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(21, 34, 56, 0.18);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: 22px;
  margin-bottom: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.valtion-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.valtion-strip h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.valtion-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.valtion-steps span {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 8px;
  border: 1px solid rgba(21, 34, 56, 0.12);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 760;
  text-align: center;
}

.conversation-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 18px;
  margin-bottom: 22px;
}

.conversation-thread,
.artifact-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(21, 34, 56, 0.08);
}

.flow-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.flow-progress span {
  display: grid;
  place-items: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--slate);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.flow-progress span.is-current {
  border-color: rgba(0, 167, 165, 0.7);
  background: rgba(0, 167, 165, 0.1);
  color: var(--teal-deep);
}

.conversation-thread h3,
.artifact-panel h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.chat-stream {
  display: grid;
  gap: 12px;
}

.chat-bubble {
  max-width: 86%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.chat-bubble span,
.artifact-list span {
  display: block;
  color: var(--slate);
  font-size: 12px;
  font-weight: 900;
}

.chat-bubble p {
  margin: 6px 0 0;
  color: var(--navy);
  line-height: 1.5;
}

.chat-bubble.user {
  justify-self: end;
  background: var(--navy);
}

.chat-bubble.user span,
.chat-bubble.user p {
  color: var(--white);
}

.chat-bubble.coach {
  border-left: 4px solid var(--teal);
}

.diagnosis-flow {
  display: grid;
  gap: 16px;
}

.diagnosis-step {
  display: grid;
  gap: 10px;
}

.diagnosis-step > span,
.diagnosis-note span {
  color: var(--slate);
  font-size: 13px;
  font-weight: 750;
}

.diagnosis-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.diagnosis-options.stacked {
  display: grid;
}

.diagnosis-choice {
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  text-align: left;
}

.diagnosis-options.stacked .diagnosis-choice {
  width: 100%;
  line-height: 1.4;
}

.diagnosis-choice.is-selected {
  border-color: rgba(0, 167, 165, 0.72);
  background: rgba(0, 167, 165, 0.1);
  box-shadow: 0 0 0 3px rgba(0, 167, 165, 0.1);
}

.diagnosis-note {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.diagnosis-note textarea {
  width: 100%;
  resize: vertical;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  line-height: 1.5;
}

.diagnosis-result {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(0, 167, 165, 0.34);
  border-radius: 8px;
  background: rgba(0, 167, 165, 0.08);
}

.diagnosis-result h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.diagnosis-result p:last-child {
  margin: 8px 0 0;
  color: var(--slate);
  line-height: 1.5;
}

.diagnosis-result > span {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 750;
}

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

.conversation-prompt {
  min-height: 68px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  color: var(--navy);
  font-weight: 700;
  text-align: left;
}

.conversation-prompt.is-selected {
  border-color: rgba(0, 167, 165, 0.85);
  background: rgba(0, 167, 165, 0.12);
  box-shadow: 0 0 0 3px rgba(0, 167, 165, 0.12);
}

.artifact-panel {
  display: flex;
  flex-direction: column;
}

.artifact-panel > p:not(.eyebrow) {
  color: var(--slate);
  line-height: 1.6;
}

.artifact-preview {
  display: grid;
  place-items: center;
  height: 190px;
  margin: 10px 0 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  overflow: hidden;
}

.artifact-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.artifact-list {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.artifact-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.valtion-note {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 13px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(216, 162, 58, 0.12);
}

.valtion-note strong {
  color: var(--navy);
}

.valtion-note span {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.45;
}

.artifact-list div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.artifact-list strong {
  display: block;
  margin-top: 5px;
  color: var(--navy);
}

.hero-copy {
  align-self: center;
}

.hero-copy h3 {
  max-width: 720px;
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: 0;
}

.hero-copy > p:last-of-type {
  max-width: 620px;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.55;
}

.role-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(238, 244, 244, 0.72);
}

.role-chip {
  min-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--slate);
  font-size: 13px;
  font-weight: 750;
}

.role-chip.is-selected {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(21, 34, 56, 0.08);
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.focus-list div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.focus-list span {
  display: block;
  color: var(--slate);
  font-size: 12px;
  font-weight: 750;
}

.focus-list strong {
  display: block;
  margin-top: 5px;
  font-size: 15px;
  line-height: 1.35;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.hero-metrics div,
.decision-board div,
.coach-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.hero-metrics div {
  padding: 14px;
}

.hero-metrics strong {
  display: block;
  color: var(--teal-deep);
  font-size: 26px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
}

.visual-frame {
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 16px;
  border-radius: 8px;
  background: var(--mist);
  overflow: hidden;
}

.sprint-figure {
  display: grid;
  place-items: center;
  height: 190px;
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  overflow: hidden;
}

.sprint-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.visual-frame img,
.canvas-preview img,
.visual-detail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.content-grid > .view.is-active {
  grid-column: 1 / -1;
}

.panel {
  min-height: 420px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 36px rgba(21, 34, 56, 0.06);
}

.panel.wide {
  grid-column: span 2;
}

.content-grid > .panel.wide.view.is-active {
  grid-column: 1 / -1;
}

.panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.panel h3 {
  font-size: 20px;
  line-height: 1.2;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(217, 93, 89, 0.12);
  color: #963d39;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.status-pill.calm {
  background: rgba(0, 167, 165, 0.12);
  color: var(--teal-deep);
}

.score-ring {
  display: grid;
  place-items: center;
  width: 188px;
  height: 188px;
  margin: 10px auto 24px;
  border-radius: 50%;
  background: conic-gradient(var(--teal) calc(var(--score, 68) * 1%), #e4ebeb 0);
}

.score-ring div {
  display: grid;
  place-items: center;
  width: 134px;
  height: 134px;
  border-radius: 50%;
  background: var(--white);
}

.score-ring strong {
  font-size: 46px;
  line-height: 1;
}

.score-ring span,
.slider-row span {
  color: var(--slate);
  font-size: 13px;
  font-weight: 800;
}

.slider-row {
  display: grid;
  gap: 10px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--teal);
}

.leak-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.leak-list div {
  padding: 13px;
  border-left: 4px solid var(--coral);
  background: rgba(238, 244, 244, 0.74);
}

.leak-list strong,
.leak-list span {
  display: block;
}

.leak-list span {
  margin-top: 5px;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.45;
}

.canvas-strip {
  display: grid;
  gap: 10px;
}

#fieldkit.is-active {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(420px, 1fr);
  align-content: start;
  gap: 18px;
}

#fieldkit.is-active .panel-header {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.brief-workspace {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1fr);
  gap: 18px;
}

.brief-form {
  display: grid;
  align-content: start;
  gap: 14px;
}

.why-this-brief,
.export-preview {
  padding: 15px;
  border: 1px solid rgba(0, 167, 165, 0.28);
  border-radius: 8px;
  background: rgba(0, 167, 165, 0.08);
}

.why-this-brief strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.why-this-brief p {
  margin: 0;
  color: var(--slate);
  line-height: 1.5;
}

.brief-form label {
  display: grid;
  gap: 7px;
}

.brief-form label span {
  color: var(--slate);
  font-size: 13px;
  font-weight: 750;
}

.brief-form input,
.brief-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  line-height: 1.45;
}

.brief-form textarea {
  resize: vertical;
}

.brief-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.canvas-tile {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: var(--mist);
  color: var(--navy);
  text-align: left;
}

.canvas-tile strong {
  color: var(--slate);
  font-size: 12px;
}

.canvas-tile.is-selected {
  background: var(--navy);
  color: var(--white);
}

.canvas-tile.is-selected strong {
  color: var(--gold);
}

.canvas-preview {
  display: grid;
  place-items: center;
  min-height: 480px;
  margin-top: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.phase {
  min-height: 132px;
  padding: 14px;
  background: var(--mist);
  color: var(--navy);
  text-align: left;
}

.phase span,
.phase small,
.decision-board .eyebrow {
  display: block;
}

.phase span {
  color: var(--slate);
  font-size: 12px;
  font-weight: 900;
}

.phase strong {
  display: block;
  margin: 10px 0;
  font-size: 18px;
}

.phase small {
  color: var(--slate);
  line-height: 1.45;
}

.phase.is-done {
  background: rgba(0, 167, 165, 0.14);
}

.phase.is-current {
  background: var(--navy);
  color: var(--white);
}

.phase.is-current span,
.phase.is-current small {
  color: rgba(255, 255, 255, 0.76);
}

.decision-board {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 12px;
  margin-top: 16px;
}

.export-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.export-preview h4 {
  margin: 0;
  font-size: 20px;
}

.export-preview p:last-child {
  max-width: 820px;
  margin: 8px 0 0;
  color: var(--slate);
  line-height: 1.55;
}

.decision-board div {
  padding: 16px;
}

.decision-board p:last-child,
.coach-card p {
  margin: 0;
  color: var(--slate);
  line-height: 1.55;
}

.coach-card {
  min-height: 124px;
  padding: 18px;
}

.prompt-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.prompt-grid button {
  min-height: 46px;
  padding: 0 14px;
  background: var(--mist);
  color: var(--navy);
  font-weight: 700;
  text-align: left;
}

.prompt-grid button:hover,
.conversation-prompt:hover,
.diagnosis-choice:hover,
.canvas-tile:hover,
.phase:hover,
.visual-thumb:hover,
.ghost-button:hover,
.primary-button:hover {
  transform: translateY(-1px);
}

.visual-workbench {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(260px, 0.65fr);
  gap: 16px;
}

.visual-detail {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  overflow: hidden;
}

.visual-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.visual-copy h4 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
}

.visual-copy p:last-of-type {
  color: var(--slate);
  line-height: 1.6;
}

.visual-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.visual-thumb {
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  text-align: left;
}

.visual-thumb img {
  width: 100%;
  height: 82px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--mist);
}

.visual-thumb span {
  align-self: end;
  color: var(--slate);
  font-size: 11px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.visual-thumb.is-selected {
  border-color: rgba(0, 167, 165, 0.8);
  box-shadow: 0 0 0 3px rgba(0, 167, 165, 0.12);
}

@media (max-width: 1120px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .nav-list {
    display: flex;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-item {
    flex: 0 0 156px;
  }

  .book-card {
    display: none;
  }

  .hero-panel,
  .valtion-strip,
  .conversation-panel,
  .content-grid,
  .visual-workbench {
    grid-template-columns: 1fr;
  }

  .panel.wide {
    grid-column: auto;
  }

  #fieldkit.is-active {
    grid-template-columns: 1fr;
  }

  .brief-workspace {
    grid-template-columns: 1fr;
  }

  #fieldkit.is-active .panel-header {
    grid-column: auto;
  }

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

@media (max-width: 760px) {
  .sidebar,
  main {
    padding: 18px;
    min-width: 0;
  }

  .topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar-actions {
    justify-content: start;
  }

  .hero-panel {
    padding: 18px;
    overflow: hidden;
  }

  .hero-metrics,
  .focus-list,
  .brief-two-col,
  .valtion-steps,
  .conversation-prompts,
  .timeline,
  .decision-board {
    grid-template-columns: 1fr;
  }

  .visual-frame {
    min-height: 260px;
  }

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

  .visual-detail {
    min-height: 260px;
  }

  .panel {
    min-height: auto;
  }

  .flow-progress,
  .export-preview {
    grid-template-columns: 1fr;
  }

  .export-preview {
    display: grid;
  }
}
