/* CareerOS – SaaS-ish minimal UI */

:root{
  --bg: #f4f0e7;
  --bg-soft: #fbf8f2;
  --card: rgba(251,248,241,.84);
  --card-strong: #fbf8f1;
  --heading: #11100e;
  --text: #352b23;
  --muted: #8b7e70;
  --border: rgba(67,55,44,.10);
  --label-font: "Fira Mono", ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --primary: #2e9f85;
  --primary-strong: #257c67;
  --primary-weak: rgba(46,159,133,.14);
  --accent-soft: rgba(203,177,142,.22);

  --shadow-sm: 0 8px 22px rgba(74,61,49,.06);
  --shadow: 0 18px 48px rgba(74,61,49,.08);
  --shadow-md: 0 22px 56px rgba(74,61,49,.12);
  --shadow-lg: 0 30px 72px rgba(74,61,49,.16);
  --radius: 22px;

  --success-bg: rgba(63,161,111,.14);
  --success-fg: #1f6a42;

  --warn-bg: rgba(224,170,93,.16);
  --warn-fg: #8a5a0a;

  --info-bg: rgba(116,171,203,.18);
  --info-fg: #7a6c5d;

  --violet-bg: rgba(182,160,225,.18);
  --violet-fg: #7b6e60;

  --danger-bg: rgba(214,112,112,.14);
  --danger-fg: #8f2f2f;

  --neutral-bg: rgba(124,139,159,.18);
  --neutral-fg: #736656;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

img, svg, canvas{
  max-width:100%;
  height:auto;
}

.container{ max-width: 1180px; margin: 28px auto; padding: 0 18px; }
.stack{ display:flex; flex-direction:column; gap: 16px; }
.row{ display:flex; gap: 12px; align-items:center; flex-wrap:wrap; }
.grow{ flex: 1 1 auto; }
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.topbar{
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(10px);
  background: var(--bg);
  border-bottom: 1px solid rgba(67,55,44,.07);
}
.topbar-inner{
  max-width: 1180px; margin: 0 auto;
  padding: 14px 18px;
  display:flex; align-items:center; gap: 14px;
}
.brand{
  display:flex; align-items:baseline; gap:8px;
  font-weight:800; letter-spacing:-.02em;
}
.brand .mark{
  width:10px; height:10px; border-radius: 999px; background: var(--primary);
  box-shadow: 0 0 0 6px var(--primary-weak);
}
.nav{
  display:flex; gap: 8px; align-items:center;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(251,248,241,.7);
}
.nav a{
  text-decoration:none;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
}
.nav a.active{
  color: var(--text);
  background: rgba(74,61,49,.06);
}
.user-pill{
  margin-left:auto;
  display:flex; align-items:center; gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

label{ font-size: 12px; font-weight: 650; color: var(--muted); display:block; margin-bottom: 6px; font-family: var(--label-font); letter-spacing: .04em; }
input, select, textarea{
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(251,248,241,.92);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: .18s;
}
textarea{ resize: vertical; min-height: 130px; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(46,159,133,.44);
  box-shadow: 0 0 0 4px rgba(46,159,133,.12);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(251,248,241,.9);
  color: var(--text);
  font-weight: 700;
  cursor:pointer;
  transition: .18s;
  text-decoration:none;
  font-size: 13px;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  border-color: rgba(46,159,133,.46);
  color: white;
}
.btn-primary:hover{ box-shadow: 0 18px 38px rgba(46,159,133,.22); }
.btn-quiet{ background: rgba(74,61,49,.05); color: var(--text); }
.btn-quiet:hover{ color: var(--primary-strong); }
.btn-danger{ background: rgba(214,112,112,.12); border-color: rgba(214,112,112,.2); }

.chips{ display:flex; gap: 8px; flex-wrap:wrap; }
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(251,248,241,.7);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.chip strong{ color: var(--text); }
.dot{ width:8px; height:8px; border-radius:999px; background: rgba(74,61,49,.35); }

.badge{
  display:inline-flex; align-items:center; gap:8px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid transparent;
}

.status-draft{ background: var(--neutral-bg); color: var(--neutral-fg); border-color: rgba(148,163,184,.28); }
.status-applied{ background: var(--info-bg); color: var(--info-fg); border-color: rgba(56,189,248,.28); }
.status-responded{ background: var(--violet-bg); color: var(--violet-fg); border-color: rgba(139,92,246,.26); }
.status-interview{ background: var(--primary-weak); color: var(--primary); border-color: rgba(91,92,246,.26); }
.status-offer{ background: var(--success-bg); color: var(--success-fg); border-color: rgba(34,197,94,.24); }
.status-rejected{ background: var(--danger-bg); color: var(--danger-fg); border-color: rgba(239,68,68,.22); }
.status-withdrawn{ background: var(--warn-bg); color: var(--warn-fg); border-color: rgba(245,158,11,.25); }

.right-col{
  margin-left:auto;
  display:flex; gap: 10px; align-items:center;
  flex-wrap:wrap; justify-content:flex-end;
}

.chip input[type="checkbox"]{
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--primary);
}

.sub{ margin-top: 4px; color: var(--muted); font-size: 13px; }
.small{ font-size: 12px; color: var(--muted); }
.hr{ height:1px; background: var(--border); margin: 14px 0; }

table th, table td{ vertical-align: top; }

.row > *,
.topbar-inner > *,
.shell-header__left > *,
.shell-header__right > *,
.workspace-list-card__header > *,
.workspace-list-card__title-row > *,
.dashboard-section__head > *,
.dashboard-planning-entry > *,
.pipeline-toolbar > *{
  min-width:0;
}

.card,
.sub,
.btn,
.chip,
.badge,
.workspace-list-card__title,
.workspace-focus__value,
.dashboard-section__title,
.dashboard-focus-card__title,
.dashboard-action-tile__title,
.dashboard-alert__title,
.shell-link__title,
.shell-link__copy small{
  overflow-wrap:anywhere;
}

/* Dashboard cockpit */
.cockpit-hero{
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(46,159,133,.16), transparent 34%),
    radial-gradient(circle at left bottom, rgba(222,201,171,.28), transparent 32%),
    linear-gradient(180deg, rgba(251,248,241,.96), rgba(251,248,241,.90));
}
.cockpit-hero__split{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  flex-wrap:wrap;
}
.cockpit-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}
.cockpit-hero__eyebrow{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--muted);
}
.cockpit-hero__lede{
  max-width:58ch;
  font-size:15px;
  margin-top:10px;
}
.cockpit-hero__signature{
  margin-top:16px;
  color:var(--muted);
  font-weight:700;
}
.cockpit-title{
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -.04em;
  line-height:1.04;
  margin-top:10px;
}
.cockpit-grid{
  display:grid;
  gap:16px;
}
.cockpit-grid--4{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cockpit-grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cockpit-grid--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

.kpi-card{
  display:block;
  text-decoration:none;
  color:inherit;
  padding:16px;
  transition: .18s;
}
.kpi-card:hover{ transform: translateY(-2px); }
.kpi-card__label{
  display:flex;
  align-items:center;
  gap:8px;
  font-size: 12px;
  font-weight: 750;
  color: var(--muted);
}
.kpi-card__value{
  margin-top:8px;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -.04em;
}

.funnel-card{ padding:16px; }
.section-title{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:850;
}
.funnel-steps{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-top:14px;
}
.funnel-step{
  flex:1 1 160px;
  min-width:160px;
  text-decoration:none;
  color:inherit;
  border:1px solid var(--border);
  border-radius:14px;
  background: rgba(74,61,49,.02);
  padding:12px;
}
.funnel-step__name{
  display:block;
  color: var(--muted);
  font-size:12px;
  font-weight:700;
}
.funnel-step__value{
  display:block;
  margin-top:6px;
  font-size:24px;
  font-weight:900;
  letter-spacing:-.03em;
}
.funnel-arrow{
  color: var(--muted);
  font-weight:900;
}

.panel-card{ padding:16px; }
.panel-card--accent{
  background:
    linear-gradient(135deg, rgba(91,92,246,.06), rgba(139,92,246,.04)),
    #fff;
}
.panel-big-number{
  margin-top:10px;
  font-size:42px;
  font-weight:900;
  letter-spacing:-.03em;
}
.trend{
  font-size:14px;
  margin-left:6px;
}
.trend--up{ color: var(--success-fg); }
.trend--down{ color: var(--danger-fg); }
.trend--flat{ color: var(--muted); }

.metric-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:12px;
}
.metric-list__row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}
.metric-list__row--stack{
  flex-direction:column;
}
.metric-list__row small{
  color: var(--muted);
}

.recommendation{
  padding:16px;
}
.recommendation--warn{ border-color: rgba(245,158,11,.28); background: rgba(245,158,11,.08); }
.recommendation--danger{ border-color: rgba(239,68,68,.22); background: rgba(239,68,68,.08); }
.recommendation--info{ border-color: rgba(56,189,248,.22); background: rgba(56,189,248,.08); }
.recommendation--success{ border-color: rgba(34,197,94,.22); background: rgba(34,197,94,.08); }
.recommendation__title{
  font-weight:850;
  margin-bottom:6px;
}

.chart-card{ padding:16px; }

.insight-banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px;
  text-decoration:none;
  color:inherit;
  border-color: rgba(245,158,11,.24);
  background: linear-gradient(135deg, rgba(245,158,11,.08), rgba(251,248,241,1));
}
.insight-banner__title{
  font-weight:850;
}
.insight-banner__cta{
  font-weight:800;
  color: var(--warn-fg);
}

.info-tip{
  position:relative;
  display:inline-flex;
  align-items:center;
}
.info-tip__icon{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  color: var(--muted);
  border:1px solid var(--border);
  background: rgba(251,248,241,.9);
  cursor:help;
}
.info-tip__bubble{
  position:absolute;
  left:0;
  top:26px;
  min-width:220px;
  max-width:280px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  color: var(--text);
  font-size:12px;
  font-weight:500;
  line-height:1.45;
  box-shadow: var(--shadow);
  opacity:0;
  visibility:hidden;
  transform: translateY(6px);
  transition:.16s;
  z-index:30;
}
.info-tip:hover .info-tip__bubble,
.info-tip:focus-within .info-tip__bubble{
  opacity:1;
  visibility:visible;
  transform: translateY(0);
}

/* Drilldown calendar */
.calendar-groups{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}
.calendar-day{
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
  background: rgba(74,61,49,.02);
}
.calendar-day__header{
  font-weight:850;
  margin-bottom:10px;
}
.calendar-entry{
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 12px;
  background:#fff;
}

@media (max-width: 980px){
  .cockpit-grid--4,
  .cockpit-grid--3,
  .cockpit-grid--2,
  .calendar-groups{
    grid-template-columns: 1fr;
  }

  .funnel-steps{
    align-items:stretch;
  }

  .funnel-arrow{
    display:none;
  }

  .insight-banner{
    flex-direction:column;
    align-items:flex-start;
  }
}

.funnel-step__meta{
  display:block;
  margin-top:6px;
  color: var(--muted);
  font-size:12px;
  font-weight:700;
}

.tooltip {
    position: relative;
    cursor: help;
}

.tooltip:hover .tooltip-text {
    opacity: 1;
}

.tooltip-text {
    position: absolute;
    opacity: 0;
}

