:root {
  --ink:#192e2b;
  --muted:#74807b;
  --green:#287e62;
  --line:#e2e7e1;
  --bg:#f5f6f2;
  --dark:#172e28;
  --mint:#c1eed2;
  --white:#fff;
  --sans:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:24px
}
body {
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font:14px/1.65 var(--sans)
}
a {
  color:inherit;
  text-decoration:none
}
a:hover {
  color:var(--green)
}
button,input,select,textarea {
  font:inherit
}
button,a,input,select,summary,textarea {
  touch-action:manipulation
}
button {
  cursor:pointer
}
button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,summary:focus-visible {
  outline:3px solid #82bda3;
  outline-offset:3px
}
h1,h2,h3,h4,p {
  margin-top:0
}
h1 {
  font-size:30px;
  letter-spacing:-1px;
  line-height:1.35;
  margin-bottom:10px
}
h2 {
  font-size:18px;
  letter-spacing:-.3px;
  margin-bottom:0
}
h3 {
  font-size:17px;
  line-height:1.5;
  margin-bottom:10px
}
p {
  margin-bottom:12px
}
.muted {
  color:var(--muted)
}
.small,small {
  font-size:12px
}
.eyebrow {
  font-size:10px;
  letter-spacing:2px;
  font-weight:650;
  color:var(--green);
  margin-bottom:12px
}
.shell {
  display:flex;
  min-height:100vh
}
.sidebar {
  width:246px;
  flex-shrink:0;
  background:var(--dark);
  color:#c0cfc6;
  padding:34px 22px 0;
  display:flex;
  flex-direction:column;
  position:fixed;
  inset:0 auto 0 0;
  overflow-y:auto
}
.brand {
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-size:26px;
  font-weight:650;
  letter-spacing:-1px;
  line-height:1.1
}
.brand:hover {
  color:#fff
}
.brand small {
  display:block;
  font-size:8px;
  letter-spacing:2.2px;
  color:#a0b2a8;
  margin-top:7px
}
.brand-icon {
  width:40px;
  height:40px;
  border-radius:12px;
  background:var(--mint);
  color:var(--dark);
  display:grid;
  place-items:center;
  font-size:26px;
  font-weight:750
}
.workspace-label {
  font-size:9px;
  letter-spacing:1.8px;
  color:#81998d;
  margin:44px 10px 10px
}
.workspace-switch {
  display:flex;
  border:1px solid #3c5247;
  border-radius:7px;
  overflow:hidden;
  margin-bottom:24px
}
.workspace-switch select {
  width:100%;
  min-width:0;
  background:transparent;
  color:#dce6df;
  border:0;
  padding:11px 8px;
  font-size:12px
}
.workspace-switch option {
  color:var(--ink)
}
.switch {
  background:transparent;
  color:#b9d1c3;
  border:0;
  padding:6px
}
.sidebar nav {
  display:flex;
  flex-direction:column;
  gap:5px
}
.sidebar nav a {
  padding:12px 14px;
  display:flex;
  align-items:center;
  gap:13px;
  border-radius:7px;
  font-size:13px
}
.sidebar nav a span {
  font-size:18px;
  width:20px;
  color:#8da699
}
.sidebar nav a:hover {
  background:#233f34;
  color:#e3f1e8
}
.sidebar nav a[aria-current=page] {
  background:var(--mint);
  color:#214b37;
  font-weight:600
}
.sidebar nav a[aria-current=page] span {
  color:#214b37
}
.nav-divider {
  border-top:1px solid #30493c;
  margin:20px 6px 16px
}
.sidebar-bottom {
  margin-top:auto;
  padding-top:36px;
  font-size:10px;
  color:#9ab2a3
}
.online-dot,.status-dot {
  display:inline-block;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#74aa8b;
  margin-right:7px;
  vertical-align:middle
}
.account {
  display:flex;
  align-items:center;
  gap:10px;
  border-top:1px solid #3a5145;
  margin-top:20px;
  padding:21px 0
}
.account strong {
  font-size:12px;
  color:#e1e9e4
}
.account small {
  display:block;
  font-size:8px
}
.account form {
  margin-left:auto
}
.avatar {
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  background:#385346;
  border-radius:50%;
  color:#c4ddce
}
.logout {
  color:#a2b7aa;
  border:0;
  background:transparent;
  font-size:18px;
  min-height:36px;
  min-width:28px
}
.main-wrap {
  margin-left:246px;
  width:calc(100% - 246px);
  min-width:0
}
.topbar {
  padding:20px 42px;
  border-bottom:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  color:#829087;
  font-size:11px;
  background:#fafbf8;
  gap:16px
}
.crumb {
  margin:0 12px;
  color:#b2bcb4
}
main {
  padding:36px 42px;
  max-width:1680px;
  margin:0 auto
}
.page-heading {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  margin-bottom:30px
}
.page-heading p:last-child {
  margin-bottom:0
}
.page-actions {
  display:flex;
  gap:8px;
  flex-shrink:0
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:white;
  border:1px solid #d7dfd7;
  color:var(--ink);
  padding:10px 17px;
  border-radius:7px;
  font-size:12px;
  font-weight:550;
  min-height:42px;
  white-space:nowrap
}
.button:hover {
  background:#edf3ec;
  color:var(--green)
}
.button.primary {
  background:var(--green);
  color:white;
  border-color:var(--green);
  box-shadow:0 3px 5px #1b553010
}
.button.primary:hover {
  background:#226b53
}
.button.compact {
  padding:5px 10px;
  min-height:34px;
  font-size:11px
}
.date-label {
  margin-left:14px;
  font-size:11px;
  color:#94a094
}
.stats {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  margin-bottom:32px
}
.stat {
  background:white;
  border:1px solid var(--line);
  border-radius:10px;
  padding:20px 23px
}
.stat>span {
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:12px;
  color:#6d7b72
}
.stat i {
  font-style:normal;
  font-size:16px;
  background:#eff5ed;
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  border-radius:7px;
  color:var(--green)
}
.stat i.amber {
  background:#fff3da;
  color:#aa7c28
}
.stat strong {
  display:block;
  font-size:38px;
  line-height:1.45;
  letter-spacing:-1.3px;
  font-weight:550;
  font-variant-numeric:tabular-nums
}
.stat small {
  color:#9aa298;
  font-size:10px
}
.dashboard-grid {
  display:grid;
  grid-template-columns:minmax(0,1.85fr) minmax(260px,1fr);
  gap:26px
}
.section-heading {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:15px
}
.section-heading a {
  font-size:11px;
  color:var(--green)
}
.spaced {
  margin-top:30px
}
.panel {
  background:white;
  border:1px solid var(--line);
  border-radius:10px
}
.project-card {
  padding:24px;
  margin-bottom:16px
}
.card-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px
}
.project-icon {
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:#ecf2e8;
  color:#55724e;
  font-size:22px
}
.badge {
  display:inline-block;
  padding:3px 9px;
  white-space:nowrap;
  border-radius:5px;
  font-size:10px;
  font-weight:550;
  line-height:1.8;
  color:#718078;
  background:#f0f3ef;
  align-self:start
}
.badge.active,.badge.doing {
  background:#eaf4f0;
  color:#357c64
}
.badge.done,.badge.complete {
  background:#edf2e7;
  color:#6a8543
}
.badge.blocked {
  background:#fbefd9;
  color:#ad7c31
}
.badge.review {
  background:#efecf8;
  color:#8470a5
}
.progress-label {
  display:flex;
  justify-content:space-between;
  gap:14px;
  margin-top:20px;
  font-size:11px;
  color:#819082
}
.progress-label strong {
  color:#4c7054
}
progress {
  display:block;
  width:100%;
  height:6px;
  border:0;
  border-radius:5px;
  overflow:hidden;
  background:#edf1e8;
  margin:10px 0
}
progress::-webkit-progress-bar {
  background:#edf1e8
}
progress::-webkit-progress-value {
  background:#77a57a;
  border-radius:5px
}
progress::-moz-progress-bar {
  background:#77a57a
}
.project-meta {
  display:flex;
  justify-content:space-between;
  font-size:10px;
  color:#939c90
}
.milestone-line {
  display:flex;
  justify-content:space-between;
  gap:10px;
  border-top:1px solid #edf0e9;
  padding-top:18px;
  margin-top:20px;
  font-size:11px;
  color:#8d988b
}
.milestone-line strong {
  font-weight:500;
  color:#53684f
}
.focus-card {
  background:#e8eedf;
  border:1px solid #d8e3cb;
  border-radius:10px;
  padding:28px;
  position:relative;
  overflow:hidden
}
.focus-card h2 {
  font-size:26px;
  line-height:1.5;
  letter-spacing:-.6px;
  color:#3d5734;
  margin-bottom:16px
}
.focus-card .eyebrow {
  font-size:9px;
  color:#6c825a
}
.focus-card p {
  color:#7a896c;
  font-size:11px;
  line-height:1.9
}
.focus-card a {
  display:inline-block;
  font-size:11px;
  font-weight:600;
  margin-top:12px;
  color:#4c6c3d
}
.timeline {
  padding:24px
}
.timeline-item {
  padding:0 0 23px 20px;
  border-left:1px solid #dfe8dc;
  position:relative
}
.timeline-item:last-child {
  padding-bottom:0;
  border-left:0
}
.timeline-dot {
  position:absolute;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#96b28a;
  left:-4px;
  top:8px
}
.timeline-item strong {
  font-size:11px;
  font-weight:600
}
.timeline-item p {
  font-size:10px;
  color:#85907e;
  margin:3px 0
}
.timeline-item time {
  color:#a2aa9c;
  font-size:9px
}
.next-task {
  display:grid;
  grid-template-columns:14px minmax(0,1fr) auto;
  gap:12px;
  padding:19px 22px;
  border-bottom:1px solid #edf0e9
}
.next-task:last-child {
  border:0
}
.next-task p {
  font-size:11px;
  color:#8a9586;
  margin:5px 0 0
}
.task-title {
  font-size:13px;
  font-weight:550
}
.task-marker {
  width:11px;
  height:11px;
  border:1.5px solid #91a18a;
  border-radius:3px;
  margin-top:8px
}
.task-marker.blocked {
  border-color:#c7a455;
  background:#fcf3dc
}
.task-marker.doing {
  border-color:#66a788;
  background:#e0f2e6
}
.card-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px
}
.card-grid .project-card {
  margin:0
}
.mini-card,.agent-card {
  padding:25px
}
.mini-card h3 {
  margin-top:15px
}
.mini-card p,.agent-card p {
  font-size:12px;
  color:#7b8776
}
.mini-card>a.small {
  display:block;
  margin-top:16px;
  color:var(--green)
}
.idea-meta {
  display:flex;
  gap:16px;
  font-size:11px;
  padding:15px 0;
  color:#71856a
}
.empty {
  background:white;
  border:1px dashed #d7e0d1;
  border-radius:10px;
  padding:42px 26px;
  text-align:center;
  color:#8a9680;
  width:100%;
  grid-column:1/-1
}
.empty h3 {
  color:#5a7251;
  font-weight:500;
  font-size:17px
}
.empty p {
  font-size:12px;
  margin:0
}
.empty-icon {
  font-size:36px
}
.tabs {
  display:flex;
  gap:24px;
  border-bottom:1px solid var(--line);
  margin-bottom:25px;
  overflow-x:auto;
  padding-bottom:12px
}
.tabs a {
  font-size:12px;
  color:#6d8261;
  white-space:nowrap
}
.overview {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:28px;
  gap:20px
}
.overview h2 {
  margin-bottom:8px
}
.overview p:last-child {
  margin:0;
  font-size:12px
}
.big-progress {
  font-size:44px;
  font-weight:550;
  color:#5c8551;
  white-space:nowrap
}
.big-progress span {
  font-size:22px
}
.track-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px
}
.track-card {
  padding:22px
}
.track-card h3 {
  font-size:14px;
  margin-top:15px
}
.track-card p {
  font-size:11px
}
.track-card .small {
  display:block;
  margin-top:16px;
  color:var(--green)
}
.track-code {
  padding:4px 10px;
  background:#eef2e8;
  color:#66805a;
  border-radius:6px;
  font-size:12px;
  font-weight:600
}
.task-table {
  overflow:hidden
}
.task-table-head,.task-row {
  display:grid;
  grid-template-columns:minmax(0,1fr) 100px 70px 155px;
  gap:20px;
  padding:20px 24px;
  align-items:start
}
.task-table-head {
  font-size:10px;
  color:#8e9a87;
  background:#fafbf8;
  border-bottom:1px solid #e5ebe0;
  padding-top:13px;
  padding-bottom:13px
}
.task-row {
  border-bottom:1px solid #edf0e7
}
.task-row:last-child {
  border-bottom:0
}
.task-row h3 {
  font-size:14px;
  margin:3px 0 6px
}
.task-next {
  font-size:11px;
  color:#7f8d76;
  margin-bottom:8px
}
.track-pill {
  background:#edf1e8;
  padding:4px 8px;
  border-radius:5px;
  color:#6b865b;
  font-size:11px
}
.project-name {
  display:block;
  color:#95a08b;
  font-size:9px;
  margin-top:8px;
  line-height:1.8
}
summary {
  cursor:pointer;
  color:#618452;
  font-size:11px;
  width:fit-content;
  min-height:28px
}
details .detail-text {
  font-size:11px;
  background:#f6f8f2;
  margin:8px 0 0;
  padding:14px;
  border-radius:6px;
  color:#6d7d64;
  overflow-wrap:anywhere
}
.detail-text strong {
  font-size:10px
}
details p:last-child {
  margin-bottom:0
}
.task-controls form {
  display:flex;
  gap:6px
}
.task-controls select {
  padding:5px;
  border:1px solid #dde5d7;
  border-radius:5px;
  min-width:0;
  width:88px;
  font-size:10px;
  background:white;
  color:#697c5e
}
.task-controls>a {
  display:block;
  font-size:10px;
  margin-top:10px;
  color:#78916a
}
.filters {
  display:flex;
  gap:10px;
  margin-bottom:22px;
  flex-wrap:wrap
}
.filters input,.filters select {
  border:1px solid #dce4d6;
  background:white;
  border-radius:7px;
  padding:9px 12px;
  color:#687961;
  min-width:0
}
.filters input {
  flex:1;
  min-width:180px
}
.filters select {
  max-width:320px;
  font-size:12px
}
.decision-list {
  display:flex;
  flex-direction:column;
  gap:16px
}
.decision-card {
  display:flex;
  gap:20px;
  padding:25px
}
.decision-card>div {
  min-width:0
}
.decision-mark {
  width:35px;
  height:35px;
  flex-shrink:0;
  display:grid;
  place-items:center;
  background:#f0f3e9;
  color:#82916e;
  border-radius:8px;
  font-size:20px
}
.decision-card h3 {
  font-size:15px;
  margin-top:5px
}
.decision-card p {
  font-size:12px;
  color:#78896c;
  line-height:1.9
}
.decision-card a {
  color:var(--green)
}
.pre-wrap {
  white-space:pre-wrap;
  overflow-wrap:anywhere
}
.agent-symbol {
  width:36px;
  height:36px;
  background:#eef1e8;
  color:#839467;
  border-radius:9px;
  text-align:center;
  font-size:25px
}
.agent-card h3 {
  font-size:16px
}
.agent-card code {
  font-size:10px;
  display:block;
  padding:12px;
  background:#f4f6f0;
  overflow-wrap:anywhere;
  border-radius:5px
}
.agent-status {
  border-top:1px solid #eaf0e3;
  margin-top:20px;
  padding-top:16px;
  font-size:10px;
  color:#8a987b
}
.agent-card details p {
  overflow-wrap:anywhere
}
.notice {
  border:1px solid #c7dfcf;
  background:#eaf6ef;
  padding:13px 18px;
  border-radius:7px;
  margin-bottom:20px;
  color:#527c5e;
  font-size:12px
}
.notice.neutral {
  background:#eef2e7;
  border-color:#dfe6d1;
  color:#7a875f
}
.form-panel {
  max-width:800px;
  padding:30px
}
.form-field {
  margin-bottom:22px
}
.form-field label,.login-card label {
  display:block;
  font-size:12px;
  font-weight:550;
  margin-bottom:8px;
  color:#57714e
}
.form-field input,.form-field select,.form-field textarea,.login-card input {
  width:100%;
  border:1px solid #d8e2cf;
  border-radius:7px;
  background:#fcfdfb;
  padding:11px 13px;
  color:var(--ink);
  font-size:13px;
  min-width:0
}
.form-field textarea {
  resize:vertical;
  min-height:100px;
  max-height:260px
}
.form-field .required {
  color:#91a379
}
.form-actions {
  display:flex;
  justify-content:flex-end;
  gap:10px;
  padding-top:16px;
  border-top:1px solid var(--line)
}
.errorlist {
  padding:10px 15px;
  list-style:none;
  background:#fcf0e7;
  color:#a3664e;
  border-radius:6px;
  font-size:12px
}
.audit-list article {
  padding:20px 25px;
  border-bottom:1px solid var(--line)
}
.audit-list article>div {
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  font-size:11px
}
.audit-list article>p {
  font-size:12px;
  margin:8px 0
}
.audit-list pre {
  white-space:pre-wrap;
  overflow-wrap:anywhere;
  font-size:11px;
  background:#f6f8f2;
  padding:15px;
  border-radius:6px
}
.audit-list h4 {
  margin:10px 0;
  font-size:11px
}
footer {
  margin-top:44px;
  padding-top:22px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  color:#a6afa0;
  font-size:9px;
  gap:10px
}
.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0
}
.login-body {
  background:#f6f7f2
}
.login-layout {
  padding:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:100vh;
  max-width:none
}
.login-story {
  background:var(--dark);
  padding:50px 65px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  color:#d1dfd2;
  overflow:hidden
}
.login-story>div {
  margin:60px 0 25px
}
.login-story h1 {
  font-size:46px;
  line-height:1.5;
  letter-spacing:-2px;
  margin-bottom:25px
}
.login-story p {
  font-size:14px;
  color:#99b69e;
  line-height:2
}
.login-story .eyebrow {
  font-size:10px;
  letter-spacing:3px;
  color:#9bb38d
}
.login-story>small {
  font-size:10px;
  color:#6d8b74
}
.orbit {
  border:1px solid #3d5841;
  border-radius:50%;
  width:280px;
  height:180px;
  position:relative;
  margin:50px 0 25px;
  transform:rotate(-15deg)
}
.orbit-center {
  position:absolute;
  left:100px;
  top:65px;
  background:#365c40;
  color:#d0e5c5;
  border:1px solid #537c51;
  padding:12px 20px;
  border-radius:8px;
  transform:rotate(15deg);
  font-size:15px
}
.orbit-node {
  position:absolute;
  font-size:10px;
  border:1px solid #56744f;
  background:#203b2a;
  color:#a5bf92;
  padding:6px 13px;
  border-radius:20px;
  transform:rotate(15deg)
}
.node-1 {
  top:0;
  left:5px
}
.node-2 {
  bottom:-5px;
  left:65px
}
.node-3 {
  right:-20px;
  top:55px
}
.login-panel {
  display:flex;
  align-items:center;
  justify-content:center;
  padding:45px
}
.login-card {
  width:100%;
  max-width:360px
}
.login-card h2 {
  font-size:25px;
  font-weight:550;
  margin-bottom:12px
}
.login-card>p.muted {
  font-size:13px;
  margin-bottom:32px
}
.login-card input {
  margin-bottom:23px;
  height:47px;
  background:white
}
.full {
  width:100%
}
.login-card .button {
  margin-top:4px;
  height:47px;
  justify-content:space-between
}
.login-note {
  font-size:11px;
  line-height:1.9;
  color:#96a08d;
  margin-top:25px
}
.error {
  background:#fcf0e7;
  border:1px solid #eed6c9;
  color:#9a6b54;
  border-radius:7px;
  padding:12px;
  font-size:12px;
  margin:20px 0
}

