/* DeskCreek — The Operational Deskline */

:root {
  --deskline-blue: #DCEAFF;
  --deskline-blue-light: #E8F0FF;
  --night-desk: #171C27;
  --work-paper: #FFF8EE;
  --service-indigo: #4458FF;
  --dispatch-orange: #FF653D;
  --queue-lime: #B9F45B;
  --context-cyan: #20BFC1;
  --ai-assist: #A77BE8;
  --success: #2DB47D;
  --waiting: #EBAF3A;
  --risk: #EA4D68;

  --card-dark: #222A39;
  --card-light: #FFFCF7;
  --border-dark: #354155;
  --border-light: #C8D6E8;
  --title-dark: #F6F9FF;
  --title-light: #192033;
  --body-dark: #C4CDDC;
  --body-light: #5D6573;

  --font-ui: "Manrope", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --container: min(1180px, calc(100% - 40px));
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-soft: 0 1px 2px rgba(25, 32, 51, 0.06), 0 8px 24px rgba(25, 32, 51, 0.08);
  --shadow-desk: 0 2px 0 rgba(25, 32, 51, 0.04), 0 12px 32px rgba(25, 32, 51, 0.1);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.6);

  --announce-h: 34px;
  --header-h: 62px;
  --site-top-h: calc(var(--announce-h) + var(--header-h));

  --ease-desk: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.34, 1.2, 0.64, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  color: var(--title-light);
  background: var(--deskline-blue);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--service-indigo);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

/* ── Layout ── */

.container {
  width: var(--container);
  max-width: var(--container);
  margin-inline: auto;
}

.site-shell {
  min-height: 100vh;
  padding-top: var(--site-top-h);
}

main {
  display: block;
}

.is-flash {
  animation: desk-flash 0.7s var(--ease-desk);
}

.is-bump {
  transform: scale(1.04);
  transition: transform 0.25s var(--ease-snap);
}

.bc-stripe.is-scan {
  outline: 2px solid var(--dispatch-orange);
  outline-offset: 2px;
  z-index: 2;
}

@keyframes desk-flash {
  0%, 100% { box-shadow: none; }
  40% { box-shadow: 0 0 0 3px rgba(68, 88, 255, 0.35); }
}

.is-hidden {
  display: none !important;
}

.mt-m {
  margin-top: 1.5rem;
}

.position-line {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--service-indigo);
}

.tagline-exact {
  margin: 0.5rem 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dispatch-orange);
  line-height: 1.35;
  max-width: 36rem;
}

.brand-signal {
  font-family: var(--font-ui);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 0.5rem;
  color: var(--title-light);
}

.ai-fill-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.ai-fill-cell {
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 0.85rem 0.75rem;
  min-height: 5.5rem;
}

.ai-fill-cell .mono-label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--context-cyan);
}

.ai-fill-cell b {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--title-light);
  line-height: 1.35;
}

.ai-fill-cell b.is-miss {
  color: var(--risk);
}

.atlas-rail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.atlas-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.9rem 0.85rem;
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--service-indigo);
  border-radius: var(--radius-sm);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s var(--ease-desk), transform 0.2s var(--ease-desk);
}

.atlas-link:hover {
  text-decoration: none;
  border-left-color: var(--dispatch-orange);
  transform: translateY(-2px);
}

.atlas-link b {
  font-size: 0.88rem;
  color: var(--title-light);
}

.atlas-link span {
  font-size: 0.75rem;
  color: var(--body-light);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .ai-fill-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .ai-fill-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Typography ── */

.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--service-indigo);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body-light);
  max-width: 62ch;
}

.mono-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body-light);
  margin-bottom: 0.5rem;
}

h1 {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--title-light);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--title-light);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--title-light);
}

h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--title-light);
}

.sec-head {
  margin-bottom: 2rem;
  max-width: 720px;
}

.sec-head .lead {
  margin-top: 0.5rem;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s var(--ease-desk), border-color 0.18s, color 0.18s, transform 0.15s var(--ease-snap);
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-sm {
  padding: 0.4375rem 0.875rem;
  font-size: 0.8125rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background: var(--service-indigo);
  color: #fff;
  border-color: var(--service-indigo);
}

.btn-primary:hover {
  background: #3546e8;
  border-color: #3546e8;
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 252, 247, 0.65);
  color: var(--title-light);
  border-color: var(--border-light);
}

.btn-ghost:hover {
  background: var(--card-light);
  border-color: #b8c8dc;
  color: var(--title-light);
}

.btn-orange {
  background: var(--dispatch-orange);
  color: #fff;
  border-color: var(--dispatch-orange);
}

.btn-orange:hover {
  background: #e8552f;
  border-color: #e8552f;
  color: #fff;
}

.btn-lime {
  background: var(--queue-lime);
  color: var(--title-light);
  border-color: #9ed44a;
}

.btn-lime:hover {
  background: #a8e84f;
  border-color: #8ec83f;
  color: var(--title-light);
}

.btn-line {
  background: transparent;
  color: var(--title-light);
  border-color: var(--border-light);
}

.btn-line:hover {
  background: rgba(255, 252, 247, 0.8);
  border-color: var(--service-indigo);
  color: var(--service-indigo);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

/* ── Forms ── */

label {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--title-light);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
select,
textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 0.9375rem;
  background: var(--card-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--service-indigo);
  box-shadow: 0 0 0 3px rgba(68, 88, 255, 0.15);
}

textarea {
  resize: vertical;
  min-height: 96px;
}

.form-ok {
  font-size: 0.875rem;
  color: var(--success);
  margin-top: 0.75rem;
}

.form-error {
  font-size: 0.875rem;
  color: var(--risk);
  margin-bottom: 0.75rem;
}