.brand-wrap{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand{
  text-decoration:none;
  color: var(--text);
}
.topbar-context{
  color: var(--muted);
  font-size:13px;
}
.topbar-actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
}
.nav--desktop{
  margin-left:auto;
}
.mobile-nav{
  display:none;
  margin-left:auto;
  position:relative;
}
.mobile-nav__toggle{
  list-style:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(251,248,241,.9);
  color: var(--text);
  font-weight:700;
  cursor:pointer;
}
.mobile-nav__toggle::-webkit-details-marker{ display:none; }
.mobile-nav__panel{
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  width:min(280px, calc(100vw - 36px));
  padding:14px;
}
.mobile-nav__user{
  font-size:13px;
  color: var(--muted);
  margin-bottom:10px;
}
.mobile-nav__links{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.mobile-nav__links a{
  text-decoration:none;
  color: var(--text);
  font-weight:700;
  padding:10px 12px;
  border-radius:12px;
  background: rgba(74,61,49,.03);
}
.mobile-nav__links a.active{
  background: var(--primary-weak);
  color: var(--primary);
}
.container--shell{
  display:grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap:18px;
  align-items:start;
}
.content-shell{
  min-width:0;
}
.nav-rail{
  position:sticky;
  top:84px;
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.nav-rail__section{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.nav-rail__section--accent{
  padding:14px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(91,92,246,.08), rgba(139,92,246,.05));
  border:1px solid rgba(91,92,246,.14);
}
.nav-rail__eyebrow{
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--muted);
}
.nav-rail__link{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:12px 13px;
  border-radius:14px;
  border:1px solid transparent;
  color: var(--text);
  text-decoration:none;
  background: rgba(74,61,49,.025);
}
.nav-rail__link span{
  font-weight:800;
}
.nav-rail__link small{
  color: var(--muted);
}
.nav-rail__link.is-active{
  border-color: rgba(91,92,246,.18);
  background: var(--primary-weak);
}
.bottom-nav{
  display:none;
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:25;
  border:1px solid var(--border);
  border-radius:18px;
  background: rgba(251,248,241,.94);
  box-shadow: var(--shadow);
  padding:8px;
  gap:6px;
  backdrop-filter: blur(10px);
}
.bottom-nav a{
  flex:1 1 0;
  text-align:center;
  text-decoration:none;
  color: var(--muted);
  font-size:12px;
  font-weight:800;
  padding:10px 8px;
  border-radius:12px;
}
.bottom-nav a.active{
  background: rgba(74,61,49,.06);
  color: var(--text);
}
.bottom-nav__primary{
  background: var(--primary);
  color: white !important;
}
.form-grid{
  display:grid;
  gap:12px;
}
.form-grid--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.salary-panel{
  padding:14px;
  border:1px solid var(--border);
  border-radius:16px;
  background: rgba(74,61,49,.02);
}
.salary-panel__hint{
  margin-top:10px;
  font-size:13px;
  color: var(--muted);
}
.salary-fields{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  align-items:end;
}
.salary-field.is-hidden{
  display:none;
}
.section-split{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
}
@media (max-width: 1180px){
  .container--shell{
    grid-template-columns: 1fr;
  }
  .nav-rail{
    display:none;
  }
}
@media (max-width: 820px){
  .nav--desktop,
  .user-pill,
  .topbar-create,
  .topbar-context{
    display:none;
  }
  .mobile-nav{
    display:block;
  }
  .bottom-nav{
    display:flex;
  }
  body{
    padding-bottom:84px;
  }
  .container{
    margin: 20px auto;
  }
  .topbar-inner{
    padding: 12px 16px;
  }
  .salary-fields,
  .form-grid--2,
  .form-grid--3,
  .section-split{
    grid-template-columns: 1fr;
  }
}

/* Phase A shell reset */
body.app-body{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
.app-shell{
  min-height:100vh;
}
.app-shell--signed-in{
  display:grid;
  grid-template-columns: 298px minmax(0, 1fr);
}
.shell-main{
  min-width:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
.shell-content{
  flex:1 1 auto;
}
.shell-header{
  position:sticky;
  top:0;
  z-index:24;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:16px 24px;
  border-bottom:1px solid rgba(67,55,44,.07);
  background:var(--bg);
  backdrop-filter: blur(14px);
}
.shell-header__left,
.shell-header__right{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.shell-header__right{
  margin-left:auto;
}
.shell-header__eyebrow{
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--muted);
}
.shell-header__title{
  font-size:22px;
  font-weight:900;
  letter-spacing:-.03em;
  color:var(--heading);
}
.shell-header__toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(251,248,241,.92);
  color:var(--text);
  cursor:pointer;
  font-weight:800;
}
.shell-header__user{
  display:inline-flex;
  align-items:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(244,240,231,.88);
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}
.shell-nav{
  position:sticky;
  top:0;
  height:100vh;
  border-right:none;
  background:var(--bg);
  backdrop-filter: blur(18px);
}
.shell-nav__inner{
  display:flex;
  flex-direction:column;
  gap:18px;
  height:100%;
  min-height:0;
  overflow-y:auto;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
  padding:18px 16px 24px;
}
.shell-nav__brand-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.shell-nav__collapse-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(251,248,241,.86);
  color:var(--text);
  font-size:24px;
  line-height:1;
  cursor:pointer;
  box-shadow:var(--shadow-sm);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  flex:0 0 auto;
}
.shell-nav__collapse-toggle:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow-md);
}
.shell-nav__compact-actions{
  display:none;
}
.shell-nav__compact-toggle,
.shell-nav__compact-create{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(251,248,241,.86);
  color:var(--text);
  text-decoration:none;
  font-size:22px;
  font-weight:850;
  box-shadow:var(--shadow-sm);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.shell-nav__compact-toggle:hover,
.shell-nav__compact-create:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow-md);
}
.shell-nav__compact-toggle{
  appearance:none;
  cursor:pointer;
}
.shell-nav__compact-create{
  font-size:28px;
  line-height:1;
}
.shell-brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text);
  min-width:0;
}
.shell-brand__mark{
  position:relative;
  width:22px;
  height:18px;
  flex:0 0 auto;
}
.shell-brand__mark::before,
.shell-brand__mark::after{
  content:"";
  position:absolute;
  inset:auto;
  border-radius:14px 14px 14px 4px;
  background:linear-gradient(160deg, rgba(46,159,133,.95), rgba(46,159,133,.54));
}
.shell-brand__mark::before{
  width:14px;
  height:14px;
  left:0;
  top:2px;
  transform:rotate(-18deg);
  box-shadow:0 0 0 8px rgba(46,159,133,.10);
}
.shell-brand__mark::after{
  width:12px;
  height:12px;
  right:0;
  top:0;
  transform:rotate(28deg);
  opacity:.92;
}
.shell-brand__text{
  font-size:20px;
  font-weight:900;
  letter-spacing:-.03em;
  white-space:nowrap;
}
.shell-nav__group{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.shell-nav__group--secondary{
  margin-top:auto;
}
.shell-nav__eyebrow{
  padding:0 10px;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--muted);
}
.shell-link{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px;
  border-radius:16px;
  text-decoration:none;
  color:var(--text);
  border:1px solid transparent;
  background:rgba(74,61,49,.025);
  transition:.16s;
}
.shell-link:hover{
  transform:translateY(-1px);
  border-color:rgba(46,159,133,.18);
  box-shadow:none;
  color:var(--primary-strong);
}
.shell-link.is-active{
  border-color:rgba(46,159,133,.18);
  background:rgba(46,159,133,.12);
}
.shell-link__icon{
  flex:0 0 auto;
  min-width:38px;
  height:38px;
  padding:0 8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(251,248,241,.9);
  border:1px solid var(--border);
  font-size:12px;
  font-weight:900;
  color:var(--muted);
}
.shell-link.is-active .shell-link__icon{
  color:var(--primary-strong);
  border-color:rgba(46,159,133,.18);
}
.shell-link__copy{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}
.shell-link__title{
  font-weight:850;
  transition:color .18s ease;
}
.shell-link:hover .shell-link__title{
  color:var(--primary-strong);
}
.shell-link__copy small{
  color:var(--muted);
  line-height:1.35;
}
.shell-link--secondary{
  padding:10px 12px;
  background:transparent;
}
.shell-nav__quick{
  padding:16px;
  border-radius:18px;
  background:linear-gradient(145deg, rgba(46,159,133,.14), rgba(222,201,171,.18));
  border:1px solid rgba(46,159,133,.16);
  box-shadow:none;
}
.shell-nav__quick-title{
  margin-top:6px;
  font-weight:900;
  letter-spacing:-.02em;
}
.shell-nav__quick-btn{
  width:100%;
  margin-top:12px;
}
.shell-nav__meta{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-top:4px;
}
.shell-user-pill{
  padding:12px;
  border-radius:16px;
  background:rgba(251,248,241,.58);
  border:1px solid var(--border);
}
.shell-user-pill__eyebrow{
  display:block;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:800;
  margin-bottom:6px;
}
.shell-nav__logout{
  width:100%;
}
.shell-overlay{
  display:none;
}
.app-body.shell-nav-collapsed .app-shell--signed-in{
  grid-template-columns: 76px minmax(0, 1fr);
}
.app-body.shell-nav-collapsed .shell-nav__brand-row,
.app-body.shell-nav-collapsed .shell-nav__quick,
.app-body.shell-nav-collapsed .shell-nav__group,
.app-body.shell-nav-collapsed .shell-nav__meta{
  display:none !important;
}
.app-body.shell-nav-collapsed .shell-nav__inner{
  padding-inline:10px;
  align-items:center;
}
.app-body.shell-nav-collapsed .shell-nav__compact-actions{
  display:flex !important;
  flex-direction:column;
  align-items:center;
  gap:12px;
  margin-top:8px;
}
.container{
  width:100%;
  max-width:none;
  margin:0;
  padding:24px 28px 40px;
}
.content-shell{
  width:100%;
  max-width:1580px;
  margin:0 auto;
  min-width:0;
}
.site-footer{
  border-top:1px solid rgba(67,55,44,.07);
  background:var(--bg);
}
.site-footer__inner{
  width:100%;
  max-width:1580px;
  margin:0 auto;
  padding:18px 28px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.site-footer__brand{
  font-weight:850;
  letter-spacing:-.02em;
  color:var(--heading);
}
.site-footer__links{
  display:flex;
  flex-wrap:wrap;
  gap:12px 16px;
}
.site-footer__links a{
  color:var(--muted);
  text-decoration:none;
  font-size:13px;
  font-weight:700;
}
.site-footer__links a:hover{
  color:var(--primary-strong);
}
.guest-nav{
  display:flex;
  gap:10px;
  align-items:center;
}
.legal-page{
  padding:24px 26px;
  max-width:920px;
  width:100%;
}
.legal-page__eyebrow{
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--muted);
}
.legal-page__title{
  margin-top:8px;
  font-size:42px;
  font-weight:900;
  letter-spacing:-.04em;
}
.legal-page__intro{
  max-width:70ch;
}
.legal-page__notice{
  margin-top:16px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(245,158,11,.1);
  border:1px solid rgba(245,158,11,.18);
  color:var(--warn-fg);
  font-size:13px;
  font-weight:700;
}
.legal-page__sections{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-top:20px;
}
.legal-page__section{
  padding-top:6px;
}
.legal-page__section h2{
  margin:0 0 8px;
  font-size:18px;
  letter-spacing:-.02em;
}
.legal-page__section p,
.legal-page__section li{
  color:var(--muted);
  line-height:1.6;
}
.legal-page__section ul{
  margin:10px 0 0 18px;
  padding:0;
}
@media (max-width: 1023px){
  html,
  body,
  body.app-body,
  .app-shell,
  .shell-main{
    height:auto;
    min-height:0;
  }
  .app-shell--signed-in{
    display:block;
  }
  .shell-nav{
    position:fixed;
    left:0;
    top:0;
    bottom:0;
    height:100dvh;
    width:min(320px, 86vw);
    z-index:40;
    transform:translateX(-100%);
    transition:transform .18s ease;
    box-shadow:0 20px 40px rgba(74,61,49,.18);
  }
  .shell-nav__inner{
    gap:16px;
    padding-bottom:32px;
  }
  .shell-nav__group--secondary{
    margin-top:0;
  }
  .shell-nav__meta{
    margin-top:0;
    padding-top:0;
  }
  .app-body.shell-nav-open .shell-nav{
    transform:translateX(0);
  }
  .shell-overlay{
    position:fixed;
    inset:0;
    z-index:35;
    background:rgba(74,61,49,.34);
    border:0;
    opacity:0;
    visibility:hidden;
    transition:.18s;
  }
  .app-body.shell-nav-open .shell-overlay{
    display:block;
    opacity:1;
    visibility:visible;
  }
  .shell-header{
    position:relative;
    top:auto;
    padding:14px 16px;
    backdrop-filter:none;
  }
  .shell-header__user{
    display:none;
  }
  .shell-nav__compact-actions{
    display:none !important;
  }
  .shell-nav__collapse-toggle{
    display:none !important;
  }
  .shell-header__toggle--mobile{
    display:inline-flex !important;
  }
  .container{
    padding:18px 16px 28px;
  }
  .site-footer__inner{
    padding:18px 16px 22px;
  }
}
@media (max-width: 820px){
  .topbar,
  .mobile-nav,
  .bottom-nav,
  .nav--desktop,
  .topbar-actions,
  .topbar-context{
    display:none !important;
  }
  .shell-header__primary{
    display:none;
  }
  .legal-page{
    padding:20px 18px;
  }
}

.workspace-view-grid{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap:12px;
}
.workspace-view-card{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid var(--border);
  background:rgba(251,248,241,.84);
  text-decoration:none;
  color:inherit;
  min-width:0;
}
.workspace-view-card:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow-md);
}
.workspace-view-card.is-active{
  border-color:rgba(37,99,235,.28);
  background:rgba(37,99,235,.08);
}
.workspace-view-card__title{
  font-weight:850;
}

