@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&family=Literata:ital,wght@0,500;0,600;0,700;1,500&display=swap');

:root {
  color-scheme: light;
  --ink: #1f3425;
  --ink-soft: #506253;
  --forest: #17432c;
  --forest-2: #245a3c;
  --jade: #337251;
  --gold: #c79a3b;
  --gold-soft: #e5c983;
  --paper: rgba(250, 245, 226, 0.96);
  --paper-soft: rgba(255, 252, 238, 0.88);
  --line: rgba(79, 82, 48, 0.28);
  --shadow: 0 18px 52px rgba(25, 44, 27, 0.22);
  --shadow-soft: 0 8px 28px rgba(25, 44, 27, 0.16);
  font-family: 'Be Vietnam Pro', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: #dfe5c7; color: var(--ink); }
body { overflow-x: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid rgba(199, 154, 59, 0.72); outline-offset: 2px; }

.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;
}

.app-shell {
  min-width: 1180px;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 251, 231, 0.94), rgba(248, 243, 218, 0.82) 150px, transparent 260px),
    #e9edd8;
}

.top-header {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(390px, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 14px 28px 10px;
  border-bottom: 1px solid rgba(72, 88, 52, 0.18);
  background:
    radial-gradient(circle at 73% 20%, rgba(230, 207, 135, 0.32), transparent 34%),
    linear-gradient(180deg, #fffdf3, #f6efd5);
  position: relative;
  z-index: 30;
}

.top-header::after {
  content: '';
  position: absolute;
  inset: auto 0 -1px;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--forest), var(--gold), transparent);
  opacity: 0.45;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #f5d46f;
  font-size: 30px;
  background:
    radial-gradient(circle at 50% 42%, #2f7752 0 36%, #16452e 37% 57%, #d5a748 58% 63%, #fff0b2 64% 68%, #1c4b33 69%);
  box-shadow: inset 0 0 0 2px #f1d67f, 0 5px 14px rgba(35, 66, 40, 0.22);
}

.brand-copy { min-width: 0; }
.brand-copy strong {
  display: block;
  font-family: 'Literata', serif;
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.08;
  color: var(--forest);
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.brand-copy small {
  display: block;
  margin-top: 5px;
  font-family: 'Literata', serif;
  font-size: 14px;
  font-style: italic;
  color: #5f5e46;
}

.live-strip {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.clock-block, .weather-chip {
  min-height: 58px;
  border: 1px solid rgba(109, 95, 43, 0.24);
  border-radius: 14px;
  padding: 9px 14px;
  background: rgba(255, 253, 241, 0.78);
  box-shadow: 0 4px 14px rgba(65, 67, 39, 0.08);
}
.clock-block {
  display: flex;
  align-items: center;
  gap: 9px;
}
.clock-block > span:first-child { font-size: 26px; color: #8b6b2c; }
.clock-block strong, .weather-chip strong { display: block; font-family: 'Literata', serif; font-size: 18px; }
.clock-block small, .weather-chip small { display: block; font-size: 10px; color: var(--ink-soft); margin-top: 1px; white-space: nowrap; }
.weather-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(109, 95, 43, 0.24);
  cursor: pointer;
}
.weather-chip > span:first-child { font-size: 28px; }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  position: relative;
}
.search-box {
  height: 43px;
  width: 190px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(64, 79, 44, 0.25);
  border-radius: 11px;
  background: rgba(255, 255, 248, 0.76);
}
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); }
.action-button {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid rgba(74, 78, 40, 0.3);
  border-radius: 11px;
  background: linear-gradient(180deg, #fffdf0, #efe4bd);
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(58, 58, 31, 0.08);
}
.action-button:hover { transform: translateY(-1px); }
.assistant-link { background: linear-gradient(180deg, #2d714d, #19462f); color: white; border-color: #d3b35b; }
.popover-wrap { position: relative; }
.popover {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  width: 315px;
  padding: 13px;
  z-index: 100;
  border: 1px solid rgba(97, 78, 32, 0.28);
  border-radius: 16px;
  background: rgba(255, 251, 232, 0.98);
  box-shadow: var(--shadow);
}
.audio-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(232, 228, 197, 0.45);
}
.audio-row + .audio-row { margin-top: 9px; }
.audio-row strong, .audio-row small { display: block; }
.audio-row small { margin-top: 2px; color: var(--ink-soft); font-size: 10px; }
.audio-row input[type='range'] { grid-column: 1 / -1; width: 100%; accent-color: var(--forest-2); }
.switch { position: relative; width: 42px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch span { position: absolute; inset: 0; border-radius: 999px; background: #bbb799; cursor: pointer; transition: .2s; }
.switch span::after { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; border-radius: 50%; background: white; box-shadow: 0 1px 5px rgba(0,0,0,.25); transition: .2s; }
.switch input:checked + span { background: var(--forest-2); }
.switch input:checked + span::after { transform: translateX(18px); }

.main-navigation {
  height: 54px;
  display: grid;
  grid-template-columns: repeat(7, minmax(130px, 1fr));
  align-items: stretch;
  padding: 6px 7%;
  gap: 2px;
  background:
    linear-gradient(180deg, rgba(255, 252, 235, 0.96), rgba(239, 228, 188, 0.96));
  border-bottom: 1px solid rgba(75, 83, 47, 0.28);
  box-shadow: 0 6px 17px rgba(56, 74, 45, 0.12);
  position: relative;
  z-index: 20;
}
.nav-item {
  border: 0;
  border-right: 1px solid rgba(76, 77, 39, 0.17);
  background: transparent;
  color: #3b4533;
  font-family: 'Literata', serif;
  font-size: 14px;
  cursor: pointer;
  border-radius: 7px;
}
.nav-item:hover, .nav-item.active { color: white; background: linear-gradient(180deg, #337151, #18442d); box-shadow: inset 0 0 0 1px rgba(224, 194, 93, 0.78); }

.map-workspace {
  min-height: calc(100vh - 146px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(242, 211, 116, 0.16), transparent 30%, rgba(15, 57, 35, 0.15)),
    url('/my-phu-summer.svg') center 42% / cover no-repeat,
    #9eb47d;
}
.map-workspace::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 48% 30%, rgba(255, 224, 132, 0.24), transparent 25%),
    linear-gradient(90deg, rgba(28, 62, 37, 0.12), transparent 18%, transparent 82%, rgba(28, 62, 37, 0.12));
  pointer-events: none;
}
.map-workspace::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  box-shadow: inset 0 0 120px rgba(23, 52, 31, 0.25);
}

.sun-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  top: -240px;
  right: 18%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 244, 185, 0.5), rgba(255, 232, 140, 0.14) 45%, transparent 70%);
  animation: sunPulse 9s ease-in-out infinite alternate;
}
.ambient-cloud {
  position: absolute;
  z-index: 1;
  width: 210px;
  height: 58px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  filter: blur(5px);
  pointer-events: none;
}
.ambient-cloud::before, .ambient-cloud::after { content: ''; position: absolute; border-radius: 50%; background: inherit; }
.ambient-cloud::before { width: 84px; height: 84px; left: 38px; bottom: 2px; }
.ambient-cloud::after { width: 110px; height: 110px; left: 92px; bottom: -3px; }
.cloud-one { top: 7%; left: -15%; animation: driftCloud 54s linear infinite; }
.cloud-two { top: 18%; left: -25%; animation: driftCloud 76s linear 14s infinite; transform: scale(.75); opacity: .65; }
.water-shimmer {
  position: absolute;
  z-index: 1;
  inset: 27% 17% 19% 21%;
  opacity: .2;
  mix-blend-mode: screen;
  background: repeating-linear-gradient(105deg, transparent 0 18px, rgba(255,255,220,.5) 21px 23px, transparent 27px 48px);
  animation: waterMove 14s linear infinite;
  pointer-events: none;
  clip-path: polygon(48% 0, 61% 12%, 54% 28%, 73% 47%, 100% 56%, 79% 74%, 55% 63%, 34% 100%, 22% 78%, 35% 55%, 0 38%, 26% 24%);
}
.boat { position: absolute; z-index: 3; font-size: 22px; filter: drop-shadow(0 4px 3px rgba(24,54,36,.35)); pointer-events: none; }
.boat-one { left: 29%; top: 57%; animation: boatOne 30s ease-in-out infinite alternate; }
.boat-two { left: 62%; top: 66%; animation: boatTwo 38s ease-in-out infinite alternate; }

