:root {
  color-scheme: dark;
  --canvas: #101419;
  --canvas-raised: #151b22;
  --surface: #1a2129;
  --surface-raised: #202936;
  --surface-hover: #263242;
  --border: #2b3542;
  --border-strong: #3a4757;
  --text: #edf2f7;
  --text-muted: #94a0ae;
  --text-faint: #657181;
  --accent: #2f88ff;
  --accent-soft: rgba(47, 136, 255, 0.14);
  --success: #53d486;
  --warning: #f5b84b;
  --danger: #ff6a70;
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  background: var(--canvas);
}

* { box-sizing: border-box; }

html,
body { min-height: 100%; margin: 0; }

body {
  background: var(--canvas);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

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

button { cursor: pointer; }

.icon { width: 16px; height: 16px; flex: 0 0 auto; }

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

a { color: inherit; }

.workbench {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 54px 53px minmax(0, 1fr);
  background: var(--canvas);
}

.window-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
  background: #151a21;
}

.window-identity,
.window-status,
.workspace-tabs,
.workspace-tab,
.tab-button-content,
.tab-icon,
.sidebar-footer,
.sidebar-nav-button,
.app-list-row,
.app-list-row-main,
.browser-toolbar,
.chat-agent-row,
.chat-message-meta,
.chat-composer-actions,
.inspector-heading,
.detail-meta-row,
.status-line { display: flex; align-items: center; }

.window-identity { gap: 12px; min-width: 0; }

.window-controls { display: inline-flex; gap: 7px; }
.window-controls i { width: 12px; height: 12px; border-radius: 999px; display: inline-block; }
.window-controls i:nth-child(1) { background: #ff6259; }
.window-controls i:nth-child(2) { background: #f8be4f; }
.window-controls i:nth-child(3) { background: #4ece73; }

.product-mark {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(104, 174, 255, 0.55);
  border-radius: 6px;
  color: #beddff;
  font-weight: 750;
  font-size: 12px;
  background: rgba(47, 136, 255, 0.13);
}

.product-name { font-weight: 670; letter-spacing: -0.012em; white-space: nowrap; }

.window-status {
  gap: 7px;
  color: var(--text-muted);
  font-size: 12px;
  white-space: nowrap;
}

.window-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(83, 212, 134, 0.09);
}

.window-status.is-warning::before { background: var(--warning); box-shadow: 0 0 0 4px rgba(245, 184, 75, 0.1); }
.window-status.is-error::before { background: var(--danger); box-shadow: 0 0 0 4px rgba(255, 106, 112, 0.1); }

.workspace-tabs-region {
  display: flex;
  min-width: 0;
  background: #141a20;
  border-bottom: 1px solid var(--border);
}

.workspace-tabs { min-width: 0; flex: 1; overflow-x: auto; scrollbar-width: thin; }

.workspace-tab {
  position: relative;
  min-width: 152px;
  max-width: 240px;
  height: 52px;
  gap: 8px;
  padding: 0 10px 0 15px;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  background: transparent;
  transition: background 140ms ease, color 140ms ease;
}

.workspace-tab-select {
  display: flex;
  align-items: center;
  min-width: 0;
  height: 100%;
  flex: 1;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  text-align: left;
}

.workspace-tab:hover { color: var(--text); background: rgba(255, 255, 255, 0.025); }
.workspace-tab.is-active { color: var(--text); background: var(--canvas-raised); }
.workspace-tab.is-active::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--accent);
}

.tab-button-content { min-width: 0; flex: 1; gap: 8px; }
.tab-icon { justify-content: center; width: 18px; color: #a9bdce; font-size: 15px; flex: 0 0 auto; }
.tab-title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; font-weight: 590; }

.tab-close,
.new-tab-button,
.icon-button {
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  background: transparent;
}

.tab-close { width: 22px; height: 22px; font-size: 16px; line-height: 1; }
.tab-close:hover,
.icon-button:hover { color: var(--text); background: var(--surface-hover); }

.new-tab-button {
  width: 53px;
  flex: 0 0 53px;
  border-left: 1px solid var(--border);
  border-radius: 0;
  font-size: 24px;
  font-weight: 300;
}