/* Phase B dashboard IA reset */
.dashboard-section{
  padding:18px;
}
.dashboard-section--hero{
  background:
    radial-gradient(circle at top right, rgba(46,159,133,.14), transparent 34%),
    radial-gradient(circle at left bottom, rgba(222,201,171,.26), transparent 32%),
    linear-gradient(180deg, rgba(251,248,241,.98), rgba(251,248,241,.94));
}
.dashboard-section__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.dashboard-section__eyebrow{
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--muted);
}
.dashboard-section__title{
  margin-top:6px;
  font-size:22px;
  font-weight:900;
  letter-spacing:-.03em;
}
.dashboard-layout-block{
  align-items:start;
}
.dashboard-focus-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.6fr) minmax(320px, .92fr);
  gap:16px;
}
.dashboard-focus-grid__side{
  display:grid;
  grid-template-columns:repeat(1, minmax(0, 1fr));
  gap:12px;
}
.dashboard-focus-card,
.dashboard-action-tile,
.dashboard-funnel-card,
.dashboard-alert{
  text-decoration:none;
  color:inherit;
}
.dashboard-focus-card{
  min-height:320px;
  border-radius:28px;
  padding:26px;
  border:1px solid var(--border);
  background:rgba(74,61,49,.03);
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  transition:.18s;
}
.dashboard-focus-card:hover,
.dashboard-action-tile:hover,
.dashboard-funnel-card:hover,
.dashboard-alert:hover{
  transform:translateY(-2px);
}
.dashboard-focus-card--primary{
  background:linear-gradient(165deg, rgba(227,214,190,.78), rgba(251,248,241,.88));
  border-color:rgba(224,170,93,.24);
}
.dashboard-focus-card--warn{
  background:linear-gradient(165deg, rgba(239,226,199,.88), rgba(251,248,241,.92));
  border-color:rgba(224,170,93,.24);
}
.dashboard-focus-card--info{
  background:linear-gradient(165deg, rgba(219,238,245,.88), rgba(251,248,241,.92));
  border-color:rgba(116,171,203,.24);
}
.dashboard-focus-card--calm{
  background:linear-gradient(165deg, rgba(248,248,247,.98), rgba(251,248,241,.94));
}
.dashboard-focus-card__eyebrow{
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--muted);
}
.dashboard-focus-card__title{
  margin-top:12px;
  font-size:40px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.05em;
}
.dashboard-focus-card__body{
  margin-top:10px;
  font-size:15px;
  font-weight:750;
}
.dashboard-focus-card__meta{
  margin-top:8px;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}
.dashboard-focus-card__cta{
  margin-top:18px;
  font-size:13px;
  font-weight:800;
  color:var(--primary-strong);
}
.dashboard-action-tile{
  min-height:118px;
  border-radius:20px;
  padding:16px 18px;
  border:1px solid var(--border);
  background:rgba(251,248,241,.9);
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  transition:.18s;
}
.dashboard-action-tile--warn{ border-color:rgba(224,170,93,.24); background:rgba(239,226,199,.62); }
.dashboard-action-tile--accent{ border-color:rgba(182,160,225,.24); background:rgba(239,236,252,.72); }
.dashboard-action-tile--info{ border-color:rgba(116,171,203,.24); background:rgba(228,240,247,.76); }
.dashboard-action-tile__title{
  font-size:12px;
  font-weight:800;
  color:var(--muted);
}
.dashboard-action-tile__value{
  margin-top:8px;
  font-size:40px;
  font-weight:900;
  letter-spacing:-.05em;
}
.dashboard-action-tile__body{
  margin-top:8px;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}
.dashboard-action-tile__cta{
  margin-top:auto;
  padding-top:10px;
  font-size:13px;
  font-weight:800;
  color:var(--text);
}
.dashboard-funnel-row{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
}
.dashboard-funnel-card{
  border-radius:18px;
  padding:16px;
  border:1px solid var(--border);
  background:rgba(74,61,49,.03);
  transition:.18s;
}
.dashboard-funnel-card__label{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:750;
  color:var(--muted);
}
.dashboard-funnel-card__value{
  margin-top:10px;
  font-size:26px;
  font-weight:900;
  letter-spacing:-.04em;
}
.dashboard-funnel-card__value span{
  margin-left:6px;
  font-size:15px;
  font-weight:750;
  color:var(--muted);
}
.dashboard-planning-group{
  border-top:1px solid rgba(74,61,49,.06);
  padding-top:14px;
}
.dashboard-planning-group:first-child{
  border-top:0;
  padding-top:0;
}
.dashboard-planning-group__title{
  font-weight:850;
}
.dashboard-planning-entry{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--border);
  background:rgba(74,61,49,.03);
  display:flex;
  gap:14px;
  align-items:flex-start;
  flex-wrap:wrap;
}
.dashboard-alert{
  display:block;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid var(--border);
  background:rgba(74,61,49,.03);
  box-shadow:none;
}
.dashboard-alert--warn{ border-color:rgba(224,170,93,.24); background:rgba(239,226,199,.68); }
.dashboard-alert--info{ border-color:rgba(116,171,203,.24); background:rgba(228,240,247,.82); }
.dashboard-alert--accent{ border-color:rgba(182,160,225,.24); background:rgba(239,236,252,.82); }
.dashboard-alert__title{
  font-weight:850;
}
.dashboard-details{
  padding:18px;
}
.dashboard-details summary{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  cursor:pointer;
}
.dashboard-details summary::-webkit-details-marker{
  display:none;
}
.dashboard-details__hint{
  color:var(--muted);
  font-size:12px;
  font-weight:800;
}
.dashboard-insight-block{
  border-radius:18px;
  border:1px solid var(--border);
  background:rgba(74,61,49,.02);
  padding:16px;
}
.dashboard-insight-panel{
  border-radius:16px;
  padding:12px 14px;
  border:1px solid rgba(74,61,49,.06);
  background:rgba(251,248,241,.84);
}
.dashboard-insight-panel__value{
  margin-top:6px;
  font-size:22px;
  font-weight:900;
  letter-spacing:-.03em;
}
@media (max-width: 1200px){
  .dashboard-focus-grid{
    grid-template-columns:1fr;
  }
  .dashboard-funnel-row{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 820px){
  .dashboard-section,
  .dashboard-details{
    padding:16px;
  }
  .dashboard-section__title{
    font-size:19px;
  }
  .dashboard-focus-card{
    min-height:0;
    padding:18px;
  }
  .dashboard-focus-card__title{
    font-size:24px;
  }
  .dashboard-funnel-row{
    grid-template-columns:1fr;
  }
  .dashboard-planning-entry{
    padding:12px;
  }
}

/* Phase C — screen harmonization */
.workspace-hero{
  padding:22px 24px;
  display:flex;
  gap:18px;
  justify-content:space-between;
  align-items:flex-start;
}
.workspace-hero__content{ flex:1 1 420px; min-width:280px; }
.workspace-hero__eyebrow{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:800;
  margin-bottom:8px;
}
.workspace-hero__title{
  font-size:30px;
  line-height:1.08;
  letter-spacing:-.04em;
  font-weight:900;
}
.workspace-hero__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.overview-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
}
.overview-card{
  padding:16px 18px;
  border:1px solid var(--border);
  border-radius:16px;
  background:rgba(251,248,241,.76);
  box-shadow:var(--shadow);
}
.overview-card--flat{
  background:rgba(74,61,49,.02);
  box-shadow:none;
}
.overview-card__label{
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:800;
}
.overview-card__value{
  margin-top:8px;
  font-size:32px;
  line-height:1;
  letter-spacing:-.04em;
  font-weight:900;
}
.overview-card__value--compact{
  font-size:22px;
  line-height:1.2;
}
.section-card{ padding:18px 20px; }
.section-card__header{
  display:flex;
  gap:12px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}
.section-card--danger{
  border-color:rgba(239,68,68,.18);
  background:rgba(254,242,242,.76);
}
.section-card--danger-zone{
  border-color:rgba(239,68,68,.22);
  background:rgba(251,248,241,.78);
}
.section-title{
  font-weight:900;
  font-size:18px;
  letter-spacing:-.02em;
}
.filter-pills{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.filter-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  text-decoration:none;
  color:var(--text);
  background:rgba(251,248,241,.58);
  font-weight:700;
}
.filter-pill.is-active{
  background:var(--primary);
  color:#fff;
  border-color:var(--primary-strong);
  box-shadow:0 14px 32px rgba(99,102,241,.22);
}
.workspace-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.workspace-list-card{
  padding:16px 18px;
  background:rgba(251,248,241,.82);
}
.workspace-list-card--compact{
  padding:14px 16px;
}
.workspace-list-card__header{
  display:flex;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}
