:root {
  --ink: #17181b;
  --paper: #f7f7f2;
  --surface: #ffffff;
  --line: #d9dcd7;
  --muted: #676c70;
  --signal: #f04b32;
  --signal-dark: #c93420;
  --process: #087f78;
  --process-soft: #dceeea;
  --warning: #a75a00;
  --warning-soft: #fff0db;
  --danger: #b42318;
  --danger-soft: #fee4e2;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Pretendard, "Noto Sans KR", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(240, 75, 50, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--surface);
  border: 2px solid var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.demo-ribbon {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 20px;
  background: var(--ink);
  color: #f3f4f2;
  font-size: 11px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-height);
  background: rgba(247, 247, 242, 0.96);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  color: var(--signal);
}

.brand small {
  margin-left: 5px;
  color: var(--signal);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 52px;
}

.desktop-nav a {
  position: relative;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--signal);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 150ms ease, transform 150ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.icon-button {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  line-height: 0;
}

.icon-button:hover {
  border-color: var(--ink);
  background: var(--surface);
}

.icon-button > i,
.icon-button > svg,
.icon-wrap > i,
.icon-wrap > svg,
.status-icon > i,
.status-icon > svg {
  width: 20px;
  height: 20px;
  display: block;
  margin: 0;
  flex: 0 0 auto;
}

[data-tooltip]::after {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 120;
  width: max-content;
  max-width: 180px;
  padding: 6px 8px;
  border-radius: 3px;
  background: var(--ink);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 11px;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 120ms ease, transform 120ms ease;
}

[data-tooltip]:hover::after,
[data-tooltip]:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.mobile-menu-button {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: calc(32px + var(--header-height));
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 70;
  padding: 26px 24px 40px;
  background: var(--paper);
  overflow-y: auto;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 19px;
  font-weight: 750;
  text-decoration: none;
}

.mobile-menu-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
}

.search-dialog {
  width: min(680px, calc(100% - 32px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
}

.search-dialog::backdrop {
  background: rgba(23, 24, 27, 0.68);
}

.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.dialog-head h2 {
  margin: 0;
  font-size: 20px;
}

.dialog-body {
  padding: 24px;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr 52px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: #fff;
}

.search-box input {
  min-width: 0;
  height: 54px;
  padding: 0 16px;
  border: 0;
  background: transparent;
}

.search-box button {
  border: 0;
  background: var(--ink);
  color: #fff;
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.search-suggestions a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  background: #2b2d31;
}

.button.signal {
  border-color: var(--signal);
  background: var(--signal);
}

.button.signal:hover {
  border-color: var(--signal-dark);
  background: var(--signal-dark);
}

.button.process {
  border-color: var(--process);
  background: var(--process);
}

.button.outline {
  background: transparent;
  color: var(--ink);
}

.button.light {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.button.small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 13px;
}

.button > i,
.button > svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--process);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section {
  padding: 104px 0;
}

.section.compact {
  padding: 78px 0;
}

.section.white {
  background: var(--surface);
}

.section.dark {
  background: var(--ink);
  color: #fff;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.18;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.section.dark .section-heading p {
  color: #c6c9c7;
}

.crop-frame {
  position: relative;
}

.crop-frame::before,
.crop-frame::after {
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  background: var(--signal);
  content: "";
  pointer-events: none;
}

.crop-frame::before {
  width: 22px;
  height: 2px;
}

.crop-frame::after {
  width: 2px;
  height: 22px;
}

.home-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: url("offset-printing.jpg") center / cover no-repeat;
  color: #fff;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(17, 18, 21, 0.72);
  content: "";
}

.hero-copy {
  width: min(760px, 72%);
  padding: 76px 0;
}

.home-hero .eyebrow {
  color: #7dd7ce;
}

.home-hero h1 {
  margin: 22px 0 22px;
  font-size: 60px;
  line-height: 1.08;
}

.home-hero p {
  max-width: 610px;
  margin: 0;
  color: #e0e2e1;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-caption {
  margin-top: 24px;
  color: #c3c6c4;
  font-size: 11px;
}

.quick-quote {
  padding: 28px 0;
  background: var(--ink);
  color: #fff;
}

.quick-quote-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 0.72fr 1fr 180px;
  gap: 14px;
  align-items: end;
}

.quick-title {
  align-self: center;
}

.quick-title strong {
  display: block;
  font-size: 17px;
}

.quick-title span {
  display: block;
  margin-top: 4px;
  color: #aeb3b1;
  font-size: 11px;
}

.field label,
.field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.quick-quote .field label {
  color: #aeb3b1;
}

.control,
.quick-control {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.quick-control {
  border-color: #44474b;
  background: #292b2f;
  color: #fff;
}

.quick-total {
  min-height: 48px;
  padding-left: 16px;
  border-left: 1px solid #46494d;
}

.quick-total small {
  display: block;
  color: #aeb3b1;
  font-size: 11px;
}

.quick-total strong {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 24px;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.outcome-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.outcome-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e5e5e1;
}

.outcome-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 220ms ease, filter 220ms ease;
}

.outcome-card:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}