.file-field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--body-light);
}

/* ── Announce bar ── */

.site-top {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
}

.announce-bar {
  min-height: var(--announce-h);
  background: var(--night-desk);
  border-bottom: 1px solid #252d3d;
}

.announce-bar-inner {
  width: var(--container);
  max-width: var(--container);
  margin-inline: auto;
  min-height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 6px;
}

.announce-text {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--body-dark);
  text-align: center;
}

.announce-cta {
  color: var(--queue-lime);
  font-weight: 700;
  text-decoration: none;
  margin-left: 0.25rem;
}

.announce-cta:hover {
  color: #c8f878;
  text-decoration: underline;
}

/* ── Site header ── */

.site-header {
  background: var(--deskline-blue-light);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.header-inner {
  width: var(--container);
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-h);
  padding-block: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--title-light);
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  text-decoration: none;
  color: var(--title-light);
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--card-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.logo-mark svg {
  width: 22px;
  height: 22px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text span {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--body-light);
  letter-spacing: 0.02em;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  flex-wrap: wrap;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--body-light);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
}

.nav-link:hover {
  color: var(--title-light);
  text-decoration: none;
}

.nav-link.is-active {
  color: var(--title-light);
  font-weight: 700;
}

.nav-link.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 18px;
  background: var(--dispatch-orange);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  background: var(--card-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: var(--title-light);
}

/* Mobile nav */

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.25rem 1rem;
  background: var(--deskline-blue-light);
  border-top: 1px solid var(--border-light);
}

.mobile-nav a {
  padding: 0.625rem 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--title-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 214, 232, 0.5);
}

.mobile-nav a:hover {
  color: var(--service-indigo);
}

.mobile-nav.is-open {
  display: flex;
}

/* User menu */

.user-menu {
  position: relative;
}

.user-avatar {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-light);
  background: var(--service-indigo);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s var(--ease-snap);
}

.user-avatar:hover {
  transform: scale(1.04);
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  padding: 0.5rem;
  background: var(--card-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-desk);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s var(--ease-desk), visibility 0.18s;
  z-index: 300;
}

.user-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-workspace-label {
  display: block;
  padding: 0.5rem 0.625rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--body-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0.25rem;
}

.user-dropdown a,
.user-dropdown button {
  display: block;
  width: 100%;
  padding: 0.5rem 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--title-light);
  text-decoration: none;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  text-align: left;
  cursor: pointer;
}

.user-dropdown a:hover,
.user-dropdown button:hover {
  background: var(--deskline-blue);
  text-decoration: none;
}

/* ── Footer ── */

.site-footer {
  background: var(--night-desk);
  color: var(--body-dark);
  margin-top: 0;
}

.footer-grid {
  width: var(--container);
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--title-dark);
  margin-bottom: 0.875rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.8125rem;
  color: var(--body-dark);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--title-dark);
  text-decoration: underline;
}

.footer-bar {
  border-top: 1px solid var(--border-dark);
  padding: 1.25rem 0 1.75rem;
}

.footer-tag {
  font-size: 0.8125rem;
  color: var(--body-dark);
  margin-bottom: 1rem;
  max-width: 56ch;
}

.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: #8a95a8;
}

.footer-legal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #8a95a8;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--title-dark);
}

/* ── Sections ── */

.section {
  padding: 4rem 0;
}

.section--paper {
  background: var(--work-paper);
}

.section--night {
  background: var(--night-desk);
  color: var(--body-dark);
}

.section--night .kicker {
  color: var(--context-cyan);
}

.section--night h2,
.section--night h3,
.section--night h4 {
  color: var(--title-dark);
}

.section--night .lead,
.section--night .mono-label {
  color: var(--body-dark);
}

.section--tint {
  background: linear-gradient(180deg, rgba(255, 248, 238, 0.55) 0%, var(--deskline-blue) 100%);
}

/* ── Page hero ── */

.page-hero {
  padding: 3rem 0 3.5rem;
  background: var(--deskline-blue);
  border-bottom: 1px solid rgba(200, 214, 232, 0.6);
}

.page-hero-inner {
  max-width: 780px;
}

.page-hero--center .page-hero-inner {
  margin-inline: auto;
  text-align: center;
}

.page-hero--center .lead {
  margin-inline: auto;
}

.page-hero--center .page-hero-actions {
  justify-content: center;
}

/* ══════════════════════════════ HOME — DUAL BENCH ══════════════════════════════ */

.desk-hero {
  background: var(--deskline-blue);
  padding-bottom: 0;
}

.desk-hero-rail {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid rgba(200, 214, 232, 0.55);
}

.desk-hero-top {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.desk-hero-top .brand-signal,
.desk-hero-top .kicker,
.desk-hero-top .position-line,
.desk-hero-top .tagline-exact,
.desk-hero-top .lead {
  margin-left: auto;
  margin-right: auto;
}

.desk-hero-top .tagline-exact {
  max-width: 34rem;
}

.desk-hero-top .lead {
  max-width: 40rem;
}

.desk-hero-actions,
.desk-hero-top .page-hero-actions {
  justify-content: center;
}

.hero-hint {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: 0.875rem;
  color: var(--body-light);
}

.dual-bench {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 1280px;
  margin-inline: auto;
  padding: 1.5rem 1.25rem 3rem;
  align-items: stretch;
}

.bench-side {
  display: flex;
  flex-direction: column;
  background: var(--card-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-desk);
  overflow: hidden;
  min-height: 560px;
}

.bench-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  background: #f0f4fa;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.75rem;
}

.bench-chrome--ops {
  background: #eef1ff;
}

.bench-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
}

