:root {
  color-scheme: light;
  --bg: oklch(0.972 0.006 250);
  --surface: oklch(0.997 0.002 250);
  --surface-low: oklch(0.948 0.008 250);
  --surface-mid: oklch(0.908 0.01 250);
  --text: oklch(0.18 0.02 255);
  --muted: oklch(0.38 0.02 255);
  --faint: oklch(0.54 0.018 255);
  --line: oklch(0.84 0.014 250);
  --line-strong: oklch(0.64 0.02 250);
  --navy: oklch(0.19 0.055 258);
  --green: oklch(0.64 0.17 158);
  --green-dark: oklch(0.39 0.13 158);
  --green-soft: oklch(0.9 0.1 158);
  --green-wash: oklch(0.9 0.1 158 / 0.2);
  --amber: oklch(0.5 0.11 62);
  --amber-soft: oklch(0.94 0.04 62);
  --red: oklch(0.52 0.14 28);
  --red-soft: oklch(0.94 0.035 28);
  --blue-soft: oklch(0.925 0.034 258);
  --on-primary: oklch(0.985 0.006 158);
  --radius-sm: 4px;
  --radius: 8px;
  --sidebar: 276px;
  --suite-bar-h: 42px;
  --topbar-h: 62px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--text); }
body {
  min-height: 100dvh;
  font: 14px/1.5 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { color: oklch(0.34 0.13 158); }
button:active { transform: translateY(1px); }
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid oklch(0.55 0.15 158);
  outline-offset: 2px;
}
[hidden] { display: none !important; }
.shell { min-height: 100dvh; }

/* Shared CD Ops suite navigation */
.suite-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: var(--suite-bar-h);
  padding: 0 32px;
  border-bottom: 1px solid oklch(0.3 0.025 255);
  background: var(--navy);
  color: oklch(0.96 0.008 250);
}
.suite-brand {
  color: var(--green-soft);
  font: 800 11px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.suite-brand:hover { color: oklch(0.99 0 0); }
.suite-nav {
  display: flex;
  align-items: stretch;
  min-width: 0;
  height: var(--suite-bar-h);
  margin-left: 28px;
  overflow: visible;
}
.suite-nav a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: var(--suite-bar-h);
  padding: 0 13px;
  border-bottom: 2px solid transparent;
  color: oklch(0.78 0.015 250);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.suite-nav a:hover,
.suite-nav a[aria-current="page"] { color: oklch(0.99 0 0); }
.suite-nav a[aria-current="page"] { border-bottom-color: var(--green); }
.suite-menu { position: relative; display: flex; flex: 0 0 auto; }
.suite-menu > button {
  display: flex; align-items: center; height: var(--suite-bar-h); padding: 0 13px;
  border: 0; border-bottom: 2px solid transparent; border-radius: 0;
  background: transparent; color: oklch(0.78 0.015 250);
  font-size: 12px; font-weight: 600; white-space: nowrap; cursor: pointer;
}
.suite-menu > button::after { content: "▾"; margin-left: 6px; color: oklch(0.64 0.02 250); font-size: 9px; }
.suite-menu:hover > button, .suite-menu:focus-within > button { color: white; }
.suite-submenu {
  position: absolute; top: calc(100% - 1px); left: 0; z-index: 60; display: none;
  min-width: 190px; padding: 6px 0; border: 1px solid oklch(0.32 0.025 255);
  background: var(--navy); box-shadow: 0 12px 30px rgb(0 0 0 / .35);
}
.suite-menu.submenu-positioned .suite-submenu {
  position: fixed; top: var(--suite-bar-h); left: 10px;
}
.suite-menu:hover .suite-submenu, .suite-menu.is-open .suite-submenu { display: block; }
html:not(.suite-menu-js) .suite-menu:focus-within .suite-submenu { display: block; }
.suite-menu.is-closed .suite-submenu { display: none; }
.suite-submenu a, .suite-submenu [aria-disabled="true"] {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  min-height: 34px; height: auto; padding: 8px 13px; border-bottom: 0;
}
.suite-submenu [aria-disabled="true"] { color: oklch(0.58 0.015 250); }
.suite-submenu small { font: 700 9px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: .05em; text-transform: uppercase; }
.suite-account {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-left: 16px;
  color: oklch(0.8 0.012 250);
  font-size: 11px;
}
#suite-user { max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
#suite-signout {
  min-height: 27px;
  padding: 0 9px;
  border: 1px solid oklch(0.52 0.02 255);
  border-radius: var(--radius-sm);
  background: transparent;
  color: oklch(0.88 0.01 250);
  font-size: 11px;
  cursor: pointer;
}
#suite-signout:hover { border-color: oklch(0.72 0.02 255); background: oklch(0.25 0.045 258); }