.side-panel {
  position: absolute;
  top: 25px;
  z-index: 12;
  width: 286px;
  max-height: calc(100% - 182px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(96, 80, 32, 0.37);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .28s ease, width .28s ease;
}
.conversation-panel { left: 26px; }
.task-panel { right: 26px; }
.side-panel.collapsed { width: 54px; }
.conversation-panel.collapsed { transform: translateX(-18px); }
.task-panel.collapsed { transform: translateX(18px); }
.side-panel.collapsed > :not(.panel-heading) { display: none; }
.side-panel.collapsed .panel-heading span { display: none; }
.side-panel.collapsed .panel-heading { justify-content: center; writing-mode: vertical-rl; min-height: 170px; padding: 13px 8px; }
.side-panel.collapsed .collapse-button { writing-mode: horizontal-tb; }
.panel-heading {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 13px 10px 16px;
  color: white;
  background: linear-gradient(180deg, #2e6749, #173e2b);
  border-bottom: 1px solid rgba(224, 192, 88, 0.65);
}
.panel-heading strong, .panel-heading small { display: block; }
.panel-heading strong { font-family: 'Literata', serif; font-size: 18px; }
.panel-heading small { margin-top: 3px; font-size: 9px; opacity: .86; }
.online-dot { display: inline-block; width: 8px; height: 8px; margin-right: 4px; border-radius: 50%; background: #8ed467; box-shadow: 0 0 0 3px rgba(142, 212, 103, .18); }
.collapse-button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 9px;
  background: rgba(255,255,255,.08);
  color: white;
  cursor: pointer;
  font-size: 20px;
}
.chat-tabs, .task-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  padding: 9px;
  border-bottom: 1px solid var(--line);
}
.chat-tabs button, .task-tabs button {
  min-height: 31px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  font-size: 10px;
  cursor: pointer;
}
.chat-tabs button.active, .task-tabs button.active { color: white; background: var(--forest-2); }
.task-tabs { grid-template-columns: repeat(5, 1fr); }
.chat-list, .task-list { overflow: auto; scrollbar-width: thin; }
.chat-message {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  padding: 11px 13px;
  border-bottom: 1px solid rgba(78, 85, 54, 0.12);
}
.avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(145deg, #e3c778, #2e7650); color: white; font-weight: 700; font-size: 11px; box-shadow: inset 0 0 0 2px rgba(255,255,255,.75); }
.chat-message span:nth-child(2) { min-width: 0; position: relative; }
.chat-message strong { display: block; font-family: 'Literata', serif; font-size: 12px; }
.chat-message small { position: absolute; right: 0; top: 0; color: #7d7a61; font-size: 9px; }
.chat-message p { margin: 4px 0 0; font-size: 10px; line-height: 1.45; color: #556052; }
.chat-composer { display: grid; grid-template-columns: 1fr 36px; gap: 5px; padding: 9px; border-top: 1px solid var(--line); }
.chat-composer input { min-width: 0; height: 35px; border: 1px solid var(--line); border-radius: 9px; padding: 0 10px; background: rgba(255,255,255,.65); }
.chat-composer button { border: 0; border-radius: 9px; background: var(--forest-2); color: white; cursor: pointer; }
.task-item { width: 100%; display: grid; grid-template-columns: 42px 1fr; gap: 8px; align-items: center; text-align: left; padding: 12px 13px; border: 0; border-bottom: 1px solid rgba(78, 85, 54, 0.12); background: transparent; cursor: pointer; }
.task-item:hover { background: rgba(214, 205, 153, 0.22); }
.task-item > span:first-child { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--forest-2); color: white; }
.task-item strong, .task-item small { display: block; }
.task-item strong { font-size: 11px; }
.task-item small { margin-top: 4px; color: #8a6b34; font-size: 9px; }
.panel-footer-button { margin: 10px; min-height: 37px; border: 1px solid rgba(88,76,36,.25); border-radius: 9px; background: #f2e7be; color: var(--forest); cursor: pointer; }

.map-hotspots { position: absolute; inset: 0; z-index: 6; pointer-events: none; }
.hotspot {
  position: absolute;
  pointer-events: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.hotspot::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 25px;
  background: linear-gradient(var(--gold-soft), transparent);
}
.hotspot span {
  display: inline-block;
  padding: 7px 13px 8px;
  border: 1px solid rgba(237, 203, 98, 0.92);
  border-radius: 8px 8px 14px 14px;
  color: #f9e8a9;
  font-family: 'Literata', serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .2px;
  text-shadow: 0 1px 1px rgba(0,0,0,.6);
  background: linear-gradient(180deg, rgba(40, 88, 59, .98), rgba(18, 58, 37, .98));
  box-shadow: 0 7px 15px rgba(16, 47, 29, .22), inset 0 0 0 1px rgba(255,255,255,.12);
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.hotspot:hover span { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 24px rgba(16,47,29,.34), 0 0 0 5px rgba(222, 191, 84, .12); }
.hotspot-headquarters { left: 50.5%; top: 16%; }
.hotspot-branch { left: 31.5%; top: 23%; }
.hotspot-leaders { left: 27.5%; top: 43%; }
.hotspot-market { left: 69.5%; top: 20%; }
.hotspot-weather { left: 70.5%; top: 39%; }
.hotspot-support { left: 61.5%; top: 58%; }
.hotspot-collective { left: 76.2%; top: 72%; }
.hotspot-data { left: 31%; top: 68%; }
.hotspot-honor { left: 51.5%; top: 79%; }

.bottom-dock {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 18px;
  z-index: 13;
  display: grid;
  grid-template-columns: 1fr 355px;
  gap: 16px;
  align-items: end;
}
.news-panel, .contact-panel {
  border: 1px solid rgba(92, 73, 27, .34);
  border-radius: 15px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.news-panel.collapsed .news-rotator { display: none; }
.dock-heading {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 16px;
  color: white;
  background: linear-gradient(180deg, #2c6848, #17402c);
}
.dock-heading strong { font-family: 'Literata', serif; }
.news-rotator { min-height: 94px; position: relative; padding: 10px 14px; }
.news-card {
  position: absolute;
  inset: 10px 14px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}
.news-card.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.news-card > span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 12px; font-size: 29px; background: rgba(215, 200, 128, .27); }
.news-card strong, .news-card small { display: block; }
.news-card strong { font-family: 'Literata', serif; font-size: 15px; }
.news-card small { margin-top: 5px; color: var(--ink-soft); font-size: 10px; }
.contact-summary {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
  border: 0;
  color: white;
  background: linear-gradient(180deg, #2e6b49, #17422d);
  cursor: pointer;
}
.contact-summary strong { font-family: 'Literata', serif; }
.contact-summary span { font-size: 9px; opacity: .84; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.contact-details { display: grid; grid-template-columns: repeat(5, 1fr); padding: 9px; gap: 4px; }
.contact-panel.collapsed .contact-details { display: none; }
.contact-details button { min-height: 58px; display: grid; place-items: center; gap: 4px; border: 0; border-radius: 9px; background: transparent; color: var(--forest); cursor: pointer; font-size: 22px; }
.contact-details button:hover { background: rgba(214, 204, 151, .25); }
.contact-details span { font-size: 9px; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 38, 24, .46);
  backdrop-filter: blur(5px);
}
.modal-window {
  width: min(680px, 92vw);
  max-height: 82vh;
  overflow: auto;
  position: relative;
  padding: 30px;
  border: 1px solid rgba(130, 98, 29, .42);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,253,240,.99), rgba(241,233,200,.98)),
    repeating-linear-gradient(0deg, transparent 0 26px, rgba(87, 90, 55, .03) 27px);
  box-shadow: 0 30px 100px rgba(14, 36, 22, .36);
}
.modal-window::before, .modal-window::after { content: '❦'; position: absolute; color: rgba(72, 108, 69, .28); font-size: 48px; }
.modal-window::before { left: 18px; top: 9px; }
.modal-window::after { right: 20px; bottom: 11px; transform: rotate(180deg); }
.modal-close { position: absolute; right: 15px; top: 14px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(99,75,30,.35); background: #f5e9bd; cursor: pointer; font-size: 24px; z-index: 2; }
.modal-eyebrow { display: block; color: #92702f; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; }
.modal-window h2 { margin: 8px 0 8px; font-family: 'Literata', serif; font-size: 30px; color: var(--forest); }
.modal-window > p { margin: 0 0 20px; color: var(--ink-soft); line-height: 1.65; }
.modal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.modal-option { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px; border: 1px solid rgba(83,86,48,.18); border-radius: 13px; background: rgba(255,255,247,.72); cursor: pointer; text-align: left; }
.modal-option:hover { border-color: rgba(50, 106, 73, .45); background: rgba(221, 227, 193, .58); }
.modal-option span { display: block; }
.modal-option strong { display: block; font-size: 13px; color: var(--forest); }
.modal-option small { display: block; margin-top: 4px; font-size: 9px; color: var(--ink-soft); }

.mini-panel {
  position: fixed;
  top: 106px;
  left: 50%;
  z-index: 250;
  width: 310px;
  transform: translateX(-50%);
  padding: 18px;
  border: 1px solid rgba(92,73,27,.34);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.mini-panel strong { font-family: 'Literata', serif; color: var(--forest); }
.mini-panel p { margin: 8px 0; }
.mini-panel small { color: var(--ink-soft); line-height: 1.5; }
.mini-close { position: absolute; top: 8px; right: 9px; border: 0; background: transparent; font-size: 20px; cursor: pointer; }

@keyframes driftCloud { from { transform: translateX(0); } to { transform: translateX(155vw); } }
@keyframes sunPulse { from { opacity: .55; transform: scale(.96); } to { opacity: .8; transform: scale(1.08); } }
@keyframes waterMove { from { background-position: 0 0; } to { background-position: 220px 0; } }
@keyframes boatOne { from { transform: translate(-20px, 12px) rotate(-8deg); } to { transform: translate(130px, -38px) rotate(10deg); } }
@keyframes boatTwo { from { transform: translate(15px, 0) rotate(7deg); } to { transform: translate(-120px, 44px) rotate(-10deg); } }

@media (max-height: 760px) {
  .top-header { min-height: 80px; padding-top: 9px; padding-bottom: 7px; }
  .brand-mark { width: 55px; height: 55px; }
  .brand-copy strong { font-size: 24px; }
  .main-navigation { height: 48px; }
  .map-workspace { min-height: calc(100vh - 128px); }
  .side-panel { top: 18px; max-height: calc(100% - 150px); }
  .chat-message { padding-block: 8px; }
  .bottom-dock { bottom: 10px; }
  .news-rotator { min-height: 80px; }
}

@media (max-width: 1250px) {
  .app-shell { min-width: 1024px; }
  .top-header { grid-template-columns: minmax(340px, 1fr) auto; }
  .header-actions { grid-column: 1 / -1; justify-content: flex-end; margin-top: -8px; }
  .brand-copy strong { font-size: 25px; }
  .main-navigation { padding-inline: 3%; }
  .side-panel { width: 260px; }
  .conversation-panel { left: 14px; }
  .task-panel { right: 14px; }
  .bottom-dock { left: 14px; right: 14px; grid-template-columns: 1fr 320px; }
  .hotspot span { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