.bench-dot:nth-child(1) { background: #ff5f57; }
.bench-dot:nth-child(2) { background: #febc2e; }
.bench-dot:nth-child(3) { background: #28c840; }

.bench-chrome strong {
  font-weight: 700;
  color: var(--title-light);
  margin-right: auto;
}

.bench-chrome em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--body-light);
}

.bench-gutter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  position: relative;
  flex-shrink: 0;
}

.gutter-line {
  position: absolute;
  inset: 12% 50% 12% auto;
  width: 2px;
  margin-right: -1px;
  background: linear-gradient(180deg, transparent, var(--dispatch-orange) 15%, var(--dispatch-orange) 85%, transparent);
  opacity: 0.85;
}

.gutter-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dispatch-orange);
  background: var(--deskline-blue);
  padding: 0.5rem 0;
  z-index: 1;
}

/* Slack pane */

.emp-meta-bar,
.ops-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
  padding: 0.5rem 0.875rem;
  border-bottom: 1px solid var(--border-light);
  background: #f7f9fc;
  font-size: 0.6875rem;
  color: var(--body-light);
}

.emp-chan-pill {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--service-indigo);
  background: rgba(68, 88, 255, 0.1);
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius-sm);
}

.emp-desk-tag {
  margin-left: auto;
  font-weight: 600;
  color: var(--dispatch-orange);
}

.ops-meta-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  background: #eef1ff;
}

.ops-meta-chip {
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.5rem;
}

.ops-meta-chip span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--body-light);
  margin-bottom: 0.15rem;
}

.ops-meta-chip b {
  font-size: 0.75rem;
  color: var(--title-light);
}

.ops-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 0;
  min-height: 0;
}

.ops-side {
  border-left: 1px solid var(--border-light);
  background: #fafbfe;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ops-activity ul,
.ops-route-preview ol {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.ops-activity li,
.ops-route-preview li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--title-light);
}

.ops-activity li em,
.ops-route-preview li {
  font-style: normal;
}

.ops-activity li em {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--context-cyan);
}

.ops-activity li.is-dim,
.ops-route-preview li.is-pending {
  color: var(--body-light);
}

.ops-route-preview ol {
  counter-reset: route;
}

.ops-route-preview li {
  grid-template-columns: 1fr;
  padding: 0.4rem 0.5rem;
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-sm);
  position: relative;
  padding-left: 1.75rem;
}

.ops-route-preview li::before {
  counter-increment: route;
  content: counter(route);
  position: absolute;
  left: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--border-light);
  color: var(--title-light);
  font-size: 0.5625rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.ops-route-preview li.is-live {
  border-style: solid;
  border-color: var(--service-indigo);
  color: var(--title-light);
  background: rgba(68, 88, 255, 0.06);
}

.ops-route-preview li.is-live::before {
  background: var(--service-indigo);
  color: #fff;
}

.ops-route-preview li.is-done {
  border-style: solid;
  border-color: var(--success);
  color: var(--title-light);
}

.ops-route-preview li.is-done::before {
  background: var(--success);
  color: #fff;
  content: "✓";
}

.policy-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pol-chip {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: #fff;
  color: var(--body-light);
}

.pol-chip.is-on {
  background: rgba(45, 180, 125, 0.12);
  border-color: rgba(45, 180, 125, 0.4);
  color: #1a7a52;
}

.pol-chip.is-risk {
  background: rgba(234, 77, 104, 0.1);
  border-color: rgba(234, 77, 104, 0.35);
  color: var(--risk);
}

.slack-pane {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #fafbfc;
}

.slack-thread-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6875rem;
  color: var(--body-light);
}

.slack-chan {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--body-light);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.slack-msg {
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  line-height: 1.5;
}

.slack-msg.is-context {
  background: #f0f3f8;
  border: 1px dashed var(--border-light);
  align-self: stretch;
  opacity: 0.92;
}

.slack-msg.is-user {
  background: #fff;
  border: 1px solid var(--border-light);
  align-self: flex-start;
  max-width: 92%;
}

.slack-msg.is-bot {
  background: rgba(68, 88, 255, 0.08);
  border: 1px solid rgba(68, 88, 255, 0.2);
  align-self: flex-start;
  max-width: 92%;
}

.slack-who {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--title-light);
}

.slack-msg.is-bot .slack-who {
  color: var(--service-indigo);
}

.emp-status {
  margin-top: auto;
  padding: 0.75rem;
  background: var(--work-paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 0.8125rem;
}

.emp-next-actions {
  margin-top: 0.65rem;
  padding-top: 0.55rem;
  border-top: 1px dashed var(--border-light);
}

.emp-next-actions ul {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
  color: var(--body-light);
  font-size: 0.75rem;
}

.strip-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.strip-progress {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--body-light);
}

.status-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  background: rgba(235, 175, 58, 0.2);
  color: #8a6a1a;
  border-radius: var(--radius-sm);
  margin-bottom: 0.375rem;
}

.emp-status em {
  display: block;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--body-light);
  margin-top: 0.375rem;
}

.req-switcher {
  display: flex;
  gap: 0.375rem;
  padding: 0.625rem;
  border-top: 1px solid var(--border-light);
  background: #f5f7fb;
  flex-wrap: wrap;
}

.req-chip {
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0.625rem;
  background: var(--card-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.req-chip b {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--title-light);
}

.req-chip span {
  display: block;
  font-size: 0.625rem;
  color: var(--body-light);
  margin-top: 0.125rem;
}

.req-chip.is-on {
  border-color: var(--service-indigo);
  box-shadow: 0 0 0 2px rgba(68, 88, 255, 0.12);
}

/* Brief pane */

.brief-pane {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.brief-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.brief-id {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--body-light);
}

.brief-fields {
  display: grid;
  gap: 0.375rem;
}

.brief-fields li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.5rem;
  padding: 0.375rem 0;
  border-bottom: 1px solid rgba(200, 214, 232, 0.5);
  font-size: 0.8125rem;
}

