:root {
  color: #242038;
  background: #f5f4f9;
  font-family: Pretendard, "Noto Sans KR", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  --ink: #242038;
  --muted: #777488;
  --line: #dedce8;
  --paper: #ffffff;
  --purple: #6657d9;
  --purple-dark: #5142bd;
  --lilac: #9b8afb;
  --soft-purple: #efedff;
  --green: #168465;
  --soft-green: #e9f7f1;
  --coral: #ff7d71;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: #f5f4f9; color: var(--ink); }
button, input, select { font: inherit; }
button, select, input[type="range"], input[type="color"] { cursor: pointer; }
button:focus-visible, input:focus-visible, select:focus-visible, a:focus-visible { outline: 3px solid rgba(102, 87, 217, .28); outline-offset: 2px; }
svg { display: block; }

.app-shell { min-height: 100vh; }
.topbar {
  height: 76px; padding: 0 max(24px, calc((100vw - 1440px) / 2)); display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, .94); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 30; backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand > span:last-child { display: grid; gap: 2px; }
.brand b { font-size: 16px; letter-spacing: -.02em; }
.brand small { font-size: 10px; color: var(--muted); font-weight: 650; letter-spacing: .04em; }
.brand-mark { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 11px; background: var(--ink); transform: rotate(-8deg); }
.brand-mark span { width: 14px; height: 19px; border-radius: 50% 50% 46% 46%; background: var(--lilac); position: relative; }
.brand-mark span::after { content: ""; width: 5px; height: 5px; background: #fff3d6; border-radius: 50%; position: absolute; right: 1px; top: 3px; }
.brand-mark.small { width: 28px; height: 28px; border-radius: 9px; }
.brand-mark.small span { transform: scale(.75); }
.top-actions { display: flex; align-items: center; gap: 10px; }
.project-status { font-size: 12px; color: #4e4b5d; padding-right: 10px; }
.project-status i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #28a67d; margin-right: 5px; box-shadow: 0 0 0 4px rgba(40,166,125,.11); }
.button { border: 1px solid transparent; border-radius: 11px; min-height: 43px; padding: 0 17px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 750; font-size: 13px; transition: .18s ease; }
.button:hover { transform: translateY(-1px); box-shadow: 0 7px 18px rgba(42, 35, 87, .11); }
.button:disabled { cursor: wait; opacity: .7; transform: none; }
.button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button.primary { color: white; background: var(--purple); border-color: var(--purple); }
.button.primary:hover { background: var(--purple-dark); }
.button.secondary { color: #504d5e; background: white; border-color: var(--line); }
.button.compact { min-height: 38px; border-radius: 9px; padding-inline: 14px; font-size: 12px; }

main { max-width: 1440px; margin: auto; padding: 0 24px 90px; }
.hero { min-height: 306px; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; padding: 60px 4px 40px; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--purple); font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.eyebrow .dot { width: 3px; height: 3px; border-radius: 50%; background: #bbb7ca; }
.hero h1 { margin: 15px 0 14px; font-size: clamp(36px, 4vw, 59px); line-height: 1.12; letter-spacing: -.055em; font-weight: 850; }
.hero h1 em { color: var(--purple); font-style: normal; }
.hero p { max-width: 700px; margin: 0; color: #666273; font-size: 15px; line-height: 1.7; letter-spacing: -.01em; }
.hero-summary { min-width: 385px; display: grid; grid-template-columns: repeat(3, 1fr); padding: 19px 0; border-block: 1px solid var(--line); }
.hero-summary div { padding: 0 22px; border-right: 1px solid var(--line); display: grid; gap: 7px; }
.hero-summary div:first-child { padding-left: 0; }
.hero-summary div:last-child { border-right: 0; padding-right: 0; }
.hero-summary span { font-size: 10px; color: var(--muted); font-weight: 700; }
.hero-summary strong { font-size: 14px; white-space: nowrap; }
.notice { min-height: 54px; border: 1px solid #dcd7fc; background: #f1efff; border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; gap: 11px; color: #57516c; font-size: 12px; }
.notice svg { flex: 0 0 18px; width: 18px; fill: none; stroke: var(--purple); stroke-width: 1.8; stroke-linecap: round; }
.notice p { margin: 0; flex: 1; }
.notice strong { color: var(--ink); }
.notice > span { white-space: nowrap; font-size: 10px; font-weight: 750; color: #6b5fc6; border: 1px solid #d8d1ff; border-radius: 999px; padding: 5px 9px; background: rgba(255,255,255,.55); }

.workspace, .validation-section, .palette-section { margin-top: 70px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; }
.section-heading > div:first-child { display: flex; gap: 14px; align-items: flex-start; }
.section-heading h2 { margin: 0 0 6px; font-size: 24px; line-height: 1; letter-spacing: -.035em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 12px; }
.step-number { width: 29px; height: 29px; border-radius: 8px; background: var(--ink); color: white; display: grid; place-items: center; font-size: 10px; font-weight: 800; }
.run-button { background: var(--ink); color: white; }
.run-button.running svg { animation: pulse .7s ease-in-out infinite alternate; }
@keyframes pulse { to { transform: scale(1.18); color: var(--lilac); } }

.workspace-grid { display: grid; grid-template-columns: minmax(300px, 1fr) 46px minmax(300px, 1fr) 244px; gap: 14px; align-items: stretch; }
.canvas-card, .inspector, .detail-card { background: var(--paper); border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 5px 22px rgba(44, 37, 77, .035); }
.canvas-card { padding: 15px; min-width: 0; }
.card-head { min-height: 46px; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.card-head h3, .inspector h3, .detail-head h3 { margin: 3px 0 0; font-size: 14px; letter-spacing: -.02em; }
.card-label { display: block; color: #9995a7; font-size: 8px; font-weight: 850; letter-spacing: .14em; }
.card-label.accent { color: var(--purple); }
.file-pill { border: 1px solid var(--line); border-radius: 999px; padding: 5px 8px; color: var(--muted); font-size: 9px; font-weight: 700; }
.artboard { aspect-ratio: 1; position: relative; overflow: hidden; background-color: #faf9fc; background-image: linear-gradient(45deg, #eeeef3 25%, transparent 25%), linear-gradient(-45deg, #eeeef3 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #eeeef3 75%), linear-gradient(-45deg, transparent 75%, #eeeef3 75%); background-size: 18px 18px; background-position: 0 0, 0 9px, 9px -9px, -9px 0; border: 1px solid #e7e5ec; border-radius: 10px; }
.artboard canvas, #vector-art, #vector-art > svg, #overlay-art, #overlay-art > svg, #control-points { width: 100%; height: 100%; display: block; }
.raster-board canvas { filter: saturate(.99); }
.vector-board { background-color: #fbfbfd; }
#vector-art { position: relative; z-index: 2; }
#vector-art path { cursor: pointer; transition: opacity .15s, filter .15s; }
#vector-art path:hover { filter: brightness(1.06); }
#vector-art .selected-path { filter: drop-shadow(0 0 5px rgba(102,87,217,.65)); }
#overlay-art { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
#control-points { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
#control-points g { pointer-events: auto; cursor: crosshair; }
#control-points circle { fill: white; stroke: var(--purple); stroke-width: 2.5; vector-effect: non-scaling-stroke; }
#control-points .selected-point circle { fill: var(--purple); stroke: white; stroke-width: 3.5; }
#control-points text { fill: var(--purple-dark); font-size: 10px; font-weight: 800; paint-order: stroke; stroke: white; stroke-width: 3px; }
.overlay-mode #vector-art { opacity: .58; }
.before-shapes path { fill: none; stroke: #ef5a78; stroke-width: 2.4; stroke-dasharray: 7 5; vector-effect: non-scaling-stroke; }
.landmark-lines line { stroke: #7164e4; stroke-width: 1.5; vector-effect: non-scaling-stroke; }
.landmark-lines circle { fill: #ef5a78; stroke: white; stroke-width: 2; vector-effect: non-scaling-stroke; }
.landmark-lines .after-point { fill: #7164e4; }
.overlay-legend { position: absolute; left: 10px; bottom: 10px; display: flex; gap: 10px; border: 1px solid var(--line); background: rgba(255,255,255,.91); border-radius: 7px; padding: 6px 8px; font-size: 8px; font-weight: 750; }
.overlay-legend span { display: flex; align-items: center; gap: 4px; }
.overlay-legend i { width: 12px; border-top: 2px dashed #ef5a78; }
.overlay-legend span:last-child i { border-top: 3px solid #7164e4; }
.corner-tag { position: absolute; z-index: 8; right: 8px; bottom: 8px; padding: 5px 7px; border-radius: 5px; background: rgba(36,32,56,.75); color: white; font-size: 8px; font-weight: 800; }
.corner-tag.vector { background: rgba(102,87,217,.9); }
.file-meta { display: flex; align-items: center; justify-content: space-between; min-height: 35px; padding-top: 10px; color: #777383; font-size: 9px; }
.file-meta > span { display: flex; align-items: center; gap: 6px; }
.file-meta i { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.file-meta i.purple { background: var(--purple); }.file-meta i.green { background: #24a87c; }
.text-button { border: 0; background: transparent; color: var(--purple); font-size: 9px; font-weight: 800; padding: 5px; }
.view-switch { border: 1px solid var(--line); border-radius: 7px; background: #f5f4f8; padding: 2px; display: flex; }
.view-switch button { border: 0; border-radius: 5px; color: var(--muted); background: transparent; padding: 5px 8px; font-size: 8px; font-weight: 750; }
.view-switch button.active { color: var(--ink); background: white; box-shadow: 0 1px 4px rgba(35,32,58,.1); }
.flow-arrow { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; color: #aba7b7; }
.flow-arrow span { font-size: 7px; letter-spacing: .15em; font-weight: 850; }
.flow-arrow svg { width: 24px; fill: none; stroke: #aaa5b8; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.inspector { padding: 16px; }
.inspector-head { padding-bottom: 14px; border-bottom: 1px solid #eceaf0; margin-bottom: 14px; }
.field-label, .color-row label > span:first-child, .range-field > span:first-child, .nudge-field > span:first-child { display: block; color: #777383; font-size: 9px; font-weight: 750; margin-bottom: 7px; }
.inspector select { width: 100%; height: 37px; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); background: white; padding: 0 9px; font-size: 10px; font-weight: 700; }
.color-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.color-control { min-height: 36px; display: flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 8px; padding: 5px 7px; }
.color-control input { border: 0; padding: 0; width: 22px; height: 22px; border-radius: 5px; background: transparent; }
.color-control input::-webkit-color-swatch-wrapper { padding: 0; }.color-control input::-webkit-color-swatch { border: 0; border-radius: 4px; }
.color-control code { color: #5f5b6c; font-size: 8px; }
.range-field { display: block; margin-top: 16px; }
.range-field > span { display: flex; align-items: center; justify-content: space-between; }
.range-field output { font-size: 9px; color: var(--purple); font-weight: 750; }
.range-field input { appearance: none; width: 100%; height: 4px; background: #dfdce9; border-radius: 4px; }
.range-field input::-webkit-slider-thumb { appearance: none; width: 15px; height: 15px; border-radius: 50%; background: var(--purple); border: 3px solid white; box-shadow: 0 0 0 1px var(--purple); }
.nudge-field { margin-top: 17px; }
.nudge-controls { display: grid; grid-template-columns: 29px 29px 1fr 29px 29px; gap: 4px; align-items: center; }
.nudge-controls button { width: 29px; height: 29px; border: 1px solid var(--line); border-radius: 6px; background: white; color: #5c5868; font-size: 12px; }
.nudge-controls button:hover { border-color: var(--lilac); color: var(--purple); background: var(--soft-purple); }
.nudge-controls output { text-align: center; color: #777383; font-size: 8px; }
.toggle-row { margin-top: 17px; padding: 12px 0; display: flex; align-items: center; justify-content: space-between; border-block: 1px solid #eceaf0; }
.toggle-row span { display: grid; gap: 3px; }.toggle-row b { font-size: 9px; }.toggle-row small { color: #9995a7; font-size: 8px; }
.toggle-row input { position: absolute; opacity: 0; }
.toggle-row i { width: 34px; height: 19px; border-radius: 999px; background: #d8d5e1; position: relative; transition: .2s; }
.toggle-row i::after { content: ""; width: 15px; height: 15px; border-radius: 50%; background: white; position: absolute; left: 2px; top: 2px; transition: .2s; box-shadow: 0 1px 4px rgba(0,0,0,.15); }
.toggle-row input:checked + i { background: var(--purple); }.toggle-row input:checked + i::after { left: 17px; }
.point-editor { margin-top: 14px; padding: 12px; border: 1px solid #ded9fa; border-radius: 9px; background: var(--soft-purple); }
.point-editor[hidden] { display: none; }
.point-editor select { height: 33px; }
.point-coordinate-row { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 8px; }
.point-coordinate-row label { color: #777383; font-size: 8px; font-weight: 750; }
.point-coordinate-row input { width: 100%; height: 32px; margin-top: 5px; border: 1px solid #d8d3ed; border-radius: 6px; background: white; color: var(--ink); padding: 0 7px; font-size: 9px; }
.inspector-reset { width: 100%; height: 34px; margin-top: 13px; border: 1px solid var(--line); border-radius: 7px; background: #faf9fc; color: #625e6d; font-size: 9px; font-weight: 750; }
.inspector-reset:hover { color: var(--purple); border-color: #cfc8ff; }
.inspector-hint { display: flex; align-items: flex-start; gap: 5px; color: #9995a7; font-size: 8px; line-height: 1.45; margin: 12px 0 0; }
.inspector-hint svg { width: 12px; flex: 0 0 12px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }

.validation-heading { align-items: center; }
.validation-actions { display: flex; align-items: center; gap: 12px; }
.validation-actions > span { color: #8b8796; font-size: 10px; }
.validation-actions > span.dirty { color: #ae6f14; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.metric-card { min-height: 148px; padding: 17px; background: white; border: 1px solid var(--line); border-radius: 13px; }
.metric-top { display: flex; justify-content: space-between; align-items: center; color: #777383; font-size: 10px; font-weight: 750; }
.metric-top i { width: 18px; height: 18px; border-radius: 50%; background: var(--soft-green); position: relative; }
.metric-top i::after { content: ""; position: absolute; width: 7px; height: 4px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); left: 5px; top: 5px; }
.metric-card > strong { display: block; margin-top: 12px; font-size: 27px; letter-spacing: -.04em; }
.metric-card p { margin: 5px 0 15px; color: #9995a7; font-size: 9px; }.metric-card p b { color: var(--green); margin-left: 4px; }
.metric-bar { height: 3px; border-radius: 3px; background: #eceaf0; overflow: hidden; }.metric-bar span { display: block; height: 100%; background: var(--green); border-radius: inherit; }
.metric-card.failed { border-color: #f0c7c3; }.metric-card.failed .metric-top i { background: #fff0ef; }.metric-card.failed .metric-top i::after { width: 7px; height: 7px; border: 0; background: linear-gradient(45deg, transparent 43%, #d8574b 43%, #d8574b 57%, transparent 57%), linear-gradient(-45deg, transparent 43%, #d8574b 43%, #d8574b 57%, transparent 57%); top: 5px; }.metric-card.failed p b { color: #c65349; }.metric-card.failed .metric-bar span { background: #d8665b; }
.metric-card.loading { opacity: .65; }.metric-card.loading .metric-top i::after { border: 0; width: 8px; height: 8px; border-radius: 50%; background: #c9c5d3; top: 5px; left: 5px; }
.validation-detail-grid { display: grid; grid-template-columns: 1.65fr 1fr; gap: 12px; margin-top: 12px; }
.detail-card { padding: 19px; }
.detail-head { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid #eceaf0; }
.pass-pill { color: var(--green); background: var(--soft-green); border-radius: 999px; padding: 6px 9px; font-size: 8px; font-weight: 800; }
.pass-pill.failed { color: #bd5048; background: #fff0ef; }
.correction-visual { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 12px 0 3px; }
.correction-visual svg { width: 100%; max-height: 126px; }
.correction-visual .before-line { fill: none; stroke: #ee7086; stroke-width: 3; stroke-dasharray: 7 5; }.correction-visual .after-line { fill: none; stroke: var(--purple); stroke-width: 4; }.correction-visual .measure-line { stroke: #bbb6c9; stroke-width: 1; stroke-dasharray: 3; }.correction-visual circle { fill: var(--purple); }.correction-visual text { font-size: 12px; fill: #777383; font-weight: 700; }
.legend { display: grid; gap: 8px; min-width: 62px; color: #777383; font-size: 8px; }.legend span { display: flex; gap: 5px; align-items: center; }.legend i { width: 14px; border-top: 2px dashed #ee7086; }.legend i.after { border-top: 3px solid var(--purple); }
.correction-table { border-top: 1px solid #eceaf0; }
.correction-table > div { min-height: 47px; display: grid; grid-template-columns: 1fr 55px 20px 55px; align-items: center; gap: 8px; border-bottom: 1px solid #f0eef3; }
.correction-table span { font-size: 9px; font-weight: 750; }.correction-table small { display: block; margin-top: 3px; color: #9995a7; font-size: 8px; font-weight: 500; }.correction-table code { color: #9995a7; font-size: 9px; }.correction-table strong { color: var(--purple); font-size: 10px; }.correction-table svg { width: 13px; fill: none; stroke: #b8b4c2; stroke-width: 1.7; }
.path-stat { display: flex; align-items: center; gap: 13px; padding: 18px 3px; border-bottom: 1px solid #eceaf0; }.path-stat strong { color: var(--purple); font-size: 35px; line-height: 1; }.path-stat span { font-size: 10px; font-weight: 750; }.path-stat small { display: block; margin-top: 4px; color: #9995a7; font-size: 8px; font-weight: 500; }
.path-card ul { list-style: none; padding: 5px 0 0; margin: 0; }.path-card li { min-height: 34px; display: grid; grid-template-columns: 17px 1fr auto; align-items: center; gap: 7px; border-bottom: 1px solid #f2f0f4; font-size: 9px; }.path-card li i { width: 14px; height: 14px; border-radius: 50%; background: var(--soft-green); position: relative; }.path-card li i::after { content: ""; width: 5px; height: 3px; border-left: 1.5px solid var(--green); border-bottom: 1.5px solid var(--green); transform: rotate(-45deg); position: absolute; left: 4px; top: 4px; }.path-card li b { color: var(--green); font-size: 8px; }.path-card li.failed i { background: #fff0ef; }.path-card li.failed i::after { border: 0; width: 6px; height: 6px; background: #d8574b; border-radius: 50%; }.path-card li.failed b { color: #c65349; }

.compact-heading { margin-bottom: 18px; }
.palette-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.swatch { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px 12px; }
.swatch > div { height: 77px; margin: -10px -12px 10px; background: var(--swatch); position: relative; }
.swatch button { position: absolute; right: 8px; top: 8px; opacity: 0; border: 1px solid rgba(255,255,255,.45); background: rgba(36,32,56,.5); color: white; font-size: 8px; padding: 4px 6px; border-radius: 5px; transition: .15s; }.swatch:hover button, .swatch button:focus { opacity: 1; }
.swatch h3 { display: inline; margin: 0; font-size: 10px; }.swatch code { float: right; color: #625e6c; font-size: 9px; }.swatch p { margin: 7px 0 0; color: #918d9d; font-size: 8px; }

footer { min-height: 76px; padding: 20px max(24px, calc((100vw - 1440px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--ink); color: white; }
footer > div { display: flex; align-items: center; gap: 9px; font-size: 12px; } footer p { margin: 0; color: #aaa6b8; font-size: 9px; text-align: right; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 50; transform: translate(-50%, 18px); padding: 11px 16px; border-radius: 9px; background: rgba(36,32,56,.94); color: white; font-size: 11px; box-shadow: 0 10px 28px rgba(28,24,46,.23); opacity: 0; pointer-events: none; transition: .22s ease; }.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1180px) {
  .workspace-grid { grid-template-columns: minmax(290px, 1fr) 38px minmax(290px, 1fr); }
  .inspector { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 1fr 1fr 1.2fr; gap: 14px; align-items: end; }
  .inspector-head { grid-column: 1 / -1; margin-bottom: 0; }.inspector .field-label { grid-column: 1; }.inspector select { grid-column: 1; }.inspector .field-label + select { margin-top: -14px; }
  .color-row, .range-field, .nudge-field { margin-top: 0; }.toggle-row { margin: 0; border: 0; align-self: center; }.inspector-reset { margin: 0; }.inspector-hint { display: none; }
}

@media (max-width: 800px) {
  .topbar { height: 68px; }.project-status, #reset-button { display: none; }
  main { padding-inline: 16px; }
  .hero { min-height: 0; padding-top: 44px; display: block; }.hero-summary { min-width: 0; margin-top: 35px; }
  .notice > span { display: none; }
  .workspace, .validation-section, .palette-section { margin-top: 52px; }
  .section-heading { align-items: flex-start; gap: 16px; }.section-heading h2 { font-size: 20px; }.run-button { min-height: 39px; padding: 0 12px; font-size: 11px; }
  .workspace-grid { grid-template-columns: 1fr; }.flow-arrow { height: 30px; flex-direction: row; }.flow-arrow svg { transform: rotate(90deg); }
  .inspector { grid-column: auto; display: block; }.inspector .field-label + select { margin-top: 0; }.color-row, .range-field, .nudge-field { margin-top: 16px; }.toggle-row { margin-top: 17px; border-block: 1px solid #eceaf0; }.inspector-reset { margin-top: 13px; }
  .metric-grid { grid-template-columns: 1fr 1fr; }.validation-detail-grid { grid-template-columns: 1fr; }.palette-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
  .brand small { display: none; }.top-actions .button.primary { padding-inline: 11px; }.top-actions .button.primary svg { display: none; }
  .hero h1 { font-size: 37px; }.hero p { font-size: 13px; }.hero-summary { grid-template-columns: 1fr; padding: 0; }.hero-summary div { padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; }.hero-summary div:last-child { border-bottom: 0; }
  .notice { align-items: flex-start; }.notice p { line-height: 1.5; }
  .section-heading { display: grid; }.run-button { width: 100%; }.validation-heading { display: grid; }.validation-actions { justify-content: space-between; }
  .metric-grid { grid-template-columns: 1fr; }.metric-card { min-height: 130px; }.correction-visual { grid-template-columns: 1fr; }.legend { display: flex; }.correction-table > div { grid-template-columns: 1fr 48px 14px 48px; }
  .palette-grid { grid-template-columns: 1fr 1fr; }
  footer { display: grid; } footer p { text-align: left; line-height: 1.5; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; } }