.workspace-list-card__title-row{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.workspace-list-card__title{
  color:var(--text);
  text-decoration:none;
  font-weight:900;
  font-size:20px;
  letter-spacing:-.03em;
}
.workspace-list-card__actions{
  display:flex;
  gap:8px;
  align-items:flex-start;
  flex-wrap:wrap;
}
.workspace-list-card__meta{
  margin-top:12px;
}
.workspace-list-card__focus{
  margin-top:14px;
}
.workspace-focus{
  border-radius:16px;
  padding:14px 16px;
  border:1px solid var(--border);
  background:rgba(74,61,49,.03);
}
.workspace-focus--accent{
  background:rgba(99,102,241,.08);
  border-color:rgba(99,102,241,.18);
}
.workspace-focus--warn{
  background:rgba(245,158,11,.11);
  border-color:rgba(245,158,11,.22);
}
.workspace-focus--success{
  background:rgba(16,185,129,.1);
  border-color:rgba(16,185,129,.22);
}
.workspace-focus--calm{
  background:rgba(74,61,49,.03);
}
.workspace-focus__label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--muted);
  font-weight:800;
}
.workspace-focus__value{
  margin-top:6px;
  font-size:22px;
  font-weight:900;
  letter-spacing:-.03em;
}
.detail-grid{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.detail-grid--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.detail-subcard{
  padding:16px 18px;
  background:rgba(251,248,241,.74);
}
.section-subcard{
  padding:16px 18px;
  border:1px solid var(--border);
  border-radius:16px;
  background:rgba(74,61,49,.02);
}
.empty-state{
  padding:20px 22px;
}
.empty-state__title{
  font-weight:900;
  font-size:18px;
  letter-spacing:-.02em;
}
.empty-state__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.workspace-details{
  padding:0;
  overflow:hidden;
}
.workspace-details summary{
  list-style:none;
  cursor:pointer;
  padding:18px 20px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.workspace-details summary::-webkit-details-marker{ display:none; }
.workspace-details summary::after{
  content:'▾';
  color:var(--muted);
  font-weight:800;
  justify-self:end;
  align-self:start;
  margin-top:4px;
}
.workspace-details[open] summary::after{
  transform:rotate(180deg);
}
.workspace-details__body{
  border-top:1px solid var(--border);
  padding:18px 20px 20px;
}
.workspace-details summary{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto auto;
  align-items:start;
  column-gap:12px;
}
.workspace-details summary > .chip{
  justify-self:end;
  align-self:start;
  margin-top:2px;
}
.workspace-details__count{
  min-width:104px;
  justify-content:center;
  text-align:center;
}
.workspace-list-card__actions--footer{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(67,55,44,.08);
  gap:12px;
}
.workspace-list-card__actions--footer form{
  display:inline-flex;
}
.workspace-list-card__actions--footer .btn{
  min-height:44px;
}
@media (max-width: 1200px){
  .overview-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-grid,
  .detail-grid--2{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .workspace-hero{ padding:18px; }
  .workspace-hero__title{ font-size:24px; }
  .overview-grid{ grid-template-columns: 1fr; }
  .section-card,
  .workspace-details__body,
  .workspace-details summary,
  .workspace-list-card,
  .detail-subcard,
  .section-subcard{ padding:16px; }
  .workspace-list-card__title{ font-size:18px; }
  .right-col,
  .workspace-list-card__actions{
    width:100%;
    justify-content:flex-start;
  }
  .right-col .btn,
  .workspace-list-card__actions .btn{
    max-width:100%;
  }
}


.shell-nav__group + .shell-nav__group{
  padding-top:8px;
  border-top:1px solid rgba(74,61,49,.06);
}
.legal-page__summary-grid{
  margin-top:18px;
}
.legal-page__quick-links{
  margin-top:18px;
}
.workspace-details .detail-subcard,
.workspace-details.section-card{
  box-shadow:none;
}
.workspace-details .section-title + .dashboard-details__hint{
  margin-top:4px;
}


/* Product sharpening: pipeline controls */
.pipeline-toolbar{
  display:grid;
  grid-template-columns: minmax(0, 2fr) repeat(2, minmax(180px, 1fr)) auto;
  gap:12px;
  align-items:end;
}
.pipeline-toolbar__search,
.pipeline-toolbar__field{
  min-width:0;
}
.pipeline-toolbar__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.filter-pills--buttons .filter-pill{
  cursor:pointer;
  font: inherit;
}
.filter-pill__count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:24px;
  height:24px;
  padding:0 8px;
  border-radius:999px;
  background:rgba(74,61,49,.08);
  color:inherit;
  font-size:12px;
  font-weight:800;
}
.filter-pill.is-active .filter-pill__count{
  background:rgba(251,248,241,.18);
}
.dashboard-section--calm{
  background:rgba(74,61,49,.02);
}
@media (max-width: 1080px){
  .pipeline-toolbar{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pipeline-toolbar__actions{
    justify-content:flex-start;
  }
}
@media (max-width: 720px){
  .pipeline-toolbar{
    grid-template-columns: 1fr;
  }
}


@media (max-width: 1200px){
  .workspace-view-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px){
  .workspace-view-grid{
    grid-template-columns: 1fr;
  }
}

.shell-header__left,
.shell-header__right,
.workspace-hero__actions,
.workspace-list-card__actions,
.right-col{
  min-width:0;
}

.workspace-hero__actions,
.workspace-list-card__actions,
.right-col{
  flex-wrap:wrap;
}

.workspace-hero__actions > *,
.workspace-list-card__actions > *,
.right-col > *{
  max-width:100%;
}

@media (min-width: 1024px){
  .shell-header__toggle--mobile{
    display:none !important;
  }
}


.shell-header--guest{
  position:sticky;
  top:0;
  background:rgba(244,240,231,.96);
}
.shell-brand--header{
  padding:8px 0;
}
.marketing-nav{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(251,248,241,.62);
}
.marketing-nav a{
  text-decoration:none;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  padding:8px 12px;
  border-radius:999px;
}
.marketing-nav a:hover{
  background:rgba(46,159,133,.10);
  color:var(--primary-strong);
}
.guest-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.btn-large{
  min-height:50px;
  padding:14px 20px;
  border-radius:16px;
  font-size:15px;
}
.app-body--landing .container{
  padding-top:32px;
}
.app-body--landing .content-shell{
  max-width:1320px;
}
.app-body--landing .site-footer{
  background:transparent;
}
.landing-page{
  gap:28px;
}
.landing-hero{
  position:relative;
  overflow:hidden;
  padding:34px;
}
.landing-hero::before,
.landing-hero::after{
  content:"";
  position:absolute;
  border-radius:999px;
  filter:blur(2px);
  pointer-events:none;
}
.landing-hero::before{
  width:460px;
  height:460px;
  right:-120px;
  top:-180px;
  background:radial-gradient(circle, rgba(229,214,189,.52), transparent 64%);
}
.landing-hero::after{
  width:420px;
  height:220px;
  left:-60px;
  bottom:-120px;
  background:radial-gradient(circle, rgba(46,159,133,.18), transparent 66%);
}
.landing-hero__grid{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0, 1.02fr) minmax(440px, .98fr);
  gap:26px;
  align-items:center;
}
.landing-hero__content{
  max-width:620px;
}
.landing-kicker,
.landing-section__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--primary-strong);
}
.landing-title{
  margin:16px 0 0;
  font-size:66px;
  line-height:.98;
  letter-spacing:-.06em;
  font-weight:900;
  max-width:11ch;
}
.landing-lead{
  margin:18px 0 0;
  max-width:58ch;
  font-size:18px;
  line-height:1.65;
  color:var(--muted);
}
.landing-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}
.landing-actions--cta{
  justify-content:flex-end;
  margin-top:0;
}
.landing-benefits{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}
.landing-benefit{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(74,61,49,.08);
  background:transparent;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.landing-benefit__dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--primary);
}
.landing-preview{
  position:relative;
}
.landing-preview__window{
  position:relative;
  padding:16px;
  border-radius:32px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(251,248,241,.72);
  box-shadow:var(--shadow-lg);
}
.landing-preview__topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:4px 8px 14px;
}
.landing-preview__brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--text);
}
.landing-preview__dots{
  display:flex;
  gap:8px;
}
.landing-preview__dots span{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(74,61,49,.14);
}
.landing-preview__body{
  display:grid;
  grid-template-columns:118px minmax(0, 1fr);
  gap:16px;
}
.landing-preview__rail{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:10px 6px;
}
.landing-preview__rail-item{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 12px;
  border-radius:14px;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  background:rgba(74,61,49,.04);
}
.landing-preview__rail-item.is-active{
  color:var(--text);
  background:rgba(46,159,133,.14);
}
.landing-preview__content{
  display:grid;
  gap:14px;
}
.landing-preview__focus{
  padding:22px;
  border-radius:24px;
  background:linear-gradient(160deg, rgba(239,226,199,.84), rgba(251,248,241,.96));
  border:1px solid rgba(224,170,93,.22);
}
.landing-preview__eyebrow{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
  color:var(--muted);
}
.landing-preview__title{
  margin-top:12px;
  font-size:28px;
  line-height:1.02;
  letter-spacing:-.05em;
  font-weight:900;
}
.landing-preview__bodytext{
  margin-top:10px;
  color:var(--muted);
  line-height:1.55;
  font-size:14px;
}
.landing-preview__footer{
  margin-top:18px;
  font-weight:800;
  color:var(--primary-strong);
}
.landing-preview__side-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}
.landing-mini-card{
  padding:18px;
  border-radius:20px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(251,248,241,.82);
}
.landing-mini-card--accent{
  background:rgba(239,236,252,.78);
  border-color:rgba(182,160,225,.26);
}
.landing-mini-card__label,
.landing-stat-card__label,
.landing-workspace-card__label,
.landing-story-card__eyebrow{
  font-size:12px;
  font-weight:800;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.07em;
}
.landing-mini-card__value{
  margin-top:8px;
  font-size:42px;
  font-weight:900;
  letter-spacing:-.05em;
}
.landing-mini-card__body,
.landing-stat-card__body,
.landing-feature-card p,
.landing-story-card p,
.landing-workspace-card p,
.landing-faq-card p,
.landing-section__copy{
  margin:8px 0 0;
  color:var(--muted);
  line-height:1.65;
}
.landing-preview__metrics{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
}
.landing-stat-card{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(251,248,241,.80);
}
.landing-stat-card__value{
  margin-top:8px;
  font-size:32px;
  font-weight:900;
  letter-spacing:-.04em;
}
.landing-stat-card__value span{
  font-size:15px;
  font-weight:750;
  color:var(--muted);
}
.landing-section{
  padding:8px 0;
}
.landing-section--soft{
  padding:26px;
  border-radius:30px;
  background:rgba(251,248,241,.46);
  border:1px solid rgba(74,61,49,.08);
  box-shadow:var(--shadow-sm);
}
.landing-section__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.landing-section__head--split{
  align-items:flex-end;
}
.landing-section__title{
  margin:10px 0 0;
  font-size:38px;
  line-height:1.05;
  letter-spacing:-.05em;
  font-weight:900;
  max-width:16ch;
}
.landing-section__copy--narrow{
  max-width:44ch;
}
.landing-feature-grid,
.landing-story-grid,
.landing-workspace-grid,
.landing-faq-grid{
  display:grid;
  gap:16px;
  margin-top:18px;
}
.landing-feature-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.landing-story-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.landing-workspace-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.landing-faq-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.landing-feature-card,
.landing-story-card,
.landing-workspace-card,
.landing-faq-card{
  padding:22px;
}
.landing-feature-card__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:14px;
  background:rgba(46,159,133,.12);
  color:var(--primary-strong);
  font-weight:900;
}
.landing-feature-card h3,
.landing-story-card h3,
.landing-workspace-card h3,
.landing-faq-card h3{
  margin:16px 0 0;
  font-size:22px;
  line-height:1.1;
  letter-spacing:-.03em;
}
.landing-story-list{
  margin:14px 0 0;
  padding:0 0 0 18px;
  color:var(--muted);
  display:flex;
  flex-direction:column;
  gap:8px;
}
.landing-cta{
  padding:28px 30px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
  flex-wrap:wrap;
  background:
    radial-gradient(circle at top right, rgba(46,159,133,.16), transparent 35%),
    linear-gradient(180deg, rgba(251,248,241,.94), rgba(251,248,241,.88));
}
.landing-section--faq{
  padding-bottom:14px;
}
.dashboard-section__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.dashboard-section--focus,
.dashboard-section--funnel,
.dashboard-section--planning,
.dashboard-section--work,
.dashboard-section--insight-link{
  overflow:hidden;
}
.dashboard-section--funnel{
  background:rgba(251,248,241,.72);
}
.dashboard-section--planning,
.dashboard-section--work,
.dashboard-section--calm{
  background:rgba(251,248,241,.68);
}
.dashboard-funnel-card,
.dashboard-planning-entry,
.dashboard-alert,
.dashboard-action-tile{
  box-shadow:var(--shadow-sm);
}
.dashboard-funnel-card{
  background:rgba(251,248,241,.84);
}
.dashboard-alert--calm{
  background:rgba(251,248,241,.72);
}
@media (max-width: 1180px){
  .marketing-nav{
    display:none;
  }
  .landing-hero__grid,
  .landing-story-grid,
  .landing-workspace-grid,
  .landing-faq-grid,
  .landing-feature-grid,
  .landing-preview__metrics{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .landing-hero__grid,
  .landing-preview__body{
    grid-template-columns:1fr;
  }
  .landing-title{
    max-width:none;
    font-size:56px;
  }
  .landing-preview__rail{
    flex-direction:row;
    flex-wrap:wrap;
    padding:0;
  }
}
@media (max-width: 820px){
  .shell-header--guest{
    padding:14px 16px;
  }
  .guest-actions{
    width:100%;
    justify-content:flex-end;
  }
  .landing-hero{
    padding:22px;
  }
  .landing-title{
    font-size:42px;
  }
  .landing-lead{
    font-size:16px;
  }
  .landing-preview__side-grid,
  .landing-preview__metrics,
  .landing-feature-grid,
  .landing-story-grid,
  .landing-workspace-grid,
  .landing-faq-grid{
    grid-template-columns:1fr;
  }
  .landing-section--soft,
  .landing-cta{
    padding:20px;
  }
  .landing-section__title{
    font-size:30px;
    max-width:none;
  }
  .cockpit-title{
    font-size:28px;
  }
  .cockpit-hero{
    padding:20px;
  }
  .dashboard-focus-card__title,
  .landing-preview__title{
    font-size:32px;
  }
}

/* Phase B2 — dashboard layout shift toward a calmer workbench */
.dashboard-stage{
  padding:22px;
  background:
    radial-gradient(circle at top right, rgba(46,159,133,.13), transparent 30%),
    radial-gradient(circle at left bottom, rgba(222,201,171,.24), transparent 28%),
    linear-gradient(180deg, rgba(251,248,241,.98), rgba(251,248,241,.92));
}
.dashboard-stage__grid{
  display:grid;
  grid-template-columns:minmax(0, 1.28fr) minmax(320px, .92fr);
  gap:18px;
  align-items:stretch;
}
.dashboard-stage__focus{
  min-height:430px;
  border-radius:30px;
  padding:28px;
  border:1px solid rgba(74,61,49,.08);
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.dashboard-stage__focus--primary{
  background:linear-gradient(165deg, rgba(227,214,190,.82), rgba(251,248,241,.94));
  border-color:rgba(224,170,93,.22);
}
.dashboard-stage__focus--warn{
  background:linear-gradient(165deg, rgba(244,231,204,.94), rgba(251,248,241,.96));
  border-color:rgba(224,170,93,.26);
}
.dashboard-stage__focus--accent{
  background:linear-gradient(165deg, rgba(238,233,248,.92), rgba(251,248,241,.95));
  border-color:rgba(182,160,225,.24);
}
.dashboard-stage__focus--info{
  background:linear-gradient(165deg, rgba(225,239,246,.92), rgba(251,248,241,.96));
  border-color:rgba(116,171,203,.24);
}
.dashboard-stage__focus--calm{
  background:linear-gradient(165deg, rgba(248,248,247,.98), rgba(251,248,241,.95));
}
.dashboard-stage__eyebrow,
.dashboard-stage-panel__eyebrow{
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--muted);
}
.dashboard-stage__title{
  margin:14px 0 0;
  font-size:46px;
  line-height:.98;
  letter-spacing:-.06em;
  font-weight:900;
  max-width:11ch;
}
.dashboard-stage__lead{
  margin:14px 0 0;
  font-size:18px;
  line-height:1.5;
  font-weight:760;
  max-width:42ch;
}
.dashboard-stage__meta{
  margin:10px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
  max-width:54ch;
}
.dashboard-stage__signal-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:22px;
}
.dashboard-stage-signal{
  min-width:140px;
  padding:12px 14px;
  border-radius:18px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(251,248,241,.62);
  text-decoration:none;
  color:inherit;
  display:flex;
  flex-direction:column;
  gap:6px;
  box-shadow:var(--shadow-sm);
}
.dashboard-stage-signal__label{
  font-size:12px;
  font-weight:800;
  color:var(--muted);
}
.dashboard-stage-signal__value{
  font-size:26px;
  line-height:1;
  letter-spacing:-.04em;
  font-weight:900;
}
.dashboard-stage__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:22px;
}
.dashboard-stage__rail{
  display:grid;
  gap:14px;
}
.dashboard-stage-panel{
  padding:18px;
  border-radius:24px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(251,248,241,.84);
  box-shadow:var(--shadow-sm);
  display:flex;
  flex-direction:column;
}
.dashboard-stage-panel--interview{
  background:linear-gradient(180deg, rgba(251,248,241,.92), rgba(244,249,247,.88));
}
.dashboard-stage-panel--work{
  background:linear-gradient(180deg, rgba(251,248,241,.94), rgba(248,247,252,.92));
}
.dashboard-stage-panel__title,
.dashboard-funnel-strip__title,
.dashboard-workbench__title,
.landing-preview__panel-title,
.landing-preview__workblock-title{
  margin-top:8px;
  font-size:24px;
  line-height:1.08;
  letter-spacing:-.04em;
  font-weight:900;
}
.dashboard-stage-panel__body,
.landing-preview__panel-copy{
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}
.dashboard-stage-panel__note{
  margin-top:10px;
  font-size:13px;
  color:var(--muted);
}
.dashboard-stage-panel__footer{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}
.dashboard-stage-statlist,
.dashboard-stage-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:14px;
}
.dashboard-stage-statlist__item,
.dashboard-stage-list__item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(251,248,241,.72);
}
.dashboard-stage-list__item{
  text-decoration:none;
  color:inherit;
}
.dashboard-stage-statlist__item span,
.dashboard-stage-list__item span{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}
.dashboard-stage-statlist__item strong,
.dashboard-stage-list__item strong{
  font-size:24px;
  line-height:1;
  letter-spacing:-.04em;
  font-weight:900;
}
.dashboard-funnel-strip{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(74,61,49,.08);
}
.dashboard-funnel-strip__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.dashboard-funnel-strip__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
  margin-top:14px;
}
.dashboard-funnel-strip__item{
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(74,61,49,.03);
  text-decoration:none;
  color:inherit;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.dashboard-funnel-strip__label{
  font-size:12px;
  font-weight:800;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.06em;
}
.dashboard-funnel-strip__value{
  font-size:30px;
  line-height:1;
  letter-spacing:-.05em;
  font-weight:900;
}
.dashboard-funnel-strip__value small{
  margin-left:6px;
  font-size:15px;
  font-weight:760;
  color:var(--muted);
}
.dashboard-funnel-strip__body{
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}
.dashboard-workbench{
  padding:22px;
  background:rgba(251,248,241,.74);
}
.dashboard-workbench__head,
.dashboard-workbench__column-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.dashboard-workbench__grid{
  display:grid;
  grid-template-columns:minmax(0, 1.16fr) minmax(320px, .88fr);
  gap:20px;
  margin-top:18px;
}
.dashboard-workbench__column{
  min-width:0;
}
.dashboard-workbench__column--work{
  padding-left:20px;
  border-left:1px solid rgba(74,61,49,.08);
}
.dashboard-planning-group{
  border-top:1px solid rgba(74,61,49,.08);
  padding-top:16px;
}
.dashboard-planning-group:first-child{
  border-top:0;
  padding-top:0;
}
.dashboard-planning-group__title{
  font-weight:900;
  font-size:20px;
  letter-spacing:-.03em;
}
.dashboard-planning-entry{
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(251,248,241,.72);
  display:flex;
  gap:14px;
  align-items:flex-start;
  flex-wrap:wrap;
  box-shadow:var(--shadow-sm);
}
.dashboard-planning-entry__title{
  font-weight:850;
}
.dashboard-alert{
  display:block;
  padding:15px 16px;
  border-radius:18px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(251,248,241,.74);
  box-shadow:var(--shadow-sm);
}
.dashboard-alert--warn{ border-color:rgba(224,170,93,.24); background:rgba(239,226,199,.68); }
.dashboard-alert--info{ border-color:rgba(116,171,203,.24); background:rgba(228,240,247,.82); }
.dashboard-alert--accent{ border-color:rgba(182,160,225,.24); background:rgba(239,236,252,.82); }
.dashboard-alert--calm{ background:rgba(251,248,241,.72); }
.dashboard-workbench__aside-note{
  margin-top:16px;
  padding:18px;
  border-radius:20px;
  border:1px solid rgba(74,61,49,.08);
  background:linear-gradient(180deg, rgba(251,248,241,.84), rgba(245,249,247,.86));
}
.dashboard-workbench__aside-title{
  font-size:18px;
  font-weight:900;
  letter-spacing:-.03em;
}

/* Phase C2 — landing preview mirrors the calmer dashboard composition */
.landing-preview__stage{
  display:grid;
  grid-template-columns:minmax(0, 1.28fr) minmax(220px, .82fr);
  gap:12px;
}
.landing-preview__signal-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:14px;
}
.landing-preview__signal{
  min-width:94px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(251,248,241,.58);
  display:flex;
  flex-direction:column;
  gap:4px;
}
.landing-preview__signal small,
.landing-preview__mini-list span small,
.landing-preview__workrow small{
  color:var(--muted);
  font-size:11px;
  font-weight:700;
}
.landing-preview__signal strong,
.landing-preview__mini-list span strong{
  font-size:20px;
  line-height:1;
  letter-spacing:-.04em;
  font-weight:900;
}
.landing-preview__rail-stack{
  display:grid;
  gap:12px;
}
.landing-preview__panel{
  padding:16px;
  border-radius:20px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(251,248,241,.84);
}
.landing-preview__panel--soft{
  background:rgba(242,247,245,.9);
}
.landing-preview__mini-list{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:10px;
}
.landing-preview__mini-list span,
.landing-preview__workrow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(74,61,49,.04);
}
.landing-preview__mini-list span strong,
.landing-preview__workrow span{
  color:var(--text);
}
.landing-preview__metrics--strip .landing-stat-card{
  min-height:0;
}
.landing-preview__metrics--strip .landing-stat-card__body{
  display:none;
}
.landing-preview__workbench{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
  gap:12px;
}
.landing-preview__workblock{
  padding:16px;
  border-radius:20px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(251,248,241,.82);
}
.landing-preview__workrow{
  margin-top:10px;
}