.brief-fields li span {
  color: var(--body-light);
}

.brief-fields li b {
  font-weight: 700;
  color: var(--title-light);
}

.brief-fields li b.is-fill {
  color: #9aa3b0;
  font-weight: 500;
}

.brief-fields li b.is-miss {
  color: var(--risk);
}

.brief-fields li b.is-ok {
  color: var(--success);
}

.miss-panel {
  padding: 0.75rem;
  background: var(--work-paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.miss-list {
  display: grid;
  gap: 0.375rem;
}

.miss-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  font-size: 0.75rem;
  padding: 0.375rem 0;
  border-bottom: 1px dashed rgba(200, 214, 232, 0.6);
}

.miss-row span {
  color: var(--body-light);
}

.miss-row b {
  font-weight: 600;
  text-align: right;
}

.miss-row.miss-risk b { color: var(--risk); }
.miss-row.miss-wait b { color: var(--waiting); }
.miss-row.miss-ok b { color: var(--success); }

/* Run strip */

.run-strip {
  padding: 0.75rem 1rem;
  border-top: 1.5px solid var(--border-light);
  background: #f5f7fb;
}

.strip-track {
  display: flex;
  gap: 3px;
  margin: 0.5rem 0;
  height: 28px;
}

.strip-seg {
  flex: 1;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--body-light);
  background: rgba(200, 214, 232, 0.35);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  transition: color 0.25s var(--ease-desk);
}

.strip-seg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--service-indigo);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease-desk);
  z-index: 0;
}

.strip-seg.is-on {
  color: #fff;
}

.strip-seg.is-on::after {
  transform: scaleX(1);
}

.strip-seg.is-wait::after {
  background: var(--waiting);
  transform: scaleX(1);
}

.strip-seg.is-gap::after {
  background: transparent;
  transform: scaleX(0);
}

.strip-seg.is-gap {
  background: repeating-linear-gradient(
    -45deg,
    rgba(234, 77, 104, 0.08),
    rgba(234, 77, 104, 0.08) 4px,
    transparent 4px,
    transparent 8px
  );
  border: 1px dashed rgba(234, 77, 104, 0.35);
  color: var(--risk);
}

.strip-seg > * {
  position: relative;
  z-index: 1;
}

.run-strip.is-idle .strip-seg::after {
  transform: scaleX(0);
}

.run-strip.is-idle .strip-seg {
  color: var(--body-light);
}

.strip-note {
  font-size: 0.75rem;
  color: var(--body-light);
  margin-top: 0.375rem;
}

/* Pain rail */

.pain-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-light);
}

.pain-cell {
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--border-light);
  position: relative;
}

.pain-cell:last-child {
  border-right: none;
}

.pain-cell > span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--dispatch-orange);
  margin-bottom: 0.625rem;
}

.pain-cell h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.pain-cell p {
  font-size: 0.8125rem;
  color: var(--body-light);
  line-height: 1.55;
}

/* Deskline flow */

.deskline-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  padding: 1rem;
  background: var(--card-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.dl-node {
  padding: 0.875rem 0.75rem;
  text-align: center;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease-snap);
}

.dl-node b {
  display: block;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--title-light);
  margin-bottom: 0.25rem;
}

.dl-node span {
  display: block;
  font-size: 0.6875rem;
  color: var(--body-light);
}

.dl-node.is-on {
  background: rgba(68, 88, 255, 0.08);
  border-color: rgba(68, 88, 255, 0.25);
}

.dl-node.is-pulse {
  transform: scale(1.03);
  border-color: var(--dispatch-orange);
  background: rgba(255, 101, 61, 0.06);
}

.desk-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.desk-pill {
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
  background: var(--card-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.desk-pill.is-on {
  background: var(--service-indigo);
  border-color: var(--service-indigo);
  color: #fff;
}

.desk-blurb {
  font-size: 0.9375rem;
  color: var(--body-light);
  max-width: 62ch;
  line-height: 1.6;
}

/* ══════════════════════════════ PLATFORM — BARCODE ══════════════════════════════ */

.barcode-stage {
  background: var(--card-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.bc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--body-light);
}

.bc-track {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 2px;
  height: 72px;
  padding: 0.5rem;
  background: var(--night-desk);
  border-radius: var(--radius);
  overflow: hidden;
}

.bc-stripe {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.375rem;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: opacity 0.15s, filter 0.15s;
}

.bc-stripe span {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.bc-stripe:hover {
  filter: brightness(1.15);
}

.bc-stripe:focus-visible {
  outline: 2px solid var(--queue-lime);
  outline-offset: 2px;
}

.bc-narrow { flex: 0.6; }
.bc-mid { flex: 1; }
.bc-wide { flex: 1.6; }
.bc-gap {
  flex: 0.35;
  background: repeating-linear-gradient(
    90deg,
    rgba(234, 77, 104, 0.15) 0,
    rgba(234, 77, 104, 0.15) 3px,
    transparent 3px,
    transparent 6px
  ) !important;
}

.bc-complete { background: var(--success); }
.bc-waiting { background: var(--waiting); }
.bc-missing { background: rgba(234, 77, 104, 0.5); }
.bc-idle { background: var(--border-dark); }

.bc-scanner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--scan, 42%);
  width: 3px;
  background: var(--queue-lime);
  box-shadow: 0 0 12px rgba(185, 244, 91, 0.6);
  z-index: 2;
  pointer-events: none;
  transition: left 0.55s var(--ease-desk);
}

.bc-scanner::before,
.bc-scanner::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 11px;
  height: 3px;
  background: var(--queue-lime);
}