.outcome-copy {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.outcome-copy small {
  color: var(--process);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 750;
}

.outcome-copy h3 {
  margin: 12px 0 8px;
  font-size: 19px;
  line-height: 1.3;
}

.outcome-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.outcome-arrow {
  margin-top: auto;
  padding-top: 18px;
  color: var(--signal);
  font-size: 13px;
  font-weight: 800;
}

.calculator-story {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 74px;
  align-items: center;
}

.story-copy h2 {
  margin: 18px 0;
  font-size: 42px;
  line-height: 1.16;
}

.story-copy > p {
  margin: 0;
  color: var(--muted);
}

.benefit-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.benefit-list .icon-wrap {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 4px;
  background: var(--process-soft);
  color: var(--process);
  line-height: 0;
}

.benefit-list b {
  display: block;
  font-size: 15px;
}

.benefit-list span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.quote-preview {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.quote-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.quote-preview-head strong {
  font-size: 15px;
}

.demo-chip {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(240, 75, 50, 0.35);
  border-radius: 3px;
  background: #fff2ee;
  color: var(--signal-dark);
  font-size: 10px;
  font-weight: 800;
}

.quote-preview-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px;
}

.preview-field {
  min-height: 88px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.preview-field span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.preview-field strong {
  display: block;
  margin-top: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.preview-summary {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
}

.preview-summary span {
  color: #bfc3c1;
  font-size: 12px;
}

.preview-summary strong {
  font-family: "IBM Plex Mono", monospace;
  font-size: 25px;
  font-variant-numeric: tabular-nums;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #42454a;
  border-left: 1px solid #42454a;
}

.process-step {
  min-height: 230px;
  padding: 28px 24px;
  border-right: 1px solid #42454a;
  border-bottom: 1px solid #42454a;
}

.process-step .icon-wrap {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 4px;
  background: var(--signal);
  color: #fff;
  line-height: 0;
}

.process-step .step-no {
  display: block;
  margin-top: 34px;
  color: #81d7ce;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.process-step h3 {
  margin: 9px 0 8px;
  font-size: 19px;
}

.process-step p {
  margin: 0;
  color: #bfc3c1;
  font-size: 13px;
}

.order-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
  gap: 80px;
  align-items: center;
}

.order-proof h2 {
  margin: 18px 0;
  font-size: 42px;
  line-height: 1.16;
}

.order-proof p {
  color: var(--muted);
}

.order-preview {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.order-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.order-preview-head small {
  color: var(--muted);
}

.order-preview-head strong {
  display: block;
  margin-top: 3px;
}

.status-chip {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border-radius: 3px;
  background: var(--process-soft);
  color: var(--process);
  font-size: 11px;
  font-weight: 800;
}

.status-chip.warning {
  background: var(--warning-soft);
  color: var(--warning);
}

.status-chip.neutral {
  background: #eceeeb;
  color: #565c59;
}

.status-chip > i,
.status-chip > svg {
  width: 14px;
  height: 14px;
}

.status-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px 20px;
}

.rail-item {
  position: relative;
  min-width: 0;
  padding-top: 36px;
  text-align: center;
}

.rail-item::before {
  position: absolute;
  top: 10px;
  right: 50%;
  left: -50%;
  height: 2px;
  background: var(--line);
  content: "";
}

.rail-item:first-child::before {
  display: none;
}

.rail-dot {
  position: absolute;
  top: 2px;
  left: 50%;
  z-index: 1;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
}

.rail-item.done .rail-dot {
  border-color: var(--process);
  background: var(--process);
  color: #fff;
}

.rail-item.active .rail-dot {
  border-color: var(--signal);
  box-shadow: 0 0 0 4px rgba(240, 75, 50, 0.14);
}

.rail-item b {
  display: block;
  font-size: 12px;
}

.rail-item span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--signal);
  content: "+";
  font-size: 24px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 850px;
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.closing-band {
  padding: 72px 0;
  background: var(--signal);
  color: #fff;
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.closing-inner h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
}

.site-footer {
  padding: 54px 0;
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 54px;
}

.footer-brand p {
  max-width: 330px;
  margin: 15px 0 0;
  color: #aeb3b1;
  font-size: 12px;
}

.footer-group strong {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
}

.footer-group a,
.footer-group span {
  display: block;
  margin-top: 8px;
  color: #aeb3b1;
  font-size: 12px;
  text-decoration: none;
}

.demo-disclosure {
  margin: 0;
  padding: 15px 24px;
  background: #e9ebe7;
  color: #555b58;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.page-hero {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumb a {
  text-decoration: none;
}

.page-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: 44px;
  line-height: 1.15;
}

.page-hero p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
}

.page-hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(520px, 1.15fr);
  gap: 54px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.product-main-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.thumbnail {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
}

.thumbnail[aria-pressed="true"] {
  border: 2px solid var(--signal);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-guide {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.product-guide h2 {
  margin: 0 0 12px;
  font-size: 17px;
}

.guide-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  list-style: none;
}

.guide-list li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
}

.guide-list b {
  color: var(--ink);
}

.configurator {
  border-top: 2px solid var(--ink);
}