/* Product masthead */
.topbar {
  position: sticky;
  top: var(--suite-bar-h);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  height: var(--topbar-h);
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: oklch(0.997 0.002 250 / 0.96);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 270px; }
.product-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--green-soft);
  font: 700 10px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.brand-copy { display: grid; gap: 1px; }
.brand strong { font-size: 20px; line-height: 1.1; }
.brand span { color: var(--muted); font-size: 12px; }
.mode-badge {
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-low);
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}
.top-progress { display: flex; align-items: center; margin-left: auto; color: var(--muted); font-size: 12px; }
.progress-track { display: none; }

/* Review layout */
.layout {
  display: grid;
  grid-template-columns: var(--sidebar) minmax(0, 1fr);
  min-height: calc(100dvh - var(--suite-bar-h) - var(--topbar-h));
}
.sidebar {
  position: sticky;
  top: calc(var(--suite-bar-h) + var(--topbar-h));
  height: calc(100dvh - var(--suite-bar-h) - var(--topbar-h));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: var(--surface);
}
.side-head { padding: 18px 16px 14px; border-bottom: 1px solid var(--line); }
.scope-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 2px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-low);
}
.scope-switch button {
  min-height: 32px;
  padding: 6px 8px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.scope-switch button.active { background: var(--surface); color: var(--text); box-shadow: 0 1px 2px oklch(0.18 0.02 255 / 0.06); }
.search,
.record-tools input {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
}
.search::placeholder,
.record-tools input::placeholder,
textarea::placeholder { color: var(--faint); }
.target-list { overflow: auto; padding: 8px; }
.target-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 10px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}
.target-row:hover { background: var(--surface-low); }
.target-row.active { border-color: oklch(0.77 0.08 158); background: var(--green-wash); }
.target-name { overflow: hidden; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.target-meta { color: var(--faint); font-size: 11px; text-transform: capitalize; }
.target-count { grid-row: span 2; align-self: center; color: var(--muted); font: 600 12px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.target-count.done { color: var(--green-dark); }
main { min-width: 0; padding: 30px clamp(24px, 4vw, 56px) 72px; }
.loading { padding: 30px; color: var(--muted); text-align: center; }
.empty { max-width: 700px; margin: 14vh auto; color: var(--muted); text-align: center; }
.empty h1 { margin: 0 0 8px; color: var(--text); font-size: 28px; line-height: 1.2; }

/* Target and bundle */
.target-header { max-width: 1120px; margin: 0 auto 24px; }
.eyebrow { margin-bottom: 5px; color: var(--green-dark); font-size: 11px; font-weight: 750; }
.target-title-row { display: flex; align-items: baseline; gap: 14px; }
h1 { margin: 0; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.1; letter-spacing: -0.025em; }
.difficulty { padding-left: 14px; border-left: 1px solid var(--line); color: var(--muted); text-transform: capitalize; }
.authority-note { max-width: 800px; margin-top: 12px; color: var(--muted); }
.anchors { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.anchor {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
}
.anchor::after { content: "unverified"; margin-left: 6px; color: var(--amber); font-size: 10px; text-transform: uppercase; }
.bundle-nav {
  max-width: 1120px;
  margin: 0 auto 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
}
.nav-actions { display: flex; gap: 6px; flex: 0 0 auto; }
.small-btn,
.records-btn,
.load-more,
.drawer-close {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
}
.small-btn:hover:not(:disabled),
.records-btn:hover,
.load-more:hover,
.drawer-close:hover { border-color: var(--line-strong); background: var(--surface-low); }
.small-btn:disabled { opacity: 0.4; cursor: default; }
.card {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 24px 26px 20px;
  border-bottom: 1px solid var(--line);
}
.bundle-kind { color: var(--muted); font-size: 12px; font-weight: 650; }
.dot { display: none; }
.location { margin-top: 8px; font-size: 24px; font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
.address-gap,
.address-source { margin-top: 7px; font-size: 12px; }
.address-gap { color: var(--amber); }
.address-source { color: var(--green-dark); }
.record-hero { min-width: 150px; text-align: right; }
.record-number { font: 700 36px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: -0.05em; }
.record-label { max-width: 190px; margin-top: 6px; color: var(--muted); font-size: 12px; }
.card-body { padding: 0 26px; }
.stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--surface-low);
  margin: 0 -26px;
  padding: 0 26px;
}
.stat { min-width: 0; padding: 15px 10px 15px 0; }
.stat + .stat { padding-left: 18px; border-left: 1px solid var(--line); }
.stat strong { display: block; overflow-wrap: anywhere; font: 650 14px/1.3 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.stat span { display: block; margin-top: 4px; color: var(--faint); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.evidence-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.evidence { min-width: 0; padding: 20px 18px 20px 0; }
.evidence + .evidence { padding-left: 20px; border-left: 1px solid var(--line); }
.section-label { margin-bottom: 9px; color: var(--faint); font-size: 11px; font-weight: 750; }
.variant { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; }
.variant span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.variant .n { color: var(--faint); font: 600 11px/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.more-variants,
.record-line { margin-top: 4px; color: var(--muted); font-size: 12px; }
.risks { padding: 18px 0; border-bottom: 1px solid var(--line); }
.risk-list { display: flex; flex-wrap: wrap; gap: 6px; }
.risk { padding: 5px 7px; border: 1px solid oklch(0.79 0.06 62); border-radius: var(--radius-sm); background: var(--amber-soft); color: var(--amber); font-size: 12px; }
.source-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 0; }
.source-copy { color: var(--muted); }
.source-copy strong { color: var(--text); }
.records-btn { color: var(--green-dark); font-weight: 650; }

/* Human decision area */
.decision-panel { padding: 22px 26px 24px; border-top: 1px solid var(--line); background: var(--surface-low); }
.decision-panel h2 { margin: 0 0 4px; font-size: 20px; line-height: 1.25; }
.decision-help { max-width: 780px; margin-bottom: 15px; color: var(--muted); }
.actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.action {
  min-height: 40px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  white-space: nowrap;
}
.action:hover { border-color: var(--line-strong); }
.action.active.confirm { border-color: var(--green-dark); background: var(--green-wash); color: var(--green-dark); font-weight: 700; }
.action.active.reject { border-color: var(--red); background: var(--red-soft); color: var(--red); font-weight: 700; }
.action.active.hold { border-color: var(--amber); background: var(--amber-soft); color: var(--amber); font-weight: 700; }
.decision-fields { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 12px; margin-top: 14px; }
label { display: block; color: var(--muted); font-size: 12px; font-weight: 700; }
select,
textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
}
textarea { min-height: 78px; resize: vertical; }
.save-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 13px; }
.flag-summary { color: var(--muted); }
.flag-summary strong { color: var(--amber); }
.save,
.auth-submit {
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid var(--green-dark);
  border-radius: var(--radius-sm);
  background: var(--green-dark);
  color: var(--on-primary);
  font-weight: 750;
  cursor: pointer;
  white-space: nowrap;
}
.save:hover,
.auth-submit:hover { border-color: oklch(0.34 0.13 158); background: oklch(0.34 0.13 158); }
.save:disabled { opacity: 0.42; cursor: default; }
.error { min-height: 20px; margin-top: 9px; color: var(--red); }
.decision-existing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border-left: 3px solid var(--green-dark);
  background: var(--green-wash);
}
.decision-existing.reject { border-left-color: var(--red); background: var(--red-soft); }
.decision-existing.hold { border-left-color: var(--amber); background: var(--amber-soft); }
.decision-existing strong { display: block; margin-bottom: 3px; }
.decision-existing p { margin: 0; color: var(--muted); }
.readonly-note { padding: 14px; border-left: 3px solid var(--amber); background: var(--amber-soft); color: var(--amber); }

/* Source-record drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  background: oklch(0.12 0.025 255 / 0.45);
  transition: opacity 0.16s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  z-index: 51;
  inset: 0 0 0 auto;
  width: min(850px, 94vw);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  border-left: 1px solid var(--line);
  background: var(--surface);
  box-shadow: -20px 0 60px oklch(0.18 0.02 255 / 0.15);
  transition: transform 0.18s ease;
}
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 20px 22px 16px; border-bottom: 1px solid var(--line); }
.drawer-title-row { display: flex; align-items: center; gap: 12px; }
.drawer h2 { margin: 0; font-size: 22px; }
.drawer-close { margin-left: auto; }
.drawer-help { max-width: 720px; margin-top: 6px; color: var(--muted); }
.record-tools { display: flex; gap: 8px; margin-top: 14px; }
.record-tools input { flex: 1; }
.drawer-body { overflow: auto; padding: 0 22px 30px; }
.record {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.record input[type="checkbox"] { width: 16px; height: 16px; margin-top: 4px; accent-color: var(--green-dark); }
.record-main strong { font-weight: 700; }
.record-line .missing { color: var(--amber); }
.record-amount { text-align: right; font: 650 13px/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.record-amount a { display: block; margin-top: 6px; font-family: ui-sans-serif, system-ui, sans-serif; font-size: 12px; }
.load-more { display: block; margin: 20px auto; }

/* Authentication and feedback */
.toast {
  position: fixed;
  z-index: 80;
  bottom: 24px;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  padding: 10px 14px;
  border: 1px solid oklch(0.72 0.08 158);
  border-radius: var(--radius-sm);
  background: oklch(0.94 0.035 158);
  color: var(--green-dark);
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.suite-auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: oklch(0.12 0.025 255 / 0.72);
  backdrop-filter: blur(8px);
}
.suite-auth-panel {
  width: min(420px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 24px 80px oklch(0.08 0.025 255 / 0.3);
}
.suite-auth-kicker { color: var(--green-dark); font: 800 10px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: 0.09em; text-transform: uppercase; }
.suite-auth-panel h2 { margin: 7px 0 5px; font-size: 24px; line-height: 1.2; }
.suite-auth-copy,
.suite-auth-message { color: var(--muted); }
.suite-auth-form { display: grid; gap: 15px; margin-top: 20px; }
.suite-auth-form label span { display: block; margin-bottom: 6px; }
.suite-auth-form input {
  width: 100%;
  min-height: 40px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
}
.suite-auth-message { min-height: 20px; margin: 13px 0 0; }
.suite-auth-message.error { color: var(--red); }

@media (max-width: 1000px) {
  .suite-bar { padding: 0 16px; }
  .suite-nav {
    margin-left: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
  }
  .suite-submenu {
    position: fixed;
    top: var(--suite-bar-h);
    right: 10px;
    left: auto;
  }
  .suite-nav a, .suite-menu > button { padding: 0 10px; }
  #suite-user { display: none; }
  .suite-account { margin-left: 8px; }
  .topbar { padding: 0 18px; }
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .target-list { display: flex; overflow-x: auto; }
  .target-row { min-width: 210px; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat + .stat { border-left: 0; }
  .evidence-grid { grid-template-columns: 1fr; }
  .evidence + .evidence { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .actions { grid-template-columns: repeat(2, 1fr); }
  .decision-fields { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .suite-bar { padding: 0 10px; }
  .suite-brand { font-size: 10px; }
  .suite-nav { margin-left: 8px; }
  .suite-nav a, .suite-menu > button { padding: 0 9px; font-size: 11px; }
  .suite-account { margin-left: 4px; }
  .topbar { padding: 0 12px; }
  .brand { min-width: 0; }
  .brand span,
  .mode-badge { display: none; }
  .top-progress { font-size: 11px; }
  main { padding: 22px 12px 48px; }
  .target-title-row { display: grid; gap: 8px; }
  .difficulty { padding-left: 0; border-left: 0; }
  .bundle-nav { align-items: flex-start; }
  .card-head { grid-template-columns: 1fr; }
  .record-hero { min-width: 0; text-align: left; }
  .record-label { max-width: none; }
  .source-row,
  .save-row { align-items: stretch; flex-direction: column; }
  .actions { grid-template-columns: 1fr; }
  .action { white-space: normal; }
  .record { grid-template-columns: 28px minmax(0, 1fr); }
  .record-amount { grid-column: 2; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

/* CD OPS Lobbying menu contract v2 */
.suite-menu > button {
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
.suite-menu > button.active { border-bottom-color: #72d9a5; color: #f7fafc; }
.suite-menu .suite-submenu {
  --suite-submenu-viewport-margin: 10px;
  z-index: 80;
  width: min(220px, calc(100vw - 20px));
  min-width: min(220px, calc(100vw - 20px));
  padding: 6px;
  border-color: #344154;
  background: #111827;
}
.suite-menu:hover .suite-submenu,
.suite-menu.is-open .suite-submenu { display: block; }
html:not(.suite-menu-js) .suite-menu:focus-within .suite-submenu { display: block; }
.suite-menu.is-closed .suite-submenu { display: none; }
.suite-menu .suite-submenu a,
.suite-menu .suite-submenu [aria-disabled="true"] {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 36px;
  padding: 8px 10px;
  border: 0;
  color: #dce3ea;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}
.suite-menu .suite-submenu a:hover,
.suite-menu .suite-submenu a:focus-visible { color: #86efb6; background: #1c2737; outline: none; }
.suite-menu .suite-submenu a[aria-current="page"] { box-shadow: inset 2px 0 0 #72d9a5; color: #f7fafc; }
.suite-menu .suite-submenu [aria-disabled="true"] { color: #8c98a8; cursor: default; }
.suite-menu .suite-submenu small {
  color: inherit;
  font-family: inherit;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
}
