/* bundle-presentation · review shell + two product frames (public / ops) */
:root {
  --page: #f4f1fb;
  --surface: #ffffff;
  --surface-soft: #f8f7fc;
  --ink: #151326;
  --muted: #6e698b;
  --border: #ded9ee;
  --brand: #5b3af0;
  --brand-soft: #eee9ff;
  --navy: #0e092d;
  --success: #08775b;
  --shadow: 0 18px 50px rgba(29, 22, 62, 0.1);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--page);
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 720px; background: var(--page); }
button, select, input, textarea { font: inherit; }
button, select { color: inherit; }
button:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgba(91, 58, 240, 0.32); outline-offset: 2px; }

/* ------- review shell (studio chrome) ------- */
.review-toolbar { position: sticky; top: 0; z-index: 40; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 24px; border-bottom: 1px solid var(--border); background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(18px); }
.review-brand { display: grid; gap: 3px; }
.review-brand strong { font-size: 16px; }
.review-kicker { color: var(--brand); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.review-controls { display: flex; align-items: end; gap: 10px; }
.review-controls label { display: grid; gap: 4px; color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.review-controls select, .quiet-button { min-height: 36px; border: 1px solid var(--border); border-radius: 999px; background: var(--surface); padding: 0 13px; }
.notes-toggle { grid-auto-flow: column; align-items: center; min-height: 36px; border: 1px solid var(--border); border-radius: 999px; padding: 0 12px; }
.notes-toggle input { accent-color: var(--brand); }
.quiet-button { cursor: pointer; }
.state-pills { display: flex; gap: 8px; overflow-x: auto; padding: 12px 24px 0; }
.state-pill { white-space: nowrap; cursor: pointer; border: 1px solid var(--border); border-radius: 999px; background: var(--surface); padding: 8px 12px; font-size: 12px; font-weight: 700; }
.state-pill.active { border-color: var(--navy); background: var(--navy); color: white; }
.prototype-layout { display: grid; grid-template-columns: minmax(680px, 1fr) 360px; gap: 18px; align-items: start; padding: 18px 24px 48px; }
.prototype-stage { min-width: 0; }
.screen-root { min-width: 0; }
.review-notes { position: sticky; top: 90px; display: grid; gap: 15px; max-height: calc(100vh - 110px); overflow-y: auto; border: 1px solid var(--border); border-radius: 24px; background: var(--surface); padding: 20px; box-shadow: var(--shadow); }
.review-notes[hidden] { display: none; }
.note-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.note-group, .score-target { border-radius: 999px; padding: 5px 8px; font-size: 9px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.note-group { background: var(--brand-soft); color: var(--brand); }
.score-target { background: #d8faec; color: var(--success); }
.review-notes h2 { margin: 0; font-size: 21px; }
.review-notes section { border-top: 1px solid var(--border); padding-top: 13px; }
.review-notes h3 { margin: 0 0 6px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.review-notes p, .review-notes li { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.review-notes ul { display: grid; gap: 5px; margin: 0; padding-left: 18px; }
.question-card { border: 0 !important; border-radius: 16px; background: var(--navy); padding: 14px !important; }
.question-card h3, .question-card p { color: white; }

/* ------- photo art (CSS-only, no external assets) ------- */
.ph { position: relative; width: 100%; height: 100%; min-height: 64px; overflow: hidden; border-radius: inherit; }
.ph::after { content: ''; position: absolute; inset: 0; background: radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,0.28), transparent 55%); }
.ph-sunset { background: linear-gradient(180deg, #f2b268 0%, #e4845c 42%, #2e6f75 43%, #1d4f58 100%); }
.ph-sea { background: linear-gradient(180deg, #9cc8d8 0%, #4d93ad 45%, #1f5d74 100%); }
.ph-peach { background: linear-gradient(180deg, #f6cfa4 0%, #e79a71 55%, #b4593f 100%); }
.ph-dusk { background: linear-gradient(180deg, #8e7bab 0%, #c68a92 48%, #45324e 100%); }
.ph-warm { background: linear-gradient(180deg, #f0dcc0 0%, #d9a06a 60%, #8a4f2e 100%); }
.ph-transfer { background: linear-gradient(180deg, #b9c7cf 0%, #7d939f 50%, #3c4c55 100%); }
.ph-hike { background: linear-gradient(180deg, #b9d0bd 0%, #7ba283 52%, #3d5c46 100%); }
.ph-cap { position: absolute; left: 10px; top: 8px; z-index: 1; border-radius: 999px; background: rgba(255,255,255,0.82); padding: 3px 9px; font-size: 10px; font-weight: 600; color: #33302b; }

/* ================= PUBLIC FRAME ================= */
.pub { overflow: hidden; border-radius: 28px; background: var(--pub-bg); box-shadow: var(--shadow); font-family: Inter, ui-sans-serif, sans-serif; color: var(--pub-ink); }
.pub-nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 26px; background: color-mix(in srgb, var(--pub-bg) 55%, #ffffff); }
.pub-brand { font-family: Georgia, 'Times New Roman', serif; font-size: 17px; letter-spacing: 0.02em; }
.pub-nav-links { display: flex; gap: 18px; font-size: 12px; color: color-mix(in srgb, var(--pub-ink) 55%, transparent); }
.pub-nav-links .active { color: var(--pub-ink); font-weight: 600; }
.pub-confirm { cursor: pointer; border: 0; border-radius: 999px; background: var(--pub-ink); color: #fff; padding: 9px 16px; font-size: 12px; font-weight: 600; }
.pub-page { padding: 26px 30px 34px; }
.pub-journey-head { margin-bottom: 22px; }
.pub-kicker { margin: 0; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: color-mix(in srgb, var(--pub-ink) 55%, transparent); }
.pub-title { margin: 6px 0 0; font-family: Georgia, 'Times New Roman', serif; font-size: 34px; font-weight: 500; letter-spacing: -0.01em; }
.pub-day-head { display: flex; align-items: center; gap: 12px; margin: 0 0 14px; }
.pub-day-chip { border-radius: 999px; background: color-mix(in srgb, var(--pub-ink) 8%, transparent); padding: 7px 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; }
.pub-day-date { margin: 0; font-size: 14px; font-weight: 600; }
.pub-day-dest { margin: 1px 0 0; font-size: 12px; color: color-mix(in srgb, var(--pub-ink) 55%, transparent); }

.pub-card { display: flex; margin-bottom: 16px; border-radius: 20px; overflow: clip; background: var(--pub-card); }
.pub-card-row { display: flex; width: 100%; }
.pub-card-stacked { flex-direction: column; }
.pub-card-text { display: flex; flex-direction: column; flex: 1 1 62%; min-width: 0; padding: 20px; }
.pub-card-media { position: relative; flex: 1 1 38%; min-width: 33%; min-height: 250px; border-radius: 20px; overflow: clip; margin: 14px; }
.pub-card-media-slim { min-height: 140px; }
.pub-card-slim .pub-card-text { padding: 18px 20px; }
.pub-pill-row { display: flex; align-items: center; gap: 10px; }
.pub-cat-pill { width: fit-content; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--pub-ink) 20%, transparent); background: color-mix(in srgb, var(--pub-ink) 10%, transparent); padding: 5px 12px; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.pub-count-hint { font-size: 11px; color: color-mix(in srgb, var(--pub-ink) 50%, transparent); }
.pub-card-title { margin: 12px 0 0; font-family: Georgia, 'Times New Roman', serif; font-size: 23px; font-weight: 500; line-height: 1.2; }
.pub-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; }
.pub-meta > div { display: grid; gap: 3px; }
.pub-meta-label { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: color-mix(in srgb, var(--pub-ink) 40%, transparent); }
.pub-meta span:not(.pub-meta-label) { font-size: 13px; }
.pub-desc { margin: 14px 0 0; font-size: 13.5px; line-height: 1.65; color: color-mix(in srgb, var(--pub-ink) 78%, transparent); }
.pub-includes { margin-top: 14px; }
.pub-includes-label { margin: 0 0 7px; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: color-mix(in srgb, var(--pub-ink) 40%, transparent); }
.pub-includes { display: block; }
.pub-include-chip { display: inline-flex; align-items: center; margin: 0 6px 6px 0; border-radius: 999px; background: color-mix(in srgb, var(--pub-accent) 12%, transparent); color: color-mix(in srgb, var(--pub-accent) 80%, var(--pub-ink)); padding: 6px 12px; font-size: 12px; font-weight: 500; }
.pub-price-pill { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding: 0 18px; height: 42px; border-radius: 14px; background: color-mix(in srgb, var(--pub-ink) 8%, transparent); }
.pub-card-text .pub-price-pill { margin-top: 16px; }
.pub-price-pill span { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: color-mix(in srgb, var(--pub-ink) 55%, transparent); }
.pub-price-pill strong { font-family: Georgia, 'Times New Roman', serif; font-size: 19px; font-weight: 500; }
.pub-thumb-strip { position: absolute; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: space-between; height: 58px; padding: 6px 10px; background: rgba(250, 248, 244, 0.55); backdrop-filter: blur(16px); }
.pub-thumbs { display: flex; gap: 6px; }
.pub-thumb { width: 46px; height: 46px; border-radius: 10px; flex: 0 0 auto; }
.pub-thumb-count { font-size: 11px; color: color-mix(in srgb, var(--pub-ink) 60%, transparent); }
.pub-card-nophoto .pub-card-text { flex-basis: 100%; }

.pub-linked-sep { margin: 0 22px; border-top: 1px dashed color-mix(in srgb, var(--pub-ink) 22%, transparent); }
.pub-linked-body { display: grid; gap: 5px; padding: 15px 22px 17px; }
.pub-linked-cat { width: fit-content; border-radius: 999px; border: 1px solid var(--pub-accent); background: color-mix(in srgb, var(--pub-accent) 10%, transparent); color: var(--pub-accent); padding: 4px 10px; font-size: 10px; font-weight: 600; letter-spacing: 0.04em; }
.pub-linked-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.pub-linked-row h4 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: 17px; font-weight: 500; }
.pub-linked-price { font-size: 13px; font-weight: 600; color: var(--pub-accent); }
.pub-linked-body p { margin: 0; font-size: 12.5px; line-height: 1.5; color: color-mix(in srgb, var(--pub-ink) 55%, transparent); }

/* ================= OPS FRAME ================= */
.ops { position: relative; overflow: hidden; border-radius: 28px; background: #fafaf9; box-shadow: var(--shadow); }
.ops-global { display: grid; grid-template-columns: 150px minmax(200px, 460px) 1fr; align-items: center; gap: 16px; height: 54px; padding: 0 18px; background: #ffffff; }
.ops-logo { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.ops-logo span { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: #18181b; color: #fff; font-size: 9px; font-weight: 900; }
.ops-search { border-radius: 999px; background: #f4f4f5; padding: 9px 14px; color: #71717a; font-size: 12px; }
.ops-user { justify-self: end; display: flex; align-items: center; gap: 8px; color: #71717a; font-size: 12px; }
.ops-user b { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: #e0e7ff; color: #3730a3; font-size: 9px; }
.ops-journey-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; padding: 16px 22px 10px; background: #ffffff; }
.ops-crumb { font-size: 10px; color: #a1a1aa; }
.ops-title-row { display: flex; align-items: center; gap: 10px; margin-top: 5px; }
.ops-title-row h1 { margin: 0; font-size: 20px; letter-spacing: -0.02em; }
.ops-status { border-radius: 999px; background: #fef3c7; color: #92400e; padding: 4px 10px; font-size: 10px; font-weight: 700; }
.ops-client { font-size: 11px; color: #a1a1aa; }
.ops-actions { display: flex; gap: 8px; }
.ops-actions button { cursor: pointer; border: 0; border-radius: 999px; background: #f4f4f5; padding: 8px 14px; font-size: 11px; font-weight: 600; }
.ops-actions .ops-primary { background: #18181b; color: #fff; }
.ops-tabs { display: flex; gap: 16px; padding: 0 22px; background: #ffffff; box-shadow: inset 0 -1px 0 #f0f0ef; }
.ops-tabs button { cursor: pointer; border: 0; background: none; padding: 10px 2px 9px; font-size: 12px; font-weight: 600; color: #a1a1aa; }
.ops-tabs button.active { color: #18181b; box-shadow: inset 0 -2px 0 #18181b; }
.ops-board { display: flex; gap: 14px; padding: 16px 22px 26px; min-height: 520px; align-items: flex-start; }
.ops-day { flex: 0 0 300px; border-radius: 24px; background: #f4f4f3; padding: 12px; }
.ops-day-ghost { opacity: 0.55; }
.ops-day-head { display: flex; align-items: baseline; justify-content: space-between; padding: 4px 8px 10px; }
.ops-day-name { font-size: 12px; font-weight: 700; }
.ops-day-dest { font-size: 11px; color: #a1a1aa; }
.ops-cards { display: grid; gap: 10px; }
.ops-card { border-radius: 20px; background: #ffffff; padding: 12px 14px; }
.ops-card-top { display: flex; align-items: start; justify-content: space-between; gap: 8px; }
.ops-card-title { margin: 0; font-size: 13px; font-weight: 600; }
.ops-card-cat { border-radius: 999px; background: #fce7f3; color: #9d174d; padding: 3px 8px; font-size: 9px; font-weight: 700; }
.ops-card-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; font-size: 11px; color: #71717a; }
.ops-card-bottom strong { font-size: 12px; color: #18181b; }
.ops-card-ghost { height: 64px; border-radius: 20px; background: #ffffff; opacity: 0.7; }
.ops-card-ghost.short { height: 44px; }

/* stacked bundle card — 3-layer paper stack, accent-soft blue */
.ops-stack-wrap { position: relative; }
.ops-stack-back2, .ops-stack-back1 { position: absolute; inset: 0 0 0 auto; border-radius: 20px; background: #dbeafe; }
.ops-stack-back2 { left: 18px; right: -8px; filter: brightness(0.9); }
.ops-stack-back1 { left: 9px; right: -4px; filter: brightness(0.95); }
.ops-stack-front { position: relative; z-index: 2; border-radius: 20px; background: #dbeafe; padding: 10px 12px 12px; }
.ops-stack-toprow { display: flex; align-items: start; justify-content: space-between; gap: 8px; }
.ops-stack-name { max-width: 85%; border-radius: 8px; background: #dbeafe; filter: brightness(1.04); background: #e3ecfd; color: #1e3a8a; padding: 5px 10px; font-size: 12px; font-weight: 700; }
.ops-stack-expand { cursor: pointer; display: grid; place-items: center; width: 24px; height: 24px; border: 0; border-radius: 50%; background: rgba(0,0,0,0.06); font-size: 14px; line-height: 1; }
.ops-stack-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; font-size: 11px; color: #52525b; }
.ops-stack-dots { cursor: pointer; border: 0; border-radius: 8px; background: transparent; padding: 3px 7px; font-size: 14px; font-weight: 700; }
.ops-stack-dots:hover, .ops-stack-dots.open { background: rgba(0,0,0,0.07); }

/* dropdown menu */
.ops-menu { position: absolute; right: 6px; top: calc(100% - 4px); z-index: 5; min-width: 218px; display: grid; padding: 6px; border-radius: 16px; background: #ffffff; box-shadow: 0 12px 40px rgba(24, 24, 27, 0.16); }
.ops-menu button { display: flex; align-items: center; gap: 8px; cursor: pointer; border: 0; border-radius: 10px; background: none; padding: 9px 10px; font-size: 12px; text-align: left; }
.ops-menu button:hover { background: #f4f4f5; }
.ops-menu button i { display: inline-grid; place-items: center; width: 16px; font-size: 11px; font-style: normal; color: #52525b; }
.ops-menu-new { background: #eef2ff !important; color: #3730a3; font-weight: 600; }
.ops-menu-new i { color: #4f46e5 !important; }
.ops-menu-danger { color: #b91c1c; }
.ops-menu-sep { margin: 5px 8px; border-top: 1px solid #f0f0ef; }

/* ------- presentation sheet ------- */
.sheet-scrim { position: absolute; inset: 0; z-index: 10; background: rgba(24, 24, 27, 0.28); }
.sheet { position: absolute; top: 10px; right: 10px; bottom: 10px; z-index: 11; display: flex; flex-direction: column; width: 430px; max-width: 76%; border-radius: 24px; background: #ffffff; box-shadow: 0 24px 70px rgba(24, 24, 27, 0.28); }
.sheet-head { display: flex; align-items: start; justify-content: space-between; gap: 12px; padding: 18px 20px 12px; }
.sheet-kicker { margin: 0; font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #6366f1; }
.sheet-head h2 { margin: 4px 0 0; font-size: 17px; letter-spacing: -0.01em; }
.sheet-close { cursor: pointer; border: 0; border-radius: 50%; width: 30px; height: 30px; background: #f4f4f5; font-size: 12px; }
.sheet-scroll { flex: 1; overflow-y: auto; padding: 4px 20px 16px; }
.sheet-section { padding: 12px 0; }
.sheet-section + .sheet-section { border-top: 1px solid #f4f4f3; }
.sheet-label { margin: 0 0 8px; font-size: 10px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: #a1a1aa; }
.sheet-label-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.sheet-label-row .sheet-label { margin: 0; }
.sheet-hint { margin: 7px 0 0; font-size: 10.5px; line-height: 1.5; color: #a1a1aa; }

.sheet-seg { display: flex; border-radius: 999px; background: #f4f4f5; padding: 3px; width: fit-content; }
.sheet-seg button { cursor: pointer; border: 0; border-radius: 999px; background: transparent; padding: 7px 14px; font-size: 12px; font-weight: 600; color: #71717a; }
.sheet-seg button.active { background: #ffffff; color: #18181b; box-shadow: 0 1px 4px rgba(24,24,27,0.12); }

.sheet-preview { display: flex; gap: 0; border-radius: 18px; overflow: clip; background: #f6f3ee; }
.sheet-preview-media { flex: 0 0 118px; min-height: 150px; }
.sheet-preview-media .ph { border-radius: 0; }
.sheet-preview-body { flex: 1; min-width: 0; padding: 12px 14px; }
.sheet-preview-title { margin: 0; font-family: Georgia, serif; font-size: 14px; font-weight: 600; }
.sheet-preview-desc { margin: 6px 0 0; font-size: 10.5px; line-height: 1.55; color: #57534e; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.sheet-preview-chips { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
.sheet-preview-chips span { border-radius: 999px; background: rgba(154, 107, 79, 0.13); color: #7c5741; padding: 3px 8px; font-size: 9.5px; font-weight: 600; }
.sheet-preview-price { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; border-radius: 10px; background: rgba(35,31,26,0.07); padding: 6px 10px; }
.sheet-preview-price span { font-size: 8.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #78716c; }
.sheet-preview-price strong { font-family: Georgia, serif; font-size: 13px; }

.sheet-ai { cursor: pointer; display: inline-flex; align-items: center; gap: 7px; border: 0; border-radius: 999px; background: #eef2ff; color: #3730a3; padding: 7px 13px; font-size: 11.5px; font-weight: 700; }
.sheet-ai:hover { background: #e0e7ff; }
.sheet-ai.is-busy { cursor: default; opacity: 0.85; }
.spinner { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #c7d2fe; border-top-color: #4f46e5; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.sheet-textarea { width: 100%; border: 0; border-radius: 16px; background: #f6f6f5; padding: 12px 14px; font-size: 12.5px; line-height: 1.6; color: #27272a; resize: vertical; }
.sheet-textarea::placeholder { color: #a1a1aa; }
.sheet-textarea-skeleton { display: grid; gap: 8px; min-height: 92px; }
.skeleton-line { display: block; height: 10px; border-radius: 999px; background: linear-gradient(90deg, #ececeb 25%, #f7f7f6 50%, #ececeb 75%); background-size: 200% 100%; animation: shimmer 1.4s ease infinite; }
.skeleton-line.w85 { width: 85%; } .skeleton-line.w70 { width: 70%; } .skeleton-line.w60 { width: 60%; }
@keyframes shimmer { to { background-position: -200% 0; } }

.sheet-covers { display: grid; grid-template-columns: repeat(6, 1fr); gap: 7px; }
.sheet-cover { position: relative; cursor: pointer; border: 0; border-radius: 12px; overflow: clip; aspect-ratio: 1; padding: 0; background: #f4f4f5; }
.sheet-cover.selected { outline: 2px solid #4f46e5; outline-offset: 2px; }
.sheet-cover:disabled { cursor: default; opacity: 0.55; }
.sheet-cover-check { position: absolute; right: 4px; top: 4px; display: grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; background: #4f46e5; color: #fff; font-size: 9px; }

.sheet-hl { display: flex; align-items: start; gap: 10px; padding: 8px 0; }
.sheet-hl.is-hidden { opacity: 0.5; }
.sheet-eye { cursor: pointer; flex: 0 0 auto; display: grid; place-items: center; width: 30px; height: 30px; border: 0; border-radius: 10px; background: #f4f4f5; font-size: 13px; }
.sheet-hl-main { flex: 1; min-width: 0; }
.sheet-hl-inputrow { display: flex; align-items: center; gap: 7px; }
.sheet-hl-inputrow input { flex: 1; min-width: 0; border: 0; border-radius: 12px; background: #f6f6f5; padding: 8px 11px; font-size: 12.5px; font-weight: 500; color: #18181b; }
.sheet-hl-inputrow input:disabled { color: #71717a; }
.sheet-ai-chip { flex: 0 0 auto; border-radius: 999px; background: #eef2ff; color: #4f46e5; padding: 3px 7px; font-size: 9px; font-weight: 800; }
.sheet-hl-ops { margin: 4px 0 0 1px; font-size: 10px; color: #a1a1aa; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.sheet-footer { display: flex; align-items: center; justify-content: end; gap: 10px; padding: 13px 20px; border-top: 1px solid #f4f4f3; }
.sheet-footer > span:first-child { margin-right: auto; }
.sheet-dirty-note { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: #92400e; }
.dirty-dot { width: 7px; height: 7px; border-radius: 50%; background: #f59e0b; }
.sheet-saved { font-size: 11.5px; font-weight: 600; color: #047857; }
.sheet-cancel { cursor: pointer; border: 0; border-radius: 999px; background: #f4f4f5; padding: 9px 15px; font-size: 12px; font-weight: 600; }
.sheet-save { cursor: pointer; border: 0; border-radius: 999px; background: #18181b; color: #fff; padding: 9px 16px; font-size: 12px; font-weight: 700; }
.sheet-save:disabled, .sheet-save.is-disabled { cursor: default; background: #e4e4e7; color: #a1a1aa; }
.sheet-toast { position: absolute; left: 16px; right: 16px; bottom: 70px; z-index: 12; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-radius: 16px; background: #fef2f2; padding: 12px 14px; font-size: 12px; color: #991b1b; box-shadow: 0 10px 30px rgba(153, 27, 27, 0.15); }
.sheet-toast button { cursor: pointer; border: 0; border-radius: 999px; background: #991b1b; color: #fff; padding: 7px 13px; font-size: 11px; font-weight: 700; }

/* ------- responsive ------- */
@media (max-width: 1100px) {
  .review-toolbar { align-items: flex-start; flex-direction: column; }
  .prototype-layout { grid-template-columns: 1fr; }
  .review-notes { position: static; max-height: none; }
}
@media (max-width: 960px) {
  .pub-card { flex-direction: column; }
  .pub-card-row { flex-direction: column; }
  .pub-card-media { margin: 0 14px 14px; min-height: 190px; }
  .pub-nav-links { display: none; }
  .ops-board { flex-wrap: wrap; }
  .ops-day { flex: 1 1 280px; }
  .sheet { width: min(430px, 92%); max-width: 92%; }
  .sheet-covers { grid-template-columns: repeat(4, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  .spinner, .skeleton-line { animation: none; }
}
@media (prefers-reduced-motion: no-preference) {
  .state-pill, button { transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease; }
}
