:root {
  color-scheme: light;
  --bg: #eef1f4;
  --panel: #ffffff;
  --ink: #17202a;
  --muted: #657282;
  --line: #d6dde5;
  --soft: #f7f9fb;
  --accent: #0f766e;
  --accent-strong: #115e59;
  --danger: #b42318;
  --code: #111827;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

button,
input,
textarea,
select {
  font: inherit;
}

.app-shell {
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(520px, 1.35fr) 260px;
  gap: 14px;
  min-height: 100vh;
  padding: 14px;
}

.intake-panel,
.presentation-panel,
.history-panel {
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intake-panel {
  display: grid;
  grid-template-rows: auto auto minmax(220px, 1fr);
}

.presentation-panel,
.history-panel {
  overflow: auto;
  max-height: calc(100vh - 28px);
}

.topbar,
.intake-form,
.console-panel,
.presentation-panel,
.history-panel {
  padding: 16px;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1 {
  font-size: 22px;
  line-height: 1.25;
}

h1 span,
h2 span,
h3 span,
label span,
button span,
figcaption span,
th span,
.notice span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

h1 span {
  margin-top: 3px;
  font-size: 13px;
}

h2 {
  font-size: 16px;
}

h3 {
  font-size: 18px;
  line-height: 1.35;
}

h3 span {
  margin-top: 2px;
}

.eyebrow {
  margin-bottom: 4px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.status {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.status[data-state="running"] {
  border-color: #7dd3c7;
  color: var(--accent-strong);
  background: #ecfdf8;
}

.status[data-state="failed"] {
  border-color: #fecdca;
  color: var(--danger);
  background: #fff5f4;
}

.status[data-state="completed"] {
  border-color: #a6f4c5;
  color: #067647;
  background: #f0fdf4;
}

.mini-status {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.intake-form {
  border-bottom: 1px solid var(--line);
}

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

label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 13px;
  font-weight: 750;
}

label span {
  margin-top: -3px;
}

.wide {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 11px;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 82px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

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

.photo-preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
}

.progress-panel {
  border-bottom: 1px solid var(--line);
  padding: 16px;
}

.progress-steps {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.progress-steps li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--muted);
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 800;
}

.progress-steps li span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.progress-steps li[data-state="active"] {
  border-color: #7dd3c7;
  background: #ecfdf8;
  color: var(--accent-strong);
}

.progress-steps li[data-state="done"] {
  border-color: #a6f4c5;
  background: #f0fdf4;
  color: #067647;
}

.actions,
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.head-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.actions {
  justify-content: flex-start;
  margin-top: 14px;
}

button {
  min-height: 38px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  padding: 8px 13px;
  font-weight: 800;
}

button span {
  color: inherit;
  opacity: 0.82;
  font-size: 11px;
}

button:hover {
  background: var(--accent-strong);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

button.secondary {
  border-color: #fecdca;
  background: #fff5f4;
  color: var(--danger);
}

button.ghost {
  min-height: 32px;
  border-color: var(--line);
  background: #ffffff;
  color: var(--muted);
  padding: 5px 10px;
  font-size: 13px;
}

button.ghost span {
  color: var(--muted);
}

button.present-button {
  border-color: #101828;
  background: #101828;
}

.console-panel {
  min-width: 0;
}

pre {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 34vh;
  overflow: auto;
  margin: 12px 0 0;
  border-radius: 6px;
  background: var(--code);
  color: #e6edf3;
  padding: 13px;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.55;
}

.sticky-head {
  position: sticky;
  top: -16px;
  z-index: 2;
  margin: -16px -16px 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.presentation {
  display: grid;
  gap: 14px;
}

.notice {
  border: 1px solid #fedf89;
  border-radius: 6px;
  background: #fffbeb;
  color: #92400e;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.notice span {
  margin-top: 3px;
  color: #92400e;
  opacity: 0.84;
}

.presentation.empty-state {
  min-height: 360px;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

.cover,
.presentation section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.cover {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.cover h3 {
  font-size: 30px;
}

.cover p:not(.eyebrow),
.lead {
  color: #415163;
  font-size: 15px;
  line-height: 1.7;
}

.visual-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.visual-compare figure {
  display: grid;
  gap: 8px;
}

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

.space-gallery figure {
  display: grid;
  gap: 7px;
  margin: 0;
}

.space-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
  background: var(--soft);
}

.space-gallery figcaption {
  display: grid;
  gap: 2px;
}

.space-gallery figcaption span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.redesign-pairs {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.redesign-pair {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--soft);
}

.pair-title {
  display: grid;
  gap: 4px;
}

.pair-title h4 {
  margin: 0;
  font-size: 15px;
}

.pair-title p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.pair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pair-grid figure {
  display: grid;
  gap: 7px;
  margin: 0;
}

.pair-grid img,
.pair-grid .image-brief {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
  background: #ffffff;
}

.pair-grid .image-brief {
  overflow: auto;
  padding: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.visual-compare img,
.image-placeholder,
.image-brief {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
  background: var(--soft);
}

.image-placeholder,
.image-brief {
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.image-brief {
  place-items: start;
  overflow: auto;
  font-size: 13px;
}

.presentation p,
.presentation li {
  color: #344054;
  line-height: 1.7;
}

.presentation ul {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding-left: 20px;
}

.slogan-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.slogan-list strong {
  border: 1px solid #b7ded9;
  border-radius: 999px;
  background: #effaf8;
  color: var(--accent-strong);
  padding: 7px 10px;
  font-size: 13px;
}

.table-wrap {
  margin-top: 10px;
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th,
td {
  border: 1px solid var(--line);
  padding: 9px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--soft);
  color: #344054;
}

.timeline-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.timeline-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 12px;
}

.timeline-list strong {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.timeline-list strong span {
  color: var(--muted);
  font-size: 13px;
}

.project-list {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.project-item {
  display: grid;
  gap: 5px;
  width: 100%;
  min-height: 0;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  padding: 11px;
}

.project-item:hover {
  border-color: var(--accent);
  background: #f8fbfb;
}

.project-item span,
.project-item small {
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.empty {
  color: var(--muted);
}

body.deck-open {
  overflow: hidden;
}

.deck-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: #0b1220;
  color: #f8fafc;
}

.deck-overlay[hidden] {
  display: none;
}

.print-deck {
  display: none;
}

.deck-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #101828;
}

.deck-topbar strong {
  display: block;
  max-width: 48vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
  color: #f8fafc;
}

.deck-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.deck-actions > span {
  min-width: 58px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.deck-slide {
  display: grid;
  align-content: center;
  gap: 30px;
  width: min(1220px, calc(100vw - 64px));
  min-height: min(730px, calc(100vh - 128px));
  margin: 32px auto;
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: #111827;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

.deck-slide.cover {
  background: #111827;
  color: #ffffff;
}

.deck-slide .eyebrow,
.deck-slide.cover .eyebrow {
  color: #5eead4;
  font-size: 15px;
  text-transform: uppercase;
}

.deck-slide.cover p {
  color: #d0d5dd;
}

.deck-slide h1 {
  max-width: 920px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  color: #ffffff;
}

.deck-slide h2 {
  max-width: 980px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.12;
  color: #ffffff;
}

.deck-slide p,
.deck-slide li {
  max-width: 920px;
  color: #dbe4ef;
  font-size: clamp(21px, 2.1vw, 29px);
  line-height: 1.55;
}

.deck-slide ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.deck-slide.detail {
  align-content: start;
}

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

.detail-list li {
  border-left: 4px solid #5eead4;
  background: rgba(15, 23, 42, 0.42);
  border-radius: 8px;
  padding: 14px 16px 14px 20px;
}

.detail-list li::before {
  display: none;
}

.detail-list strong {
  display: block;
  color: #ffffff;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.25;
}

.detail-list span {
  display: block;
  margin-top: 4px;
  color: #5eead4;
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 800;
}

.detail-list p {
  margin-top: 6px;
  font-size: clamp(15px, 1.45vw, 20px);
  line-height: 1.5;
}

.deck-slide li {
  position: relative;
  padding-left: 28px;
}

.deck-slide li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #5eead4;
  content: "";
}

.deck-slide.hero-visual {
  position: relative;
  overflow: hidden;
  align-content: stretch;
  padding: 0;
}

.deck-slide.hero-visual img,
.deck-slide.hero-visual .deck-brief {
  width: 100%;
  height: min(730px, calc(100vh - 128px));
  border: 0;
  border-radius: 10px;
  object-fit: cover;
  opacity: 0.72;
}

.hero-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 14px;
  padding: clamp(30px, 5vw, 64px);
  background: linear-gradient(0deg, rgba(7, 13, 25, 0.95), rgba(7, 13, 25, 0.72) 58%, rgba(7, 13, 25, 0));
}

.hero-caption h2 {
  max-width: 920px;
}

.hero-caption p {
  max-width: 820px;
}

.deck-slide.compare {
  align-content: stretch;
  gap: 22px;
}

.compare-head {
  display: grid;
  gap: 8px;
}

.compare-head h2 {
  font-size: clamp(30px, 3.6vw, 48px);
}

.compare-head p {
  max-width: 960px;
  font-size: clamp(18px, 1.8vw, 24px);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-height: 0;
}

.compare-grid figure {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  margin: 0;
}

.compare-grid figcaption {
  color: #f8fafc;
  font-size: 18px;
  font-weight: 900;
}

.compare-grid figcaption span {
  color: #cbd5e1;
  font-size: 13px;
}

.compare-grid img,
.compare-grid .deck-brief {
  width: 100%;
  height: min(430px, calc(100vh - 310px));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  object-fit: cover;
  background: #0b1220;
}

.compare-grid .deck-brief {
  overflow: auto;
  padding: 20px;
  color: #dbe4ef;
  font-size: 16px;
  line-height: 1.55;
}

.deck-slide.photo-grid {
  align-content: stretch;
  gap: 22px;
}

.deck-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-height: 0;
}

.deck-photo-grid figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
  min-width: 0;
  margin: 0;
}

.deck-photo-grid img {
  width: 100%;
  height: min(250px, calc((100vh - 330px) / 2));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  object-fit: cover;
  background: #0b1220;
}

.deck-photo-grid figcaption {
  color: #f8fafc;
  font-size: 17px;
  font-weight: 900;
}

.deck-photo-grid figcaption span {
  color: #cbd5e1;
  font-size: 12px;
}

.deck-slide.metrics {
  align-content: center;
}

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

.metric-card {
  display: grid;
  gap: 8px;
  min-height: 190px;
  align-content: center;
  border: 1px solid rgba(94, 234, 212, 0.34);
  border-radius: 10px;
  background: rgba(15, 118, 110, 0.16);
  padding: 24px;
}

.metric-card strong {
  color: #5eead4;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.95;
}

.metric-card span {
  color: #dbe4ef;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
}

.deck-slide.budget {
  align-content: center;
}

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

.budget-card {
  display: grid;
  gap: 10px;
  min-height: 168px;
  align-content: center;
  border: 1px solid rgba(94, 234, 212, 0.28);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.62);
  padding: 22px;
}

.budget-card span {
  color: #5eead4;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 900;
}

.budget-card strong {
  color: #ffffff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.budget-card p {
  color: #cbd5e1;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.45;
}

.deck-slide.visual {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
}

.deck-slide.visual img,
.deck-brief {
  width: 100%;
  max-height: calc(100vh - 230px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  object-fit: contain;
  background: #0b1220;
}

.deck-brief {
  overflow: auto;
  padding: 24px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.6;
}

.deck-slogans {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.deck-slogans strong {
  width: fit-content;
  border: 1px solid rgba(94, 234, 212, 0.42);
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.2);
  color: #ccfbf1;
  padding: 10px 16px;
  font-size: clamp(18px, 2vw, 26px);
}

@media (max-width: 1240px) {
  .app-shell {
    grid-template-columns: minmax(420px, 1fr) minmax(480px, 1fr);
  }

  .history-panel {
    grid-column: 1 / -1;
    max-height: none;
  }

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

@media (max-width: 920px) {
  .app-shell,
  .form-grid,
  .visual-compare,
  .space-gallery,
  .pair-grid {
    grid-template-columns: 1fr;
  }

  .app-shell {
    padding: 10px;
  }

  .presentation-panel,
  .history-panel {
    max-height: none;
  }

  .project-list {
    grid-template-columns: 1fr;
  }

  .head-actions,
  .deck-topbar,
  .deck-actions {
    flex-wrap: wrap;
  }

  .deck-slide,
  .deck-slide.visual,
  .compare-grid,
  .deck-photo-grid,
  .budget-grid {
    grid-template-columns: 1fr;
  }

  .deck-slide,
  .deck-slide.visual {
    width: calc(100vw - 24px);
    min-height: calc(100vh - 160px);
    margin: 12px auto;
    padding: 24px;
  }

  .compare-grid img,
  .compare-grid .deck-brief,
  .deck-photo-grid img {
    height: 260px;
  }
}

@media print {
  @page {
    size: 11in 8.5in;
    margin: 0.28in;
  }

  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  html,
  body {
    width: auto;
    min-height: auto;
    background: #ffffff;
  }

  body.printing-deck .app-shell,
  body.printing-deck .deck-overlay {
    display: none;
  }

  body.printing-deck .print-deck {
    position: static;
    display: block;
    background: #ffffff;
  }

  body.printing-deck .print-deck[hidden] {
    display: none;
  }

  body.printing-deck .print-slide {
    position: relative;
    display: grid;
    align-content: center;
    gap: 0.22in;
    width: 10.44in;
    min-height: 7.94in;
    max-height: 7.94in;
    margin: 0;
    border: 0;
    border-radius: 0.08in;
    background: #ffffff !important;
    color: #111827 !important;
    overflow: hidden;
    padding: 0.42in;
    box-shadow: none;
    page-break-after: always;
    break-after: page;
  }

  body.printing-deck .print-slide.cover {
    background: #111827 !important;
    color: #ffffff !important;
  }

  body.printing-deck .print-slide .eyebrow {
    color: #0f766e !important;
    font-size: 10pt;
  }

  body.printing-deck .print-slide.cover .eyebrow,
  body.printing-deck .print-slide.cover p {
    color: #d0d5dd !important;
  }

  body.printing-deck .print-slide h1 {
    max-width: 8.8in;
    color: inherit !important;
    font-size: 38pt;
    line-height: 1.05;
  }

  body.printing-deck .print-slide h2 {
    max-width: 9in;
    color: #111827 !important;
    font-size: 27pt;
    line-height: 1.15;
  }

  body.printing-deck .print-slide.cover h1,
  body.printing-deck .print-slide.cover h2 {
    color: #ffffff !important;
  }

  body.printing-deck .print-slide p,
  body.printing-deck .print-slide li {
    max-width: 8.9in;
    color: #334155 !important;
    font-size: 15pt;
    line-height: 1.42;
  }

  body.printing-deck .print-slide.cover p {
    color: #d0d5dd !important;
  }

  body.printing-deck .print-slide ul {
    gap: 0.08in;
  }

  body.printing-deck .detail-list {
    gap: 0.09in;
  }

  body.printing-deck .detail-list li {
    border-left: 0.05in solid #0f766e;
    background: #f8fafc !important;
    padding: 0.1in 0.12in;
  }

  body.printing-deck .detail-list strong {
    color: #111827 !important;
    font-size: 14pt;
  }

  body.printing-deck .detail-list span {
    color: #0f766e !important;
    font-size: 10pt;
  }

  body.printing-deck .detail-list p {
    color: #334155 !important;
    font-size: 10.5pt;
    line-height: 1.35;
  }

  body.printing-deck .print-slide li::before {
    background: #0f766e !important;
  }

  body.printing-deck .compare-grid,
  body.printing-deck .deck-photo-grid,
  body.printing-deck .budget-grid,
  body.printing-deck .metric-grid {
    display: grid;
    gap: 0.16in;
  }

  body.printing-deck .compare-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.printing-deck .deck-photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  body.printing-deck .budget-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.printing-deck .metric-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  body.printing-deck .compare-grid img,
  body.printing-deck .compare-grid .deck-brief,
  body.printing-deck .deck-photo-grid img {
    width: 100%;
    height: 3.7in;
    max-height: 3.7in;
    border: 1px solid #cbd5e1;
    border-radius: 0.06in;
    object-fit: cover;
    background: #f8fafc;
  }

  body.printing-deck .deck-photo-grid img {
    height: 2.05in;
    max-height: 2.05in;
  }

  body.printing-deck .compare-grid figcaption,
  body.printing-deck .deck-photo-grid figcaption {
    color: #111827 !important;
    font-size: 12pt;
  }

  body.printing-deck .compare-grid figcaption span,
  body.printing-deck .deck-photo-grid figcaption span {
    color: #64748b !important;
  }

  body.printing-deck .metric-card,
  body.printing-deck .budget-card {
    min-height: 1.45in;
    border: 1px solid #99f6e4;
    background: #f0fdfa !important;
    padding: 0.18in;
  }

  body.printing-deck .metric-card strong,
  body.printing-deck .budget-card strong {
    color: #0f766e !important;
    font-size: 24pt;
  }

  body.printing-deck .metric-card span,
  body.printing-deck .budget-card span {
    color: #0f766e !important;
    font-size: 12pt;
  }

  body.printing-deck .budget-card p {
    color: #334155 !important;
    font-size: 10.5pt;
  }

  body.printing-deck .deck-slogans strong {
    border: 1px solid #99f6e4;
    background: #f0fdfa !important;
    color: #0f766e !important;
    font-size: 14pt;
  }

  body.printing-deck .print-slide:last-child {
    page-break-after: auto;
    break-after: auto;
  }

  .print-slide-number {
    position: absolute;
    right: 24px;
    bottom: 18px;
    z-index: 2;
    color: #94a3b8 !important;
    font-size: 12px;
    font-weight: 800;
  }

  body:not(.printing-deck).deck-open .deck-topbar,
  body:not(.printing-deck).deck-open .app-shell {
    display: none;
  }

  body:not(.printing-deck).deck-open .deck-overlay {
    position: static;
    display: block;
    background: #ffffff;
  }

  body:not(.printing-deck).deck-open .deck-slide {
    width: 10.44in;
    min-height: 7.94in;
    margin: 0;
    border: 0;
    border-radius: 0.08in;
    background: #ffffff !important;
    color: #111827 !important;
    overflow: hidden;
    padding: 0.42in;
    box-shadow: none;
    page-break-after: always;
  }
}