@media (max-width: 1200px){
  .dashboard-stage__grid,
  .dashboard-workbench__grid,
  .landing-preview__stage,
  .landing-preview__workbench{
    grid-template-columns:1fr;
  }
  .dashboard-workbench__column--work{
    padding-left:0;
    border-left:0;
    border-top:1px solid rgba(74,61,49,.08);
    padding-top:18px;
  }
  .dashboard-funnel-strip__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 820px){
  .dashboard-stage,
  .dashboard-workbench{
    padding:16px;
  }
  .dashboard-stage__focus{
    min-height:0;
    padding:20px;
  }
  .dashboard-stage__title{
    font-size:30px;
    max-width:none;
  }
  .dashboard-stage__lead{
    font-size:16px;
  }
  .dashboard-stage-signal{
    flex:1 1 120px;
    min-width:0;
  }
  .dashboard-funnel-strip__grid{
    grid-template-columns:1fr;
  }
  .dashboard-stage-panel__title,
  .dashboard-funnel-strip__title,
  .dashboard-workbench__title,
  .landing-preview__panel-title,
  .landing-preview__workblock-title{
    font-size:20px;
  }
}

/* Phase C3 — clearer dashboard workflow, fewer duplicated click paths */
.dashboard-command{
  padding:22px;
  background:
    radial-gradient(circle at top right, rgba(46,159,133,.13), transparent 30%),
    radial-gradient(circle at left bottom, rgba(222,201,171,.24), transparent 28%),
    linear-gradient(180deg, rgba(251,248,241,.98), rgba(251,248,241,.93));
}
.dashboard-command__grid{
  display:grid;
  grid-template-columns:minmax(0, 1.28fr) minmax(320px, .82fr);
  gap:18px;
  align-items:stretch;
}
.dashboard-command__focus{
  min-height:430px;
  border-radius:32px;
  padding:30px;
  border:1px solid rgba(74,61,49,.08);
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.dashboard-command__focus--primary{
  background:linear-gradient(165deg, rgba(227,214,190,.82), rgba(251,248,241,.94));
  border-color:rgba(224,170,93,.22);
}
.dashboard-command__focus--warn{
  background:linear-gradient(165deg, rgba(244,231,204,.94), rgba(251,248,241,.96));
  border-color:rgba(224,170,93,.26);
}
.dashboard-command__focus--accent{
  background:linear-gradient(165deg, rgba(238,233,248,.92), rgba(251,248,241,.95));
  border-color:rgba(182,160,225,.24);
}
.dashboard-command__focus--info{
  background:linear-gradient(165deg, rgba(225,239,246,.92), rgba(251,248,241,.96));
  border-color:rgba(116,171,203,.24);
}
.dashboard-command__focus--calm{
  background:linear-gradient(165deg, rgba(248,248,247,.98), rgba(251,248,241,.95));
}
.dashboard-command__eyebrow,
.dashboard-glance__eyebrow,
.dashboard-lane__eyebrow,
.dashboard-agenda-item__bucket{
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--muted);
}
.dashboard-command__title{
  margin:14px 0 0;
  font-size:48px;
  line-height:.98;
  letter-spacing:-.06em;
  font-weight:900;
  max-width:12ch;
}
.dashboard-command__lead{
  margin:14px 0 0;
  font-size:18px;
  line-height:1.5;
  font-weight:760;
  max-width:42ch;
}
.dashboard-command__meta{
  margin:10px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
  max-width:54ch;
}
.dashboard-command__stats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}
.dashboard-command-stat{
  min-width:136px;
  padding:12px 14px;
  border-radius:18px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(251,248,241,.62);
  box-shadow:var(--shadow-sm);
  display:flex;
  flex-direction:column;
  gap:6px;
}
.dashboard-command-stat span{
  font-size:12px;
  font-weight:800;
  color:var(--muted);
}
.dashboard-command-stat strong{
  font-size:28px;
  line-height:1;
  letter-spacing:-.04em;
  font-weight:900;
}
.dashboard-command__actions{
  margin-top:22px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.dashboard-command__rail{
  display:grid;
  gap:14px;
}
.dashboard-glance{
  padding:18px;
  border-radius:24px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(251,248,241,.84);
  box-shadow:var(--shadow-sm);
  display:flex;
  flex-direction:column;
}
.dashboard-glance--interview{
  background:linear-gradient(180deg, rgba(251,248,241,.92), rgba(244,249,247,.88));
}
.dashboard-glance--status{
  background:linear-gradient(180deg, rgba(251,248,241,.94), rgba(248,247,252,.92));
}
.dashboard-glance__title,
.dashboard-lane__title,
.dashboard-overview__title,
.dashboard-workflow__title{
  margin-top:8px;
  font-size:24px;
  line-height:1.08;
  letter-spacing:-.04em;
  font-weight:900;
}
.dashboard-glance__body,
.dashboard-lane__body,
.dashboard-question__body,
.dashboard-agenda-item__meta,
.dashboard-agenda-item__note{
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}
.dashboard-glance__note{
  margin-top:10px;
  font-size:13px;
  color:var(--muted);
}
.dashboard-glance__footer{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}
.dashboard-status-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:14px;
}
.dashboard-status-list__item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(251,248,241,.72);
}
.dashboard-status-list__item span{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}
.dashboard-status-list__item strong{
  font-size:24px;
  line-height:1;
  letter-spacing:-.04em;
  font-weight:900;
}
.dashboard-drilldown,
.dashboard-overview,
.dashboard-workflow{
  padding:22px;
  background:rgba(251,248,241,.74);
}
.dashboard-drilldown__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
  margin-top:18px;
}
.dashboard-lane{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-height:214px;
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(74,61,49,.08);
  text-decoration:none;
  color:inherit;
  background:rgba(251,248,241,.84);
  box-shadow:var(--shadow-sm);
}
.dashboard-lane--warn{
  background:linear-gradient(180deg, rgba(244,231,204,.94), rgba(251,248,241,.96));
  border-color:rgba(224,170,93,.24);
}
.dashboard-lane--accent{
  background:linear-gradient(180deg, rgba(239,236,252,.88), rgba(251,248,241,.96));
  border-color:rgba(182,160,225,.22);
}
.dashboard-lane--info{
  background:linear-gradient(180deg, rgba(228,240,247,.82), rgba(251,248,241,.96));
  border-color:rgba(116,171,203,.22);
}
.dashboard-lane--calm,
.dashboard-lane--primary{
  background:linear-gradient(180deg, rgba(251,248,241,.92), rgba(244,249,247,.88));
}
.dashboard-lane__meta{
  margin-top:auto;
  padding-top:10px;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}
