:root {
  --ink: #15171b;
  --muted: #696d75;
  --line: #deded9;
  --canvas: #f4f3ef;
  --paper: #fff;
  --sidebar: #111318;
  --sidebar-soft: #1b1e25;
  --accent: #e9b949;
  --accent-strong: #c88b12;
  --green: #207453;
  --green-soft: #e8f4ee;
  --amber-soft: #fff5da;
  --red: #a23939;
  --red-soft: #fbeaea;
  --blue: #2f5fa5;
  --shadow: 0 12px 36px rgba(20, 20, 18, 0.08);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--canvas); }
body { margin: 0; min-width: 320px; min-height: 100vh; color: var(--ink); background: var(--canvas); }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, summary:focus-visible { outline: 3px solid rgba(233, 185, 73, 0.55); outline-offset: 2px; }

.app-shell { min-height: 100vh; display: grid; grid-template-columns: 232px minmax(0, 1fr); }
.sidebar { position: sticky; top: 0; height: 100vh; padding: 22px 16px 16px; display: flex; flex-direction: column; color: #f5f2e9; background: var(--sidebar); border-right: 1px solid #242730; z-index: 20; }
.brand { min-width: 0; display: flex; align-items: center; gap: 11px; color: inherit; text-decoration: none; }
.brand-mark, .mini-mark, .mobile-brand { display: grid; place-items: center; width: 35px; height: 35px; flex: 0 0 auto; border-radius: 9px; color: #17150f; background: var(--accent); font-size: 11px; font-weight: 900; letter-spacing: -0.04em; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: 14px; letter-spacing: -0.01em; }
.brand-copy small { margin-top: 3px; color: #8f949f; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; }
.primary-nav { margin-top: 34px; display: grid; gap: 6px; }
.nav-item { width: 100%; min-height: 42px; padding: 0 11px; display: flex; align-items: center; gap: 11px; color: #a9adb5; background: transparent; border: 0; border-radius: 8px; text-decoration: none; text-align: left; font-size: 13px; cursor: pointer; }
.nav-item:hover:not(:disabled), .nav-item.active { color: #fff; background: var(--sidebar-soft); }
.nav-item.active { box-shadow: inset 3px 0 0 var(--accent); }
.nav-item:disabled { cursor: default; opacity: 0.68; }
.nav-icon { width: 18px; color: #d4b767; font-size: 17px; text-align: center; }
.soon { margin-left: auto; padding: 3px 6px; border: 1px solid #353944; border-radius: 99px; color: #7f8590; font-size: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.sidebar-foot { margin-top: auto; display: grid; gap: 11px; }
.safety-card { padding: 11px; display: flex; align-items: flex-start; gap: 9px; border: 1px solid #2b2f37; border-radius: 9px; background: #171920; }
.safety-card strong, .safety-card small { display: block; }
.safety-card strong { font-size: 11px; }
.safety-card small { margin-top: 3px; color: #858b96; font-size: 9px; line-height: 1.35; }
.pulse-dot { width: 7px; height: 7px; margin-top: 3px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(233,185,73,.1); }
.sign-out { border-top: 1px solid #282b33; border-radius: 0; }

.workspace { min-width: 0; }
.topbar { height: 66px; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; gap: 18px; background: rgba(255,255,255,.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 15; }
.project-context { min-width: 0; display: flex; align-items: center; gap: 9px; }
.project-context div { display: grid; min-width: 0; }
.project-context small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.project-context strong { margin-top: 2px; max-width: 260px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: 13px; }
.caret { color: #8b8d92; }
.mobile-brand { display: none; }
.topbar-actions { display: flex; align-items: center; gap: 14px; }
.environment { padding: 6px 9px; display: flex; align-items: center; gap: 6px; border: 1px solid #d8d8d3; border-radius: 99px; color: #5d6168; background: #fafaf8; font-size: 10px; }
.environment span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.avatar { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #262a31; font-size: 10px; font-weight: 800; }
#main-content { min-height: calc(100vh - 66px); padding: 28px; }

.loading-state, .error-state, .empty-state { min-height: 360px; display: flex; align-items: center; justify-content: center; gap: 13px; color: var(--muted); }
.loading-state div, .error-state div { display: grid; }
.loading-state strong, .error-state strong { color: var(--ink); font-size: 14px; }
.loading-state small, .error-state small { margin-top: 4px; font-size: 11px; }
.loader { width: 28px; height: 28px; border: 3px solid #dddcd7; border-top-color: var(--accent-strong); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.page-head { max-width: 1480px; margin: 0 auto 20px; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.breadcrumbs { margin-bottom: 8px; display: flex; align-items: center; gap: 6px; color: #84878d; font-size: 10px; }
.breadcrumbs a { color: inherit; text-decoration: none; }
.page-head h1 { max-width: 820px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(24px, 3vw, 39px); font-weight: 500; line-height: 1.08; letter-spacing: -0.025em; }
.page-head p { max-width: 660px; margin: 9px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.head-actions { display: flex; gap: 8px; }
.button { min-height: 39px; padding: 0 15px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; border: 1px solid transparent; border-radius: 7px; font-weight: 750; font-size: 11px; cursor: pointer; }
.button.primary { color: #15130d; background: var(--accent); border-color: #d9a72f; box-shadow: 0 4px 14px rgba(200,139,18,.18); }
.button.primary:hover:not(:disabled) { background: #f2c258; }
.button.primary:disabled { opacity: .45; cursor: not-allowed; }
.button.secondary { color: #383b41; background: #fff; border-color: #d6d6d0; }
.button.secondary:hover { border-color: #aaa9a2; }

.status-strip { max-width: 1480px; min-height: 46px; margin: 0 auto 17px; padding: 10px 13px; display: flex; align-items: center; gap: 10px; border: 1px solid #cfe3d7; border-radius: 8px; color: #295f49; background: var(--green-soft); }
.status-strip .check { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 12px; }
.status-strip div { display: flex; align-items: baseline; flex-wrap: wrap; gap: 7px; }
.status-strip strong { font-size: 11px; }
.status-strip span { color: #55806c; font-size: 10px; }
.status-strip .demo-label { margin-left: auto; padding: 4px 7px; color: #76550b; background: var(--amber-soft); border: 1px solid #eed99f; border-radius: 4px; text-transform: uppercase; letter-spacing: .08em; font-size: 8px; font-weight: 800; }

.review-grid { max-width: 1480px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 17px; align-items: start; }
.content-column { min-width: 0; display: grid; gap: 15px; }
.panel { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 1px 0 rgba(0,0,0,.02); }
.panel-head { min-height: 52px; padding: 13px 15px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid #e6e5e0; }
.panel-head h2 { margin: 0; font-size: 12px; }
.panel-head p { margin: 3px 0 0; color: var(--muted); font-size: 9px; }
.badge { padding: 4px 7px; border-radius: 99px; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.badge.ready, .badge.connected, .badge.completed_dry_run { color: #216046; background: var(--green-soft); }
.badge.disconnected, .badge.blocked { color: #895f0a; background: var(--amber-soft); }
.badge.queued, .badge.processing { color: #315c96; background: #eaf1fb; }
.badge.failed { color: var(--red); background: var(--red-soft); }

.blog-preview { overflow: hidden; }
.hero-media { position: relative; min-height: 280px; background: #171a20; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; min-height: 280px; position: absolute; inset: 0; object-fit: cover; }
.hero-overlay { min-height: 280px; padding: 30px; position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; background: linear-gradient(180deg, transparent 20%, rgba(8,10,14,.86) 100%); }
.hero-overlay .eyebrow { color: #f0cc75; }
.hero-overlay h2 { max-width: 720px; margin: 9px 0 7px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(24px, 3.2vw, 43px); font-weight: 500; line-height: 1.04; letter-spacing: -.025em; }
.hero-overlay p { max-width: 660px; margin: 0; color: #d6d8dd; font-size: 11px; line-height: 1.5; }
.eyebrow { color: #8a6819; font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.eyebrow.light { color: #e8bd59; }
.metadata-row { padding: 10px 15px; display: flex; flex-wrap: wrap; gap: 8px 16px; border-bottom: 1px solid #e8e7e2; color: #767980; font-size: 9px; }
.metadata-row strong { color: #3c3f45; }
.article-body { max-height: 420px; padding: 22px 26px 28px; overflow: auto; font-family: Georgia, "Times New Roman", serif; color: #343437; line-height: 1.67; font-size: 14px; }
.article-body .lead { margin-top: 0; color: #1f2023; font-size: 17px; line-height: 1.55; }
.article-body h2 { margin: 25px 0 8px; color: #17181b; font-size: 20px; line-height: 1.22; }
.article-body blockquote { margin: 22px 0; padding: 14px 17px; border-left: 3px solid var(--accent); color: #49463e; background: #faf7ee; font-style: italic; }
.article-body li { margin: 4px 0; }

.asset-grid { padding: 13px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.asset-card { min-width: 0; overflow: hidden; border: 1px solid #dfded8; border-radius: 8px; background: #f9f8f5; }
.asset-thumb { aspect-ratio: 16 / 9; position: relative; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #181b21, #3c414d); overflow: hidden; }
.asset-thumb.vertical { aspect-ratio: 16 / 9; }
.asset-thumb img { width: 100%; height: 100%; object-fit: cover; }
.asset-thumb .file-icon { font-size: 22px; }
.asset-label { padding: 8px; }
.asset-label strong, .asset-label span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.asset-label strong { font-size: 9px; }
.asset-label span { margin-top: 3px; color: var(--muted); font-size: 8px; }

.release-panel { position: sticky; top: 82px; overflow: hidden; box-shadow: var(--shadow); }
.release-panel .panel-head { padding: 15px; }
.release-panel .panel-head h2 { font-size: 14px; }
.release-section { padding: 14px 15px; border-bottom: 1px solid #e8e7e2; }
.release-section h3 { margin: 0 0 10px; display: flex; align-items: center; justify-content: space-between; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.release-section h3 span { color: var(--muted); font-size: 8px; font-weight: 600; text-transform: none; letter-spacing: 0; }
.target-list { display: grid; gap: 7px; }
.target-row { border: 1px solid #deded9; border-radius: 8px; background: #fff; transition: border .15s ease, background .15s ease; }
.target-row.selected { border-color: #d2a22d; background: #fffdf5; }
.target-row.disabled { opacity: .72; background: #f6f5f2; }
.target-main { min-height: 55px; padding: 9px; display: grid; grid-template-columns: 19px 30px minmax(0, 1fr) auto; gap: 8px; align-items: center; }
.target-main input { width: 15px; height: 15px; margin: 0; accent-color: #c68b15; }
.platform-icon { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 7px; color: #fff; background: #272a31; font-size: 9px; font-weight: 850; }
.platform-icon.linkedin { background: #0a66c2; }
.platform-icon.youtube { background: #d92828; }
.platform-icon.facebook { background: #1877f2; }
.platform-icon.instagram { background: #a1428e; }
.platform-icon.google_business { background: #3975d7; }
.target-copy { min-width: 0; }
.target-copy strong, .target-copy span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.target-copy strong { font-size: 9px; }
.target-copy span { margin-top: 3px; color: var(--muted); font-size: 8px; }
.target-state { text-align: right; }
.target-state small { display: block; margin-top: 3px; color: var(--muted); font-size: 7px; }
.variant-toggle { width: 100%; padding: 0 9px 8px 66px; display: flex; justify-content: flex-start; color: #6c5723; background: transparent; border: 0; font-size: 8px; font-weight: 750; cursor: pointer; }
.variant-copy { margin: 0 9px 9px 66px; padding: 9px; border: 1px solid #e4dfcf; border-radius: 6px; color: #56575b; background: #fff; font-size: 8px; line-height: 1.5; white-space: pre-wrap; }

.mode-options { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.mode-option { min-height: 51px; padding: 9px; display: flex; align-items: flex-start; gap: 7px; border: 1px solid #dddcd6; border-radius: 7px; cursor: pointer; }
.mode-option:has(input:checked) { border-color: #d0a136; background: #fffaf0; }
.mode-option input { margin: 2px 0 0; accent-color: #bd8212; }
.mode-option strong, .mode-option span { display: block; }
.mode-option strong { font-size: 9px; }
.mode-option span { margin-top: 3px; color: var(--muted); font-size: 7px; line-height: 1.3; }
.schedule-field { margin-top: 9px; }
.schedule-field label { display: block; margin-bottom: 5px; color: #63666c; font-size: 8px; }
.schedule-field input { width: 100%; min-height: 36px; padding: 0 8px; border: 1px solid #d8d7d1; border-radius: 6px; color: var(--ink); background: #fff; font-size: 9px; }
.release-footer { padding: 13px 15px 15px; }
.selection-summary { margin-bottom: 9px; display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; }
.selection-summary strong { color: var(--ink); }
.release-footer .button { width: 100%; min-height: 43px; }
.release-note { margin: 8px 0 0; color: #7b7e84; font-size: 8px; line-height: 1.4; text-align: center; }

.package-table { max-width: 1160px; margin: 0 auto; overflow: hidden; }
.package-row { padding: 16px; display: grid; grid-template-columns: minmax(0, 1fr) 120px 130px 40px; gap: 14px; align-items: center; border-bottom: 1px solid #e6e5e0; color: inherit; text-decoration: none; }
.package-row:last-child { border-bottom: 0; }
.package-row:hover { background: #fbfaf6; }
.package-title strong, .package-title span { display: block; }
.package-title strong { font-size: 12px; }
.package-title span, .package-cell small { margin-top: 4px; color: var(--muted); font-size: 9px; }
.package-cell { font-size: 9px; }
.package-arrow { color: #8d9095; font-size: 18px; text-align: center; }

.confirm-dialog { width: min(520px, calc(100vw - 28px)); padding: 0; border: 1px solid #d3d2cc; border-radius: 12px; box-shadow: 0 24px 90px rgba(0,0,0,.28); }
.confirm-dialog::backdrop { background: rgba(14,16,19,.68); backdrop-filter: blur(3px); }
.dialog-head { padding: 19px 20px 14px; display: flex; align-items: flex-start; justify-content: space-between; border-bottom: 1px solid #e4e3de; }
.dialog-head h2 { margin: 5px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 23px; font-weight: 500; }
.icon-button { width: 30px; height: 30px; border: 1px solid #dddcd6; border-radius: 6px; color: #676a70; background: #fff; font-size: 19px; cursor: pointer; }
#confirm-body { padding: 16px 20px; }
.confirmation-line { margin-bottom: 12px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.confirmation-targets { display: grid; gap: 6px; }
.confirmation-target { padding: 9px; display: flex; align-items: center; gap: 9px; border: 1px solid #e0dfda; border-radius: 7px; }
.confirmation-target div { min-width: 0; }
.confirmation-target strong, .confirmation-target span { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.confirmation-target strong { font-size: 9px; }
.confirmation-target span { margin-top: 3px; color: var(--muted); font-size: 8px; }
.safe-callout { margin: 0 20px; padding: 10px; display: flex; gap: 9px; color: #2b634b; background: var(--green-soft); border: 1px solid #cde2d6; border-radius: 7px; }
.safe-callout p { margin: 0; font-size: 9px; line-height: 1.45; }
.dialog-actions { padding: 15px 20px 20px; display: flex; justify-content: flex-end; gap: 8px; }
.toast { position: fixed; right: 18px; bottom: 18px; max-width: min(380px, calc(100vw - 36px)); padding: 12px 14px; z-index: 100; border: 1px solid #bed9ca; border-radius: 8px; color: #24563f; background: #f2faf6; box-shadow: var(--shadow); font-size: 10px; line-height: 1.45; opacity: 0; transform: translateY(12px); pointer-events: none; transition: .2s ease; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { color: #813737; background: #fff3f3; border-color: #ecc7c7; }

.login-page { min-height: 100vh; background: #111318; }
.login-layout { min-height: 100vh; display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(360px, .78fr); }
.login-story { min-height: 100vh; padding: 40px clamp(34px, 6vw, 90px); position: relative; display: flex; flex-direction: column; overflow: hidden; color: #f5f2e9; background: radial-gradient(circle at 80% 20%, rgba(233,185,73,.15), transparent 32%), #111318; }
.login-story::after { content: ""; width: 520px; height: 520px; position: absolute; right: -230px; bottom: -260px; border: 1px solid rgba(233,185,73,.22); border-radius: 50%; box-shadow: 0 0 0 70px rgba(233,185,73,.025), 0 0 0 140px rgba(233,185,73,.018); }
.login-brand { align-self: flex-start; }
.login-message { max-width: 660px; margin: auto 0; position: relative; z-index: 1; }
.login-message h1 { margin: 14px 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 5.6vw, 75px); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.login-message p { max-width: 560px; margin: 0; color: #aeb2bb; font-size: 14px; line-height: 1.65; }
.flow-preview { padding-top: 22px; position: relative; z-index: 1; display: flex; align-items: center; gap: 14px; border-top: 1px solid #2b2e36; }
.flow-preview div { min-width: 0; display: grid; }
.flow-preview span { color: var(--accent); font-size: 8px; }
.flow-preview strong { margin-top: 3px; font-size: 10px; }
.flow-preview small { margin-top: 3px; color: #7e838d; font-size: 8px; }
.flow-preview i { color: #4f535d; font-style: normal; }
.login-panel { display: grid; place-items: center; padding: 28px; background: #f1f0ec; }
.login-card { width: min(390px, 100%); padding: 32px; border: 1px solid #dad9d3; border-radius: 12px; background: #fff; box-shadow: 0 20px 70px rgba(20,20,20,.12); }
.mini-mark { width: 42px; height: 42px; }
.login-card h2 { margin: 22px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 31px; font-weight: 500; }
.login-card > p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.google-button { width: 100%; min-height: 48px; margin-top: 24px; padding: 0 15px; display: grid; grid-template-columns: 28px 1fr 28px; align-items: center; border: 1px solid #cecdc7; border-radius: 7px; color: #292b30; background: #fff; font-size: 11px; font-weight: 760; cursor: pointer; }
.google-button:hover { border-color: #9c9b94; background: #faf9f6; }
.google-button:disabled { opacity: .55; cursor: wait; }
.google-g { width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid #e0dfd9; border-radius: 50%; color: #4285f4; font-weight: 900; }
.login-status { min-height: 18px; margin-top: 14px; color: #777a80; font-size: 9px; text-align: center; }
.login-status.error { color: var(--red); }
.login-security { margin-top: 22px; padding-top: 16px; display: block; border-top: 1px solid #e4e3de; color: #93959a; font-size: 8px; text-align: center; }

@media (max-width: 1080px) {
  .review-grid { grid-template-columns: minmax(0, 1fr) 320px; }
  .asset-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 880px) {
  .app-shell { display: block; padding-bottom: 58px; }
  .sidebar { width: 100%; height: 58px; padding: 0 8px; position: fixed; top: auto; right: 0; bottom: 0; left: 0; flex-direction: row; align-items: center; border-top: 1px solid #2b2e36; border-right: 0; }
  .sidebar > .brand, .sidebar-foot .safety-card, .sidebar-foot .sign-out { display: none; }
  .primary-nav { width: 100%; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .nav-item { min-height: 48px; padding: 4px; flex-direction: column; justify-content: center; gap: 2px; font-size: 8px; text-align: center; }
  .nav-item.active { box-shadow: inset 0 3px 0 var(--accent); }
  .nav-icon { width: auto; font-size: 14px; }
  .soon { display: none; }
  .sidebar-foot { display: none; }
  .mobile-brand { display: grid; width: 30px; height: 30px; }
  .topbar { padding: 0 16px; }
  #main-content { padding: 20px 16px; }
  .review-grid { grid-template-columns: minmax(0, 1fr); }
  .release-panel { position: static; }
  .login-layout { grid-template-columns: 1fr; }
  .login-story { min-height: 45vh; padding: 28px; }
  .login-message { margin: auto 0 32px; }
  .login-message h1 { font-size: clamp(37px, 9vw, 58px); }
  .flow-preview { display: none; }
  .login-panel { min-height: 55vh; }
}

@media (max-width: 560px) {
  .topbar { height: 59px; }
  .project-context small, .caret, .environment { display: none; }
  .project-context strong { max-width: 180px; font-size: 11px; }
  #main-content { min-height: calc(100vh - 59px); padding: 15px 10px 22px; }
  .page-head { display: block; }
  .page-head h1 { font-size: 27px; }
  .page-head p { font-size: 10px; }
  .head-actions { margin-top: 12px; }
  .status-strip { align-items: flex-start; }
  .status-strip .demo-label { display: none; }
  .hero-media, .hero-media img, .hero-overlay { min-height: 230px; }
  .hero-overlay { padding: 20px 17px; }
  .hero-overlay h2 { font-size: 28px; }
  .hero-overlay p { font-size: 9px; }
  .metadata-row { gap: 7px 10px; }
  .article-body { max-height: 380px; padding: 18px 17px 22px; font-size: 13px; }
  .article-body .lead { font-size: 15px; }
  .article-body h2 { font-size: 18px; }
  .asset-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; padding: 9px; }
  .panel-head { padding: 12px; }
  .release-section, .release-footer { padding-right: 11px; padding-left: 11px; }
  .target-main { grid-template-columns: 18px 29px minmax(0, 1fr); }
  .target-state { grid-column: 3; text-align: left; }
  .target-state small { display: none; }
  .variant-toggle { padding-left: 64px; }
  .variant-copy { margin-left: 64px; }
  .mode-options { grid-template-columns: 1fr; }
  .package-row { grid-template-columns: minmax(0, 1fr) auto; }
  .package-row .package-cell { display: none; }
  .login-story { min-height: 39vh; padding: 22px 18px; }
  .login-message h1 { margin-top: 10px; font-size: 39px; }
  .login-message p { font-size: 11px; }
  .login-panel { min-height: 61vh; padding: 18px 12px; align-items: start; }
  .login-card { margin-top: 8px; padding: 24px 20px; }
  .dialog-actions { flex-direction: column-reverse; }
  .dialog-actions .button { width: 100%; }
}