@media(min-width:1600px) {
  .card-grid {
  grid-template-columns:repeat(3,minmax(0,1fr))
}

}
@media(max-width:1150px) {
  .sidebar {
  width:212px;
  padding-left:16px;
  padding-right:16px
}
.main-wrap {
  margin-left:212px;
  width:calc(100% - 212px)
}
main {
  padding:28px
}
.topbar {
  padding:18px 28px
}
.stats {
  gap:12px
}
.stat {
  padding:17px
}
.stat strong {
  font-size:32px
}
.dashboard-grid {
  grid-template-columns:minmax(0,1.5fr) minmax(230px,1fr);
  gap:20px
}
.track-grid {
  grid-template-columns:repeat(2,minmax(0,1fr))
}
.task-row,.task-table-head {
  grid-template-columns:minmax(0,1fr) 62px 62px 130px;
  gap:12px;
  padding-left:18px;
  padding-right:18px
}
.task-controls form {
  flex-wrap:wrap
}
.task-controls select {
  width:100%
}
.task-controls .button {
  width:100%
}
.task-controls {
  max-width:110px
}
.page-heading {
  align-items:flex-start
}
.page-actions {
  flex-wrap:wrap;
  justify-content:flex-end
}
.login-story {
  padding:40px
}
.login-story h1 {
  font-size:38px
}

}