.dashboard-lane__footer{
  margin-top:6px;
  font-weight:850;
}
.dashboard-overview__grid{
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(320px, .92fr);
  gap:18px;
  align-items:stretch;
}
.dashboard-overview__panel{
  padding:18px;
  border-radius:24px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(251,248,241,.86);
  box-shadow:var(--shadow-sm);
}
.dashboard-overview__panel--pulse{
  background:linear-gradient(180deg, rgba(251,248,241,.94), rgba(244,249,247,.88));
}
.dashboard-funnel-compact{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:16px;
}
.dashboard-funnel-compact__item{
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(74,61,49,.03);
  display:flex;
  flex-direction:column;
  gap:8px;
}
.dashboard-funnel-compact__label{
  font-size:12px;
  font-weight:800;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.06em;
}
.dashboard-funnel-compact__value{
  font-size:30px;
  line-height:1;
  letter-spacing:-.05em;
  font-weight:900;
}
.dashboard-funnel-compact__value small{
  display:block;
  margin-top:6px;
  font-size:14px;
  font-weight:760;
  color:var(--muted);
}
.dashboard-funnel-compact__body{
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}
.dashboard-pulse-chart-wrap{
  margin-top:16px;
  height:244px;
}
.dashboard-pulse-empty,
.dashboard-empty-state{
  margin-top:16px;
  padding:16px;
  border-radius:18px;
  border:1px dashed rgba(74,61,49,.14);
  background:rgba(74,61,49,.03);
  color:var(--muted);
  line-height:1.6;
}
.dashboard-workflow__grid{
  display:grid;
  grid-template-columns:minmax(0, 1.04fr) minmax(320px, .96fr);
  gap:18px;
}
.dashboard-workflow__panel{
  padding:18px;
  border-radius:24px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(251,248,241,.86);
  box-shadow:var(--shadow-sm);
}
.dashboard-workflow__panel--questions{
  background:linear-gradient(180deg, rgba(251,248,241,.94), rgba(248,247,252,.92));
}
.dashboard-agenda-list,
.dashboard-question-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:16px;
}
.dashboard-agenda-item,
.dashboard-question{
  display:grid;
  gap:8px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(74,61,49,.03);
}
.dashboard-agenda-item__bucket{
  display:inline-flex;
  width:max-content;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(251,248,241,.74);
  border:1px solid rgba(74,61,49,.08);
}
.dashboard-agenda-item__title,
.dashboard-question__title{
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.03em;
  font-weight:850;
}
.dashboard-question{
  grid-template-columns:56px minmax(0, 1fr);
  align-items:start;
  gap:14px;
}
.dashboard-question__value{
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:rgba(251,248,241,.84);
  border:1px solid rgba(74,61,49,.08);
  font-size:26px;
  line-height:1;
  letter-spacing:-.04em;
  font-weight:900;
}
.dashboard-question--warn{
  background:rgba(239,226,199,.62);
  border-color:rgba(224,170,93,.22);
}
.dashboard-question--accent{
  background:rgba(239,236,252,.72);
  border-color:rgba(182,160,225,.22);
}
.dashboard-question--info{
  background:rgba(228,240,247,.74);
  border-color:rgba(116,171,203,.22);
}
.dashboard-question--calm,
.dashboard-question--primary{
  background:rgba(74,61,49,.03);
}

/* Landing preview mirrors the clearer dashboard flow */
.landing-preview__command{
  display:grid;
  grid-template-columns:minmax(0, 1.24fr) minmax(220px, .86fr);
  gap:12px;
}
.landing-preview__drilldowns{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:12px;
}
.landing-preview__drilldown-card{
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(74,61,49,.08);
  background:rgba(251,248,241,.84);
  display:flex;
  flex-direction:column;
  gap:8px;
}
.landing-preview__drilldown-card small{
  color:var(--muted);
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.landing-preview__drilldown-card strong{
  font-size:18px;
  line-height:1.08;
  letter-spacing:-.03em;
  font-weight:900;
}
.landing-preview__drilldown-card span{
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
}
.landing-preview__drilldown-card--soft{
  background:rgba(242,247,245,.9);
}
.landing-preview__drilldown-card--accent{
  background:rgba(239,236,252,.82);
}
.landing-preview__overview-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(0, .92fr);
  gap:12px;
  margin-top:12px;
}
.landing-preview__funnel-strip{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:8px;
  margin-top:10px;
}
.landing-preview__funnel-strip span{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(74,61,49,.04);
}
.landing-preview__funnel-strip small{
  color:var(--muted);
  font-size:11px;
  font-weight:700;
}
.landing-preview__funnel-strip strong{
  font-size:18px;
  line-height:1;
  letter-spacing:-.04em;
  font-weight:900;
}
.landing-preview__workblock--pulse{
  background:rgba(242,247,245,.9);
}
.landing-preview__bars{
  display:flex;
  align-items:flex-end;
  gap:8px;
  height:112px;
  margin-top:14px;
}
.landing-preview__bars span{
  flex:1 1 0;
  border-radius:999px 999px 12px 12px;
  background:linear-gradient(180deg, rgba(46,159,133,.84), rgba(46,159,133,.34));
}
.landing-preview__bars span:nth-child(even){
  background:linear-gradient(180deg, rgba(201,177,138,.86), rgba(201,177,138,.34));
}

@media (max-width: 1200px){
  .dashboard-command__grid,
  .dashboard-overview__grid,
  .dashboard-workflow__grid,
  .landing-preview__command,
  .landing-preview__overview-grid{
    grid-template-columns:1fr;
  }
  .dashboard-drilldown__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 820px){
  .dashboard-command,
  .dashboard-drilldown,
  .dashboard-overview,
  .dashboard-workflow{
    padding:16px;
  }
  .dashboard-command__focus{
    min-height:0;
    padding:20px;
  }
  .dashboard-command__title{
    font-size:32px;
    max-width:none;
  }
  .dashboard-command__lead{
    font-size:16px;
  }
  .dashboard-drilldown__grid,
  .dashboard-funnel-compact,
  .landing-preview__drilldowns,
  .landing-preview__funnel-strip{
    grid-template-columns:1fr;
  }
  .dashboard-glance__title,
  .dashboard-lane__title,
  .dashboard-overview__title,
  .dashboard-workflow__title{
    font-size:20px;
  }
  .dashboard-question{
    grid-template-columns:48px minmax(0, 1fr);
  }
  .dashboard-question__value{
    width:48px;
    height:48px;
    border-radius:14px;
    font-size:22px;
  }
}