.new-tab-button:hover { color: var(--text); background: var(--surface-hover); }

.workbench-layout {
  display: grid;
  grid-template-columns: 246px minmax(0, 1fr) 322px;
  min-height: 0;
}

.workbench-sidebar,
.workbench-inspector {
  min-height: 0;
  overflow-y: auto;
  background: #141a20;
}

.workbench-sidebar { border-right: 1px solid var(--border); padding: 16px 12px 12px; display: flex; flex-direction: column; }
.workbench-main { min-width: 0; min-height: 0; overflow: auto; background: var(--canvas); }
.workbench-inspector { border-left: 1px solid var(--border); padding: 20px 18px; }

.sidebar-nav { display: grid; gap: 4px; }

.sidebar-nav-button {
  width: 100%;
  gap: 10px;
  min-height: 38px;
  padding: 0 10px;
  color: var(--text-muted);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  text-align: left;
  background: transparent;
}

.sidebar-nav-button:hover { color: var(--text); background: var(--surface); }
.sidebar-nav-button.is-active { color: #cfe5ff; border-color: rgba(47, 136, 255, 0.24); background: var(--accent-soft); }
.sidebar-nav-icon { width: 18px; text-align: center; color: #a9bdce; font-size: 15px; }

.sidebar-section { min-height: 0; margin-top: 25px; padding-top: 18px; border-top: 1px solid var(--border); }
.sidebar-section-heading { margin: 0 9px 9px; color: var(--text-faint); font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.sidebar-projects { display: grid; gap: 2px; max-height: 46vh; overflow-y: auto; padding-right: 2px; }

.sidebar-project-button {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  width: 100%;
  padding: 8px 9px;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  background: transparent;
  text-align: left;
}

.sidebar-project-button:hover { color: var(--text); background: var(--surface); }
.project-state-dot { flex: 0 0 auto; width: 7px; height: 7px; margin-top: 6px; border-radius: 50%; background: var(--text-faint); }
.project-state-dot.is-active { background: var(--success); }
.sidebar-project-copy { min-width: 0; }
.sidebar-project-name { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; font-weight: 590; }
.sidebar-project-role { display: block; margin-top: 1px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--text-faint); font-size: 10px; }

.sidebar-footer { gap: 8px; margin-top: auto; padding: 13px 9px 0; color: var(--text-faint); font-size: 11px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }

.page-shell { min-height: 100%; padding: 30px; }
.page-header { max-width: 1120px; margin: 0 auto 27px; }
.page-title { margin: 0; font-size: clamp(24px, 3vw, 32px); line-height: 1.2; letter-spacing: -0.04em; }
.page-lede { max-width: 690px; margin: 10px 0 0; color: var(--text-muted); font-size: 14px; }

.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .78fr); gap: 20px; max-width: 1120px; margin: 0 auto; }
.surface-panel { border: 1px solid var(--border); border-radius: var(--radius); background: var(--canvas-raised); box-shadow: var(--shadow); }
.surface-panel-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 20px 20px 0; }
.surface-panel-title { margin: 0; font-size: 15px; letter-spacing: -0.015em; }
.surface-panel-description { margin: 6px 0 0; color: var(--text-muted); font-size: 12px; }

.summary-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 20px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--border); }
.metric { min-width: 0; padding: 19px 20px; background: var(--canvas-raised); }
.metric-label { display: block; color: var(--text-faint); font-size: 11px; }
.metric-value { display: block; margin-top: 7px; color: var(--text); font-size: 25px; font-weight: 720; letter-spacing: -0.04em; }
.metric-value.is-success { color: var(--success); }

.dashboard-actions { display: flex; flex-wrap: wrap; gap: 10px; padding: 20px; }
.primary-button,
.secondary-button,
.quiet-button,
.danger-button {
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 620;
}