@media(max-width:900px) {
  .dashboard-grid {
  grid-template-columns:1fr
}
.dashboard-grid>aside {
  display:grid;
  grid-template-columns:1fr;
  gap:0
}
.focus-card {
  margin-top:5px
}
.stats {
  grid-template-columns:repeat(2,minmax(0,1fr))
}
.card-grid {
  grid-template-columns:1fr
}
.task-row,.task-table-head {
  grid-template-columns:minmax(0,1fr) 58px 66px;
  gap:15px
}
.task-table-head>span:last-child {
  display:none
}
.task-controls {
  grid-column:1/-1;
  max-width:none;
  display:flex;
  align-items:center;
  gap:20px
}
.task-controls form {
  flex-wrap:nowrap
}
.task-controls select {
  width:100px
}
.task-controls .button {
  width:auto
}
.task-controls>a {
  margin:0
}
.login-story h1 {
  font-size:34px
}
.login-story {
  padding:35px
}
.login-panel {
  padding:32px
}
.orbit {
  width:220px
}
.orbit-center {
  left:65px
}
.page-heading {
  flex-wrap:wrap
}
.page-actions {
  justify-content:flex-start
}

}

@media(max-width:680px) {
  .shell {
  display:block
}
.sidebar {
  position:static;
  width:100%;
  padding:19px 20px 0;
  overflow:visible
}
.brand {
  font-size:22px;
  gap:10px
}
.brand-icon {
  width:34px;
  height:34px;
  font-size:22px
}
.brand small {
  font-size:7px
}
.workspace-label,.workspace-switch,.sidebar-bottom,.nav-divider {
  display:none
}
.sidebar nav {
  margin-top:20px;
  flex-direction:row;
  gap:4px;
  overflow-x:auto;
  padding-bottom:14px
}
.sidebar nav a {
  padding:8px 11px;
  white-space:nowrap;
  font-size:11px;
  gap:6px;
  min-height:40px
}
.sidebar nav a span {
  font-size:14px;
  width:auto
}
.main-wrap {
  margin:0;
  width:100%
}
.topbar {
  padding:13px 20px;
  font-size:9px
}
.topbar>div {
  white-space:nowrap
}
main {
  padding:25px 20px
}
.page-heading {
  gap:16px;
  margin-bottom:24px
}
h1 {
  font-size:25px
}
.page-heading .muted {
  font-size:12px
}
.eyebrow {
  font-size:8px;
  letter-spacing:1.6px
}
.date-label {
  display:block;
  margin:6px 0 0
}
.stats {
  gap:10px;
  margin-bottom:26px
}
.stat {
  padding:16px
}
.stat strong {
  font-size:33px
}
.stat small {
  font-size:9px
}
.stat>span {
  font-size:11px
}
.project-card {
  padding:21px
}
.project-card h3 {
  font-size:16px
}
.project-card>p {
  font-size:12px
}
.project-meta {
  font-size:9px
}
.milestone-line {
  flex-direction:column;
  gap:4px
}
.next-task {
  padding:18px 16px;
  gap:9px
}
.next-task .badge {
  font-size:9px;
  padding:2px 6px
}
.focus-card h2 {
  font-size:25px
}
.track-grid {
  grid-template-columns:1fr
}
.overview {
  padding:20px;
  flex-wrap:wrap
}
.overview h2 {
  font-size:16px
}
.big-progress {
  font-size:36px
}
.tabs {
  gap:20px
}
.task-table-head {
  display:none
}
.task-row {
  grid-template-columns:minmax(0,1fr) auto;
  padding:20px;
  gap:12px
}
.task-row>div:first-child {
  grid-column:1/-1
}
.task-row>div:nth-child(2) {
  display:flex;
  gap:10px;
  align-items:center
}
.project-name {
  margin:0;
  font-size:9px
}
.task-row>.badge {
  justify-self:end
}
.task-controls {
  padding-top:4px;
  justify-content:space-between
}
.task-controls select {
  font-size:12px;
  min-height:38px
}
.task-controls .button {
  min-height:38px
}
.filters {
  gap:8px
}
.filters input {
  flex-basis:100%
}
.filters select {
  max-width:100%;
  flex:1
}
.filters .button {
  padding:8px 13px
}
.card-grid {
  gap:15px
}
.decision-card {
  gap:13px;
  padding:20px
}
.decision-mark {
  width:28px;
  height:28px;
  font-size:18px
}
.decision-card h3 {
  font-size:14px
}
.form-panel {
  padding:21px
}
.form-field input,.form-field select,.form-field textarea {
  font-size:16px
}
.form-actions {
  justify-content:space-between
}
.form-actions .button {
  flex:1
}
.audit-list article {
  padding:19px
}
.audit-list article>div {
  gap:8px
}
.agent-card {
  padding:23px
}
footer {
  font-size:8px;
  flex-direction:column;
  gap:3px
}
.login-layout {
  display:block
}
.login-story {
  padding:25px
}
.login-story>div,.login-story>small {
  display:none
}
.login-panel {
  padding:45px 28px
}
.login-card h2 {
  font-size:24px
}
.login-card input {
  font-size:16px
}

}