.config-step {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.config-step-head {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.config-step-no {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.config-step-head h2 {
  margin: 0;
  font-size: 19px;
}

.config-step-head p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.segmented button {
  min-height: 44px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.segmented button:last-child {
  border-right: 0;
}

.segmented button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
}

.dimension-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.input-unit {
  position: relative;
}

.input-unit input {
  width: 100%;
  height: 50px;
  padding: 0 56px 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-variant-numeric: tabular-nums;
}

.input-unit span {
  position: absolute;
  top: 50%;
  right: 14px;
  color: var(--muted);
  font-size: 12px;
  transform: translateY(-50%);
}

.field-help,
.field-error {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

.field-error {
  color: var(--danger);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.option-card {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  text-align: left;
}

.option-card[aria-pressed="true"],
.option-card:has(input:checked) {
  border: 2px solid var(--signal);
  background: #fff8f5;
}

.option-card b,
.option-card span {
  display: block;
}

.option-card b {
  font-size: 14px;
}

.option-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

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

.quantity-control {
  width: 180px;
  height: 48px;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.quantity-control button {
  border: 0;
  background: #fff;
  font-size: 20px;
}

.quantity-control input {
  min-width: 0;
  border: 0;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
  font-family: "IBM Plex Mono", monospace;
  text-align: center;
}

.check-row {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.check-row input {
  width: 20px;
  height: 20px;
  accent-color: var(--signal);
}

.check-row span {
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
}

.config-summary {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.summary-head {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.summary-head b {
  font-size: 14px;
}

.summary-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.summary-list dt,
.summary-list dd {
  margin: 0;
  font-size: 12px;
}

.summary-list dt {
  color: var(--muted);
}

.summary-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.summary-total span {
  color: #bcc1be;
  font-size: 12px;
}

.summary-total strong {
  font-family: "IBM Plex Mono", monospace;
  font-size: 29px;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}

.summary-actions {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8px;
  padding: 12px;
}

.mobile-price-dock {
  display: none;
}

.info-band {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.info-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.info-column .icon-wrap {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--process-soft);
  color: var(--process);
  line-height: 0;
}

.info-column h2 {
  margin: 18px 0 7px;
  font-size: 18px;
}

.info-column p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.upload-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: start;
}

.order-context {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.context-item {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.context-item:last-child {
  border-right: 0;
}

.context-item span,
.context-item strong {
  display: block;
}

.context-item span {
  color: var(--muted);
  font-size: 10px;
}

.context-item strong {
  margin-top: 4px;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-tool {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.tool-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 62px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.tool-head h2 {
  margin: 0;
  font-size: 16px;
}

.dropzone {
  margin: 20px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 2px dashed #b9bfbb;
  border-radius: 5px;
  background: #fbfbf8;
  text-align: center;
  transition: border-color 150ms ease, background 150ms ease;
}

.dropzone.dragover {
  border-color: var(--signal);
  background: #fff4ef;
}

.dropzone .icon-wrap {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--process-soft);
  color: var(--process);
  line-height: 0;
}

.dropzone h3 {
  margin: 16px 0 4px;
  font-size: 18px;
}

.dropzone p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
}

.file-list {
  display: grid;
  margin: 0 20px 20px;
  border-top: 1px solid var(--line);
}

.file-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 170px 98px 40px;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}

.file-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 4px;
  background: #eceeeb;
  color: var(--ink);
  line-height: 0;
}

.file-copy {
  min-width: 0;
}

.file-copy strong,
.file-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-copy strong {
  font-size: 13px;
}

.file-copy span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.progress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 3px;
  background: #e3e6e2;
}

.progress-bar {
  width: 0;
  height: 100%;
  background: var(--process);
  transition: width 180ms linear;
}

.file-progress span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  text-align: right;
}

.review-panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.review-panel h2 {
  margin: 0;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
}

.review-steps {
  margin: 0;
  padding: 20px;
  list-style: none;
}

.review-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding-bottom: 28px;
}

.review-steps li:last-child {
  padding-bottom: 0;
}

.review-steps li::after {
  position: absolute;
  top: 32px;
  bottom: 0;
  left: 15px;
  width: 1px;
  background: var(--line);
  content: "";
}

.review-steps li:last-child::after {
  display: none;
}

.status-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  line-height: 0;
}

.review-steps li.done .status-icon {
  border-color: var(--process);
  background: var(--process);
  color: #fff;
}

.review-steps li.active .status-icon {
  border-color: var(--signal);
  color: var(--signal);
}

.review-steps b,
.review-steps span {
  display: block;
}

.review-steps b {
  font-size: 13px;
}

.review-steps span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.policy-box {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid #f0cc9b;
  border-radius: 5px;
  background: var(--warning-soft);
}

.policy-box h3 {
  margin: 0 0 8px;
  color: var(--warning);
  font-size: 14px;
}

.policy-box p {
  margin: 0;
  color: #75521f;
  font-size: 11px;
}

.upload-success {
  margin: 0 20px 20px;
  padding: 18px;
  border: 1px solid #9dd3c9;
  border-radius: 4px;
  background: var(--process-soft);
}

.upload-success strong,
.upload-success span {
  display: block;
}

.upload-success strong {
  color: var(--process);
}

.upload-success span {
  margin-top: 4px;
  color: #386b65;
  font-size: 12px;
}

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

.order-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}

.order-tabs button {
  min-width: max-content;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.order-tabs button[aria-selected="true"] {
  border-bottom-color: var(--signal);
  color: var(--ink);
}

.order-search {
  width: 280px;
  height: 44px;
  display: grid;
  grid-template-columns: 1fr 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.order-search input {
  min-width: 0;
  padding: 0 12px;
  border: 0;
  background: transparent;
  font-size: 12px;
}

.order-search button {
  border: 0;
  background: transparent;
}

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

.order-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.order-card[hidden] {
  display: none;
}

.order-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.order-id {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.order-id strong {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
}

.order-card-head p {
  margin: 7px 0 0;
  font-size: 16px;
  font-weight: 750;
}

.order-amount {
  text-align: right;
}

.order-amount span,
.order-amount strong {
  display: block;
}

.order-amount span {
  color: var(--muted);
  font-size: 10px;
}

.order-amount strong {
  margin-top: 4px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
}

.order-card-body {
  padding: 8px 20px 20px;
}

.order-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid #efc58e;
  border-radius: 4px;
  background: var(--warning-soft);
}

.order-alert strong {
  display: block;
  color: var(--warning);
  font-size: 13px;
}

.order-alert span {
  display: block;
  margin-top: 2px;
  color: #765323;
  font-size: 11px;
}

.order-card-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}

.empty-state {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 20px;
    margin-left: 34px;
  }

  .quick-quote-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .quick-title,
  .quick-total,
  .quick-quote .button {
    grid-column: auto;
  }

  .calculator-story,
  .order-proof {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .product-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 34px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(100% - 36px, 1200px);
  }

  .desktop-nav,
  .header-actions .account-button {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .home-hero {
    min-height: 590px;
  }

  .hero-copy {
    width: min(690px, 88%);
  }

  .home-hero h1 {
    font-size: 48px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .calculator-story,
  .order-proof,
  .product-layout,
  .upload-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  .calculator-story,
  .order-proof {
    gap: 46px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .info-columns {
    grid-template-columns: 1fr 1fr;
  }

  .upload-layout {
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .demo-ribbon {
    min-height: 30px;
    font-size: 10px;
  }

  .site-header {
    top: 0;
  }

  .header-actions .cart-button {
    display: none;
  }

  .home-hero {
    min-height: 570px;
    align-items: flex-start;
    background-position: 54% center;
  }

  .home-hero::before {
    background: rgba(17, 18, 21, 0.76);
  }

  .hero-copy {
    width: 100%;
    padding: 62px 0 46px;
  }

  .home-hero h1 {
    margin-top: 18px;
    font-size: 40px;
    line-height: 1.11;
  }

  .home-hero p {
    font-size: 15px;
  }

  .hero-actions,
  .page-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quick-quote {
    padding: 24px 0;
  }

  .quick-quote-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-title,
  .quick-total,
  .quick-quote .button {
    grid-column: 1 / -1;
  }

  .quick-total {
    padding: 14px 0 0;
    border-top: 1px solid #46494d;
    border-left: 0;
  }

  .section,
  .section.compact {
    padding: 66px 0;
  }

  .section-heading h2 {
    font-size: 29px;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .outcome-card {
    min-height: 0;
  }

  .outcome-copy {
    min-height: 150px;
  }

  .story-copy h2,
  .order-proof h2 {
    font-size: 31px;
  }

  .quote-preview-body {
    grid-template-columns: 1fr;
  }

  .preview-summary {
    grid-column: auto;
  }

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

  .process-step {
    min-height: 190px;
  }

  .status-rail {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px;
  }

  .rail-item {
    min-height: 64px;
    padding: 0 0 18px 46px;
    text-align: left;
  }

  .rail-item::before {
    top: -32px;
    right: auto;
    bottom: auto;
    left: 8px;
    width: 2px;
    height: 34px;
  }

  .rail-dot {
    top: 1px;
    left: 9px;
    transform: none;
  }

  .closing-inner {
    display: block;
  }

  .closing-inner h2 {
    margin-bottom: 24px;
    font-size: 29px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .page-hero {
    padding: 42px 0 38px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .dimension-grid,
  .option-grid,
  .info-columns {
    grid-template-columns: 1fr;
  }

  body[data-page="product"] .section.compact {
    padding-top: 44px;
  }

  .product-main-image {
    aspect-ratio: 16 / 9;
  }

  .product-guide {
    display: none;
  }

  .summary-actions {
    grid-template-columns: 1fr;
  }

  body[data-page="product"] {
    padding-bottom: 78px;
  }

  .mobile-price-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    min-height: 72px;
    display: grid;
    grid-template-columns: 1fr 142px;
    gap: 10px;
    align-items: center;
    padding: 10px 16px;
    border-top: 1px solid #3f4246;
    background: var(--ink);
    color: #fff;
  }

  .mobile-price-dock span,
  .mobile-price-dock strong {
    display: block;
  }

  .mobile-price-dock span {
    color: #b9bdba;
    font-size: 10px;
  }

  .mobile-price-dock strong {
    font-family: "IBM Plex Mono", monospace;
    font-size: 20px;
  }

  .mobile-price-dock .button {
    min-height: 50px;
    padding-inline: 12px;
  }

  .order-context {
    grid-template-columns: 1fr 1fr;
  }

  .context-item:nth-child(2) {
    border-right: 0;
  }

  .context-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .file-row {
    grid-template-columns: 36px minmax(0, 1fr) 40px;
    padding: 12px 0;
  }

  .file-progress,
  .file-row .status-chip {
    grid-column: 2 / -1;
  }

  .file-row .status-chip {
    width: fit-content;
  }

  .orders-toolbar {
    display: block;
  }

  .order-tabs {
    margin-inline: -18px;
    padding-inline: 18px;
  }

  .order-search {
    width: 100%;
    margin-top: 16px;
  }

  .order-card-head {
    grid-template-columns: 1fr;
  }

  .order-amount {
    text-align: left;
  }

  .order-alert {
    display: block;
  }

  .order-alert .button {
    width: 100%;
    margin-top: 14px;
  }

  .order-card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.editor-promo-section {
  background: var(--ink);
  color: #fff;
}

.editor-promo {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(500px, 1.22fr);
  gap: 72px;
  align-items: center;
}

.editor-promo-copy h2 {
  margin: 18px 0 14px;
  font-size: 38px;
  line-height: 1.18;
}

.editor-promo-copy > p {
  margin: 0;
  color: #c4c8c5;
  font-size: 14px;
}

.editor-promo-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 26px 0;
  padding: 1px;
  background: #3a3d40;
  list-style: none;
}

.editor-promo-steps li {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--ink);
}

.editor-promo-steps span {
  color: var(--signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

.editor-promo-steps b {
  font-size: 11px;
}

.editor-promo-note {
  margin-top: 12px !important;
  font-size: 10px !important;
}

.editor-promo-visual {
  overflow: hidden;
  border: 1px solid #55595c;
  border-radius: 5px;
  background: #f7f7f2;
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.promo-editor-bar {
  min-height: 46px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.promo-editor-bar > span {
  display: flex;
  gap: 12px;
}

.promo-editor-bar svg {
  width: 16px;
  height: 16px;
}

.promo-editor-bar b,
.promo-editor-bar small {
  font-size: 10px;
}

.promo-editor-bar small {
  justify-self: end;
  color: var(--process);
}

.promo-editor-body {
  min-height: 330px;
  display: grid;
  grid-template-columns: 74px 1fr;
}

.promo-editor-body > nav {
  display: flex;
  flex-direction: column;
  background: #24262a;
  color: #c6c9c7;
}

.promo-editor-body > nav span {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-bottom: 1px solid #3c3f43;
  font-size: 9px;
}

.promo-editor-body > nav span.active {
  background: #34373b;
  color: #fff;
  box-shadow: inset 3px 0 0 var(--signal);
}

.promo-editor-body > nav svg {
  width: 19px;
  height: 19px;
}

.promo-editor-stage {
  display: grid;
  place-items: center;
  padding: 38px;
  background: #dfe2dd;
}

.promo-artboard {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  container-type: inline-size;
  overflow: hidden;
  padding: 9% 38% 8% 8%;
  background: var(--signal);
  color: #fff;
  box-shadow: 0 8px 20px rgba(23, 24, 27, 0.18);
}

.promo-safe {
  position: absolute;
  inset: 6%;
  z-index: 3;
  border: 1px dashed rgba(255, 255, 255, 0.82);
  pointer-events: none;
}

.promo-artboard > small,
.promo-artboard > strong,
.promo-artboard > em {
  position: relative;
  z-index: 2;
  display: block;
}

.promo-artboard > small {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.5cqw;
  font-weight: 700;
}

.promo-artboard > strong {
  margin-top: 2cqw;
  font-size: 5.2cqw;
  line-height: 1.03;
}

.promo-artboard > em {
  margin-top: 3cqw;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.45cqw;
  font-style: normal;
}

.promo-artboard > img {
  position: absolute;
  top: 0;
  right: 0;
  width: 32%;
  height: 100%;
  object-fit: cover;
  border-left: 7px solid var(--ink);
}

.promo-editor-status {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border-top: 1px solid var(--line);
  background: #fff;
  font-size: 10px;
}

.promo-editor-status span,
.promo-editor-status b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.promo-editor-status span {
  color: var(--process);
}

.promo-editor-status b {
  min-height: 32px;
  padding: 0 10px;
  border-radius: 3px;
  background: var(--process);
  color: #fff;
}

.promo-editor-status svg {
  width: 14px;
  height: 14px;
}

.editor-path-notice {
  min-height: 78px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid #9dd3c9;
  border-radius: 4px;
  background: var(--process-soft);
}

.editor-path-notice .icon-wrap {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--process);
  color: #fff;
  line-height: 0;
}

.editor-path-notice.design-ready {
  border-color: #efaa9d;
  background: #fff5f1;
}

.editor-path-notice.design-ready .icon-wrap {
  background: var(--signal);
}

.editor-path-notice.design-ready p {
  color: #7a433a;
}

.editor-path-notice strong,
.editor-path-notice p {
  display: block;
  margin: 0;
}

.editor-path-notice strong {
  font-size: 13px;
}

.editor-path-notice p {
  margin-top: 2px;
  color: #386b65;
  font-size: 11px;
}

@media (max-width: 860px) {
  .editor-promo {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 620px) {
  .editor-promo-copy h2 {
    font-size: 31px;
  }

  .editor-promo-steps {
    grid-template-columns: 1fr;
  }

  .promo-editor-body {
    min-height: 240px;
    grid-template-columns: 58px 1fr;
  }

  .promo-editor-body > nav span {
    min-height: 60px;
    font-size: 8px;
  }

  .promo-editor-stage {
    padding: 22px 14px;
  }

  .editor-path-notice {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .editor-path-notice .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* Self-editor proposal workspace */
.editor-container {
  width: min(1440px, calc(100% - 32px));
  margin-inline: auto;
}

.editor-intro {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.editor-intro-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.editor-intro .breadcrumb {
  margin-bottom: 12px;
}

.editor-intro h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
}

.editor-intro p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.editor-steps {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.editor-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.editor-steps li > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

.editor-steps li.done > span {
  border-color: var(--process);
  background: var(--process);
  color: #fff;
}

.editor-steps li.active {
  color: var(--ink);
}

.editor-steps li.active > span {
  border-color: var(--signal);
  background: var(--signal);
  color: #fff;
}

.editor-section {
  padding: 22px 0 42px;
  background: #eceeea;
}

.editor-workspace {
  min-height: 690px;
  display: grid;
  grid-template-areas:
    "rail toolbar toolbar toolbar"
    "rail panel stage inspector";
  grid-template-columns: 72px 236px minmax(420px, 1fr) 270px;
  grid-template-rows: 58px minmax(620px, auto);
  overflow: hidden;
  border: 1px solid #c8cbc7;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(23, 24, 27, 0.09);
}

.editor-tool-rail {
  grid-area: rail;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: #fff;
}

.editor-tool-rail button {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 4px;
  border: 0;
  border-bottom: 1px solid #33363a;
  background: transparent;
  color: #b9bdba;
  font-size: 10px;
  font-weight: 700;
}

.editor-tool-rail button[aria-pressed="true"] {
  background: #303236;
  color: #fff;
  box-shadow: inset 3px 0 0 var(--signal);
}

.editor-tool-rail button > i,
.editor-tool-rail button > svg {
  width: 21px;
  height: 21px;
  display: block;
  margin: 0;
}

.editor-topbar {
  grid-area: toolbar;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 7px 12px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.editor-command-group {
  display: flex;
  gap: 6px;
}

.editor-topbar .icon-button {
  width: 40px;
  height: 40px;
}

.editor-side-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-left: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.editor-side-tabs button {
  min-width: 64px;
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
  font-size: 11px;
  font-weight: 750;
}

.editor-side-tabs button:last-child {
  border-right: 0;
}

.editor-side-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: #fff;
}

.editor-guide-toggle {
  margin-left: auto;
  cursor: pointer;
}

.editor-guide-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.editor-guide-toggle span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.editor-guide-toggle input:checked + span {
  border-color: var(--process);
  background: var(--process-soft);
  color: var(--process);
}

.editor-guide-toggle svg {
  width: 16px;
  height: 16px;
}

.editor-zoom {
  height: 40px;
  display: grid;
  grid-template-columns: 38px 56px 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.editor-zoom button {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: #fff;
}

.editor-zoom button svg {
  width: 15px;
  height: 15px;
}

.editor-zoom output {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

.editor-context-panel {
  grid-area: panel;
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.editor-panel-head {
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}

.editor-panel-head span,
.editor-order-head span,
.editor-stage-meta > div > span {
  display: block;
  color: var(--process);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 700;
}

.editor-panel-head h2,
.editor-order-head h2 {
  margin: 4px 0 0;
  font-size: 17px;
}

.editor-context-panel > section {
  padding-top: 16px;
}

.editor-panel-help {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.editor-template-list {
  display: grid;
  gap: 10px;
}

.editor-template-card {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  text-align: left;
}

.editor-template-card[aria-pressed="true"] {
  border: 2px solid var(--signal);
  padding: 7px;
  background: #fff8f5;
}

.editor-template-card > strong {
  display: block;
  margin-top: 7px;
  font-size: 11px;
}

.template-preview {
  position: relative;
  aspect-ratio: 2 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
  background: var(--signal);
  color: #fff;
}

.template-preview > i {
  position: absolute;
  top: 0;
  right: 0;
  width: 32%;
  height: 100%;
  background: var(--ink);
  opacity: 0.9;
}

.template-preview b,
.template-preview small {
  position: relative;
  z-index: 1;
}

.template-preview b {
  max-width: 70%;
  font-size: 12px;
  line-height: 1.1;
}

.template-preview small {
  margin-top: 3px;
  font-size: 7px;
}

.template-preview.sale {
  background: var(--process);
}

.template-preview.sale > i {
  left: 0;
  width: 15%;
  background: #fff;
}

.template-preview.sale b,
.template-preview.sale small {
  margin-left: 18%;
}

.template-preview.minimal {
  background: var(--paper);
  color: var(--ink);
}

.template-preview.minimal > i {
  top: auto;
  bottom: 8px;
  left: 10px;
  width: 42%;
  height: 2px;
  background: var(--signal);
  opacity: 1;
}

.editor-field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.editor-field > span,
.editor-field-label {
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
}

.editor-field textarea {
  width: 100%;
  resize: vertical;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-size: 12px;
  line-height: 1.45;
}

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

.editor-align-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 7px 0 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.editor-align-group button {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
}

.editor-align-group button:last-child {
  border-right: 0;
}

.editor-align-group button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
}

.editor-align-group svg {
  width: 17px;
  height: 17px;
}

.editor-image-preview {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eceeea;
}

.editor-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editor-upload-label {
  width: 100%;
  margin-top: 12px;
  cursor: pointer;
}

.editor-file-name {
  display: block;
  margin-top: 8px;
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.editor-policy-note {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 7px;
  margin-top: 16px;
  padding: 10px;
  background: var(--process-soft);
  color: #386b65;
  font-size: 10px;
}

.editor-policy-note svg {
  width: 16px;
  height: 16px;
}

.editor-swatches {
  display: grid;
  grid-template-columns: repeat(4, 44px);
  gap: 8px;
  margin-top: 10px;
}

.editor-swatches button {
  width: 44px;
  height: 44px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--swatch);
}

.editor-swatches button[aria-pressed="true"] {
  outline: 3px solid var(--signal);
  outline-offset: 2px;
}

.editor-stage {
  grid-area: stage;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 18px;
  background: #e4e7e2;
}

.editor-stage-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 35px;
  margin-bottom: 10px;
}

.editor-stage-meta > div > strong {
  display: block;
  margin-top: 2px;
  font-size: 12px;
}

.editor-save-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
}

.editor-save-state svg {
  width: 14px;
  height: 14px;
}

.editor-save-state.saved {
  color: var(--process);
}

.editor-canvas-viewport {
  min-height: 460px;
  display: grid;
  place-items: center;
  overflow: auto;
  padding: 50px 30px;
  border: 1px solid #c8cbc7;
  background: #d6d9d4;
}

.editor-canvas-scale {
  width: min(100%, 720px);
  transform: scale(var(--editor-zoom, 1));
  transform-origin: center;
  transition: transform 120ms ease;
}

.editor-artboard {
  --headline-scale: 5.8;
  position: relative;
  aspect-ratio: 2 / 1;
  container-type: inline-size;
  overflow: hidden;
  border: 1px solid rgba(23, 24, 27, 0.22);
  background: var(--editor-bg);
  color: #fff;
  box-shadow: 0 10px 30px rgba(23, 24, 27, 0.22);
  user-select: none;
}

.editor-artboard.light-bg {
  color: var(--ink);
}

.editor-safe-zone {
  position: absolute;
  inset: 6%;
  z-index: 20;
  display: none;
  border: 1px dashed rgba(255, 255, 255, 0.88);
  pointer-events: none;
}

.editor-artboard.light-bg .editor-safe-zone {
  border-color: rgba(23, 24, 27, 0.7);
}

.editor-artboard.show-guides .editor-safe-zone {
  display: block;
}

.editor-bleed-label {
  position: absolute;
  top: 1.5%;
  left: 1.5%;
  z-index: 22;
  display: none;
  color: rgba(255, 255, 255, 0.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.2cqw;
  font-weight: 700;
}

.editor-artboard.light-bg .editor-bleed-label {
  color: rgba(23, 24, 27, 0.65);
}

.editor-artboard.show-guides .editor-bleed-label {
  display: block;
}

.editor-layer {
  position: absolute;
  z-index: 5;
}

.editor-layer[data-editor-layer] {
  cursor: move;
  touch-action: none;
}

.editor-layer[data-editor-layer]:focus-visible,
.editor-layer[data-editor-layer].is-selected {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.editor-artboard.light-bg .editor-layer[data-editor-layer]:focus-visible,
.editor-artboard.light-bg .editor-layer[data-editor-layer].is-selected {
  outline-color: var(--ink);
}

.editor-image-layer {
  top: 0;
  right: 0;
  width: 36%;
  height: 100%;
  overflow: hidden;
  transform: translate(var(--move-x, 0), var(--move-y, 0));
}

.editor-image-layer::after {
  position: absolute;
  inset: 0;
  border-left: 1.2cqw solid rgba(23, 24, 27, 0.82);
  content: "";
  pointer-events: none;
}

.editor-image-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editor-kicker-layer {
  top: 13%;
  left: 8%;
  color: currentColor;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.65cqw;
  font-weight: 700;
}

.editor-headline-layer {
  top: 26%;
  left: 8%;
  width: 52%;
  color: currentColor;
  font-size: calc(var(--headline-scale) * 1cqw);
  font-weight: 900;
  line-height: 1.03;
  text-align: var(--headline-align, left);
  transform: translate(var(--move-x, 0), var(--move-y, 0));
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: normal;
}

.editor-detail-layer {
  bottom: 10%;
  left: 8%;
  display: grid;
  color: currentColor;
}

.editor-detail-layer b {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.75cqw;
}

.editor-detail-layer span {
  margin-top: 0.6cqw;
  font-size: 1.35cqw;
}

.editor-back-layer {
  inset: 0;
  display: none;
  align-content: center;
  justify-items: center;
  padding: 10%;
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.editor-back-layer strong {
  font-size: 5.5cqw;
  line-height: 1.1;
}

.editor-back-layer span {
  margin-top: 2cqw;
  font-size: 1.7cqw;
}

.editor-back-layer i {
  margin-top: 4cqw;
  color: #9dd3c9;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.4cqw;
  font-style: normal;
}

.editor-artboard[data-side="back"] .editor-image-layer,
.editor-artboard[data-side="back"] .editor-kicker-layer,
.editor-artboard[data-side="back"] .editor-headline-layer,
.editor-artboard[data-side="back"] .editor-detail-layer {
  display: none;
}

.editor-artboard[data-side="back"] .editor-back-layer {
  display: grid;
}

.editor-artboard.template-sale .editor-image-layer {
  right: auto;
  left: 0;
  width: 30%;
}

.editor-artboard.template-sale .editor-image-layer::after {
  right: 0;
  left: auto;
  border-right: 1.2cqw solid #fff;
  border-left: 0;
}

.editor-artboard.template-sale .editor-kicker-layer,
.editor-artboard.template-sale .editor-headline-layer,
.editor-artboard.template-sale .editor-detail-layer {
  right: 7%;
  left: auto;
  width: 56%;
}

.editor-artboard.template-minimal .editor-image-layer {
  top: 12%;
  right: 7%;
  width: 28%;
  height: 76%;
}

.editor-artboard.template-minimal .editor-image-layer::after {
  display: none;
}

.editor-artboard.template-minimal .editor-kicker-layer {
  color: var(--signal);
}

.editor-artboard.template-minimal .editor-headline-layer,
.editor-artboard.template-minimal .editor-detail-layer {
  width: 52%;
}

.editor-corner-mark {
  position: absolute;
  z-index: 25;
  width: 2.2cqw;
  height: 2.2cqw;
  display: none;
  border-color: rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

.editor-artboard.light-bg .editor-corner-mark {
  border-color: rgba(23, 24, 27, 0.75);
}

.editor-artboard.show-guides .editor-corner-mark {
  display: block;
}

.editor-corner-mark.top-left { top: 2.5%; left: 2.5%; border-top: 1px solid; border-left: 1px solid; }
.editor-corner-mark.top-right { top: 2.5%; right: 2.5%; border-top: 1px solid; border-right: 1px solid; }
.editor-corner-mark.bottom-left { bottom: 2.5%; left: 2.5%; border-bottom: 1px solid; border-left: 1px solid; }
.editor-corner-mark.bottom-right { right: 2.5%; bottom: 2.5%; border-right: 1px solid; border-bottom: 1px solid; }

.editor-stage-help {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.editor-stage-help svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 1px;
}

.editor-inspector {
  grid-area: inspector;
  min-width: 0;
  padding: 18px;
  border-left: 1px solid var(--line);
  background: #fff;
}

.editor-order-head {
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}

.editor-order-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.editor-order-list > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.editor-order-list dt,
.editor-order-list dd {
  margin: 0;
  font-size: 10px;
}

.editor-order-list dt {
  color: var(--muted);
}

.editor-order-list dd {
  font-weight: 750;
  text-align: right;
}

.editor-preflight {
  padding: 16px 0;
}

.editor-preflight-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.editor-preflight-head > strong {
  font-size: 12px;
}

.editor-preflight ul {
  display: grid;
  gap: 10px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.editor-preflight li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  align-items: start;
}

.editor-preflight li > svg {
  width: 17px;
  height: 17px;
  color: var(--process);
}

.editor-preflight li.needs-review > svg {
  color: var(--warning);
}

.editor-preflight li b,
.editor-preflight li small {
  display: block;
}

.editor-preflight li b {
  font-size: 10px;
}

.editor-preflight li small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.editor-order-actions {
  display: grid;
  gap: 8px;
}

.editor-order-actions .button {
  width: 100%;
  min-height: 44px;
  padding-inline: 10px;
  font-size: 12px;
}

.editor-order-actions [aria-disabled="true"] {
  border-color: #b8bbb8;
  background: #b8bbb8;
  cursor: not-allowed;
}

.editor-license-note {
  margin: 14px 0 0;
  padding: 10px;
  background: #f0f1ee;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.editor-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 44px;
  margin-top: 8px;
  color: var(--process);
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
}

.editor-fallback svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

@media (max-width: 1180px) {
  .editor-workspace {
    grid-template-areas:
      "toolbar toolbar toolbar"
      "rail panel stage"
      "inspector inspector inspector";
    grid-template-columns: 70px 228px minmax(0, 1fr);
    grid-template-rows: 58px minmax(570px, auto) auto;
  }

  .editor-tool-rail {
    min-height: 570px;
  }

  .editor-inspector {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(220px, 1fr) minmax(230px, 0.9fr);
    gap: 24px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .editor-order-head,
  .editor-order-list {
    align-self: start;
  }

  .editor-order-list {
    border-bottom: 0;
    padding-top: 0;
  }

  .editor-license-note,
  .editor-fallback {
    grid-column: 3;
  }
}

@media (max-width: 860px) {
  .editor-intro-inner {
    display: block;
  }

  .editor-steps {
    margin-top: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .editor-workspace {
    grid-template-areas:
      "toolbar toolbar"
      "rail rail"
      "panel stage"
      "inspector inspector";
    grid-template-columns: 230px minmax(0, 1fr);
    grid-template-rows: auto auto minmax(560px, auto) auto;
  }

  .editor-tool-rail {
    min-height: auto;
    flex-direction: row;
  }

  .editor-tool-rail button {
    min-width: 104px;
    min-height: 60px;
    flex: 1 0 auto;
    border-right: 1px solid #33363a;
    border-bottom: 0;
  }

  .editor-tool-rail button[aria-pressed="true"] {
    box-shadow: inset 0 -3px 0 var(--signal);
  }

  .editor-canvas-viewport {
    min-height: 430px;
    padding: 40px 20px;
  }
}

@media (max-width: 620px) {
  .editor-container {
    width: calc(100% - 24px);
  }

  .editor-intro {
    padding: 24px 0;
  }

  .editor-intro h1 {
    font-size: 27px;
  }

  .editor-steps {
    gap: 16px;
  }

  .editor-steps li {
    font-size: 10px;
  }

  .editor-section {
    padding-top: 12px;
  }

  .editor-workspace {
    grid-template-areas:
      "toolbar"
      "rail"
      "panel"
      "stage"
      "inspector";
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    overflow: visible;
  }

  .editor-topbar {
    flex-wrap: wrap;
    gap: 8px;
  }

  .editor-guide-toggle {
    margin-left: 0;
  }

  .editor-zoom {
    margin-left: auto;
  }

  .editor-tool-rail {
    overflow-x: auto;
  }

  .editor-tool-rail button {
    min-width: 88px;
    min-height: 58px;
  }

  .editor-context-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .editor-template-card {
    padding: 5px;
  }

  .editor-template-card[aria-pressed="true"] {
    padding: 4px;
  }

  .editor-template-card > strong {
    font-size: 9px;
  }

  .template-preview {
    padding: 6px;
  }

  .template-preview b {
    font-size: 8px;
  }

  .template-preview small {
    display: none;
  }

  .editor-stage {
    padding: 14px;
  }

  .editor-canvas-viewport {
    min-height: 250px;
    padding: 28px 14px;
  }

  .editor-stage-help {
    line-height: 1.45;
  }

  .editor-inspector {
    display: block;
    border-top: 1px solid var(--line);
  }

  .editor-order-list {
    padding-top: 16px;
    border-bottom: 1px solid var(--line);
  }

  .editor-license-note,
  .editor-fallback {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