.primary-button { border: 1px solid #3c9aff; color: #fff; background: var(--accent); }
.primary-button:hover { background: #56a2ff; }
.secondary-button { border: 1px solid var(--border-strong); color: var(--text); background: var(--surface); }
.secondary-button:hover { background: var(--surface-hover); }
.quiet-button { border: 0; color: var(--text-muted); background: transparent; }
.quiet-button:hover { color: var(--text); background: var(--surface-hover); }
.danger-button { border: 1px solid rgba(255, 106, 112, .35); color: #ffc1c4; background: rgba(255, 106, 112, .08); }

.readiness-list { display: grid; gap: 2px; padding: 12px; }
.readiness-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 9px; border-radius: var(--radius-sm); }
.readiness-row:hover { background: var(--surface); }
.readiness-name { color: var(--text-muted); font-size: 12px; }
.status-chip { display: inline-flex; align-items: center; gap: 6px; color: var(--success); font-size: 11px; font-weight: 650; }
.status-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-chip.is-failed { color: var(--danger); }

.apps-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding: 20px; }
.app-card { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; min-height: 130px; padding: 16px; border: 1px solid var(--border); border-radius: var(--radius); color: inherit; background: var(--surface); text-align: left; }
.app-card:hover { border-color: rgba(47, 136, 255, .55); background: var(--surface-hover); }
.app-card-icon { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 7px; color: #bedcff; background: var(--accent-soft); }
.app-card-title { font-size: 13px; font-weight: 690; }
.app-card-description { margin: 0; color: var(--text-muted); font-size: 11px; line-height: 1.55; }

.launcher-shell { max-width: 1120px; margin: 0 auto; }
.launcher-toolbar { display: flex; gap: 10px; align-items: center; margin: 0 0 15px; }
.search-input { width: 100%; min-height: 37px; padding: 0 11px; color: var(--text); border: 1px solid var(--border-strong); border-radius: var(--radius-sm); outline: none; background: var(--surface); }
.search-input::placeholder { color: var(--text-faint); }
.search-input:focus { border-color: var(--accent); }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.project-launch-card { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; min-height: 142px; padding: 15px; border: 1px solid var(--border); border-radius: var(--radius); color: inherit; background: var(--canvas-raised); text-align: left; }
.project-launch-card:hover { border-color: var(--border-strong); background: var(--surface); }
.project-launch-card-title { overflow: hidden; max-width: 100%; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; font-weight: 670; }
.project-launch-card-role { display: -webkit-box; overflow: hidden; margin: 7px 0 auto; color: var(--text-muted); font-size: 11px; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.project-launch-card-footer { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-top: 13px; color: var(--text-faint); font-size: 10px; }
.reference-only { color: var(--warning); }

.chat-shell { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; height: 100%; min-height: 610px; max-width: 1080px; margin: 0 auto; }
.chat-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 23px 28px 17px; border-bottom: 1px solid var(--border); }
.chat-heading { display: flex; align-items: center; gap: 10px; min-width: 0; }
.chat-heading-icon { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid rgba(47, 136, 255, .35); border-radius: 8px; color: #bcdcff; background: var(--accent-soft); }
.chat-heading h1 { margin: 0; font-size: 17px; letter-spacing: -0.02em; }
.chat-heading p { margin: 2px 0 0; color: var(--text-faint); font-size: 11px; }
.chat-agent-row { gap: 8px; }
.agent-select { max-width: 210px; min-height: 33px; padding: 0 27px 0 9px; color: var(--text-muted); border: 1px solid var(--border-strong); border-radius: var(--radius-sm); outline: none; background: var(--surface); font-size: 11px; }
.agent-select:focus { border-color: var(--accent); }

.chat-thread { overflow-y: auto; padding: 26px 28px 20px; }
.chat-message { display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 11px; max-width: 840px; margin: 0 0 19px; }
.chat-message.is-user { margin-left: auto; grid-template-columns: minmax(0, 1fr) 30px; }
.chat-message.is-user .message-avatar { grid-column: 2; }
.chat-message.is-user .message-content { grid-column: 1; grid-row: 1; align-items: flex-end; }
.message-avatar { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--border-strong); border-radius: 50%; color: #c6d2dd; background: var(--surface); font-size: 12px; }
.chat-message.is-assistant .message-avatar { color: #c5e1ff; border-color: rgba(47, 136, 255, .42); background: var(--accent-soft); }
.message-content { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
.chat-message-meta { gap: 7px; margin: 1px 0 6px; color: var(--text-faint); font-size: 10px; }
.chat-message.is-user .chat-message-meta { justify-content: flex-end; }
.message-bubble { max-width: 100%; padding: 13px 14px; border: 1px solid var(--border); border-radius: 4px 9px 9px 9px; color: #dce4eb; background: var(--surface); white-space: pre-wrap; word-break: break-word; }
.chat-message.is-user .message-bubble { border-color: rgba(47, 136, 255, .34); border-radius: 9px 4px 9px 9px; background: rgba(47, 136, 255, .13); }
.message-warning { margin-top: 7px; color: var(--warning); font-size: 11px; }
.evidence-list { display: grid; gap: 5px; width: 100%; margin: 8px 0 0; }
.evidence-item { overflow: hidden; padding: 8px 9px; border-left: 2px solid var(--accent); color: var(--text-muted); background: rgba(47, 136, 255, .07); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.typing-indicator { display: inline-flex; gap: 4px; align-items: center; min-height: 16px; padding: 8px 11px; border: 1px solid var(--border); border-radius: 8px; color: var(--text-faint); background: var(--surface); }
.typing-indicator span { width: 5px; height: 5px; border-radius: 50%; background: currentColor; animation: typing 1.2s ease-in-out infinite; }
.typing-indicator span:nth-child(2) { animation-delay: .14s; }
.typing-indicator span:nth-child(3) { animation-delay: .28s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-3px); opacity: 1; } }

.chat-composer { padding: 16px 28px 24px; border-top: 1px solid var(--border); }
.chat-composer-box { border: 1px solid var(--border-strong); border-radius: var(--radius); background: var(--surface); }
.chat-textarea { display: block; width: 100%; min-height: 84px; resize: vertical; padding: 13px; color: var(--text); border: 0; outline: 0; background: transparent; line-height: 1.55; }
.chat-textarea::placeholder { color: var(--text-faint); }
.chat-composer-actions { justify-content: space-between; gap: 12px; padding: 0 9px 9px 13px; }
.composer-note { color: var(--text-faint); font-size: 10px; }
.send-button { display: inline-flex; align-items: center; gap: 7px; min-height: 32px; padding: 0 12px; border: 1px solid #3c9aff; border-radius: var(--radius-sm); color: #fff; background: var(--accent); font-size: 12px; font-weight: 670; }
.send-button:disabled { cursor: wait; opacity: .58; }

.browser-shell { display: grid; grid-template-rows: auto minmax(0, 1fr); height: 100%; min-height: 620px; }
.browser-toolbar { gap: 9px; padding: 16px 20px; border-bottom: 1px solid var(--border); background: var(--canvas-raised); }
.browser-toolbar-label { color: var(--text-faint); font-size: 12px; }
.browser-form { display: flex; flex: 1; gap: 8px; min-width: 0; }
.browser-url-input { flex: 1; min-width: 80px; height: 35px; padding: 0 11px; color: var(--text); border: 1px solid var(--border-strong); border-radius: var(--radius-sm); outline: 0; background: var(--surface); }
.browser-url-input:focus { border-color: var(--accent); }
.browser-frame-wrap { display: grid; grid-template-rows: auto minmax(0, 1fr); min-height: 0; padding: 18px 20px 22px; }
.browser-notice { padding: 10px 12px; color: var(--text-muted); border: 1px solid var(--border); border-bottom: 0; border-radius: var(--radius) var(--radius) 0 0; background: var(--surface); font-size: 11px; }
.browser-frame { width: 100%; min-height: 440px; height: 100%; border: 1px solid var(--border); border-radius: 0 0 var(--radius) var(--radius); background: #fff; }
.browser-empty { display: grid; place-items: center; min-height: 440px; border: 1px dashed var(--border-strong); border-radius: var(--radius); color: var(--text-faint); background: var(--canvas-raised); text-align: center; }
.browser-empty strong { display: block; margin-bottom: 5px; color: var(--text-muted); font-size: 14px; }

.readiness-shell { max-width: 900px; margin: 0 auto; }
.readiness-run-panel { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 20px; padding: 19px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.readiness-run-panel h2 { margin: 0; font-size: 14px; }
.readiness-run-panel p { margin: 5px 0 0; color: var(--text-muted); font-size: 12px; }
.console-checks { display: grid; gap: 4px; margin-top: 18px; }
.console-check { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 13px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--canvas-raised); }
.console-check-name { font-weight: 630; }
.console-check-errors { margin: 4px 0 0; color: var(--danger); font-size: 11px; }

.project-detail-shell { max-width: 920px; margin: 0 auto; }
.project-detail-header { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.project-id { margin: 0 0 7px; color: var(--accent); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; }
.project-detail-header h1 { margin: 0; font-size: 27px; letter-spacing: -0.035em; }
.project-detail-role { max-width: 650px; margin: 9px 0 0; color: var(--text-muted); }
.detail-meta-row { flex-wrap: wrap; gap: 7px; }
.meta-tag { display: inline-flex; padding: 4px 7px; border: 1px solid var(--border-strong); border-radius: 4px; color: var(--text-muted); background: var(--surface); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.detail-section { margin-top: 16px; padding: 19px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--canvas-raised); }
.detail-section h2 { margin: 0; font-size: 14px; }
.detail-section p { color: var(--text-muted); font-size: 12px; }
.doc-list { display: grid; gap: 5px; margin-top: 12px; }
.doc-link { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-muted); background: var(--surface); text-decoration: none; font-size: 12px; }
.doc-link:hover { border-color: var(--accent); color: var(--text); }

.inspector-heading { justify-content: space-between; gap: 10px; margin: 0 0 16px; }
.inspector-heading h2 { margin: 0; font-size: 14px; }
.inspector-section { margin-top: 20px; padding-top: 17px; border-top: 1px solid var(--border); }
.inspector-section:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.inspector-kicker { margin: 0 0 8px; color: var(--text-faint); font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.inspector-copy { margin: 0; color: var(--text-muted); font-size: 12px; line-height: 1.65; }
.inspector-list { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.inspector-list li { padding: 8px 9px; border-left: 2px solid var(--border-strong); color: var(--text-muted); background: rgba(255, 255, 255, .018); font-size: 11px; word-break: break-word; }
.inspector-list li.is-evidence { border-left-color: var(--accent); }
.inspector-list li.is-warning { border-left-color: var(--warning); color: #f3c979; }
.inspector-boundary { padding: 12px; border: 1px solid rgba(245, 184, 75, .24); border-radius: var(--radius-sm); color: #e7c77e; background: rgba(245, 184, 75, .06); font-size: 11px; line-height: 1.62; }
.empty-note { margin: 0; padding: 16px 0; color: var(--text-faint); font-size: 12px; }

@media (max-width: 1180px) {
  .workbench-layout { grid-template-columns: 220px minmax(0, 1fr); }
  .workbench-inspector { display: none; }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .workbench { grid-template-rows: 50px 49px minmax(0, 1fr); }
  .window-titlebar { padding: 0 13px; }
  .window-status { max-width: 160px; overflow: hidden; text-overflow: ellipsis; }
  .product-mark { display: none; }
  .workspace-tab { min-width: 130px; height: 48px; }
  .workbench-layout { display: block; }
  .workbench-sidebar { display: none; }
  .page-shell { padding: 20px 15px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .summary-metrics { grid-template-columns: 1fr; }
  .apps-grid,
  .project-grid { grid-template-columns: 1fr; }
  .chat-shell { min-height: calc(100vh - 99px); }
  .chat-header,
  .chat-thread,
  .chat-composer { padding-left: 15px; padding-right: 15px; }
  .chat-header { align-items: flex-start; flex-direction: column; }
  .chat-agent-row { width: 100%; }
  .agent-select { max-width: none; flex: 1; }
  .browser-toolbar { align-items: stretch; flex-direction: column; padding: 12px 15px; }
  .browser-form { width: 100%; }
  .browser-frame-wrap { padding: 15px; }
  .project-detail-header { flex-direction: column; }
}

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