.bc-scanner::before { top: 0; }
.bc-scanner::after { bottom: 0; }

.bc-readout {
  margin-top: 1.25rem;
  padding: 1rem;
  background: var(--work-paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.bc-readout h3 {
  margin-bottom: 0.375rem;
}

.bc-readout p {
  font-size: 0.875rem;
  color: var(--body-light);
  margin-bottom: 0.75rem;
}

.bc-readout ul li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0.5rem;
  font-size: 0.8125rem;
  padding: 0.25rem 0;
}

.bc-readout ul li span {
  color: var(--body-light);
}

.bc-readout ul li b {
  font-weight: 700;
}

.split-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.split-note p {
  font-size: 0.875rem;
  color: var(--body-light);
  line-height: 1.6;
}

.split-note strong {
  color: var(--title-light);
}

.plat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.plat-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--card-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s var(--ease-snap);
}

.plat-link:hover {
  border-color: var(--service-indigo);
  transform: translateY(-2px);
  text-decoration: none;
}

.plat-link b {
  font-size: 0.9375rem;
  color: var(--title-light);
}

.plat-link span {
  font-size: 0.8125rem;
  color: var(--body-light);
}

/* ══════════════════════════════ TAB INTAKE ══════════════════════════════ */

.tab-intake {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.25rem;
  align-items: start;
}

.tab-stack {
  background: var(--card-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.tab-bar {
  display: flex;
  padding: 0.5rem 0.5rem 0;
  gap: 2px;
  background: #e8edf5;
  border-bottom: 1px solid var(--border-light);
  overflow-x: auto;
}

.tab-key {
  position: relative;
  padding: 0.5rem 1rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: #d4dce8;
  border: 1px solid var(--border-light);
  border-bottom: none;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  cursor: pointer;
  color: var(--body-light);
  white-space: nowrap;
  transform: translateY(4px);
  transition: transform 0.2s var(--ease-snap), background 0.15s;
}

.tab-key.is-on {
  background: var(--card-light);
  color: var(--title-light);
  transform: translateY(0);
  z-index: 1;
  box-shadow: 0 -2px 0 var(--service-indigo);
}

.tab-body {
  padding: 1.25rem;
  min-height: 180px;
}

.tab-pane {
  display: none;
}

.tab-pane.is-on {
  display: block;
}

.tab-pane p {
  font-size: 0.9375rem;
  color: var(--body-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tab-periphery {
  padding: 0.875rem 1.25rem;
  background: #f3f5f8;
  border-top: 1px dashed var(--border-light);
  font-size: 0.8125rem;
  color: #9aa3b0;
}

.brief-aside {
  padding: 1rem;
  background: var(--work-paper);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  position: sticky;
  top: calc(var(--site-top-h) + 1rem);
}

.brief-aside ul li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.375rem;
  font-size: 0.8125rem;
  padding: 0.375rem 0;
  border-bottom: 1px solid rgba(200, 214, 232, 0.5);
}

.brief-aside ul li span {
  color: var(--body-light);
}

.brief-aside ul li b {
  font-weight: 700;
}

.brief-aside ul li.is-flag b {
  color: var(--waiting);
}

.aside-note {
  font-size: 0.75rem;
  color: var(--body-light);
  margin-top: 0.75rem;
}

/* ══════════════════════════════ SERVICE KEYBOARD ══════════════════════════════ */

.svc-keyboard {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  align-items: start;
}

.svc-keys {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  padding: 1.25rem;
  background: #e4e9f2;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 2px 4px rgba(25, 32, 51, 0.06);
}

.svc-key {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 72px;
  padding: 0.75rem;
  background: linear-gradient(180deg, var(--card-light) 0%, #f0f2f6 100%);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: 0 3px 0 #c8d0dc, 0 4px 8px rgba(25, 32, 51, 0.08);
  cursor: pointer;
  transition: transform 0.2s var(--ease-snap), box-shadow 0.2s;
}

.svc-key b {
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  color: var(--title-light);
}

.svc-key span {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--body-light);
}

.svc-key:hover,
.svc-key:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 6px 0 #c8d0dc, 0 8px 16px rgba(25, 32, 51, 0.12);
}

.svc-key:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 #c8d0dc;
}

.svc-raised {
  padding: 1.25rem;
  background: var(--card-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-desk);
  position: sticky;
  top: calc(var(--site-top-h) + 1rem);
  transition: transform 0.35s var(--ease-snap), box-shadow 0.35s;
}

.svc-raised:not(.is-empty) {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(25, 32, 51, 0.14);
  border-color: var(--service-indigo);
}

.svc-raised h3 {
  margin-bottom: 0.75rem;
}

.svc-raised ul li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.5rem;
  font-size: 0.8125rem;
  padding: 0.375rem 0;
  border-bottom: 1px solid rgba(200, 214, 232, 0.5);
}

.svc-raised ul li span {
  color: var(--body-light);
}

.svc-raised ul li b {
  font-weight: 600;
}

/* ══════════════════════════════ MICROSCOPE ══════════════════════════════ */

.micro-stage {
  display: grid;
  grid-template-columns: 200px 1fr 240px;
  gap: 1.25rem;
  align-items: start;
}