@media(prefers-reduced-motion:reduce) {
  html {
  scroll-behavior:auto
}

}


.mobile-account {
  display:none
}
@media(max-width:680px) {
  .mobile-account {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:10px 20px;
  border-bottom:1px solid var(--line);
  font-size:10px
}
.mobile-account form {
  display:flex;
  min-width:0
}
.mobile-account select {
  width:120px;
  min-width:0;
  font-size:10px;
  background:white;
  border:1px solid var(--line);
  border-radius:4px;
  padding:7px 3px
}
.mobile-account button {
  background:white;
  border:1px solid var(--line);
  padding:6px 9px;
  border-radius:4px;
  color:var(--green);
  font-size:11px;
  min-height:34px
}

}

/* Account security: secrets remain legible on narrow screens without overflow. */
.security-panel {
  max-width:640px;
  padding:24px;
  background:var(--white)
}
.security-panel h2 {
  margin:0 0 12px;
  font-size:20px
}
.security-panel h3 {
  margin:24px 0 10px;
  font-size:16px
}
.security-panel p {
  margin:0 0 18px;
  color:#536660
}
.security-panel code {
  overflow-wrap:anywhere;
  color:var(--ink);
  font-size:14px
}
.security-form {
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:8px;
  margin-top:24px
}
.security-form label {
  font-size:13px;
  font-weight:600;
  color:#57714e
}
.security-form input:not([type="hidden"]) {
  width:100%;
  min-width:0;
  border:1px solid #d8e2cf;
  border-radius:7px;
  background:#fcfdfb;
  padding:11px 13px;
  margin-bottom:12px;
  color:var(--ink)
}
.security-form .button {
  align-self:flex-start;
  margin-top:4px
}
.security-qr {
  display:block;
  width:256px;
  max-width:100%;
  height:auto;
  margin:16px 0 24px;
  border:1px solid var(--line);
  border-radius:8px;
  background:white
}
.recovery-codes {
  padding:16px 20px;
  list-style:none;
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:8px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:8px 20px;
  margin-bottom:24px
}
.mfa-login-body {
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:24px
}
.mfa-login-body .login-panel {
  width:100%;
  max-width:480px;
  border:1px solid var(--line);
  border-radius:16px;
  padding:32px;
  background:white
}
.mfa-login-body .login-card {
  width:100%;
  max-width:none
}
@media(max-width:480px) {
  .security-panel,.mfa-login-body .login-panel {padding:20px}
  .recovery-codes {grid-template-columns:1fr;padding:16px}
}