/* --- Package D: workspace hierarchy, secondary pages, mobile polish --- */
.workspace-shell,
.task-board-shell,
.priority-rail,
.insights-shell{
  padding: 22px;
}
.workspace-shell__grid,
.task-board-shell__grid{
  display:grid;
  gap:18px;
}
.workspace-shell__grid--split,
.task-board-shell__grid{
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .95fr);
  align-items:start;
}
.workspace-shell__panel{
  min-width:0;
}
.workspace-shell__panel--accent{
  border:1px solid rgba(46,159,133,.16);
  background: linear-gradient(180deg, rgba(243,248,245,.92), rgba(251,248,241,.96));
  border-radius: 22px;
  padding: 18px;
}
.workspace-shell__eyebrow{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--muted);
}
.workspace-shell__title{
  margin-top:8px;
  font-size:30px;
  line-height:1.08;
  letter-spacing:-.04em;
  font-weight:900;
}
.workspace-shell__note{
  margin-top:16px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(24,33,56,.08);
  background: rgba(251,248,241,.82);
  color: var(--muted);
}
.workspace-shell__note--warn{
  border-color: rgba(214,163,73,.32);
  background: rgba(255,248,234,.86);
  color: var(--text);
}
.workspace-summary-strip{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.workspace-summary-strip--compact{
  grid-template-columns: repeat(4, minmax(120px, 1fr));
}
.workspace-summary-strip--minimal{
  gap:18px;
}
.workspace-summary-strip--minimal .workspace-summary-strip__item{
  padding:0 0 14px;
  border:none;
  border-radius:0;
  background:transparent;
  border-bottom:1px solid rgba(67,55,44,.08);
  min-height:0;
}
.workspace-summary-strip--minimal .workspace-summary-strip__item--link:hover{
  transform:none;
  box-shadow:none;
}
.workspace-summary-strip--minimal .workspace-summary-strip__item > strong{
  font-size:26px;
}
.workspace-summary-strip__item{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(24,33,56,.08);
  background: rgba(251,248,241,.84);
  color:inherit;
  text-decoration:none;
}
.workspace-summary-strip__item--link:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(24,33,56,.08);
}
.workspace-summary-strip__item > span{
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--muted);
}
.workspace-summary-strip__item > strong{
  font-size:30px;
  line-height:1;
  letter-spacing:-.04em;
  font-weight:900;
}
.workspace-summary-strip__item > strong small{
  font-size:.5em;
  margin-left:6px;
  color:var(--muted);
}
.workspace-summary-strip__item > small{
  color:var(--muted);
  line-height:1.45;
}
.priority-rail__list{
  display:grid;
  gap:12px;
  margin-top:16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.priority-rail__item{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:18px;
  border-radius:20px;
  text-decoration:none;
  color:inherit;
  border:1px solid rgba(24,33,56,.08);
  background: rgba(251,248,241,.82);
}
.priority-rail__item strong{
  font-size:18px;
  line-height:1.15;
  letter-spacing:-.02em;
}
.priority-rail__item span{
  color:var(--muted);
}
.priority-rail__item--warn{
  background: rgba(255,247,233,.92);
  border-color: rgba(214,163,73,.34);
}
.priority-rail__item--accent{
  background: rgba(243,248,245,.92);
  border-color: rgba(46,159,133,.22);
}
.priority-rail__item--info{
  background: rgba(241,245,252,.92);
  border-color: rgba(92,122,163,.18);
}
.workspace-list-card--muted{
  background: rgba(74,61,49,.02);
  box-shadow:none;
}
.workspace-list-card__footer-links{
  margin-top:10px;
}
.workspace-list-card__footer-links a{
  color:var(--muted);
  font-weight:700;
  text-decoration:none;
}
.workspace-list-card__footer-links a:hover{
  color:var(--text);
}
.document-library-grid{
  display:grid;
  gap:14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.insights-shell__grid{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1100px){
  .workspace-shell__grid--split,
  .task-board-shell__grid,
  .insights-shell__grid,
  .document-library-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px){
  .workspace-shell,
  .task-board-shell,
  .priority-rail,
  .insights-shell{
    padding:18px;
  }
  .workspace-shell__title{
    font-size:24px;
  }
  .workspace-summary-strip,
  .workspace-summary-strip--compact,
  .priority-rail__list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .workspace-summary-strip,
  .workspace-summary-strip--compact,
  .priority-rail__list,
  .document-library-grid{
    grid-template-columns: 1fr;
  }
  .workspace-shell__title{
    font-size:22px;
  }
  .workspace-shell__panel--accent{
    padding:16px;
  }
  .workspace-list-card__footer-links{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
  }
}

/* Final polish — dashboard flow and application detail workspace */
.dashboard-map,
.dashboard-reality,
.application-command{
  padding: 26px;
}
.dashboard-map__head,
.dashboard-reality__head{
  margin-bottom: 18px;
}
.dashboard-map__grid{
  display:grid;
  gap:18px;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .95fr);
  align-items:start;
}
.dashboard-map__routes{
  display:grid;
  gap:14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.dashboard-route{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height: 220px;
  padding:22px;
  border-radius:24px;
  text-decoration:none;
  color:inherit;
  border:1px solid rgba(74,61,49,.08);
  background: rgba(251,248,241,.82);
  box-shadow: var(--shadow-sm);
}
.dashboard-route:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.dashboard-route__eyebrow{
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.dashboard-route__title{
  font-size:26px;
  line-height:1.04;
  font-weight:900;
  letter-spacing:-.04em;
}
.dashboard-route__body,
.dashboard-route__meta{
  color:var(--muted);
  line-height:1.5;
}
.dashboard-route__meta{
  margin-top:auto;
  font-size:14px;
}
.dashboard-route__footer{
  font-weight:800;
}
.dashboard-route--warn{
  background: linear-gradient(180deg, rgba(255,246,232,.95), rgba(251,248,241,.9));
  border-color: rgba(214,163,73,.34);
}
.dashboard-route--accent{
  background: linear-gradient(180deg, rgba(242,248,244,.95), rgba(251,248,241,.9));
  border-color: rgba(46,159,133,.24);
}
.dashboard-route--info{
  background: linear-gradient(180deg, rgba(241,246,253,.95), rgba(251,248,241,.9));
  border-color: rgba(89,129,173,.22);
}
.dashboard-route--calm{
  background: linear-gradient(180deg, rgba(251,248,241,.94), rgba(250,248,244,.92));
}
.dashboard-map__snapshot{
  display:grid;
  gap:14px;
}
.dashboard-snapshot{
  padding:20px;
  border-radius:24px;
  border:1px solid rgba(74,61,49,.08);
  background: rgba(251,248,241,.82);
}
.dashboard-snapshot--pulse{
  background: linear-gradient(180deg, rgba(246,248,252,.94), rgba(251,248,241,.88));
}
.dashboard-funnel-compact--dense{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.dashboard-pulse-chart-wrap--compact{
  min-height: 220px;
  margin-top: 16px;
}
.dashboard-snapshot__footer{
  margin-top:14px;
  display:flex;
  justify-content:flex-end;
}
.dashboard-reality__grid{
  display:grid;
  gap:18px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items:start;
}
.dashboard-reality__panel{
  padding:20px;
  border-radius:24px;
  border:1px solid rgba(74,61,49,.08);
  background: rgba(251,248,241,.76);
}
.dashboard-reality__panel--questions{
  background: linear-gradient(180deg, rgba(250,248,243,.92), rgba(251,248,241,.86));
}
.application-command__grid{
  display:grid;
  gap:18px;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .85fr);
  align-items:start;
}
.application-command__focus{
  padding:24px;
  border-radius:26px;
  border:1px solid rgba(74,61,49,.08);
  background: rgba(251,248,241,.9);
  box-shadow: var(--shadow-sm);
}
.application-command__focus--warn{
  background: linear-gradient(180deg, rgba(255,247,233,.96), rgba(251,248,241,.92));
  border-color: rgba(214,163,73,.35);
}
.application-command__focus--info{
  background: linear-gradient(180deg, rgba(241,246,253,.96), rgba(251,248,241,.92));
  border-color: rgba(89,129,173,.22);
}
.application-command__focus--accent{
  background: linear-gradient(180deg, rgba(242,248,244,.96), rgba(251,248,241,.92));
  border-color: rgba(46,159,133,.24);
}
.application-command__eyebrow,
.application-command__panel-label{
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.application-command__title{
  margin-top:8px;
  font-size:38px;
  line-height:1.02;
  letter-spacing:-.05em;
  font-weight:900;
}
.application-command__body{
  margin-top:10px;
  font-size:17px;
  line-height:1.6;
}
.application-command__meta{
  margin-top:10px;
  color:var(--muted);
  line-height:1.55;
}
.application-command__actions{
  margin-top:16px;
}
.application-command__rail{
  display:grid;
  gap:14px;
}
.application-command__panel{
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(74,61,49,.08);
  background: rgba(251,248,241,.8);
}
.application-command__panel--soft{
  background: rgba(246,248,252,.86);
}
.application-stat-strip{
  display:grid;
  gap:10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top:14px;
}
.application-stat-strip span{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:12px 14px;
  border-radius:18px;
  background: rgba(251,248,241,.72);
  border:1px solid rgba(74,61,49,.06);
}
.application-stat-strip small{
  color:var(--muted);
  font-size:12px;
}
.application-stat-strip strong{
  font-size:18px;
  line-height:1.15;
  letter-spacing:-.02em;
}
.application-anchor-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.application-anchor-nav a{
  text-decoration:none;
  color:inherit;
  font-weight:700;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(74,61,49,.09);
  background: rgba(251,248,241,.76);
}
.application-anchor-nav a:hover{
  border-color: rgba(46,159,133,.28);
  color: var(--primary-strong);
}
.application-summary-strip .workspace-summary-strip__item{
  min-height: 138px;
}
.application-summary-strip .workspace-summary-strip__item > strong{
  font-size: clamp(20px, 2vw, 28px);
}
#application-interviews,
#application-tasks,
#application-documents,
#application-edit{
  scroll-margin-top: 92px;
}

@media (max-width: 1180px){
  .dashboard-map__grid,
  .dashboard-reality__grid,
  .application-command__grid{
    grid-template-columns: 1fr;
  }
  .dashboard-map__routes{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px){
  .dashboard-map,
  .dashboard-reality,
  .application-command{
    padding:20px;
  }
  .dashboard-map__routes{
    grid-template-columns: 1fr;
  }
  .dashboard-route{
    min-height: 0;
  }
  .application-command__title{
    font-size: 32px;
  }
  .application-anchor-nav{
    flex-wrap: nowrap;
    overflow-x:auto;
    padding-bottom:4px;
  }
  .application-anchor-nav a{
    white-space:nowrap;
  }
}

@media (max-width: 700px){
  .dashboard-command__grid{
    grid-template-columns: 1fr;
  }
  .dashboard-command__focus,
  .dashboard-glance,
  .dashboard-reality__panel,
  .dashboard-snapshot,
  .application-command__focus,
  .application-command__panel{
    padding:18px;
    border-radius:20px;
  }
  .dashboard-command__stats,
  .application-stat-strip,
  .dashboard-funnel-compact--dense{
    grid-template-columns: 1fr 1fr;
  }
  .application-summary-strip{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px){
  .dashboard-command__stats,
  .application-stat-strip,
  .dashboard-funnel-compact--dense{
    grid-template-columns: 1fr;
  }
  .application-command__title{
    font-size: 28px;
  }
  .dashboard-route__title{
    font-size: 22px;
  }
  .dashboard-pulse-chart-wrap--compact{
    min-height: 190px;
  }
}


/* Phase F — reductive premium minimalism */
.cockpit-hero--minimal{
  padding:0 0 8px;
  background:transparent;
  border:none;
  box-shadow:none;
}
.cockpit-hero--minimal .cockpit-hero__split{
  padding:0 2px;
  align-items:end;
}
.dashboard-command--minimal,
.dashboard-map--minimal,
.dashboard-reality--minimal,
.application-command--minimal{
  background:transparent;
  border:none;
  box-shadow:none;
  padding:0;
}
.dashboard-command--minimal{
  margin-top:6px;
}
.dashboard-command__grid--minimal{
  grid-template-columns:minmax(0, 1.45fr) minmax(280px, .7fr);
  gap:34px;
}
.dashboard-command__focus{
  box-shadow:none;
}
.dashboard-command__stats--minimal{
  gap:18px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, max-content));
  align-items:start;
}
.dashboard-command__stats--minimal .dashboard-command-stat{
  min-width:0;
  padding:0;
  border:none;
  background:transparent;
  box-shadow:none;
  border-radius:0;
}
.dashboard-command__stats--minimal .dashboard-command-stat strong{
  font-size:34px;
}
.dashboard-command__rail--single{
  align-content:start;
}
.dashboard-glance--minimal{
  padding:10px 0 0;
  border:none;
  border-radius:0;
  box-shadow:none;
  background:transparent;
}
.dashboard-glance--minimal::before{
  content:"";
  display:block;
  width:100%;
  height:1px;
  background:linear-gradient(90deg, rgba(74,61,49,.14), rgba(74,61,49,.04));
  margin-bottom:16px;
}
.dashboard-glance__chips{
  margin-top:10px;
}
.dashboard-glance__summary{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(74,61,49,.08);
}
.dashboard-glance__summary span,
.application-meta-strip__item{
  display:flex;
  flex-direction:column;
  gap:5px;
}
.dashboard-glance__summary small,
.application-meta-strip__item small{
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--muted);
}
.dashboard-glance__summary strong,
.application-meta-strip__item strong{
  font-size:26px;
  line-height:1;
  letter-spacing:-.04em;
  font-weight:900;
}
.dashboard-map--minimal,
.dashboard-reality--minimal{
  margin-top:26px;
  padding-top:26px;
  border-top:1px solid rgba(74,61,49,.06);
}
.dashboard-map__grid--minimal{
  grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);
  gap:34px;
}
.dashboard-route-list{
  display:flex;
  flex-direction:column;
  gap:0;
  margin-top:20px;
}
.dashboard-route-line{
  display:grid;
  gap:8px;
  padding:18px 0;
  text-decoration:none;
  color:inherit;
  border-bottom:1px solid rgba(67,55,44,.08);
}
.dashboard-route-line:hover .dashboard-route-line__title,
.dashboard-route-line:hover .dashboard-route-line__cta{
  color:var(--primary-strong);
}
.dashboard-route-line__eyebrow{
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
}
.dashboard-route-line__title{
  font-size:26px;
  line-height:1.08;
  letter-spacing:-.04em;
  font-weight:900;
  transition:color .18s ease;
}
.dashboard-route-line__body,
.dashboard-route-line__meta{
  color:var(--muted);
  line-height:1.55;
}
.dashboard-route-line__meta{
  font-size:14px;
}
.dashboard-route-line__cta{
  font-weight:850;
  color:var(--text);
  transition:color .18s ease;
}
.dashboard-route-line--warn{ color:var(--text); }
.dashboard-route-line--warn .dashboard-route-line__cta,
.dashboard-route-line--accent .dashboard-route-line__cta,
.dashboard-route-line--info .dashboard-route-line__cta{ color:var(--text); }
.dashboard-analytics{
  padding:24px 0 0;
}
.dashboard-analytics__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.dashboard-funnel-inline{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px 24px;
  margin-top:22px;
}
.dashboard-funnel-inline__item{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding-bottom:16px;
  border-bottom:1px solid rgba(74,61,49,.08);
}
.dashboard-funnel-inline__label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--muted);
  font-weight:800;
}
.dashboard-funnel-inline__value{
  font-size:34px;
  line-height:1;
  letter-spacing:-.05em;
  font-weight:900;
}
.dashboard-funnel-inline__meta{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.dashboard-pulse-chart-wrap--minimal{
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid rgba(74,61,49,.08);
}
.dashboard-reality__grid--minimal{
  grid-template-columns:minmax(0, 1fr) minmax(0, .95fr);
  gap:34px;
}
.dashboard-reality__panel--minimal{
  padding:0;
  background:transparent;
  border:none;
  border-radius:0;
}
.dashboard-agenda-list--minimal,
.dashboard-question-list--minimal{
  margin-top:18px;
  gap:0;
}
.dashboard-agenda-item--line,
.dashboard-question--line{
  display:grid;
  gap:12px;
  padding:18px 0;
  border:0;
  border-bottom:1px solid rgba(67,55,44,.08);
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.dashboard-agenda-item--line{
  grid-template-columns:108px minmax(0, 1fr);
  align-items:start;
}
.dashboard-agenda-item--line .dashboard-agenda-item__bucket{
  width:auto;
  padding:0;
  border:none;
  background:transparent;
  color:var(--muted);
}
.dashboard-agenda-item__content,
.dashboard-question__content{
  min-width:0;
}
.dashboard-question--line{
  grid-template-columns:52px minmax(0, 1fr);
  align-items:start;
}
.dashboard-question--line .dashboard-question__value{
  width:auto;
  height:auto;
  display:block;
  padding-top:2px;
  border:none;
  border-radius:0;
  box-shadow:none;
  background:transparent;
  font-size:44px;
  line-height:1;
  letter-spacing:-.05em;
  font-weight:900;
  color:var(--text);
}
.dashboard-question--line.dashboard-question--warn .dashboard-question__value,
.dashboard-question--line.dashboard-question--accent .dashboard-question__value,
.dashboard-question--line.dashboard-question--info .dashboard-question__value{
  color:var(--text);
}
.application-command--minimal{
  margin-top:2px;
}
.application-command__grid--minimal{
  grid-template-columns:minmax(0, 1.3fr) minmax(280px, .7fr);
  gap:32px;
}
.application-command__focus{
  box-shadow:none;
}
.application-command__rail--minimal{
  display:flex;
  flex-direction:column;
  gap:20px;
  padding-top:14px;
}
.application-meta-strip{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px 16px;
  padding-top:18px;
  border-top:1px solid rgba(74,61,49,.08);
}
.application-anchor-nav--minimal{
  margin-top:0;
  padding-top:6px;
  border-top:1px solid rgba(74,61,49,.08);
}
.application-anchor-nav--minimal a{
  padding:0;
  border:none;
  border-radius:0;
  background:transparent;
  color:var(--muted);
}
.application-anchor-nav--minimal a:hover{
  color:var(--primary-strong);
}
.landing-preview__body--minimal{
  display:block;
  grid-template-columns:1fr;
  padding:20px 22px 24px;
}
.landing-preview,
.landing-preview__window,
.landing-preview__content--minimal,
.landing-preview__command--minimal,
.landing-preview__aside--minimal,
.landing-preview__focus{
  min-width:0;
}
.landing-preview__window{
  width:min(100%, 700px);
  margin-left:auto;
}
.landing-preview__content--minimal{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.landing-preview__command--minimal{
  grid-template-columns:minmax(0, 1.24fr) minmax(200px, .76fr);
  align-items:start;
}
.landing-preview__signal-row--minimal .landing-preview__signal{
  border:none;
  background:transparent;
  padding:0;
  border-radius:0;
}
.landing-preview__aside--minimal{
  padding-top:10px;
  border-top:1px solid rgba(74,61,49,.08);
}
.landing-preview__mini-list--minimal{
  margin-top:16px;
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}
.landing-preview__mini-list--minimal span{
  padding:0;
  border:none;
  background:transparent;
}
.landing-preview__route-list{
  display:flex;
  flex-direction:column;
}
.landing-preview__route-line{
  display:grid;
  gap:6px;
  padding:14px 0;
  text-decoration:none;
  color:inherit;
  border-top:1px solid rgba(74,61,49,.08);
}
.landing-preview__route-list .landing-preview__route-line:last-child{
  border-bottom:1px solid rgba(74,61,49,.08);
}
.landing-preview__route-line small{
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
}
.landing-preview__route-line strong{
  font-size:22px;
  line-height:1.08;
  letter-spacing:-.04em;
}
.landing-preview__route-line span{
  color:var(--muted);
  line-height:1.5;
}
.landing-preview__route-line--accent strong{ color:var(--primary-strong); }
.landing-preview__snapshot--minimal{
  display:grid;
  gap:14px;
}
.landing-preview__funnel-inline{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}
.landing-preview__funnel-inline span{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(74,61,49,.08);
}
.landing-preview__funnel-inline small{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-weight:800;
  color:var(--muted);
}
.landing-preview__funnel-inline strong{
  font-size:24px;
  line-height:1;
  letter-spacing:-.04em;
}
.landing-preview__pulse-shell{
  display:grid;
  gap:12px;
  padding-top:14px;
  border-top:1px solid rgba(74,61,49,.08);
}
.landing-preview__bars--minimal{
  height:110px;
}
.landing-feature-grid--airy,
.landing-story-grid--airy,
.landing-workspace-grid--airy,
.landing-faq-grid--airy{
  gap:20px;
}
.landing-feature-card,
.landing-story-card,
.landing-workspace-card,
.landing-faq-card{
  background:transparent;
  border:none;
  box-shadow:none;
  padding:0;
}
.landing-feature-card,
.landing-story-card,
.landing-workspace-card,
.landing-faq-card{
  border-top:1px solid rgba(74,61,49,.08);
  padding-top:18px;
}
@media (max-width: 1120px){
  .dashboard-command__grid--minimal,
  .dashboard-map__grid--minimal,
  .dashboard-reality__grid--minimal,
  .application-command__grid--minimal,
  .landing-preview__command--minimal{
    grid-template-columns:1fr;
  }
  .dashboard-command__rail--single,
  .application-command__rail--minimal{
    padding-top:0;
  }
}
@media (max-width: 820px){
  .dashboard-command__stats--minimal,
  .dashboard-glance__summary,
  .application-meta-strip,
  .landing-preview__funnel-inline{
    grid-template-columns:1fr 1fr;
  }
  .dashboard-funnel-inline{
    grid-template-columns:1fr;
  }
  .dashboard-reality__grid--minimal,
  .dashboard-map__grid--minimal{
    gap:26px;
  }
  .dashboard-route-line__title,
  .dashboard-command__title{
    font-size:clamp(28px, 8vw, 40px);
  }
  .landing-preview__route-line strong{
    font-size:18px;
  }
}
@media (max-width: 560px){
  .dashboard-command__stats--minimal,
  .dashboard-glance__summary,
  .application-meta-strip,
  .landing-preview__funnel-inline{
    grid-template-columns:1fr;
  }
  .dashboard-agenda-item--line,
  .dashboard-question--line{
    grid-template-columns:1fr;
  }
  .dashboard-question--line .dashboard-question__value{
    width:auto;
    height:auto;
    font-size:34px;
  }
  .dashboard-map--minimal,
  .dashboard-reality--minimal{
    margin-top:22px;
    padding-top:22px;
  }
  .landing-preview__body--minimal{
    padding:18px 18px 22px;
  }
}



/* Package I – secondary page consistency and micro spacing */
.workspace-hero.card,
.workspace-shell.card,
.task-board-shell.card,
.priority-rail.card,
.insights-shell.card,
.workspace-details.card{
  background:rgba(251,248,241,.72);
  box-shadow:none;
  border-color:rgba(67,55,44,.07);
}
.workspace-shell__panel--accent{
  border:none;
  border-top:1px solid rgba(67,55,44,.08);
  border-radius:0;
  background:transparent;
  padding:18px 0 0;
}
.workspace-shell__note{
  padding:14px 0 0;
  border:none;
  border-top:1px solid rgba(67,55,44,.08);
  border-radius:0;
  background:transparent;
}
.workspace-list-card--muted,
.workspace-list-card--compact.workspace-list-card--muted{
  background:transparent;
  border:none;
  border-radius:0;
  box-shadow:none;
  padding:18px 0;
}
.workspace-list-card--muted + .workspace-list-card--muted{
  border-top:1px solid rgba(67,55,44,.08);
}
.workspace-list-card--muted .workspace-list-card__meta{
  margin-top:10px;
}
.workspace-list-card--muted .workspace-list-card__footer-links{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(67,55,44,.08);
}
.workspace-details__body > .stack > .workspace-list-card--muted:first-child,
.workspace-list > .workspace-list-card--muted:first-child{
  padding-top:4px;
}
@media (max-width: 720px){
  .workspace-details summary{
    grid-template-columns:minmax(0, 1fr) auto;
    gap:10px;
  }
  .workspace-details summary > .chip{
    justify-self:start;
  }
  .workspace-details__count{
    min-width:0;
  }
  .workspace-list-card__actions--footer{
    flex-direction:column;
    align-items:stretch;
  }
  .workspace-list-card__actions--footer form,
  .workspace-list-card__actions--footer .btn{
    width:100%;
  }
}

/* Package G – warm minimal finish */
.shell-main,
.shell-content{
  background:transparent;
}
.dashboard-analytics,
.dashboard-reality__panel--minimal,
.dashboard-map__column{
  background:transparent;
}
.dashboard-question-list--minimal,
.dashboard-agenda-list--minimal{
  border-top:none;
}
.dashboard-question-list--minimal .dashboard-question--line:first-child,
.dashboard-agenda-list--minimal .dashboard-agenda-item--line:first-child{
  margin-top:4px;
}
.dashboard-funnel-inline__item:last-child{
  border-bottom:1px solid rgba(74,61,49,.08);
}
.site-footer__brand,
.shell-header__title,
.cockpit-title,
.dashboard-section__title,
.dashboard-workflow__title,
.dashboard-overview__title,
.dashboard-command__title,
.dashboard-glance__title,
.dashboard-route-line__title,
.dashboard-agenda-item__title,
.dashboard-question__title,
.page-title,
.section-title,
.section-head h1,
.section-head h2,
.section-head h3,
h1, h2, h3, h4, h5, h6{
  color:var(--heading);
}
@media (max-width:1023px){
  .shell-header,
  .container,
  .site-footer{
    background:var(--bg);
  }
}

body.app-body,
.app-shell,
.shell-main,
.shell-content,
.container,
.content-shell{
  background:var(--bg);
}

.shell-header__eyebrow,
.dashboard-command__eyebrow,
.dashboard-glance__eyebrow,
.dashboard-lane__eyebrow,
.dashboard-agenda-item__bucket,
.dashboard-section__eyebrow,
.dashboard-route-line__eyebrow,
.dashboard-funnel-inline__label,
.dashboard-glance__summary small,
.application-meta-strip__item small,
.dashboard-command-stat span,
.chip,
.small,
.subtle,
.kpi-label,
.eyebrow,
.status-word{
  font-family:var(--label-font);
  letter-spacing:.05em;
}

.shell-link__title,
.shell-brand__text,
.brand,
.btn,
.dashboard-route-line__cta,
.site-footer__links a,
.nav a,
a{
  color:var(--text);
}

a:hover,
.btn-quiet:hover,
.site-footer__links a:hover,
.dashboard-route-line:hover .dashboard-route-line__title,
.dashboard-route-line:hover .dashboard-route-line__cta,
.shell-link:hover .shell-link__title{
  color:var(--primary-strong);
}

.shell-nav,
.shell-header,
.site-footer,
.site-footer__inner,
.shell-nav__inner{
  background:var(--bg);
}

.dashboard-question-list--minimal,
.dashboard-agenda-list--minimal,
.dashboard-route-list{
  background:transparent;
}

.dashboard-command__lead,
.dashboard-command__meta,
.dashboard-route-line__body,
.dashboard-route-line__meta,
.dashboard-agenda-item__meta,
.dashboard-agenda-item__note,
.dashboard-question__body,
.sub{
  color:var(--text);
}

.dashboard-command__meta,
.dashboard-route-line__meta,
.dashboard-agenda-item__note,
.sub,
.dashboard-question__body{
  color:var(--muted);
}

.dashboard-question--line .dashboard-question__value{
  color:var(--heading);
}

@media (max-width:1023px){
  .shell-nav{
    box-shadow:none;
  }
}


/* Package J – micro polish and secondary page finish */
.workspace-hero.card,
.workspace-shell.card,
.task-board-shell.card,
.priority-rail.card,
.insights-shell.card,
.workspace-details.card,
.section-card.card,
.empty-state.card{
  background:transparent;
  box-shadow:none;
  border:none;
  border-top:1px solid rgba(67,55,44,.08);
  border-radius:0;
}

.workspace-hero,
.workspace-shell,
.task-board-shell,
.priority-rail,
.insights-shell,
.workspace-details,
.section-card,
.empty-state{
  backdrop-filter:none;
}

.workspace-summary-strip__item{
  padding:12px 0 14px;
  border:none;
  border-bottom:1px solid rgba(67,55,44,.08);
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.workspace-summary-strip__item:last-child{
  border-bottom:none;
}
.workspace-summary-strip__item--link:hover{
  transform:none;
  box-shadow:none;
}

.priority-rail__list{
  gap:0;
}
.priority-rail__item{
  padding:16px 0 18px 18px;
  border:none;
  border-bottom:1px solid rgba(67,55,44,.08);
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.priority-rail__item:last-child{
  border-bottom:none;
}
.priority-rail__item--warn{
  box-shadow:inset 2px 0 0 rgba(214,163,73,.58);
}
.priority-rail__item--accent{
  box-shadow:inset 2px 0 0 rgba(46,159,133,.52);
}
.priority-rail__item--info{
  box-shadow:inset 2px 0 0 rgba(122,108,93,.42);
}

.workspace-details summary{
  position:relative;
  grid-template-columns:minmax(0, 1fr) auto;
  padding-right:52px;
}
.workspace-details summary::after{
  position:absolute;
  top:20px;
  right:0;
  margin-top:0;
}
.workspace-details summary > .chip{
  justify-self:end;
  align-self:center;
  margin-top:0;
}
.workspace-details__count{
  min-width:120px;
}

.workspace-list-card{
  background:rgba(251,248,241,.52);
  border-color:rgba(67,55,44,.08);
  box-shadow:none;
}
.workspace-list-card__actions--footer{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px 12px;
  margin-top:18px;
  padding-top:16px;
}
.workspace-list-card__actions--footer form{
  display:flex;
  margin:0;
}
.workspace-list-card__actions--footer .btn{
  min-height:46px;
}

.application-summary-strip .workspace-summary-strip__item,
.workspace-summary-strip--minimal .workspace-summary-strip__item{
  padding:12px 0 14px;
}

@media (min-width: 1024px){
  .app-body.shell-nav-collapsed .shell-nav__compact-actions{
    margin-top:2px;
  }
}

@media (max-width: 720px){
  .workspace-details summary{
    grid-template-columns:minmax(0, 1fr);
    padding-right:42px;
  }
  .workspace-details summary > .chip{
    justify-self:start;
    margin-top:10px;
  }
  .workspace-details summary::after{
    top:18px;
  }
  .workspace-list-card__actions--footer{
    gap:10px;
    margin-top:16px;
  }
}