.micro-arm {
  padding: 1rem;
  background: var(--card-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.slide-rack {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.slide-chip {
  padding: 0.5rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: left;
  background: #eef1f6;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.slide-chip.is-in {
  background: rgba(32, 191, 193, 0.12);
  border-color: var(--context-cyan);
  color: var(--title-light);
}

.slide-chip[data-blur="true"] {
  filter: blur(1px);
  opacity: 0.55;
}

.micro-scope {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.micro-lens {
  position: relative;
  padding: 2rem;
  background: radial-gradient(circle at 50% 40%, #2a3344 0%, var(--night-desk) 70%);
  border: 3px solid var(--border-dark);
  border-radius: 50%;
  aspect-ratio: 1;
  max-width: 360px;
  margin-inline: auto;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.4), var(--shadow-desk);
}

.micro-lens::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 2px solid rgba(200, 214, 232, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.micro-specimen {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--title-dark);
}

.micro-specimen .mono-label {
  color: var(--context-cyan);
}

.micro-specimen p {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.micro-specimen ul {
  text-align: left;
  font-size: 0.75rem;
  color: var(--body-dark);
}

.micro-specimen ul li {
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(53, 65, 85, 0.5);
}

.micro-note {
  font-size: 0.8125rem;
  color: var(--body-light);
  text-align: center;
}

.micro-effect {
  padding: 1rem;
  background: var(--work-paper);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  position: sticky;
  top: calc(var(--site-top-h) + 1rem);
}

.micro-effect p {
  font-size: 0.875rem;
  color: var(--body-light);
  line-height: 1.55;
}

/* ══════════════════════════════ DOMINOS ══════════════════════════════ */

.domino-table {
  background: var(--card-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.domino-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.domino {
  min-width: 120px;
  padding: 0.75rem;
  background: var(--work-paper);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  transition: transform 0.25s var(--ease-snap), border-color 0.15s;
  transform-origin: bottom center;
}

.domino span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--body-light);
  margin-bottom: 0.25rem;
}

.domino b {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--title-light);
}

.domino.is-up {
  transform: rotate(-8deg) translateY(-4px);
  border-color: var(--service-indigo);
  background: rgba(68, 88, 255, 0.06);
  box-shadow: 2px 4px 0 rgba(68, 88, 255, 0.15);
}

.domino.is-break {
  border-color: var(--risk);
  background: rgba(234, 77, 104, 0.08);
}

.domino.is-break b {
  color: var(--risk);
}

.domino-path {
  padding: 1rem;
  background: var(--work-paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.domino-path ol {
  list-style: decimal;
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}

.domino-path ol li {
  font-size: 0.875rem;
  padding: 0.25rem 0;
  color: var(--title-light);
}

.domino-path ol li.is-break {
  color: var(--risk);
  font-weight: 600;
}

.domino-path p {
  font-size: 0.8125rem;
  color: var(--body-light);
}

/* ══════════════════════════════ FULFILLMENT ══════════════════════════════ */

.fulfill-board {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1rem;
  align-items: start;
}

.fz-center {
  padding: 1rem;
  background: var(--card-dark);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  position: sticky;
  top: calc(var(--site-top-h) + 1rem);
}

.fz-center .mono-label {
  color: var(--context-cyan);
}

.fz-center p {
  font-size: 0.875rem;
  color: var(--body-dark);
  margin: 0.5rem 0 0.75rem;
}

.fz-center ul li {
  font-size: 0.75rem;
  color: var(--body-dark);
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(53, 65, 85, 0.5);
}

.fz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.fz-zone {
  position: relative;
  padding: 1rem 1rem 1rem 2rem;
  background: var(--card-dark);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.fz-zone header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.fz-zone header b {
  font-size: 0.9375rem;
  color: var(--title-dark);
}

.fz-zone header em {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fz-zone p {
  font-size: 0.8125rem;
  color: var(--body-dark);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.fz-cursor {
  position: absolute;
  top: 1rem;
  left: 0.75rem;
  width: 12px;
  height: 18px;
  background: var(--z, var(--service-indigo));
  clip-path: polygon(0 0, 100% 35%, 55% 45%, 70% 100%, 45% 55%, 0 70%);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
  animation: cursor-blink 2s ease-in-out infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; transform: translate(0, 0); }
  50% { opacity: 0.7; transform: translate(2px, 2px); }
}

.fz-working { border-left: 3px solid var(--service-indigo); }
.fz-working header em { color: var(--service-indigo); }

.fz-locked { border-left: 3px solid var(--border-dark); opacity: 0.65; }
.fz-locked header em { color: var(--body-dark); }
.fz-locked .fz-cursor { opacity: 0.3; animation: none; }

.fz-done { border-left: 3px solid var(--success); }
.fz-done header em { color: var(--success); }

.fz-waiting { border-left: 3px solid var(--waiting); }
.fz-waiting header em { color: var(--waiting); }

.section--night .btn-ghost {
  background: rgba(34, 42, 57, 0.8);
  border-color: var(--border-dark);
  color: var(--title-dark);
}

.section--night .btn-ghost:hover {
  background: var(--card-dark);
  border-color: #4a5870;
}

/* ══════════════════════════════ STATUS WINDOW ══════════════════════════════ */

.status-window {
  max-width: 520px;
  margin-inline: auto;
  perspective: 900px;
}

.sw-frame {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.65s var(--ease-desk);
  min-height: 280px;
}

.sw-frame[data-sw-face="internal"],
.status-window.is-flipped .sw-frame {
  transform: rotateY(180deg);
}

.sw-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  padding: 1.5rem;
  background: var(--card-light);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-desk);
}

.sw-internal {
  transform: rotateY(180deg);
  background: var(--work-paper);
  border-color: var(--dispatch-orange);
}

.sw-face h3 {
  margin-bottom: 0.75rem;
}

.sw-face p {
  font-size: 0.9375rem;
  color: var(--body-light);
  margin-bottom: 0.75rem;
  line-height: 1.55;
}

.sw-face ul li {
  font-size: 0.8125rem;
  color: var(--body-light);
  padding: 0.375rem 0;
  border-bottom: 1px solid rgba(200, 214, 232, 0.5);
}

.sw-caption {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--body-light);
  margin-top: 1rem;
}

/* ══════════════════════════════ DELAY SHADOWS ══════════════════════════════ */

.delay-desk {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.25rem;
  align-items: start;
}

.delay-surface {
  position: relative;
  min-height: 360px;
  background: var(--card-dark);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.delay-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(53, 65, 85, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 65, 85, 0.3) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.delay-shadow {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: var(--len, 30%);
  max-width: 85%;
  height: 14px;
  padding: 0;
  border: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
  border-radius: 0 4px 4px 0;
  transform: translate(-50%, -50%) rotate(-12deg);
  cursor: pointer;
  transition: filter 0.15s, transform 0.15s;
}

.delay-shadow span {
  position: absolute;
  bottom: 100%;
  left: 0;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  color: var(--body-dark);
  white-space: nowrap;
  padding-bottom: 4px;
  opacity: 0;
  transition: opacity 0.15s;
}

.delay-shadow:hover {
  filter: brightness(1.3);
  transform: translate(-50%, -50%) rotate(-12deg) scale(1.05);
}

.delay-shadow:hover span {
  opacity: 1;
}

.shadow-zone {
  position: absolute;
  left: var(--zx, 40%);
  top: var(--zy, 28%);
  width: 120px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(234, 77, 104, 0.25) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.delay-inspect {
  padding: 1rem;
  background: var(--card-dark);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  position: sticky;
  top: calc(var(--site-top-h) + 1rem);
}

.delay-inspect .mono-label {
  color: var(--context-cyan);
}

.delay-inspect h3 {
  color: var(--title-dark);
  margin-bottom: 0.5rem;
}

.delay-inspect p {
  font-size: 0.8125rem;
  color: var(--body-dark);
  margin-bottom: 0.5rem;
}

/* ══════════════════════════════ PATCHBAY ══════════════════════════════ */

.patchbay {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--night-desk);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
}

.pb-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pb-col .mono-label {
  color: var(--context-cyan);
}

.pb-ports,
.pb-events {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.pb-port,
.pb-event {
  padding: 0.5rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-align: left;
  background: var(--card-dark);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-sm);
  color: var(--body-dark);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.pb-port:hover,
.pb-event:hover {
  border-color: var(--queue-lime);
  color: var(--title-dark);
}

.pb-port.is-patched,
.pb-event.is-patched {
  border-color: var(--queue-lime);
  background: rgba(185, 244, 91, 0.1);
  color: var(--queue-lime);
}

.pb-mid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pb-cables {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.pb-live {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0.75rem;
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
}

.pb-live pre {
  margin: 0.375rem 0 0.75rem;
  padding: 0.625rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--queue-lime);
  background: #12161f;
  border-radius: var(--radius-sm);
  overflow-x: auto;
}

.code-panel {
  padding: 1rem;
  background: var(--card-dark);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
}

.code-panel .mono-label {
  color: var(--context-cyan);
}

.code-panel pre {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--body-dark);
  overflow-x: auto;
}

/* ══════════════════════════════ PRICING MOSAIC ══════════════════════════════ */

.price-mosaic {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.25rem;
  align-items: start;
}

.mosaic-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(88px, auto);
  gap: 0.625rem;
}

.mosaic-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.875rem;
  background: var(--card-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, transform 0.15s var(--ease-snap);
}

.mosaic-tile span {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--body-light);
}

.mosaic-tile b {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--title-light);
  letter-spacing: -0.02em;
}

.mosaic-tile em {
  font-style: normal;
  font-size: 0.625rem;
  color: var(--service-indigo);
  font-weight: 600;
}

.mosaic-tile:hover {
  border-color: var(--service-indigo);
  transform: translateY(-2px);
}

.mosaic-tile.mt-1 { grid-column: span 1; }
.mosaic-tile.mt-2 { grid-column: span 2; }

.tier-panel {
  padding: 1.5rem;
  background: var(--card-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease-snap), box-shadow 0.35s, border-color 0.35s;
}

.tier-panel.is-recommended {
  transform: scale(1.03);
  border-color: var(--service-indigo);
  box-shadow: 0 16px 48px rgba(68, 88, 255, 0.15);
}

.tier-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--title-light);
  letter-spacing: -0.03em;
  margin: 0.5rem 0 1rem;
}

.tier-price span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--body-light);
}

