:root {
      color-scheme: dark;
      --bg: #07111f;
      --bg-soft: #0a1930;
      --panel: rgba(8, 24, 44, 0.92);
      --panel-strong: rgba(11, 31, 56, 0.96);
      --panel-soft: rgba(14, 38, 68, 0.84);
      --text: #edf3f8;
      --muted: #91a3b4;
      --line: rgba(123, 150, 176, 0.2);
      --line-strong: rgba(123, 150, 176, 0.34);
      --accent: #6faeff;
      --accent-strong: #9bc9ff;
      --accent-soft: rgba(72, 139, 224, 0.18);
      --success: #7bbcff;
      --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
      --radius: 24px;
      --side-rail-width: clamp(152px, 16vw, 176px);
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      color: var(--text);
      font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
      background:
        radial-gradient(circle at top left, rgba(72, 139, 224, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 24%),
        linear-gradient(180deg, #07111f 0%, #0a1930 46%, #07111f 100%);
    }
    a { color: inherit; }
    a, button, [role="button"] { touch-action: manipulation; }
    :where(a, button, input, select, textarea, summary, [role="button"]):focus-visible {
      outline: 3px solid var(--accent-strong);
      outline-offset: 3px;
    }
    a:active, button:active, [role="button"]:active {
      filter: brightness(1.2);
      transition: none !important;
    }
    .skip-link {
      position: absolute;
      left: 16px;
      top: -48px;
      padding: 10px 14px;
      border-radius: 999px;
      background: var(--accent-strong);
      color: #081017;
      text-decoration: none;
      font-weight: 700;
    }
    .skip-link:focus { top: 16px; }
    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .private-shell {
      min-height: 100vh;
      display: grid;
      gap: 18px;
      padding: 22px 28px 34px;
      align-content: start;
    }
    .private-topbar {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 18px;
      position: sticky;
      top: 0;
      z-index: 12;
      min-height: 72px;
    }
    .private-topbar > * {
      min-width: 0;
    }
    .private-shell[data-page-id="workspace_model"] .private-topbar {
      position: static;
    }
    .private-shell-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: minmax(0, var(--side-rail-width)) minmax(0, 1fr);
      align-items: start;
    }
    .private-shell .public-home-mobile-entry {
      display: none;
    }
    .private-shell .public-home-desktop-entry {
      display: block;
    }
    .private-shell .public-mobile-mode-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
    .private-shell .public-mobile-mode-button {
      min-height: 88px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: rgba(90, 168, 255, 0.1);
      color: var(--text);
      font-size: 18px;
      font-weight: 800;
      text-decoration: none;
    }
    .private-shell .public-mobile-mode-button:hover {
      border-color: rgba(120, 188, 255, 0.38);
      background: rgba(90, 168, 255, 0.16);
    }
    .private-shell .public-mobile-secondary-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .private-brand-zone,
    .private-context-cluster,
    .private-major-nav,
    .private-main section,
    .private-main article,
    .private-main details,
    .private-main pre,
    .workspace-panel,
    .hero,
    .banner,
    .stat-card,
    .card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }
    .private-brand-zone,
    .private-context-cluster,
    .private-major-nav,
    .workspace-panel,
    .hero,
    .banner,
    .stat-card,
    .card,
    .private-main section,
    .private-main article,
    .private-main details,
    .private-main pre {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        var(--panel);
    }
    .private-left-rail {
      display: grid;
      gap: 14px;
      align-content: start;
      position: sticky;
      top: 22px;
      width: min(100%, var(--side-rail-width));
      justify-self: start;
    }
    .private-topbar-brand {
      display: flex;
      align-items: center;
    }
    .private-brand-zone {
      display: grid;
      gap: 10px;
      padding: 18px 20px;
    }
    .private-brand-mark {
      display: inline-flex;
      width: fit-content;
      text-decoration: none;
    }
    .private-brand-logo {
      display: block;
      width: clamp(104px, 9.6vw, 136px);
      height: auto;
      border-radius: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
    }
    .private-brand-note {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.7;
    }
    .private-major-nav {
      display: flex;
      flex-wrap: nowrap;
      gap: 10px;
      align-items: center;
      justify-content: flex-start;
      padding: 14px 16px;
      min-width: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .private-major-nav::-webkit-scrollbar {
      display: none;
    }
    .private-major-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 18px;
      border-radius: 999px;
      border: 1px solid var(--line);
      color: var(--text);
      background: rgba(255, 255, 255, 0.03);
      text-decoration: none;
      font-weight: 700;
    }
    .private-major-link-active {
      background: var(--accent-soft);
      border-color: var(--line-strong);
      color: var(--text);
    }
    .private-context-cluster {
      display: grid;
      gap: 12px;
      padding: 16px 18px;
    }
    .private-page-title {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.04em;
    }
    .private-page-note,
    .private-session-note {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }
    .private-support-links {
      display: grid;
      gap: 8px;
    }
    .private-support-link,
    .quick-chip {
      display: flex;
      align-items: center;
      gap: 8px;
      min-height: 42px;
      padding: 0 14px;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text);
      text-decoration: none;
      font-size: 14px;
    }
    .private-support-link-active {
      border-color: var(--line-strong);
      background: var(--accent-soft);
      color: var(--text);
    }
    .private-support-link-disabled {
      opacity: 0.46;
      cursor: default;
      border-style: dashed;
    }
    .private-session-chip {
      display: inline-flex;
      width: fit-content;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--line);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent-strong);
    }
    .private-account-actions {
      display: flex;
      gap: 10px;
      align-items: stretch;
      justify-content: flex-end;
      flex-shrink: 0;
    }
    .private-account-actions form {
      margin: 0;
      display: flex;
    }
    .private-content-column {
      display: grid;
      gap: 18px;
      min-width: 0;
    }
    .private-main {
      display: grid;
      gap: 18px;
    }
    .private-main section,
    .private-main article,
    .private-main details,
    .private-main pre {
      padding: 20px;
      margin: 0;
    }
    .private-main form {
      display: grid;
      gap: 14px;
      margin: 0;
    }
    .private-main section.grid,
    .private-main section.stat-grid,
    .private-main .work-layout,
    .private-main .portal-shell-grid,
    .private-main .portal-secondary-grid,
    .private-main .upload-select-grid,
    .private-main .upload-execute-grid,
    .private-main .monitor-grid,
    .private-main .surface-link-list,
    .private-main .quick-chip-grid,
    .private-main .action-row,
    .private-main .inline-links,
    .private-main .tag-row,
    .private-main .info-pairs,
    .private-main .timeline {
      padding: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
    }
    .hero {
      display: grid;
      gap: 14px;
      padding: 24px;
      background:
        radial-gradient(circle at top right, rgba(111, 142, 175, 0.18), transparent 34%),
        linear-gradient(140deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    }
    .hero h2,
    .workspace-panel h2,
    .workspace-panel h3,
    .card h3,
    .timeline-body h3,
    .stat-value {
      margin: 0;
    }
    .hero h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.08; }
    .hero p,
    .workspace-panel p,
    .card p,
    .timeline-body p,
    .stat-note,
    .private-main p.muted {
      margin: 0;
      color: var(--muted);
      line-height: 1.8;
    }
    .eyebrow {
      display: inline-flex;
      width: fit-content;
      padding: 6px 10px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent-strong);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .action-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid transparent;
      text-decoration: none;
      font-weight: 700;
      font: inherit;
      cursor: pointer;
    }
    .button.primary {
      background: var(--accent-strong);
      color: #081017;
    }
    .button.secondary {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--line-strong);
      color: var(--text);
    }
    .button.ghost {
      background: transparent;
      border-color: var(--line);
      color: var(--text);
    }
    button.button:disabled,
    .button[disabled],
    .button[aria-disabled="true"] {
      cursor: not-allowed;
      opacity: 0.42;
      box-shadow: none;
      filter: grayscale(0.35);
    }
    .banner {
      padding: 16px 18px;
      background:
        linear-gradient(180deg, rgba(111, 142, 175, 0.12), rgba(255, 255, 255, 0.02)),
        var(--panel-soft);
      color: var(--text);
      line-height: 1.7;
    }
    .grid {
      display: grid;
      gap: 18px;
    }
    .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .card { display: grid; gap: 12px; }
    .card-accent {
      background:
        linear-gradient(180deg, rgba(111, 142, 175, 0.16), rgba(255, 255, 255, 0)),
        var(--panel-strong);
    }
    .card-muted {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        rgba(14, 22, 29, 0.78);
    }
    .inline-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-links-centered {
      width: 100%;
    }
    .footer-links-centered .inline-links {
      width: min(100%, 760px);
      margin-inline: auto;
      justify-content: center;
      gap: 30px 40px;
    }
    .footer-link-strip {
      width: 100%;
      justify-self: stretch;
    }
    .text-link {
      color: var(--accent-strong);
      text-decoration: none;
      font-weight: 700;
    }
    .list-tight {
      margin: 0;
      padding-left: 18px;
      line-height: 1.7;
      color: var(--muted);
    }
    .stat-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }
    .stat-card { padding: 18px; }
    .stat-value {
      font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
      font-size: 30px;
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label { font-weight: 700; }
    .stat-note { font-size: 13px; }
    .timeline {
      list-style: none;
      margin: 0;
      display: grid;
      gap: 12px;
      padding: 0;
    }
    .timeline-item {
      display: grid;
      grid-template-columns: 72px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--line);
    }
    .timeline-item:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }
    .timeline-step {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--line);
      color: var(--accent-strong);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
    }
    input, select, textarea, button {
      font: inherit;
      color: var(--text);
    }
    input, select, textarea {
      width: 100%;
      padding: 12px 14px;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.04);
    }
    textarea { resize: vertical; min-height: 120px; }
    code, pre {
      background: rgba(255, 255, 255, 0.04);
      border-radius: 14px;
    }
    code { padding: 3px 7px; }
    .machine-block summary {
      cursor: pointer;
      font-weight: 700;
      color: var(--accent-strong);
    }
    .machine-block pre {
      margin-top: 16px;
      overflow: auto;
    }
    .surface-link-list {
      display: grid;
      gap: 10px;
    }
    .surface-link {
      display: grid;
      gap: 4px;
      padding: 12px 14px;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.03);
      text-decoration: none;
    }
    .surface-link-active {
      border-color: var(--line-strong);
      background: var(--accent-soft);
    }
    .surface-link-label {
      font-weight: 700;
      color: var(--text);
    }
    .surface-link-note {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }
    .quick-chip-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .quick-chip {
      min-height: 42px;
      padding: 0 14px;
      justify-content: space-between;
    }
    .quick-chip-label {
      color: var(--text);
      font-weight: 700;
    }
    .quick-chip-note {
      color: var(--muted);
      font-size: 12px;
    }
    .info-pairs {
      display: grid;
      gap: 10px;
      margin: 0;
    }
    .info-pair {
      display: grid;
      gap: 4px;
      padding: 12px 14px;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.03);
    }
    .info-pair dt {
      color: var(--muted);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .info-pair dd {
      margin: 0;
      color: var(--text);
      font-weight: 700;
    }
    .detail-rows {
      display: grid;
      gap: 10px;
      margin: 0;
    }
    .detail-row {
      display: grid;
      grid-template-columns: minmax(82px, 110px) minmax(0, 1fr);
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid var(--line);
    }
    .detail-row:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }
    .detail-row dt {
      color: var(--muted);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .detail-row dd {
      margin: 0;
      color: var(--text);
      line-height: 1.7;
    }
    .workspace-panel {
      display: grid;
      gap: 14px;
      padding: 20px;
      min-width: 0;
    }
    .public-empty-content-frame {
      min-height: clamp(280px, 34vh, 460px);
    }
    .public-home-desktop-entry .public-empty-content-frame {
      min-height: clamp(360px, 46vh, 620px);
    }
    .panel-head {
      display: grid;
      gap: 8px;
    }
    .work-layout {
      display: grid;
      gap: 18px;
    }
    .ai-hub-layout {
      gap: 20px;
    }
    .ai-hub-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .ai-hub-head h2,
    .ai-hub-panel-head h3 {
      margin: 0;
    }
    .ai-hub-head p,
    .ai-hub-panel-head p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }
    .ai-hub-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: stretch;
    }
    .ai-hub-panel {
      display: grid;
      gap: 16px;
      align-content: start;
    }
    .ai-hub-panel-selected {
      border-color: rgba(121, 167, 255, 0.42);
      box-shadow: 0 18px 38px rgba(4, 12, 28, 0.18);
    }
    .ai-hub-panel-head {
      display: grid;
      gap: 8px;
    }
    .ai-hub-action-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .ai-hub-platform-grid {
      display: grid;
      gap: 12px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ai-hub-platform-surface {
      display: grid;
      gap: 12px;
      padding: 14px;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.03);
    }
    .ai-hub-platform-surface[data-ai-platform-surface="mobile"] {
      display: none;
    }
    .ai-hub-platform-head {
      display: grid;
      gap: 4px;
    }
    .ai-hub-platform-head strong {
      color: var(--text);
      font-size: 15px;
    }
    .ai-hub-platform-head span,
    .ai-hub-mode-note {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }
    .ai-hub-mode-note-strong {
      color: var(--text);
      font-weight: 700;
    }
    .ai-hub-file-trigger {
      cursor: pointer;
    }
    .ai-hub-file-trigger-disabled {
      opacity: 0.48;
      cursor: default;
      pointer-events: none;
    }
    .ai-hub-summary-card {
      min-height: 88px;
      padding: 16px;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.03);
      line-height: 1.7;
    }
    .ai-hub-footnote {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }
    .ai-hub-field {
      display: grid;
      gap: 8px;
    }
    .ai-hub-field select {
      width: 100%;
      min-height: 48px;
      padding: 0 14px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: rgba(15, 23, 42, 0.72);
      color: var(--text);
    }
    .ai-hub-refresh-link {
      white-space: nowrap;
    }
    .collect-workface-layout {
      gap: 0;
    }
    .collect-workface-shell {
      display: grid;
      gap: 18px;
      padding: 24px;
      border-radius: 30px;
      background:
        radial-gradient(circle at top center, rgba(112, 142, 194, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
        rgba(9, 16, 24, 0.88);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 26px 72px rgba(3, 7, 11, 0.24);
    }
    .collect-workface-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: minmax(286px, 364px) minmax(0, 1fr);
      align-items: stretch;
    }
    .collect-chat-card,
    .collect-stage-card {
      display: grid;
      gap: 12px;
      padding: 18px;
      border-radius: 24px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
        rgba(13, 21, 32, 0.84);
      border: 1px solid rgba(255, 255, 255, 0.08);
      min-width: 0;
    }
    .collect-chat-card {
      position: sticky;
      top: 92px;
      min-height: clamp(560px, 70vh, 780px);
    }
    .collect-chat-label,
    .collect-stage-label {
      color: rgba(247, 250, 252, 0.96);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.1;
    }
    .collect-chat-shell,
    .collect-main-stack {
      display: grid;
      gap: 22px;
    }
    .collect-chat-shell {
      height: 100%;
      grid-template-rows: minmax(0, 1fr) auto auto;
    }
    .collect-chat-log {
      min-height: 0;
      padding: 14px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
      color: rgba(231, 239, 246, 0.78);
      line-height: 1.7;
      white-space: pre-wrap;
      word-break: break-word;
    }
    .collect-chat-input {
      width: 100%;
      min-height: 96px;
      padding: 14px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(10, 16, 24, 0.9);
      color: rgba(247, 250, 252, 0.96);
      font: inherit;
      resize: vertical;
    }
    .collect-chat-input:focus {
      outline: 3px solid var(--accent-strong);
      outline-offset: 3px;
      border-color: var(--accent-strong);
    }
    .collect-chat-actions,
    .collect-topbar,
    .collect-stage-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .collect-topbar,
    .collect-stage-head {
      align-items: center;
    }
    .collect-stage-head {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .collect-chat-actions {
      justify-content: flex-end;
    }
    .collect-upload-count {
      display: inline-flex;
      align-items: center;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
      color: rgba(231, 239, 246, 0.72);
      font-weight: 600;
    }
    .collect-stage-actions {
      justify-content: flex-end;
      margin-left: auto;
    }
    .collect-inline-action {
      margin: 0;
    }
    .collect-stage-box {
      position: relative;
      min-height: 220px;
      padding: 18px;
      border-radius: 22px;
      overflow: hidden;
      background: rgba(12, 18, 27, 0.96);
      border: 1px solid rgba(128, 145, 174, 0.22);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 20px 42px rgba(2, 6, 9, 0.18);
    }
    .collect-stage-box-main {
      min-height: clamp(360px, 43vw, 520px);
    }
    .collect-stage-box-ai {
      min-height: clamp(260px, 30vw, 360px);
      background: rgba(15, 21, 31, 0.96);
    }
    .collect-stage-box-live {
      padding: 0;
    }
    .collect-stage-live,
    .collect-stage-live > .model-view-stage-preview,
    .collect-stage-scene > .model-view-stage-preview {
      width: 100%;
      height: 100%;
    }
    .collect-stage-live {
      position: absolute;
      inset: 0;
      z-index: 1;
      min-height: inherit;
      transition: opacity 180ms ease;
    }
    .collect-stage-box[data-collect-stage-display="preview"] .collect-stage-live {
      opacity: 0;
      pointer-events: none;
    }
    .collect-stage-box[data-collect-stage-display="source_static_preview"] .collect-stage-live {
      opacity: 1;
      pointer-events: none;
    }
    .collect-stage-box-live .model-view-stage-preview {
      gap: 0;
      min-height: 100%;
      padding: 14px;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      grid-template-rows: auto minmax(0, 1fr) auto;
    }
    .collect-stage-box-live .model-view-stage-preview::before,
    .collect-stage-box-live .model-view-stage-meta,
    .collect-stage-box-live .model-view-stage-kicker {
      display: none;
    }
    .collect-stage-box-live .model-view-stage-chrome {
      position: absolute;
      top: 14px;
      right: 14px;
      left: 14px;
      z-index: 3;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      pointer-events: none;
    }
    .collect-stage-box-live .model-view-stage-chrome > * {
      pointer-events: auto;
    }
    .collect-stage-box-live .model-view-stage-hud {
      min-height: 34px;
      padding: 0 12px;
      font-size: 12px;
      background: rgba(7, 13, 20, 0.74);
      backdrop-filter: blur(6px);
    }
    .collect-stage-box-live .model-view-stage-viewport {
      min-height: clamp(332px, 40vw, 500px);
      height: 100%;
      border: 0;
      border-radius: 20px;
      background:
        radial-gradient(circle at 50% 0%, rgba(104, 134, 182, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(14, 20, 29, 0.98), rgba(8, 12, 18, 0.98));
      box-shadow: none;
    }
    .collect-stage-box-live .model-view-stage-viewport::after {
      inset: 10% 9% 12%;
      border-radius: 20px;
      opacity: 0.78;
    }
    .collect-stage-scene {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      transition: opacity 180ms ease;
    }
    .collect-stage-scene-interactive {
      pointer-events: auto;
    }
    .collect-stage-box[data-collect-stage-display="live"] .collect-stage-scene {
      opacity: 0;
      pointer-events: none;
    }
    .collect-stage-box[data-collect-stage-display="source_static_preview"] .collect-stage-scene {
      opacity: 0;
      pointer-events: none;
    }
    .collect-stage-box[data-collect-stage-display="preview"] .collect-stage-scene {
      opacity: 1;
    }
    .collect-stage-box[data-collect-stage-display="live"] .collect-stage-note {
      opacity: 0;
    }
    .collect-stage-box[data-collect-stage-display="source_static_preview"] .collect-stage-note {
      opacity: 0;
    }
    .collect-stage-box[data-collect-stage-display="preview"] .collect-stage-note {
      opacity: 1;
    }
    .collect-stage-scene .model-view-stage-preview[data-model-compact="true"] {
      min-height: 100%;
      padding: 14px;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }
    .collect-stage-scene .model-view-stage-preview[data-model-compact="true"] .model-view-stage-viewport {
      min-height: clamp(332px, 40vw, 500px);
      height: 100%;
      border: 0;
      border-radius: 20px;
      background:
        radial-gradient(circle at 50% 0%, rgba(104, 134, 182, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(14, 20, 29, 0.98), rgba(8, 12, 18, 0.98));
      box-shadow: none;
    }
    .collect-stage-scene .model-view-stage-preview[data-model-compact="true"] .model-view-stage-hud {
      min-height: 34px;
      padding: 0 12px;
      font-size: 12px;
      background: rgba(7, 13, 20, 0.74);
      backdrop-filter: blur(6px);
    }
    .collect-stage-note {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 16px;
      z-index: 3;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      margin: 0;
      text-align: left;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.4;
      color: rgba(225, 235, 248, 0.86);
      text-shadow: none;
      pointer-events: none;
      transition: opacity 180ms ease;
    }
    .point-cloud-placeholder {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .point-cloud-placeholder-core {
      position: absolute;
      inset: 20% 16%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(96, 132, 212, 0.24), transparent 72%);
      filter: blur(18px);
      opacity: 0.54;
    }
    .point-cloud-placeholder-sweep {
      position: absolute;
      inset: 10% 8%;
      background: linear-gradient(90deg, transparent 0%, transparent 44%, rgba(164, 208, 255, 0.2) 50%, transparent 56%, transparent 100%);
      opacity: 0.08;
      transform: translateX(-55%);
      mix-blend-mode: screen;
    }
    .point-cloud-placeholder-inner {
      position: absolute;
      inset: 12% 9%;
      transform-style: preserve-3d;
    }
    .point-cloud-placeholder[data-point-cloud-fit="frame_fill"] {
      inset: 0;
    }
    .point-cloud-placeholder[data-point-cloud-fit="frame_fill"] .point-cloud-placeholder-core {
      inset: -18% -12%;
      border-radius: 0;
      background:
        radial-gradient(ellipse at 50% 52%, rgba(92, 122, 205, 0.22), transparent 58%),
        radial-gradient(ellipse at 18% 24%, rgba(112, 163, 255, 0.12), transparent 34%),
        radial-gradient(ellipse at 82% 78%, rgba(112, 163, 255, 0.1), transparent 34%);
      filter: blur(24px);
      opacity: 0.76;
    }
    .point-cloud-placeholder[data-point-cloud-fit="frame_fill"] .point-cloud-placeholder-sweep {
      inset: 4% -10%;
      opacity: 0.12;
    }
    .point-cloud-placeholder[data-point-cloud-fit="frame_fill"] .point-cloud-placeholder-inner {
      inset: 0;
    }
    .point-cloud-placeholder-dot {
      position: absolute;
      left: var(--pc-x);
      top: var(--pc-y);
      width: calc(var(--pc-size) * 1px);
      height: calc(var(--pc-size) * 1px);
      border-radius: 999px;
      background: rgba(132, 180, 255, var(--pc-alpha));
      box-shadow:
        0 0 0 1px rgba(198, 224, 255, 0.12),
        0 0 16px rgba(88, 150, 255, 0.24);
      opacity: calc(var(--pc-alpha) * 0.3);
      transform: translate3d(-50%, -50%, calc(var(--pc-depth) * 1px)) scale(0.78);
    }
    .point-cloud-placeholder-dot-hot {
      background: rgba(218, 238, 255, 0.82);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 0 14px rgba(160, 212, 255, 0.24);
    }
    .point-cloud-placeholder-collect_ai .point-cloud-placeholder-core {
      inset: 24% 18%;
      opacity: 0.34;
    }
    .point-cloud-placeholder-collect_ai .point-cloud-placeholder-inner {
      inset: 16% 12%;
    }
    .point-cloud-placeholder-collect_ai .point-cloud-placeholder-sweep {
      display: none;
    }
    .point-cloud-placeholder-viewer_preview:not([data-point-cloud-fit="frame_fill"]) {
      inset: 6% 4% 10%;
    }
    .point-cloud-placeholder-viewer_preview:not([data-point-cloud-fit="frame_fill"]) .point-cloud-placeholder-core {
      inset: 18% 12%;
      opacity: 0.42;
    }
    .point-cloud-placeholder-viewer_preview:not([data-point-cloud-fit="frame_fill"]) .point-cloud-placeholder-inner {
      inset: 8% 6%;
    }
    .point-cloud-placeholder-viewer_preview .point-cloud-placeholder-dot {
      box-shadow:
        0 0 0 1px rgba(198, 224, 255, 0.1),
        0 0 18px rgba(94, 156, 255, 0.18);
    }
    .point-cloud-placeholder[data-point-cloud-motion="static"] .point-cloud-placeholder-dot {
      opacity: calc(var(--pc-alpha) * 0.22);
      transform: translate3d(-50%, -50%, calc(var(--pc-depth) * 1px)) scale(0.72);
      box-shadow:
        0 0 0 1px rgba(198, 224, 255, 0.06),
        0 0 8px rgba(88, 150, 255, 0.08);
    }
    .point-cloud-placeholder[data-point-cloud-motion="static"] .point-cloud-placeholder-core {
      opacity: 0.16;
    }
    .point-cloud-placeholder[data-point-cloud-motion="ambient"] .point-cloud-placeholder-dot {
      animation: point-cloud-dot-breathe calc(var(--pc-duration) * 1ms) ease-in-out infinite;
      animation-delay: calc(var(--pc-delay) * -1ms);
    }
    .point-cloud-placeholder[data-point-cloud-motion="ambient"] .point-cloud-placeholder-sweep {
      animation: point-cloud-sweep-breathe 6200ms ease-in-out infinite;
    }
    .collect-stage-box[data-collect-stage-shell="model"][data-collect-preview-state="staged"] .point-cloud-placeholder[data-point-cloud-motion="ambient"] .point-cloud-placeholder-dot {
      animation-name: point-cloud-dot-breathe-staged;
    }
    .collect-stage-box[data-collect-stage-shell="model"][data-collect-preview-state="staged"] .point-cloud-placeholder[data-point-cloud-motion="ambient"] .point-cloud-placeholder-sweep {
      animation-name: point-cloud-sweep-breathe-staged;
    }
    .collect-stage-box[data-collect-stage-shell="model"][data-collect-preview-state="processing"] .point-cloud-placeholder[data-point-cloud-motion="ambient"] .point-cloud-placeholder-dot {
      animation-name: point-cloud-dot-breathe-processing;
      animation-duration: 1500ms;
    }
    .collect-stage-box[data-collect-stage-shell="model"][data-collect-preview-state="processing"] .point-cloud-placeholder[data-point-cloud-motion="ambient"] .point-cloud-placeholder-sweep {
      animation-name: point-cloud-sweep-breathe-processing;
      animation-duration: 2100ms;
    }
    .point-cloud-placeholder[data-point-cloud-motion="batch_once"] .point-cloud-placeholder-dot {
      animation: point-cloud-dot-settle calc(var(--pc-duration) * 1ms) ease-out 1 both;
      animation-delay: calc(var(--pc-delay) * 1ms);
    }
    .point-cloud-placeholder[data-point-cloud-motion="batch_once"] .point-cloud-placeholder-sweep {
      animation: point-cloud-sweep-settle 1800ms ease-out 1 both;
    }
    .collect-stage-box[data-collect-stage-shell="model"][data-collect-preview-state="staged"] .point-cloud-placeholder[data-point-cloud-motion="batch_once"] .point-cloud-placeholder-dot {
      animation-name: point-cloud-dot-settle-staged;
    }
    .collect-stage-box[data-collect-stage-shell="model"][data-collect-preview-state="staged"] .point-cloud-placeholder[data-point-cloud-motion="batch_once"] .point-cloud-placeholder-sweep {
      animation-name: point-cloud-sweep-settle-staged;
    }
    .collect-stage-box[data-collect-stage-shell="model"][data-collect-preview-state="processing"] .point-cloud-placeholder[data-point-cloud-motion="batch_once"] .point-cloud-placeholder-dot {
      animation-name: point-cloud-dot-settle-processing;
      animation-duration: 1600ms;
    }
    .collect-stage-box[data-collect-stage-shell="model"][data-collect-preview-state="processing"] .point-cloud-placeholder[data-point-cloud-motion="batch_once"] .point-cloud-placeholder-sweep {
      animation-name: point-cloud-sweep-settle-processing;
      animation-duration: 1400ms;
    }
    @keyframes point-cloud-dot-breathe {
      0% {
        opacity: calc(var(--pc-alpha) * 0.26);
        transform: translate3d(-50%, -50%, calc(var(--pc-depth) * 1px)) scale(0.76);
      }
      50% {
        opacity: calc(var(--pc-alpha) * 0.54);
        transform: translate3d(-50%, -52%, calc(var(--pc-depth) * 1px + 4px)) scale(0.98);
      }
      100% {
        opacity: calc(var(--pc-alpha) * 0.32);
        transform: translate3d(-50%, -50%, calc(var(--pc-depth) * 1px)) scale(0.8);
      }
    }
    @keyframes point-cloud-dot-breathe-staged {
      0% {
        opacity: calc(var(--pc-alpha) * 0.34);
        transform: translate3d(-50%, -50%, calc(var(--pc-depth) * 1px)) scale(0.82);
      }
      50% {
        opacity: calc(var(--pc-alpha) * 0.76);
        transform: translate3d(-50%, -54%, calc(var(--pc-depth) * 1px + 8px)) scale(1.08);
      }
      100% {
        opacity: calc(var(--pc-alpha) * 0.4);
        transform: translate3d(-50%, -50%, calc(var(--pc-depth) * 1px)) scale(0.84);
      }
    }
    @keyframes point-cloud-dot-breathe-processing {
      0% {
        opacity: calc(var(--pc-alpha) * 0.4);
        transform: translate3d(-50%, -50%, calc(var(--pc-depth) * 1px)) scale(0.84);
      }
      50% {
        opacity: calc(var(--pc-alpha) * 0.96);
        transform: translate3d(-50%, -56%, calc(var(--pc-depth) * 1px + 10px)) scale(1.16);
      }
      100% {
        opacity: calc(var(--pc-alpha) * 0.44);
        transform: translate3d(-50%, -50%, calc(var(--pc-depth) * 1px)) scale(0.86);
      }
    }
    @keyframes point-cloud-sweep-breathe {
      0% {
        opacity: 0.06;
        transform: translateX(-38%);
      }
      50% {
        opacity: 0.18;
        transform: translateX(10%);
      }
      100% {
        opacity: 0.08;
        transform: translateX(34%);
      }
    }
    @keyframes point-cloud-sweep-breathe-staged {
      0% {
        opacity: 0.08;
        transform: translateX(-34%);
      }
      50% {
        opacity: 0.28;
        transform: translateX(18%);
      }
      100% {
        opacity: 0.12;
        transform: translateX(40%);
      }
    }
    @keyframes point-cloud-sweep-breathe-processing {
      0% {
        opacity: 0.12;
        transform: translateX(-32%);
      }
      50% {
        opacity: 0.34;
        transform: translateX(22%);
      }
      100% {
        opacity: 0.14;
        transform: translateX(44%);
      }
    }
    @keyframes point-cloud-dot-settle {
      0% {
        opacity: 0;
        transform: translate3d(-50%, -50%, calc(var(--pc-depth) * 1px - 8px)) scale(0.2);
      }
      38% {
        opacity: 1;
        transform: translate3d(-50%, -54%, calc(var(--pc-depth) * 1px + 6px)) scale(1.26);
      }
      100% {
        opacity: calc(var(--pc-alpha) * 0.34);
        transform: translate3d(-50%, -50%, calc(var(--pc-depth) * 1px)) scale(0.84);
      }
    }
    @keyframes point-cloud-dot-settle-staged {
      0% {
        opacity: 0;
        transform: translate3d(-50%, -50%, calc(var(--pc-depth) * 1px - 10px)) scale(0.18);
      }
      34% {
        opacity: 1;
        transform: translate3d(-50%, -55%, calc(var(--pc-depth) * 1px + 8px)) scale(1.34);
      }
      100% {
        opacity: calc(var(--pc-alpha) * 0.38);
        transform: translate3d(-50%, -50%, calc(var(--pc-depth) * 1px)) scale(0.86);
      }
    }
    @keyframes point-cloud-dot-settle-processing {
      0% {
        opacity: 0;
        transform: translate3d(-50%, -50%, calc(var(--pc-depth) * 1px - 12px)) scale(0.14);
      }
      28% {
        opacity: 1;
        transform: translate3d(-50%, -56%, calc(var(--pc-depth) * 1px + 10px)) scale(1.42);
      }
      100% {
        opacity: calc(var(--pc-alpha) * 0.42);
        transform: translate3d(-50%, -50%, calc(var(--pc-depth) * 1px)) scale(0.9);
      }
    }
    @keyframes point-cloud-sweep-settle {
      0% {
        opacity: 0;
        transform: translateX(-55%);
      }
      38% {
        opacity: 0.34;
      }
      100% {
        opacity: 0.08;
        transform: translateX(28%);
      }
    }
    @keyframes point-cloud-sweep-settle-staged {
      0% {
        opacity: 0;
        transform: translateX(-55%);
      }
      36% {
        opacity: 0.56;
      }
      100% {
        opacity: 0.1;
        transform: translateX(32%);
      }
    }
    @keyframes point-cloud-sweep-settle-processing {
      0% {
        opacity: 0;
        transform: translateX(-55%);
      }
      32% {
        opacity: 0.72;
      }
      100% {
        opacity: 0.12;
        transform: translateX(55%);
      }
    }
    .ai-hub-alias-banner {
      margin-bottom: 0;
    }
    @media (max-width: 900px) {
      .ai-hub-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .ai-hub-platform-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .ai-hub-platform-surface[data-ai-platform-surface="desktop"] {
        display: none;
      }
      .ai-hub-platform-surface[data-ai-platform-surface="mobile"] {
        display: grid;
      }
      .collect-workface-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .collect-chat-card {
        position: static;
      }
      .collect-topbar,
      .collect-bottom-bar,
      .collect-chat-actions {
        justify-content: flex-start;
      }
    }
    .profile-featured-deck {
      display: grid;
      gap: 0;
      min-width: 0;
    }
    .profile-featured-strip {
      display: flex;
      align-items: stretch;
      gap: 16px;
      max-width: 100%;
      overflow-x: auto;
      padding-bottom: 4px;
      scrollbar-width: thin;
    }
    .profile-featured-card {
      position: relative;
      display: grid;
      width: 320px;
      min-width: 320px;
      min-height: 208px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
      text-decoration: none;
      overflow: hidden;
    }
    .profile-featured-card-picker {
      display: grid;
      place-items: center;
      gap: 16px;
      padding: 22px;
      border-color: rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
      cursor: pointer;
      text-align: center;
    }
    .profile-featured-picker-copy {
      display: grid;
      gap: 6px;
      justify-items: center;
    }
    .profile-featured-picker-copy strong {
      font-size: 20px;
      line-height: 1.08;
    }
    .profile-featured-picker-note {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
    }
    .profile-featured-plus {
      color: rgba(255, 255, 255, 0.7);
      font-size: 54px;
      line-height: 1;
      font-weight: 400;
    }
    .profile-featured-card-preview {
      align-content: end;
      background: rgba(20, 28, 35, 0.92);
    }
    .profile-featured-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .profile-featured-card-preview::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7, 12, 18, 0.04), rgba(7, 12, 18, 0.2) 42%, rgba(7, 12, 18, 0.78) 100%);
    }
    .profile-featured-meta {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 8px;
      padding: 18px 20px;
    }
    .profile-featured-meta strong {
      font-size: 24px;
      line-height: 1.2;
      word-break: break-word;
    }
    .profile-featured-meta-line {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      color: rgba(237, 243, 248, 0.72);
      font-size: 13px;
      letter-spacing: 0.04em;
    }
    .profile-featured-meta-divider {
      opacity: 0.56;
    }
    .profile-space,
    .profile-stage,
    .profile-stage-copy,
    .profile-row-copy {
      display: grid;
      gap: 12px;
    }
    .profile-stage-head,
    .profile-panel-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 18px;
      align-items: start;
      min-width: 0;
    }
    .profile-main-head {
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
    }
    .profile-stage-copy h2,
    .profile-list-title-line h3 {
      margin: 0;
    }
    .profile-stage-copy h2 {
      font-size: clamp(26px, 3vw, 34px);
      line-height: 1.08;
      letter-spacing: 0.01em;
    }
    .profile-stage-copy p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }
    .profile-stage-actions {
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }
    .profile-main-action {
      min-height: 34px;
      padding: 0 14px;
      font-size: 13px;
      font-weight: 700;
    }
    .profile-body-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: minmax(0, 1.95fr) minmax(300px, 0.85fr);
      align-items: start;
    }
    .profile-search-shell {
      min-height: 72px;
      padding: 0 24px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.04);
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .profile-search-input {
      flex: 1;
      min-width: 0;
      border: 0;
      background: transparent;
      color: rgba(243, 247, 250, 0.96);
      font-size: 14px;
      line-height: 1.4;
    }
    .profile-search-input:focus {
      outline: 3px solid var(--accent-strong);
      outline-offset: 3px;
    }
    .profile-search-submit {
      flex: 0 0 auto;
    }
    .profile-search-input::placeholder {
      color: rgba(255, 255, 255, 0.34);
    }
    .profile-featured-card-remove {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 2;
      min-height: 30px;
      padding: 0 12px;
      border: 0;
      border-radius: 999px;
      background: rgba(7, 12, 18, 0.68);
      color: rgba(243, 247, 250, 0.96);
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
    }
    .profile-list-stack {
      display: grid;
      gap: 0;
      min-width: 0;
    }
    .profile-list-stack-side {
      gap: 12px;
    }
    .profile-list-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 18px;
      padding: 20px 0;
      border-bottom: 1px solid var(--line);
      min-width: 0;
    }
    .profile-list-row:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }
    .profile-list-head {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .profile-list-title-wrap {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      min-width: 0;
    }
    .profile-status-dot {
      width: 10px;
      height: 10px;
      margin-top: 10px;
      border-radius: 999px;
      flex: none;
    }
    .profile-status-ready { background: #8fc5ff; }
    .profile-status-review { background: #6faeff; }
    .profile-status-rejected { background: #527fb8; }
    .profile-status-pending { background: #7f9fc7; }
    .profile-status-neutral { background: rgba(255, 255, 255, 0.56); }
    .profile-list-title-line {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
    }
    .profile-tag {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      color: var(--muted);
      font-size: 12px;
      font-weight: 600;
    }
    .profile-list-row p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }
    .profile-row-side {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 18px;
      align-self: center;
      color: var(--muted);
      font-size: 13px;
      white-space: nowrap;
      min-width: 0;
    }
    .profile-row-note {
      color: var(--muted);
    }
    .profile-list-stack-side .profile-list-row {
      padding: 18px 20px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 26px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
        rgba(10, 18, 28, 0.32);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
      gap: 14px;
    }
    .profile-list-stack-side .profile-list-row:last-child {
      padding-bottom: 18px;
    }
    .profile-list-stack-side .profile-list-head {
      align-items: center;
      min-width: 0;
    }
    .profile-list-stack-side .profile-list-title-wrap,
    .profile-list-stack-side .profile-row-copy {
      min-width: 0;
    }
    .profile-list-stack-side .profile-list-title-line h3 {
      font-size: clamp(22px, 2vw, 30px);
      line-height: 1.08;
    }
    .profile-list-stack-side .profile-status-dot {
      margin-top: 0;
    }
    .profile-list-stack-side .profile-row-side {
      flex-wrap: wrap;
      row-gap: 10px;
    }
    .profile-list-stack-side .text-link {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.01em;
    }
    .model-view-stage-frame {
      display: grid;
      min-height: clamp(390px, calc(100vh - 520px), 620px);
      padding: 0;
      border-radius: 28px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
        rgba(11, 18, 28, 0.96);
      border: 1px solid rgba(109, 136, 191, 0.2);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 28px 68px rgba(4, 8, 13, 0.26);
    }
    .model-view-stage-preview {
      position: relative;
      display: grid;
      grid-template-rows: auto minmax(260px, 1fr) auto;
      gap: 14px;
      --model-warmup-progress: 0;
      --model-rotate-x: -24deg;
      --model-rotate-y: 28deg;
      --model-pan-x: 0px;
      --model-pan-y: 0px;
      --model-scale: 1;
      --model-stage-side-glow-peak: 0.34;
      min-height: 100%;
      padding: clamp(18px, 3vw, 28px);
      border-radius: 0;
      background:
        radial-gradient(circle at 50% 34%, rgba(80, 109, 182, 0.12), transparent 38%),
        linear-gradient(180deg, rgba(19, 29, 43, 0.94), rgba(10, 16, 24, 0.98)),
        rgba(10, 16, 24, 0.98);
      border: 0;
      overflow: hidden;
    }
    .model-view-stage-preview::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.72), transparent 92%);
      opacity: 0.22;
      pointer-events: none;
    }
    .model-view-stage-chrome {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .model-view-stage-viewport-controls {
      display: inline-flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      pointer-events: auto;
    }
    .model-view-first-person-controls {
      display: inline-flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      pointer-events: auto;
    }
    .model-view-viewport-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(160, 186, 219, 0.18);
      background: rgba(15, 29, 42, 0.82);
      color: rgba(243, 247, 250, 0.92);
      font: inherit;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
    }
    .model-view-viewport-button:hover {
      transform: translateY(-1px);
      border-color: rgba(121, 167, 255, 0.34);
      background: rgba(19, 36, 52, 0.92);
    }
    .model-view-first-person-toggle[aria-pressed="true"] {
      border-color: rgba(121, 167, 255, 0.42);
      background: rgba(22, 61, 105, 0.88);
    }
    .model-view-first-person-status {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 10px;
      border-radius: 999px;
      border: 1px solid rgba(160, 186, 219, 0.14);
      background: rgba(8, 15, 23, 0.72);
      color: rgba(219, 231, 242, 0.7);
      font-size: 12px;
      font-weight: 700;
      line-height: 1.2;
    }
    .model-view-first-person-warning {
      max-width: min(320px, 72vw);
      min-height: 34px;
      white-space: normal;
    }
    .model-view-stage-kicker,
    .model-view-stage-hud {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(160, 186, 219, 0.18);
      background: rgba(15, 29, 42, 0.82);
      color: rgba(243, 247, 250, 0.92);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.2;
    }
    .model-view-stage-kicker {
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .model-view-stage-hud-loading {
      color: rgba(219, 231, 242, 0.72);
      background: rgba(11, 20, 30, 0.72);
    }
    .model-view-stage-preview[data-model-compact="true"] {
      gap: 0;
      min-height: 100%;
      grid-template-rows: auto minmax(0, 1fr);
    }
    .model-view-stage-preview[data-model-compact="true"]::before,
    .model-view-stage-preview[data-model-compact="true"] .model-view-stage-kicker,
    .model-view-stage-preview[data-model-compact="true"] .model-view-stage-meta {
      display: none;
    }
    .model-view-stage-preview[data-model-compact="true"] .model-view-stage-chrome {
      position: absolute;
      top: 14px;
      right: 14px;
      left: 14px;
      z-index: 3;
      align-items: flex-start;
      justify-content: space-between;
      pointer-events: none;
    }
    .model-view-stage-preview[data-model-compact="true"] .model-view-stage-chrome > * {
      pointer-events: auto;
    }
    .model-view-stage-viewport {
      position: relative;
      min-height: clamp(250px, 34vw, 420px);
      border-radius: 28px;
      border: 1px solid rgba(110, 140, 193, 0.22);
      background:
        radial-gradient(circle at 50% 0%, rgba(118, 156, 255, 0.08), transparent 40%),
        linear-gradient(180deg, rgba(8, 14, 22, 0.88), rgba(8, 14, 22, 0.96));
      overflow: hidden;
      cursor: grab;
      touch-action: none;
      outline: none;
    }
    .model-view-stage-preview[data-model-interaction-state="loading_visual_only"] .model-view-stage-viewport {
      cursor: default;
      touch-action: pan-y;
    }
    .model-view-stage-preview[data-model-interaction-state="loading_visual_only"] .model-view-stage-viewport.is-dragging,
    .model-view-stage-preview[data-model-interaction-state="loading_visual_only"] .model-view-stage-viewport[data-model-mode="pan"] {
      cursor: default;
    }
    .model-view-stage-preview[data-model-interaction-state="loading_visual_only"] .model-view-camera[data-point-cloud-host="frame_fill"] {
      transform: none;
    }
    .model-view-stage-preview[data-model-controls-visible="false"] .model-view-viewport-controls {
      display: none;
    }
    .model-view-acceptance-overlay {
      position: absolute;
      top: 18px;
      right: 18px;
      z-index: 2;
      display: grid;
      gap: 4px;
      min-width: min(280px, calc(100% - 36px));
      padding: 12px 14px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      backdrop-filter: blur(8px);
      box-shadow: 0 18px 40px rgba(3, 8, 12, 0.28);
    }
    .model-view-acceptance-overlay strong {
      color: rgba(237, 246, 255, 0.96);
      font-size: 13px;
      line-height: 1.35;
    }
    .model-view-acceptance-overlay span {
      color: rgba(219, 234, 250, 0.84);
      font-size: 12px;
      line-height: 1.5;
    }
    .model-view-acceptance-overlay-pending_highlight {
      background: rgba(24, 55, 96, 0.82);
      border-color: rgba(121, 167, 255, 0.34);
    }
    .model-view-acceptance-overlay-approved_normal {
      background: rgba(18, 67, 117, 0.78);
      border-color: rgba(143, 197, 255, 0.38);
    }
    .model-view-acceptance-overlay-ref {
      font-family: ui-monospace, SFMono-Regular, "SFMono-Regular", Consolas, monospace;
    }
    .model-view-stage-viewport::after {
      content: "";
      position: absolute;
      inset: 10% 8% 12%;
      border-radius: 24px;
      background:
        linear-gradient(
          90deg,
          rgba(120, 190, 255, 0) 0%,
          rgba(120, 190, 255, 0.07) 28%,
          rgba(232, 246, 255, var(--model-stage-side-glow-peak)) 50%,
          rgba(120, 190, 255, 0.08) 72%,
          rgba(120, 190, 255, 0) 100%
        );
      transform: translate3d(calc((var(--model-warmup-progress) - 0.5) * 140%), 0, 0);
      opacity: 0;
      filter: blur(4px);
      mix-blend-mode: screen;
      pointer-events: none;
      transition: opacity 160ms ease;
    }
    .model-view-stage-viewport.is-dragging {
      cursor: grabbing;
    }
    .model-view-stage-viewport[data-model-mode="pan"] {
      cursor: move;
    }
    .model-view-stage-viewport:focus-visible {
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 0 3px rgba(124, 170, 255, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    }
    .model-view-stage-aura {
      position: absolute;
      inset: 14% 16% 24%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(104, 137, 248, 0.16), transparent 72%);
      filter: blur(14px);
      opacity: 0.34;
      pointer-events: none;
    }
    .model-view-stage-grid {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.78), transparent 90%);
      opacity: 0.24;
      pointer-events: none;
    }
    .model-view-stage-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      pointer-events: none;
      opacity: 0.96;
      mix-blend-mode: normal;
    }
    .model-view-mobile-joystick {
      position: absolute;
      left: 18px;
      bottom: 18px;
      z-index: 4;
      width: 118px;
      height: 118px;
      touch-action: none;
      pointer-events: auto;
    }
    .model-view-mobile-joystick-pad {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 1px solid rgba(180, 205, 232, 0.22);
      background: rgba(8, 17, 27, 0.64);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 36px rgba(0, 0, 0, 0.28);
    }
    .model-view-mobile-joystick-thumb {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(224, 239, 246, 0.9);
      transform: translate(-50%, -50%);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    }
    .model-view-source-static-preview {
      position: absolute;
      inset: clamp(22px, 6vw, 44px);
      z-index: 2;
      display: grid;
      place-items: center;
      margin: 0;
      pointer-events: none;
    }
    .model-view-source-static-preview img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 8px;
      background: rgba(246, 248, 250, 0.96);
      box-shadow:
        0 18px 46px rgba(3, 8, 13, 0.34),
        0 0 0 1px rgba(255, 255, 255, 0.14);
    }
    .model-view-source-static-preview figcaption {
      position: absolute;
      left: 12px;
      bottom: 12px;
      max-width: calc(100% - 24px);
      padding: 7px 10px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(10, 16, 24, 0.84);
      color: rgba(245, 248, 250, 0.92);
      font-size: 12px;
      font-weight: 700;
      line-height: 1.35;
    }
    .model-view-stage-preview[data-source-static-preview="true"] .model-view-camera {
      opacity: 0.08;
      filter: blur(1px);
    }
    .model-view-camera {
      position: absolute;
      inset: 10% 6% 12%;
      display: grid;
      place-items: center;
      transform: translate3d(var(--model-pan-x), var(--model-pan-y), 0) scale(var(--model-scale));
      transform-style: preserve-3d;
      transition: transform 160ms ease;
      pointer-events: none;
    }
    .model-view-camera[data-point-cloud-host="frame_fill"] {
      inset: 0;
      place-items: stretch;
    }
    .model-view-orbit {
      position: relative;
      width: min(100%, 760px);
      aspect-ratio: 1.34 / 1;
      transform-style: preserve-3d;
      transform: rotateX(var(--model-rotate-x)) rotateY(var(--model-rotate-y));
      transition: transform 160ms ease;
    }
    .model-view-orbit[data-point-cloud-fit="frame_fill"] {
      width: 100%;
      height: 100%;
      aspect-ratio: auto;
      transform: none;
    }
    .model-view-stage-preview[data-model-live="1"] .model-view-camera,
    .model-view-stage-preview[data-model-live="1"] .model-view-orbit {
      transition: none;
    }
    .model-view-stage-preview[data-model-warmup="1"]::before {
      opacity: 0.28;
    }
    .model-view-stage-preview[data-model-warmup="1"] .model-view-stage-viewport::after {
      opacity: var(--model-stage-side-glow-peak);
    }
    .model-view-stage-preview[data-model-warmup="1"] .model-view-stage-aura {
      opacity: 0.42;
      filter: blur(18px) saturate(1.04);
    }
    .model-view-stage-preview[data-model-warmup="1"] .model-view-stage-grid {
      opacity: 0.28;
    }
    .model-view-stage-preview[data-model-warmup="1"] .model-view-camera {
      opacity: 1;
      filter: saturate(1.04) brightness(1);
    }
    .model-view-stage-preview[data-model-source="point_cloud"]::before,
    .model-view-stage-preview[data-model-source="point_cloud"] .model-view-stage-aura,
    .model-view-stage-preview[data-model-source="point_cloud"] .model-view-stage-grid,
    .model-view-stage-preview[data-model-source="point_cloud"] .model-view-camera,
    .model-view-stage-preview[data-model-source="mesh"]::before,
    .model-view-stage-preview[data-model-source="mesh"] .model-view-stage-aura,
    .model-view-stage-preview[data-model-source="mesh"] .model-view-stage-grid,
    .model-view-stage-preview[data-model-source="mesh"] .model-view-camera {
      opacity: 0;
    }
    .model-view-stage-preview[data-model-stage-mode="generation_dark_base"],
    .model-view-stage-preview[data-model-stage-mode="live_model_dark_base"] {
      background: #05080d;
    }
    .model-view-stage-preview[data-model-stage-mode="generation_dark_base"] .model-view-stage-viewport,
    .model-view-stage-preview[data-model-stage-mode="live_model_dark_base"] .model-view-stage-viewport {
      background: #04070c;
      border-color: rgba(116, 148, 184, 0.14);
    }
    .model-view-stage-preview[data-model-stage-mode="generation_dark_base"]::before,
    .model-view-stage-preview[data-model-stage-mode="generation_dark_base"] .model-view-stage-aura,
    .model-view-stage-preview[data-model-stage-mode="generation_dark_base"] .model-view-stage-grid,
    .model-view-stage-preview[data-model-stage-mode="generation_dark_base"] .model-view-camera,
    .model-view-stage-preview[data-model-stage-mode="live_model_dark_base"]::before,
    .model-view-stage-preview[data-model-stage-mode="live_model_dark_base"] .model-view-stage-aura,
    .model-view-stage-preview[data-model-stage-mode="live_model_dark_base"] .model-view-stage-grid,
    .model-view-stage-preview[data-model-stage-mode="live_model_dark_base"] .model-view-camera {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .model-view-stage-preview[data-model-stage-mode="generation_dark_base"] .model-view-stage-viewport::after,
    .model-view-stage-preview[data-model-stage-mode="live_model_dark_base"] .model-view-stage-viewport::after {
      opacity: 0;
    }
    .model-view-stage-preview[data-model-stage-mode="generation_dark_base"] .model-view-stage-canvas,
    .model-view-stage-preview[data-model-stage-mode="live_model_dark_base"] .model-view-stage-canvas {
      opacity: 1;
      mix-blend-mode: normal;
    }
    .model-view-stage-meta {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 12px;
    }
    .model-view-stage-controls {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }
    .model-view-stage-switch {
      min-width: 146px;
    }
    .model-view-stage-legends {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .model-view-stage-chip {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(160, 186, 219, 0.16);
      background: rgba(15, 29, 42, 0.74);
      color: rgba(235, 243, 249, 0.82);
      font-size: 13px;
      line-height: 1.2;
    }
    .model-preview-band {
      gap: 18px;
    }
    .model-preview-band-compact {
      gap: 14px;
      padding: 18px 20px;
    }
    .model-compact-summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      cursor: pointer;
      list-style: none;
      color: rgba(247, 250, 252, 0.96);
      font-size: 15px;
      font-weight: 800;
      line-height: 1.35;
    }
    .model-compact-summary::-webkit-details-marker {
      display: none;
    }
    .model-compact-summary::after {
      content: "+";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      flex: 0 0 auto;
      border-radius: 999px;
      border: 1px solid rgba(160, 186, 219, 0.16);
      background: rgba(15, 29, 42, 0.74);
      color: rgba(235, 243, 249, 0.84);
    }
    details[open] > .model-compact-summary::after {
      content: "-";
    }
    .model-compact-summary span:last-child {
      color: rgba(224, 233, 240, 0.68);
      font-size: 12px;
      font-weight: 700;
      text-align: right;
    }
    .model-preview-band-stack {
      display: grid;
      gap: 14px;
    }
    .model-preview-band-card {
      display: grid;
      gap: 14px;
      padding: 18px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        rgba(10, 18, 27, 0.72);
    }
    .model-preview-band-head {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 10px;
      align-items: center;
    }
    .model-preview-band-head strong {
      color: rgba(247, 250, 252, 0.96);
      font-size: 18px;
      line-height: 1.35;
    }
    .model-preview-band-head span {
      color: rgba(224, 233, 240, 0.72);
      font-size: 13px;
      line-height: 1.4;
    }
    .model-preview-band-note {
      margin: 0;
      color: rgba(237, 243, 248, 0.74);
      font-size: 15px;
      line-height: 1.75;
    }
    .model-preview-band-actions {
      display: grid;
      gap: 12px;
    }
    .model-preview-band-action-note {
      color: rgba(235, 243, 249, 0.74);
      font-size: 13px;
      line-height: 1.6;
    }
    .model-preview-band-chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .model-link-row-stack {
      display: grid;
      gap: 8px;
    }
    .model-link-row {
      display: grid;
      gap: 4px;
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px solid rgba(160, 186, 219, 0.12);
      background: rgba(14, 24, 35, 0.62);
      text-decoration: none;
      color: inherit;
      transition:
        border-color 120ms ease,
        transform 120ms ease,
        background 120ms ease;
    }
    .model-link-row:hover {
      border-color: rgba(160, 186, 219, 0.24);
      background: rgba(18, 31, 44, 0.84);
      transform: translateY(-1px);
    }
    .model-link-row-label {
      font-size: 14px;
      font-weight: 700;
      color: rgba(247, 250, 252, 0.96);
    }
    .model-link-row-note {
      font-size: 12px;
      line-height: 1.45;
      color: rgba(224, 233, 240, 0.6);
    }
    .model-view-stage-note {
      position: relative;
      z-index: 1;
      margin: 0;
      text-align: left;
      max-width: none;
      font-size: clamp(17px, 1.35vw, 22px);
      font-weight: 700;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.92);
    }
    .workflow-shell {
      display: grid;
      gap: 22px;
    }
    .workflow-shell-workspace {
      --workflow-shell-pad: 28px;
      --workflow-stage-inline-pad: 10px;
      min-height: calc(100vh - 162px);
      padding: var(--workflow-shell-pad);
      border-radius: 30px;
      background:
        radial-gradient(circle at 50% 0%, rgba(84, 110, 186, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        rgba(7, 12, 18, 0.82);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 24px 64px rgba(3, 6, 10, 0.22);
    }
    .workflow-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
    }
    .workflow-head-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-end;
      gap: 14px;
    }
    .workflow-head h2 {
      margin: 0;
      font-size: clamp(34px, 3.8vw, 52px);
      line-height: 1.02;
      letter-spacing: -0.03em;
    }
    .workflow-head .text-link {
      padding-top: 10px;
      color: var(--muted);
      font-size: 16px;
      font-weight: 700;
    }
    .workflow-marker-strip {
      display: none;
    }
    .workflow-main-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: minmax(260px, 0.8fr) minmax(0, 2.45fr) minmax(260px, 0.82fr);
      align-items: start;
    }
    .workflow-main-grid-model {
      grid-template-columns: minmax(0, 3.6fr) minmax(240px, 0.76fr);
      align-items: start;
    }
    .workflow-main-grid-model .workflow-stage-panel {
      min-height: 0;
    }
    .workflow-shell-workspace .workflow-main-grid {
      grid-template-columns: minmax(0, 2.95fr) minmax(290px, 0.86fr);
      align-items: stretch;
      min-height: calc(100vh - 332px);
    }
    .workflow-left-stack,
    .workflow-right-stack {
      display: grid;
      gap: 18px;
      min-width: 0;
    }
    .workflow-right-stack-model {
      gap: 12px;
    }
    .model-advanced-status-body {
      display: grid;
      gap: 12px;
      margin-top: 14px;
    }
    .model-advanced-status-body > .model-side-panel {
      padding: 14px;
      border-radius: 14px;
      background: rgba(10, 18, 27, 0.52);
    }
    .workflow-panel,
    .workflow-stage-panel {
      display: grid;
      gap: 20px;
      padding: 26px;
      border-radius: 22px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
        rgba(14, 22, 31, 0.78);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
      min-width: 0;
    }
    .workflow-stage-panel-wide {
      grid-column: 1 / 3;
    }
    .workflow-stage-panel-workspace {
      grid-template-rows: auto 1fr auto;
      gap: 16px;
      min-height: 100%;
      padding: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
      backdrop-filter: none;
    }
    .workflow-stage-panel-workspace .workflow-stage-head,
    .workflow-stage-panel-workspace .workflow-stage-status,
    .workflow-stage-panel-workspace .workflow-empty-state-inline,
    .workflow-stage-panel-workspace > .action-row {
      padding-inline: var(--workflow-stage-inline-pad);
    }
    .workflow-empty-state-inline {
      min-height: 0;
      padding: 0;
      border-radius: 0;
      background: transparent;
    }
    .workflow-shell-workspace .workflow-primary-action-bar {
      justify-content: flex-end;
      padding: 20px 24px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
        rgba(9, 16, 24, 0.78);
    }
    .target-hub-shell {
      gap: 18px;
    }
    .target-hub-stage-footer {
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 12px;
      flex-wrap: wrap;
    }
    .target-hub-side-note,
    .target-hub-field-meta {
      margin: 0;
      color: rgba(237, 243, 248, 0.68);
      font-size: 14px;
      line-height: 1.45;
    }
    .target-hub-grid {
      grid-template-columns: minmax(244px, 280px) minmax(0, 2fr) minmax(0, 1fr);
      align-items: start;
    }
    .target-hub-create-card,
    .target-hub-list-card {
      min-height: 0;
      align-content: start;
    }
    .target-hub-create-card {
      padding: 18px;
    }
    .target-hub-list-card {
      display: grid;
      grid-template-rows: auto 1fr;
      gap: 18px;
      min-height: clamp(620px, calc(100vh - 170px), 920px);
      padding: 20px;
      overflow: hidden;
    }
    .target-hub-list-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .target-hub-list-head h3 {
      margin: 0;
      font-size: 20px;
      line-height: 1.1;
    }
    .target-hub-list-head span {
      color: rgba(237, 243, 248, 0.64);
      font-size: 13px;
      font-weight: 700;
    }
    .target-hub-list-body {
      min-height: 0;
      height: 100%;
      overflow-y: auto;
      padding-right: 4px;
    }
    .target-hub-list-body-scroll {
      overflow-y: auto;
    }
    .target-hub-stage {
      padding: 20px;
      border-radius: 24px;
      align-content: start;
    }
    .target-hub-form {
      display: grid;
      gap: 12px;
      min-height: 0;
      align-content: start;
    }
    .target-hub-create-head {
      display: grid;
      gap: 6px;
    }
    .target-hub-create-head h3 {
      margin: 0;
      font-size: 20px;
      line-height: 1.12;
    }
    .target-hub-create-head p {
      margin: 0;
      color: rgba(237, 243, 248, 0.68);
      font-size: 14px;
      line-height: 1.6;
    }
    .target-hub-field {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      min-height: 50px;
      padding: 14px 16px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.015);
      color: rgba(243, 247, 250, 0.92);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.2;
    }
    .target-hub-name-field {
      width: 100%;
      min-height: 68px;
      align-items: flex-start;
      padding-block: 16px;
    }
    .target-hub-field-link {
      text-decoration: none;
    }
    .target-hub-private-base-panel {
      margin: 0;
    }
    .target-hub-private-base-summary {
      cursor: pointer;
      list-style: none;
    }
    .target-hub-private-base-summary::-webkit-details-marker {
      display: none;
    }
    .target-hub-private-base-panel[open] .target-hub-private-base-summary {
      border-bottom-left-radius: 12px;
      border-bottom-right-radius: 12px;
    }
    .target-hub-private-base-body {
      display: grid;
      gap: 10px;
      margin-top: 10px;
      padding: 14px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.03);
      max-height: min(360px, 48vh);
      overflow-y: auto;
      padding-right: 10px;
    }
    .target-hub-private-base-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }
    .target-hub-private-base-item {
      display: grid;
      gap: 4px;
      padding: 12px 14px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.025);
      text-decoration: none;
    }
    .target-hub-private-base-item-label {
      color: rgba(243, 247, 250, 0.94);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.35;
    }
    .target-hub-private-base-item-note {
      color: rgba(237, 243, 248, 0.64);
      font-size: 12px;
      line-height: 1.45;
    }
    .target-hub-input {
      width: 100%;
      margin: 0;
      padding: 0;
      border: 0;
      background: transparent;
      color: rgba(243, 247, 250, 0.96);
      font-size: clamp(17px, 1.4vw, 22px);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.02em;
    }
    .target-hub-input:focus {
      outline: 3px solid var(--accent-strong);
      outline-offset: 3px;
    }
    .target-hub-input::placeholder {
      color: rgba(243, 247, 250, 0.92);
    }
    .target-hub-create-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      min-height: 22px;
      align-items: center;
    }
    .target-hub-create-links .text-link {
      color: rgba(237, 243, 248, 0.7);
      font-size: 14px;
      font-weight: 700;
    }
    .target-hub-create-note {
      margin: 0;
      color: rgba(237, 243, 248, 0.62);
      font-size: 14px;
      line-height: 1.6;
    }
    .target-hub-workspace-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      align-content: start;
    }
    .target-hub-workspace-grid-stack {
      grid-template-columns: minmax(0, 1fr);
    }
    .target-hub-workspace-card {
      display: grid;
      gap: 12px;
      padding: 14px;
      border-radius: 22px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        rgba(14, 21, 29, 0.88);
      text-decoration: none;
      min-height: 228px;
      align-content: start;
    }
    .target-hub-workspace-card-active {
      border-color: rgba(171, 201, 235, 0.28);
      background:
        linear-gradient(180deg, rgba(106, 140, 176, 0.14), rgba(255, 255, 255, 0.015)),
        rgba(14, 21, 29, 0.9);
    }
    .target-hub-workspace-preview {
      display: flex;
      align-items: flex-end;
      min-height: 120px;
      padding: 12px;
      border-radius: 18px;
      background:
        radial-gradient(circle at top left, rgba(116, 150, 185, 0.32), transparent 58%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(24, 34, 44, 0.92);
      overflow: hidden;
    }
    .target-hub-workspace-preview-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 56px;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(9, 14, 20, 0.44);
      color: rgba(243, 247, 250, 0.88);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
    }
    .target-hub-workspace-card-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 10px;
    }
    .target-hub-workspace-card-title {
      color: rgba(243, 247, 250, 0.96);
      font-size: 17px;
      line-height: 1.3;
    }
    .target-hub-workspace-card-state {
      flex: 0 0 auto;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      color: rgba(237, 243, 248, 0.72);
      font-size: 12px;
      font-weight: 700;
      line-height: 1;
    }
    .target-hub-workspace-card-meta {
      display: grid;
      gap: 5px;
      color: rgba(237, 243, 248, 0.64);
      font-size: 12px;
      line-height: 1.5;
    }
    .target-hub-empty {
      min-height: 0;
      height: 100%;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.03);
    }
    .model-selector-form {
      display: grid;
      gap: 10px;
      min-width: 0;
    }
    .model-toolbar-shell {
      display: grid;
      gap: 12px;
      padding: 16px 18px;
      border-radius: 28px;
      background:
        linear-gradient(180deg, rgba(111, 142, 175, 0.12), rgba(255, 255, 255, 0.02)),
        rgba(15, 22, 30, 0.92);
    }
    .model-toolbar-shell .action-row {
      gap: 8px;
    }
    .model-toolbar-shell .button {
      min-height: 0;
      padding: 9px 14px;
      font-size: 15px;
    }
    .model-toolbar-status {
      padding: 12px 16px;
      border-radius: 999px;
      border: 1px solid rgba(160, 186, 219, 0.18);
      background: rgba(21, 37, 50, 0.86);
      color: rgba(243, 247, 250, 0.9);
      font-size: 15px;
      font-weight: 600;
      line-height: 1.25;
    }
    .model-selector-field {
      min-height: 0;
      gap: 8px;
      align-items: flex-start;
      padding: 11px 12px;
      border-radius: 14px;
    }
    .model-selector-label {
      color: rgba(243, 247, 250, 0.58);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .model-selector-input {
      font-size: 15px;
      line-height: 1.3;
      letter-spacing: 0;
    }
    .model-selector-submit {
      min-width: 0;
      min-height: 42px;
      justify-content: center;
      padding-inline: 14px;
    }
    .model-side-panel {
      gap: 12px;
      padding: 18px;
      border-radius: 18px;
    }
    .model-side-panel h3 {
      font-size: 15px;
    }
    .model-side-panel .detail-rows {
      gap: 8px;
    }
    .model-side-panel .detail-row {
      grid-template-columns: minmax(68px, 88px) minmax(0, 1fr);
      gap: 8px;
      padding: 8px 0;
    }
    .model-side-panel .detail-row dd {
      line-height: 1.5;
    }
    .target-hub-stage-footer {
      margin-top: 2px;
      flex-direction: column;
      align-items: stretch;
      padding-top: 0;
    }
    .target-hub-stage-footer .button {
      width: 100%;
      min-width: 0;
      justify-content: center;
    }
    .workflow-panel h3,
    .workflow-stage-head h3 {
      margin: 0;
      font-size: clamp(24px, 2vw, 34px);
      line-height: 1.08;
      letter-spacing: -0.02em;
    }
    .workflow-panel p,
    .workflow-stage-head p,
    .workflow-muted-note,
    .workflow-note-copy {
      margin: 0;
      color: rgba(237, 243, 248, 0.66);
      font-size: 15px;
      line-height: 1.7;
    }
    .workflow-info-stack {
      display: grid;
      gap: 16px;
    }
    .workflow-info-stack strong {
      display: block;
      margin-bottom: 6px;
      font-size: 17px;
      line-height: 1.45;
      color: rgba(237, 243, 248, 0.9);
    }
    .workflow-mode-list,
    .workflow-link-list,
    .workflow-step-list {
      display: grid;
      gap: 16px;
    }
    .workflow-mode-option,
    .workflow-link-item,
    .workflow-step-item {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 14px;
      align-items: start;
      min-width: 0;
    }
    .workflow-mode-option input {
      width: 22px;
      height: 22px;
      margin: 2px 0 0;
      accent-color: #edf3f8;
    }
    .workflow-mode-dot,
    .workflow-step-dot,
    .workflow-quality-mark {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      margin-top: 6px;
      flex: none;
    }
    .workflow-mode-dot {
      border: 2px solid rgba(255, 255, 255, 0.92);
      box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.08);
    }
    .workflow-mode-dot-active {
      box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.92);
    }
    .workflow-step-dot-pending {
      background: #6faeff;
    }
    .workflow-step-dot-ready {
      background: #8fc5ff;
    }
    .workflow-quality-mark {
      width: 34px;
      height: 10px;
      border-radius: 999px;
      background: #7bbcff;
      margin-top: 0;
      justify-self: center;
    }
    .workflow-step-copy strong,
    .workflow-link-item strong {
      display: block;
      margin-bottom: 4px;
      font-size: 17px;
      line-height: 1.45;
      color: rgba(237, 243, 248, 0.92);
    }
    .workflow-stage-panel {
      gap: 18px;
      min-height: 548px;
    }
    .target-hub-stage.workflow-stage-panel {
      min-height: 0;
    }
    .workflow-stage-head {
      display: grid;
      gap: 8px;
    }
    .model-stage-head {
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: start;
      gap: 18px;
    }
    .model-stage-head-copy {
      display: grid;
      gap: 8px;
      min-width: 0;
    }
    .model-stage-head-actions {
      display: grid;
      gap: 8px;
      justify-items: end;
      align-content: start;
    }
    .model-stage-head-actions form {
      margin: 0;
    }
    .model-stage-manage-button {
      min-width: 152px;
      justify-content: center;
    }
    .model-stage-head-actions .workflow-muted-note {
      max-width: 280px;
      text-align: right;
      margin: 0;
    }
    .workflow-progress-bar-track {
      width: 100%;
      height: 28px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.08);
      overflow: hidden;
    }
    .workflow-progress-bar-fill {
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, #2c74ec, #5c9bf4);
    }
    .workflow-progress-bar-fill-empty {
      width: 0;
      min-width: 0;
      background: transparent;
    }
    .workflow-empty-state {
      display: grid;
      gap: 14px;
      min-height: 120px;
      padding: 28px 24px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.14);
      color: rgba(237, 243, 248, 0.66);
      align-content: start;
    }
    .workflow-empty-state strong {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.94);
    }
    .workflow-stage-footer {
      margin-top: auto;
      display: flex;
      justify-content: flex-end;
      gap: 24px;
      flex-wrap: wrap;
    }
    .workflow-stage-footer .text-link {
      color: rgba(237, 243, 248, 0.66);
      font-size: 15px;
      font-weight: 700;
    }
    .workflow-status-link {
      color: #2f79ff;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      line-height: 1.45;
    }
    .workflow-action-links {
      display: grid;
      gap: 18px;
    }
    .workflow-action-links .button {
      width: 100%;
      justify-content: center;
    }
    .workflow-action-links .text-link {
      color: rgba(237, 243, 248, 0.62);
      font-size: 15px;
      font-weight: 700;
    }
    .workflow-note-field {
      display: grid;
      gap: 12px;
    }
    .workflow-note-field span {
      color: rgba(237, 243, 248, 0.7);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.45;
    }
    .workflow-note-field textarea {
      min-height: 178px;
      resize: vertical;
    }
    .workflow-primary-action-bar {
      display: flex;
      justify-content: flex-end;
      gap: 24px;
      flex-wrap: wrap;
      color: rgba(237, 243, 248, 0.66);
      font-size: 15px;
      font-weight: 700;
    }
    .workflow-primary-action-bar .text-link {
      color: rgba(237, 243, 248, 0.66);
    }
    .workflow-metric-region {
      display: grid;
      grid-column: 1 / 3;
      grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
      gap: 18px;
      align-items: start;
    }
    .workflow-metric-stack {
      display: grid;
      gap: 18px;
      min-width: 0;
    }
    .workflow-grade-panel {
      min-height: 274px;
      align-content: center;
      justify-items: center;
      text-align: center;
    }
    .workflow-grade-panel p {
      text-align: center;
    }
    .portal-shell-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: minmax(0, var(--side-rail-width)) minmax(0, 2.1fr);
      align-items: start;
    }
    .portal-shell-grid-plain {
      grid-template-columns: 1fr;
      min-height: min(56vh, 620px);
    }
    .portal-left-rail {
      display: grid;
      gap: 14px;
      align-content: start;
    }
    .portal-left-rail-empty {
      display: none;
    }
	    .portal-stage-plain {
	      display: grid;
	      align-content: end;
	      min-height: 84px;
	      padding: 4px 2px 0;
	    }
	    .private-main .portal-stage-plain {
	      padding: 0;
	      border: 0;
	      background: transparent;
	      box-shadow: none;
	      backdrop-filter: none;
	    }
    .private-main .portal-stage-plain-hero {
      min-height: var(--portal-hero-min-height, min(44vh, 420px));
      align-content: start;
      justify-items: start;
      text-align: left;
      padding-top: var(--portal-hero-top);
      padding-left: var(--portal-hero-left);
    }
	    .portal-stage-kicker {
	      color: var(--muted);
	      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .portal-stage-title {
      margin: 0;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.02;
      letter-spacing: 0.02em;
    }
    .portal-stage-copy {
      margin: 0;
      max-width: 32rem;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.8;
    }
    .portal-thread-panel,
    .portal-composer-panel {
      gap: 0;
    }
    .portal-chat-thread {
      display: grid;
      gap: 12px;
    }
    .portal-chat-empty {
      padding: 18px 0 6px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.8;
    }
    .portal-chat-bubble {
      max-width: min(78ch, 100%);
      padding: 14px 16px;
      border-radius: 18px;
      line-height: 1.8;
    }
    .portal-chat-bubble-user {
      justify-self: end;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--line);
      color: var(--text);
    }
    .portal-chat-bubble-assistant {
      justify-self: start;
      background: var(--accent-soft);
      border: 1px solid rgba(255, 255, 255, 0.05);
      color: var(--text);
    }
    .portal-composer-form {
      display: grid;
      gap: 14px;
    }
    .portal-composer-input {
      min-height: 132px;
      padding: 18px 20px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--line);
      color: var(--text);
    }
    .portal-composer-actions {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
    }
    .private-main .portal-composer-strip {
      display: grid;
      gap: 14px;
      max-width: min(960px, calc(100% - var(--portal-composer-offset)));
      width: min(960px, calc(100% - var(--portal-composer-offset)));
      margin-top: var(--portal-composer-margin-top, auto);
      margin-left: var(--portal-composer-offset);
    }
    .portal-work-layout {
      --portal-hero-top: clamp(104px, 12vh, 148px);
      --portal-hero-left: clamp(136px, 11vw, 192px);
      --portal-hero-min-height: min(44vh, 420px);
      --portal-composer-offset: clamp(168px, 11vw, 220px);
      --portal-composer-margin-top: auto;
      --portal-composer-top-gap: 56px;
      min-height: calc(100vh - 128px);
      grid-template-rows: 1fr auto;
      align-content: stretch;
    }
    .private-main .portal-composer-strip-bottom {
      align-self: end;
      padding-top: var(--portal-composer-top-gap);
    }
    .portal-chip-strip {
      display: grid;
      gap: 10px;
    }
    .portal-secondary-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.85fr);
    }
    .upload-select-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: minmax(0, var(--side-rail-width)) minmax(0, 2fr);
    }
    .upload-select-main {
      display: grid;
      gap: 18px;
    }
    .upload-execute-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: minmax(240px, 0.92fr) minmax(0, 1.4fr) minmax(250px, 0.96fr);
    }
    .monitor-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: minmax(0, var(--side-rail-width)) minmax(0, 1.38fr) minmax(260px, 0.98fr);
    }
    .company-showcase-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
      align-items: start;
    }
    .company-feed-stack,
    .monitor-request-stack,
    .monitor-focus-stack,
    .monitor-rail-stack {
      display: grid;
      gap: 18px;
    }
    .company-hero-banner {
      gap: 0;
      padding: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
    }
    .company-belt-row,
    .company-featured-head,
    .company-hero-overlay,
    .company-feed-head,
    .company-feed-actions {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
    }
    .company-cover-stage {
      position: relative;
      min-height: 370px;
      padding: 0;
      overflow: hidden;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background:
        linear-gradient(180deg, rgba(6, 18, 36, 0.08), rgba(6, 18, 36, 0.34)),
        radial-gradient(circle at 18% 22%, rgba(83, 133, 197, 0.32), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(137, 187, 244, 0.18), transparent 22%),
        linear-gradient(108deg, #0b1b32 8%, #12345b 36%, #0d2848 58%, #08182c 100%);
    }
    .company-cover-fill {
      min-height: 370px;
      background:
        linear-gradient(180deg, rgba(5, 16, 32, 0.06), rgba(5, 16, 32, 0.2)),
        radial-gradient(circle at 58% 72%, rgba(122, 178, 240, 0.18), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    }
    .company-cover-owner-tools {
      position: absolute;
      top: 18px;
      right: 18px;
      z-index: 2;
      display: grid;
      gap: 10px;
      justify-items: end;
    }
    .company-cover-toolbar {
      display: flex;
      justify-content: flex-end;
    }
    .company-cover-settings-open {
      min-width: 132px;
    }
    .company-hero-overlay {
      position: absolute;
      inset: auto 0 0 0;
      padding: 28px 30px 32px;
      background: linear-gradient(180deg, rgba(5, 16, 32, 0), rgba(5, 16, 32, 0.74) 42%, rgba(5, 16, 32, 0.94));
      align-items: end;
    }
    .company-hero-profile,
    .company-hero-title-group,
    .company-feed-title-group,
    .company-feature-copy {
      display: grid;
      gap: 8px;
    }
    .company-hero-title-group h2 {
      margin: 0;
      font-size: clamp(38px, 4.4vw, 64px);
      line-height: 1.02;
      font-weight: 800;
      letter-spacing: -0.03em;
    }
    .company-hero-title-group p {
      margin: 0;
      color: rgba(237, 243, 248, 0.8);
      font-size: 20px;
      line-height: 1.5;
    }
    .company-hero-stats {
      display: flex;
      gap: 12px;
      align-items: center;
    }
    .company-hero-stat {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(237, 243, 248, 0.82);
      font-size: 16px;
      font-weight: 600;
    }
    .company-hero-stat::before {
      content: "";
      width: 10px;
      aspect-ratio: 1 / 1;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.86);
    }
    .company-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }
    .company-hero-action-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 168px;
      background: #3558a8;
      color: #f7fbff;
    }
    .company-hero-action-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 112px;
      background: rgba(8, 25, 46, 0.72);
      border-color: rgba(255, 255, 255, 0.08);
    }
    .company-hero-action-icon::before,
    .company-hero-action-icon::after {
      content: "";
      position: absolute;
    }
    .company-hero-action-icon {
      position: relative;
      display: inline-flex;
      width: 18px;
      aspect-ratio: 1 / 1;
      flex: 0 0 auto;
    }
    .company-hero-action-icon-view::before {
      inset: 2px 0;
      border-radius: 999px;
      border: 1.6px solid rgba(255, 255, 255, 0.82);
    }
    .company-hero-action-icon-view::after {
      inset: 6px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
    }
    .company-hero-action-icon-share::before {
      inset: 4px 3px;
      background:
        radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0.84) 0 2px, transparent 3px),
        radial-gradient(circle at 82% 50%, rgba(255, 255, 255, 0.84) 0 2px, transparent 3px),
        radial-gradient(circle at 28% 12%, rgba(255, 255, 255, 0.84) 0 2px, transparent 3px),
        linear-gradient(135deg, transparent 44%, rgba(255, 255, 255, 0.84) 46% 52%, transparent 54%),
        linear-gradient(28deg, transparent 44%, rgba(255, 255, 255, 0.84) 46% 52%, transparent 54%);
    }
    .company-filter-belt,
    .company-feed-column,
    .company-featured-panel {
      padding: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
    }
    .company-feed-column,
    .company-featured-panel {
      display: grid;
      gap: 18px;
      align-content: start;
    }
    .company-filter-belt {
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .company-image-picker-wrap {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .company-image-picker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 40px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(8, 25, 46, 0.82);
      color: #f7fbff;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      backdrop-filter: blur(14px);
    }
    .company-image-picker-icon {
      display: inline-grid;
      place-items: center;
      width: 20px;
      aspect-ratio: 1 / 1;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      font-size: 16px;
      line-height: 1;
    }
    .company-image-clear {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(8, 25, 46, 0.82);
      color: #f7fbff;
      font-weight: 700;
      cursor: pointer;
      backdrop-filter: blur(14px);
    }
    .company-image-clear[hidden] {
      display: none;
    }
    .company-image-picker-note {
      flex-basis: 100%;
      color: rgba(219, 231, 242, 0.72);
      font-size: 12px;
      line-height: 1.45;
    }
    .company-belt-row {
      padding: 0 10px;
    }
    .company-tab-group {
      display: inline-flex;
      gap: 34px;
      border: 0;
      background: transparent;
    }
    .company-tab {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 58px;
      padding: 0 2px;
      border-radius: 0;
      border-bottom: 3px solid transparent;
      color: rgba(237, 243, 248, 0.72);
      text-decoration: none;
      font-weight: 700;
      font-size: 18px;
    }
    .company-tab-active {
      color: var(--text);
      border-bottom-color: #3b6fe0;
    }
    .company-composer-row {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 14px;
      align-items: start;
      padding: 18px 20px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(9, 27, 49, 0.94);
      box-shadow: var(--shadow);
    }
    .company-composer-avatar,
    .company-feed-avatar {
      display: grid;
      place-items: center;
      width: 52px;
      aspect-ratio: 1 / 1;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.05);
      color: rgba(237, 243, 248, 0.76);
      font-weight: 700;
    }
    .company-composer-main,
    .company-feature-edit {
      display: grid;
      gap: 14px;
      min-width: 0;
    }
    .company-composer-name {
      color: var(--text);
      font-size: 28px;
      font-weight: 800;
      line-height: 1.1;
    }
    .company-composer-title-input,
    .company-composer-body-input,
    .company-contact-input,
    .company-contact-textarea,
    .company-feature-input,
    .company-feature-textarea {
      width: 100%;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text);
      padding: 14px 16px;
      font: inherit;
      outline: none;
    }
    .company-composer-title-input::placeholder,
    .company-composer-body-input::placeholder,
    .company-contact-input::placeholder,
    .company-contact-textarea::placeholder,
    .company-feature-input::placeholder,
    .company-feature-textarea::placeholder {
      color: rgba(237, 243, 248, 0.42);
    }
    .company-composer-body-input,
    .company-contact-textarea,
    .company-feature-textarea {
      min-height: 150px;
      resize: vertical;
      line-height: 1.7;
    }
    .company-composer-canvas {
      position: relative;
      min-height: 320px;
      padding: 18px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background:
        linear-gradient(180deg, rgba(5, 16, 32, 0.04), rgba(5, 16, 32, 0.36)),
        radial-gradient(circle at 32% 24%, rgba(98, 149, 211, 0.34), transparent 22%),
        radial-gradient(circle at 74% 18%, rgba(142, 190, 244, 0.18), transparent 18%),
        linear-gradient(128deg, #0b1b32 8%, #16385f 36%, #0d2645 100%);
      overflow: hidden;
    }
    .company-composer-canvas-badge {
      position: absolute;
      left: 18px;
      bottom: 18px;
      display: inline-flex;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      color: rgba(237, 243, 248, 0.72);
      font-size: 14px;
      font-weight: 700;
    }
    .company-composer-chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      min-width: 0;
    }
    .company-composer-chip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
      color: rgba(237, 243, 248, 0.82);
      font-weight: 600;
    }
    .company-composer-chip-icon {
      position: relative;
      display: inline-flex;
      width: 18px;
      aspect-ratio: 1 / 1;
      flex: 0 0 auto;
    }
    .company-composer-chip-icon::before,
    .company-composer-chip-icon::after {
      content: "";
      position: absolute;
    }
    .company-composer-chip-space .company-composer-chip-icon::before {
      inset: 2px;
      border-radius: 4px;
      border: 1.6px solid rgba(130, 168, 255, 0.88);
      background: rgba(130, 168, 255, 0.12);
    }
    .company-composer-chip-light .company-composer-chip-icon::before {
      inset: 2px;
      border-radius: 999px;
      border: 1.6px solid rgba(143, 197, 255, 0.88);
      box-shadow: 0 0 0 2px rgba(143, 197, 255, 0.16);
    }
    .company-composer-chip-ai .company-composer-chip-icon::before {
      inset: 2px;
      border-radius: 999px;
      border: 1.6px solid rgba(196, 182, 255, 0.92);
    }
    .company-composer-chip-ai .company-composer-chip-icon::after {
      inset: 5px;
      border-radius: 999px;
      background: rgba(196, 182, 255, 0.92);
    }
    .company-composer-actions {
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
    }
    .company-composer-action {
      min-width: 148px;
      min-height: 54px;
      background: #3558a8;
      color: #f7fbff;
    }
    .company-preview-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    .company-feed-row {
      display: grid;
      gap: 18px;
      padding: 20px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(8, 24, 44, 0.96);
    }
    .company-feed-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }
    .company-feed-footer-meta {
      color: var(--muted);
      font-size: 13px;
    }
    .company-feed-delete {
      min-height: 34px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(8, 25, 46, 0.82);
      color: #f7fbff;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
    }
    .company-feed-head {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: start;
    }
    .company-feed-head-main {
      display: flex;
      gap: 14px;
      align-items: center;
      min-width: 0;
    }
    .company-feed-meta,
    .company-feature-refresh,
    .company-feature-meta {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.7;
    }
    .company-feed-body {
      display: grid;
      gap: 12px;
    }
    .company-feed-body p {
      margin: 0;
      color: rgba(237, 243, 248, 0.84);
      line-height: 1.8;
      white-space: pre-wrap;
    }
    .company-feed-link-title {
      color: var(--text);
      font-size: 18px;
      font-weight: 700;
    }
    .company-feed-points {
      display: grid;
      gap: 8px;
      margin: 0;
      padding-left: 26px;
      color: rgba(237, 243, 248, 0.84);
      line-height: 1.8;
    }
    .company-feed-inline-link {
      width: fit-content;
      color: #79a7ff;
      text-decoration: none;
      font-weight: 700;
    }
    .company-feed-preview,
    .company-feature-preview {
      display: flex;
      position: relative;
      min-height: 320px;
      padding: 18px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background:
        linear-gradient(180deg, rgba(5, 16, 32, 0.04), rgba(5, 16, 32, 0.36)),
        radial-gradient(circle at 32% 24%, rgba(98, 149, 211, 0.34), transparent 22%),
        radial-gradient(circle at 74% 18%, rgba(142, 190, 244, 0.18), transparent 18%),
        linear-gradient(128deg, #0b1b32 8%, #16385f 36%, #0d2645 100%);
      overflow: hidden;
    }
    .company-feature-preview {
      min-height: 190px;
      border-radius: 12px;
    }
    .company-feed-preview-link,
    .company-feature-preview-link {
      flex: 1 1 auto;
      display: grid;
      align-content: end;
      text-decoration: none;
    }
    .company-preview-upload {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 2;
    }
    .company-feed-preview-label,
    .company-feature-preview-label {
      display: inline-flex;
      width: fit-content;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .company-feed-actions {
      justify-content: flex-start;
      gap: 18px;
    }
    .company-feed-action,
    .company-feed-more {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }
    .company-featured-panel {
      gap: 18px;
      padding-top: 8px;
    }
    .company-contact-card {
      display: grid;
      gap: 16px;
      padding: 18px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(8, 24, 44, 0.82);
      box-shadow: var(--shadow);
    }
    .company-contact-head-note {
      margin: 0;
      color: rgba(237, 243, 248, 0.64);
      font-size: 13px;
      line-height: 1.6;
    }
    .company-contact-rows {
      gap: 0;
    }
    .company-contact-row {
      grid-template-columns: minmax(82px, 110px) minmax(0, 1fr) auto;
      gap: 10px 14px;
      align-items: start;
      padding: 14px 0;
    }
    .company-contact-row[data-open="true"] {
      border-bottom-color: rgba(121, 167, 255, 0.18);
    }
    .company-contact-row dd {
      min-width: 0;
      font-size: 24px;
      font-weight: 800;
      line-height: 1.2;
      overflow-wrap: anywhere;
    }
    .company-contact-trigger {
      align-self: start;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(121, 167, 255, 0.22);
      background: rgba(121, 167, 255, 0.08);
      color: #79a7ff;
      font: inherit;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
    }
    .company-contact-trigger[aria-expanded="true"] {
      background: rgba(121, 167, 255, 0.16);
      border-color: rgba(121, 167, 255, 0.36);
    }
    .company-contact-panel {
      grid-column: 2 / -1;
      display: grid;
      gap: 12px;
      margin-top: 2px;
    }
    .company-contact-field {
      display: grid;
      gap: 8px;
      min-width: 0;
    }
    .company-contact-field span {
      color: rgba(237, 243, 248, 0.72);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .company-contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .company-contact-hint {
      margin: 0;
      color: rgba(237, 243, 248, 0.58);
      font-size: 13px;
      line-height: 1.7;
    }
    .company-featured-head {
      align-items: baseline;
    }
    .company-feature-refresh {
      text-decoration: none;
      font-weight: 700;
    }
    .company-feature-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    .company-feature-row {
      display: grid;
      gap: 12px;
      padding: 14px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(8, 24, 44, 0.96);
      box-shadow: var(--shadow);
    }
    .company-feature-row-wide {
      grid-column: 1 / -1;
    }
    .company-feature-copy {
      display: grid;
      gap: 6px;
    }
    .company-feature-input {
      min-height: 52px;
      font-size: 24px;
      font-weight: 800;
      line-height: 1.15;
    }
    .company-feature-textarea {
      min-height: 92px;
      font-size: 15px;
      color: rgba(237, 243, 248, 0.82);
    }
    .company-belt-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      justify-content: flex-end;
    }
    .company-lookup-chip {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.04);
      color: rgba(237, 243, 248, 0.78);
      font-size: 13px;
      font-weight: 700;
    }
    .company-intro-copy {
      display: grid;
      gap: 10px;
      padding: 18px 22px 0;
      color: rgba(237, 243, 248, 0.84);
      line-height: 1.8;
    }
    .company-intro-copy p {
      margin: 0;
    }
    .company-safe-note,
    .company-muted-note,
    .company-feed-empty {
      color: rgba(237, 243, 248, 0.62);
      line-height: 1.7;
    }
    .company-safe-note {
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid rgba(121, 167, 255, 0.18);
      background: rgba(121, 167, 255, 0.08);
    }
    .company-profile-editor,
    .company-feature-focus {
      display: grid;
      gap: 16px;
      padding: 18px 20px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(9, 27, 49, 0.94);
      box-shadow: var(--shadow);
    }
    .company-profile-form,
    .company-contact-edit-form,
    .company-contact-request-form,
    .company-request-inline-form {
      display: grid;
      gap: 12px;
    }
    .company-contact-request-form .button,
    .company-request-inline-form .button {
      width: 100%;
    }
    .company-feature-actions,
    .monitor-request-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }
    .company-feature-title {
      color: var(--text);
      font-size: 18px;
      font-weight: 700;
    }
    .company-feature-preview-static {
      display: grid;
      place-items: end start;
    }
    .company-feature-preview-badge {
      position: relative;
      z-index: 1;
      display: inline-flex;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      color: rgba(237, 243, 248, 0.84);
      font-weight: 700;
    }
    .company-lookup-surface,
    .company-settings-surface {
      position: fixed;
      inset: 0;
      z-index: 40;
      display: grid;
      place-items: center;
      padding: 24px;
    }
    .company-settings-surface {
      z-index: 41;
    }
    .company-lookup-backdrop,
    .company-settings-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(5, 7, 11, 0.76);
      backdrop-filter: blur(10px);
    }
    .company-lookup-card {
      position: relative;
      z-index: 1;
      width: min(840px, calc(100vw - 32px));
      max-height: min(82vh, 920px);
      overflow: auto;
      display: grid;
      gap: 16px;
      padding: 24px;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(8, 24, 44, 0.96);
      box-shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
    }
    .company-settings-card {
      position: relative;
      z-index: 1;
      width: min(1020px, calc(100vw - 32px));
      max-height: min(84vh, 980px);
      overflow: auto;
      display: grid;
      gap: 16px;
      padding: 24px;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(7, 22, 42, 0.96);
      box-shadow: 0 28px 96px rgba(0, 0, 0, 0.4);
    }
    .company-lookup-head,
    .company-lookup-form,
    .company-lookup-result-head,
    .company-lookup-actions {
      display: flex;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
    }
    .company-lookup-close {
      color: rgba(237, 243, 248, 0.72);
      text-decoration: none;
      font-weight: 700;
    }
    .company-lookup-input {
      flex: 1 1 auto;
      min-height: 50px;
      padding: 0 16px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text);
      font: inherit;
    }
    .company-lookup-results {
      display: grid;
      gap: 12px;
    }
    .company-lookup-result {
      display: grid;
      gap: 12px;
      padding: 18px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(255, 255, 255, 0.03);
    }
    .company-lookup-result-head h3,
    .company-lookup-result-head p {
      margin: 0;
    }
    .company-lookup-result-head p {
      color: rgba(237, 243, 248, 0.62);
      line-height: 1.6;
    }
    .company-lookup-status {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(121, 167, 255, 0.12);
      color: #9fc2ff;
      font-size: 12px;
      font-weight: 700;
    }
    .company-lookup-empty {
      padding: 18px;
      border-radius: 16px;
      border: 1px dashed rgba(255, 255, 255, 0.1);
      color: rgba(237, 243, 248, 0.62);
    }
    .monitor-focus-panel,
    .monitor-focus-row,
    .monitor-request-row,
    .lane-row {
      display: grid;
      gap: 10px;
      padding: 16px 18px;
      border-radius: 20px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.03);
      text-decoration: none;
    }
    .monitor-focus-panel,
    .monitor-focus-row,
    .monitor-request-row,
    .lane-row {
      box-shadow: none;
    }
    .monitor-focus-panel {
      background: var(--accent-soft);
      border-color: rgba(255, 255, 255, 0.08);
    }
    .lane-row-active {
      border-color: var(--line-strong);
      background: rgba(255, 255, 255, 0.06);
    }
    .lane-row-label {
      color: var(--text);
      font-weight: 700;
    }
    .lane-row-note {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.7;
    }
    .monitor-column-stack,
    .company-side-stack {
      display: grid;
      gap: 14px;
      align-content: start;
    }
    .monitor-focus-header,
    .monitor-request-head {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: start;
    }
    .monitor-focus-header h2,
    .monitor-request-head h3 {
      margin: 0;
    }
    .monitor-focus-state,
    .monitor-request-status {
      min-width: 88px;
      padding: 7px 12px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.04);
      color: var(--accent-strong);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-align: center;
    }
    .monitor-focus-body {
      display: grid;
      gap: 12px;
    }
    .monitor-focus-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .company-settings-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .company-settings-head .company-contact-head-note {
      margin: 0;
    }
    .company-settings-close {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text);
      text-decoration: none;
      font-weight: 700;
      white-space: nowrap;
    }
    .company-settings-close:hover {
      border-color: rgba(121, 167, 255, 0.24);
      background: rgba(121, 167, 255, 0.08);
    }
    .monitor-rail-section {
      display: grid;
      gap: 12px;
      padding-top: 2px;
    }
    .monitor-rail-section h3 {
      margin: 0;
      font-size: 16px;
    }
    .monitor-request-row p,
    .company-feed-row p,
    .company-feature-row p {
      margin: 0;
      color: var(--muted);
      line-height: 1.8;
    }
    .monitor-request-meta {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.7;
    }
    .monitor-inline-form {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }
    .primary-action-bar,
    .monitor-action-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }
    .empty-note {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }
    @media (max-width: 1180px) {
      .private-topbar {
        grid-template-columns: 1fr;
        align-items: flex-start;
      }
	      .private-shell-grid {
	        grid-template-columns: 1fr;
	      }
      .private-left-rail {
        position: static;
        width: min(100%, 260px);
      }
	      .portal-shell-grid,
	      .portal-shell-grid-plain,
      .profile-featured-deck,
      .profile-body-grid,
      .portal-secondary-grid,
      .upload-select-grid,
      .upload-execute-grid,
      .monitor-grid,
      .company-showcase-grid,
      .grid-2,
      .grid-3,
	      .stat-grid {
	        grid-template-columns: 1fr;
	      }
      .profile-stage-head,
      .profile-panel-head,
      .profile-main-head {
        grid-template-columns: 1fr;
      }
      .model-stage-head {
        grid-template-columns: 1fr;
      }
      .model-stage-head-actions {
        justify-items: start;
      }
      .model-stage-head-actions .workflow-muted-note {
        max-width: none;
        text-align: left;
      }
      .model-view-stage-frame {
        min-height: 420px;
      }
      .workflow-main-grid {
        grid-template-columns: 1fr;
      }
      .target-hub-grid {
        grid-template-columns: 1fr;
      }
      .target-hub-workspace-grid-stack {
        grid-template-columns: minmax(0, 1fr);
      }
      .target-hub-private-base-grid,
      .company-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .target-hub-list-card {
        min-height: 0;
      }
      .target-hub-empty {
        min-height: 220px;
      }
      .target-hub-stage.workflow-stage-panel {
        width: 100%;
      }
      .workflow-shell-workspace {
        min-height: auto;
      }
      .workflow-shell-workspace .workflow-main-grid {
        min-height: auto;
      }
      .target-hub-stream-card {
        min-height: 0;
      }
      .workflow-metric-region {
        grid-column: auto;
        grid-template-columns: 1fr;
      }
      .workflow-stage-panel {
        min-height: 0;
      }
      .target-hub-stage-footer {
        flex-direction: column;
        align-items: flex-start;
      }
      .profile-stage-actions .action-row {
        justify-content: flex-start;
      }
      .portal-work-layout {
        --portal-composer-top-gap: 28px;
        --portal-hero-top: clamp(92px, 12vh, 132px);
        --portal-hero-left: clamp(96px, 12vw, 148px);
        --portal-composer-offset: clamp(132px, 16vw, 200px);
        min-height: auto;
        grid-template-rows: auto auto;
        align-content: start;
      }
      .private-shell[data-page-id="company_showcase"] .private-topbar {
        margin: 0 -28px;
        padding: 0 28px;
      }
      .private-shell[data-page-id="company_showcase"] .private-account-actions::before {
        display: none;
      }
      .private-shell[data-page-id="company_showcase"] .private-topbar {
        margin: 0;
        padding: 0;
      }
      .company-composer-row {
        grid-template-columns: 1fr;
      }
      .company-belt-actions,
      .company-lookup-head,
      .company-lookup-form,
      .company-lookup-result-head,
      .company-lookup-actions {
        justify-content: flex-start;
      }
      .company-contact-row {
        grid-template-columns: 1fr auto;
      }
      .company-contact-row dt {
        grid-column: 1 / -1;
      }
      .company-contact-panel {
        grid-column: 1 / -1;
      }
      .company-hero-overlay {
        flex-direction: column;
        align-items: flex-start;
      }
      .company-hero-actions {
        justify-content: flex-start;
      }
      .company-cover-owner-tools {
        top: 16px;
        right: 16px;
      }
    }
    @media (max-width: 1380px) {
      .profile-featured-strip {
        gap: 12px;
      }
      .profile-body-grid {
        grid-template-columns: minmax(0, 1.6fr) minmax(340px, 0.96fr);
      }
      .profile-list-stack-side .profile-list-row {
        grid-template-columns: 1fr;
      }
      .profile-list-stack-side .profile-row-side {
        justify-content: flex-start;
        padding-left: 24px;
      }
    }
    @media (max-width: 760px) {
      .private-shell {
        display: block;
        min-height: auto;
        padding: 12px 12px 16px;
      }
      .private-topbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
          "brand actions"
          "nav nav";
        gap: 10px;
        margin-bottom: 10px;
        align-items: center;
      }
      .private-topbar-brand {
        grid-area: brand;
      }
      .private-account-actions {
        grid-area: actions;
        justify-self: end;
      }
      .private-major-nav {
        grid-area: nav;
        flex-wrap: nowrap;
        gap: 8px;
        padding: 0;
        overflow-x: auto;
        scrollbar-width: none;
      }
      .private-major-nav::-webkit-scrollbar,
      .private-support-links::-webkit-scrollbar {
        display: none;
      }
      .private-major-link {
        min-height: 40px;
        padding: 0 14px;
        white-space: nowrap;
        font-size: 14px;
      }
      .private-brand-logo {
        width: 108px;
        border-radius: 0;
      }
      .private-account-actions .button {
        min-height: 40px;
        padding: 0 14px;
      }
      .private-shell-grid {
        display: block;
      }
      .private-shell[data-page-id="public_showcase_home"] {
        min-height: 100vh;
        padding: 12px;
      }
      .private-shell[data-page-id="public_showcase_home"] .private-topbar,
      .private-shell[data-page-id="public_showcase_home"] .private-left-rail,
      .private-shell[data-page-id="public_showcase_home"] [data-region="lobby_intro_stage"],
      .private-shell[data-page-id="public_showcase_home"] [data-region="home_lobby_footer_strip"] {
        display: none;
      }
      .private-shell[data-page-id="public_showcase_home"] .private-content-column,
      .private-shell[data-page-id="public_showcase_home"] .private-main,
      .private-shell[data-page-id="public_showcase_home"] [data-region="home_lobby_stage"] {
        display: block;
        width: 100%;
      }
      .private-shell[data-page-id="public_showcase_home"] .public-home-mobile-entry {
        display: grid;
        gap: 18px;
        min-height: calc(100vh - 24px);
        align-content: center;
        margin: 0;
        padding: 20px;
      }
      .private-shell[data-page-id="public_showcase_home"] .public-home-desktop-entry {
        display: none;
      }
      .private-left-rail {
        gap: 8px;
        margin-bottom: 10px;
      }
      .private-brand-zone,
      .private-context-cluster {
        padding: 0;
      }
      .private-page-title {
        font-size: 15px;
        letter-spacing: 0.02em;
      }
      .private-context-cluster {
        gap: 8px;
      }
      .private-support-links {
        display: flex;
        flex-wrap: nowrap;
        gap: 6px;
        overflow-x: auto;
      }
      .private-support-link {
        min-height: 34px;
        padding: 0 10px;
        border-radius: 14px;
        white-space: nowrap;
        font-size: 13px;
      }
      .private-session-chip {
        padding: 5px 10px;
      }
      .private-session-note {
        display: none;
      }
      .private-content-column,
      .private-main {
        display: block;
      }
      .portal-work-layout {
        --portal-hero-top: 18px;
        --portal-hero-left: 20px;
        --portal-hero-min-height: 116px;
        --portal-composer-offset: 12px;
        --portal-composer-margin-top: 0;
        --portal-composer-top-gap: 0;
        min-height: auto;
        grid-template-rows: auto auto;
        gap: 10px;
        align-self: start;
        align-content: start;
      }
      .portal-shell-grid-plain {
        min-height: auto;
      }
      .portal-composer-form {
        gap: 8px;
      }
      .profile-featured-strip {
        gap: 10px;
      }
      .target-hub-workspace-grid,
      .target-hub-private-base-grid,
      .company-feature-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
      }
      .profile-featured-card {
        width: min(208px, 72vw);
        min-width: min(208px, 72vw);
        min-height: 144px;
      }
      .profile-featured-picker-copy strong {
        font-size: 16px;
      }
      .profile-featured-plus {
        font-size: 42px;
      }
      .profile-featured-picker-copy span {
        font-size: 11px;
      }
      .profile-list-row {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .profile-space {
        gap: 16px;
      }
      .profile-stage {
        gap: 14px;
      }
      .profile-body-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        align-content: start;
      }
      .profile-body-grid > .workspace-panel {
        min-width: 0;
      }
      .profile-row-side {
        justify-content: flex-start;
        align-self: start;
        white-space: normal;
      }
      .profile-list-stack-side .profile-row-side {
        padding-left: 0;
      }
      .profile-panel-head,
      .profile-main-head {
        justify-items: start;
        gap: 10px;
      }
      .portal-stage-title {
        font-size: clamp(22px, 7vw, 30px);
      }
      .portal-composer-input {
        min-height: 76px;
        padding: 12px 14px;
      }
      .portal-composer-strip-bottom {
        padding-bottom: 0;
      }
      .workflow-head {
        flex-direction: column;
        align-items: flex-start;
      }
      .workflow-head-actions {
        justify-content: flex-start;
      }
      .workflow-shell-workspace {
        --workflow-shell-pad: 18px;
        --workflow-stage-inline-pad: 0;
        min-height: auto;
      }
      .target-hub-stage {
        min-height: 0;
        padding: 18px;
      }
      .workflow-panel,
      .workflow-stage-panel {
        padding: 18px;
      }
      .workflow-stage-panel-workspace {
        padding: 0;
      }
      .workflow-stage-footer,
      .workflow-primary-action-bar {
        justify-content: flex-start;
      }
      .workflow-note-field textarea {
        min-height: 140px;
      }
      .target-hub-field {
        min-height: 56px;
        padding: 16px;
        font-size: 16px;
      }
      .target-hub-name-field {
        min-height: 70px;
        width: 100%;
      }
      .target-hub-input {
        font-size: 18px;
      }
      .model-view-stage-frame {
        min-height: 360px;
      }
      .model-view-stage-preview {
        gap: 16px;
        padding: 18px;
      }
      .model-stage-head-actions .workflow-muted-note {
        font-size: 12px;
      }
      .model-view-stage-chrome {
        align-items: flex-start;
      }
      .model-view-stage-kicker,
      .model-view-stage-hud {
        min-height: 36px;
        padding: 0 12px;
        font-size: 12px;
      }
      .model-view-stage-viewport {
        min-height: 290px;
      }
      .model-view-acceptance-overlay {
        top: 12px;
        right: 12px;
        left: 12px;
        min-width: 0;
      }
      .model-view-camera {
        inset: 12% 4% 10%;
      }
      .model-view-stage-note {
        font-size: 17px;
      }
      .model-view-stage-chip {
        min-height: 30px;
        padding: 0 10px;
        font-size: 12px;
      }
      .model-preview-band-card {
        padding: 16px;
      }
      .model-preview-band-head {
        align-items: flex-start;
      }
      .timeline-item {
        grid-template-columns: 1fr;
      }
      .private-shell[data-page-id="company_showcase"] .private-topbar {
        margin: 0 -12px;
        padding: 0 12px;
      }
      .private-shell[data-page-id="company_showcase"] .private-major-nav {
        gap: 18px;
      }
      .private-shell[data-page-id="company_showcase"] .private-topbar {
        margin: 0;
        padding: 0;
      }
      .private-shell[data-page-id="company_showcase"] .private-major-nav {
        gap: 8px;
      }
      .company-belt-row,
      .company-feed-head,
      .company-featured-head,
      .company-hero-overlay {
        flex-direction: column;
        align-items: stretch;
      }
      .company-tab-group {
        width: 100%;
        gap: 0;
        justify-content: space-between;
      }
      .company-belt-actions,
      .company-lookup-form,
      .company-lookup-head,
      .company-lookup-result-head,
      .company-lookup-actions {
        flex-direction: column;
        align-items: stretch;
      }
      .company-lookup-card {
        padding: 18px;
      }
      .company-tab {
        flex: 1 1 0;
        min-width: 0;
        font-size: 16px;
      }
      .company-hero-action-primary,
      .company-hero-action-ghost,
      .company-composer-action {
        width: 100%;
      }
      .company-cover-stage,
      .company-cover-fill {
        min-height: 280px;
      }
      .company-hero-overlay {
        padding: 18px;
      }
      .company-cover-owner-tools {
        top: 14px;
        right: 14px;
      }
      .company-settings-head {
        align-items: flex-start;
      }
      .company-hero-title-group h2 {
        font-size: clamp(28px, 10vw, 38px);
      }
      .company-composer-row {
        gap: 12px;
      }
      .company-image-picker {
        min-height: 36px;
        padding: 0 14px;
        font-size: 14px;
      }
      .company-preview-upload {
        top: 12px;
        right: 12px;
      }
      .company-feed-head-main {
        align-items: start;
      }
      .company-feed-preview,
      .company-feature-preview {
        min-height: 220px;
      }
    }