.tier-panel ul li {
  font-size: 0.8125rem;
  color: var(--body-light);
  padding: 0.375rem 0;
  padding-left: 1rem;
  position: relative;
}

.tier-panel ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background: var(--queue-lime);
  border-radius: 1px;
}

.tier-note {
  font-size: 0.8125rem;
  color: var(--body-light);
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.tier-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--work-paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.tier-compare div {
  padding: 0.75rem;
  font-size: 0.8125rem;
  color: var(--body-light);
}

.tier-compare h4 {
  margin-bottom: 0.375rem;
}

/* ══════════════════════════════ AUTH ══════════════════════════════ */

.auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  background: var(--night-desk);
  color: var(--title-dark);
}

.auth-shell {
  width: min(420px, 100%);
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  color: var(--title-dark);
}

.auth-brand:hover {
  color: var(--title-dark);
  text-decoration: none;
}

.auth-card {
  padding: 2rem;
  background: var(--card-dark);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-desk);
}

.auth-card h1 {
  color: var(--title-dark);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.auth-card .lead {
  color: var(--body-dark);
  margin-bottom: 1.5rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-form label {
  color: var(--title-dark);
}

.auth-form input {
  background: #12161f;
  border-color: var(--border-dark);
  color: var(--title-dark);
}

.auth-form input:focus {
  border-color: var(--service-indigo);
  box-shadow: 0 0 0 3px rgba(68, 88, 255, 0.25);
}

.auth-form input::placeholder {
  color: #5a6478;
}

.auth-alt {
  font-size: 0.8125rem;
  color: var(--body-dark);
  margin-top: 1.25rem;
  text-align: center;
}

.auth-alt a {
  color: var(--queue-lime);
  font-weight: 600;
}

/* ══════════════════════════════ CONTENT PAGES ══════════════════════════════ */

.about-block p {
  font-size: 0.9375rem;
  color: var(--body-light);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.keyword-row li {
  padding: 0.375rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(68, 88, 255, 0.08);
  border: 1px solid rgba(68, 88, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--service-indigo);
}

.anatomy {
  list-style: decimal;
  padding-left: 1.25rem;
  margin-top: 1rem;
}

.anatomy li {
  font-size: 0.9375rem;
  color: var(--body-light);
  padding: 0.5rem 0;
  line-height: 1.55;
}

.anatomy li b {
  color: var(--title-light);
}

.legal-prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-prose p,
.legal-prose li {
  font-size: 0.9375rem;
  color: var(--body-light);
  line-height: 1.65;
}

.legal-prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-grid aside p {
  font-size: 0.875rem;
  color: var(--body-light);
  margin-bottom: 0.75rem;
}

.contact-grid aside strong {
  color: var(--title-light);
}

.integ-list li,
.help-list li,
.status-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9375rem;
}

.integ-list li b,
.help-list li b,
.status-list li b {
  font-weight: 700;
  color: var(--title-light);
}

.integ-list li span,
.help-list li span,
.status-list li span {
  color: var(--body-light);
}

.status-list li.st-operational span { color: var(--success); font-weight: 600; }
.status-list li.st-degraded span { color: var(--waiting); font-weight: 600; }

.change-list article {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-light);
}

.change-list time {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dispatch-orange);
}

.change-list h3 {
  margin: 0.375rem 0 0.375rem;
}

.change-list p {
  font-size: 0.875rem;
  color: var(--body-light);
}

/* ══════════════════════════════ RESPONSIVE ══════════════════════════════ */

@media (max-width: 1024px) {
  .dual-bench {
    grid-template-columns: 1fr;
    gap: 0;
    padding-inline: 1rem;
  }

  .bench-gutter {
    width: 100%;
    height: 40px;
    flex-direction: row;
  }

  .gutter-line {
    inset: 50% 12% auto 12%;
    width: auto;
    height: 2px;
    margin-right: 0;
    margin-top: -1px;
    background: linear-gradient(90deg, transparent, var(--dispatch-orange) 15%, var(--dispatch-orange) 85%, transparent);
  }

  .gutter-label {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .ops-meta-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ops-body {
    grid-template-columns: 1fr;
  }

  .ops-side {
    border-left: 0;
    border-top: 1px solid var(--border-light);
  }

  .bench-gutter {
    flex-direction: row;
    width: 100%;
    height: 40px;
    padding: 0;
  }

  .gutter-line {
    inset: 50% 8% auto 8%;
    width: auto;
    height: 2px;
    margin: 0;
    background: linear-gradient(90deg, transparent, var(--dispatch-orange) 15%, var(--dispatch-orange) 85%, transparent);
  }

  .gutter-label {
    writing-mode: horizontal-tb;
    transform: none;
    padding: 0 0.75rem;
  }

  .pain-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .pain-cell:nth-child(2) {
    border-right: none;
  }

  .pain-cell:nth-child(1),
  .pain-cell:nth-child(2) {
    border-bottom: 1px solid var(--border-light);
  }

  .deskline-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .plat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-intake,
  .svc-keyboard,
  .micro-stage,
  .fulfill-board,
  .delay-desk,
  .price-mosaic,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .brief-aside,
  .svc-raised,
  .micro-effect,
  .fz-center,
  .delay-inspect,
  .tier-panel {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .patchbay {
    grid-template-columns: 1fr;
  }

  .pb-mid {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  :root {
    --announce-h: auto;
    --header-h: 56px;
  }

  .nav-main,
  .header-actions .btn {
    display: none;
  }

  .header-actions .user-menu,
  .header-actions .btn-line {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-link.is-active::before {
    left: 0;
    top: auto;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 3px;
    border-radius: 0;
  }

  .desk-hero-rail {
    padding: 1.75rem 0 1.25rem;
  }

  .page-hero {
    padding: 2rem 0 2.5rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .pain-rail {
    grid-template-columns: 1fr;
  }

  .pain-cell {
    border-right: none !important;
    border-bottom: 1px solid var(--border-light);
  }

  .pain-cell:last-child {
    border-bottom: none;
  }

  .deskline-flow {
    grid-template-columns: 1fr 1fr;
  }

  .svc-keys {
    grid-template-columns: repeat(2, 1fr);
  }

  .mosaic-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .mosaic-tile.mt-2 {
    grid-column: span 2;
  }

  .split-note {
    grid-template-columns: 1fr;
  }

  .plat-grid {
    grid-template-columns: 1fr;
  }

  .fz-grid {
    grid-template-columns: 1fr;
  }

  .tier-compare {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
  }

  .footer-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .integ-list li,
  .help-list li,
  .status-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .page-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .req-switcher {
    flex-direction: column;
  }

  .domino-row {
    flex-direction: column;
  }

  .domino {
    min-width: 0;
    width: 100%;
  }

  .deskline-flow {
    grid-template-columns: 1fr;
  }

  .brief-fields li {
    grid-template-columns: 1fr;
    gap: 0.125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
