@font-face {
  font-family: Instrument;
  src: url("/assets/InstrumentSans-Regular.ttf");
}
@font-face {
  font-family: Instrument;
  src: url("/assets/InstrumentSans-Medium.ttf");
  font-weight: 500 800;
}
:root {
  --night: #010810;
  --panel: #07111b;
  --mineral: #f0f0ee;
  --surface: #f4f4f1;
  --cobalt: #1246d8;
  --copper: #c97843;
  --ink: #101820;
  --muted: #58636d;
  --line: #d7dadc;
  --green: #17654b;
  --radius: 16px;
  font-family: Instrument, Arial, sans-serif;
  color: var(--ink);
  background: var(--mineral);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #2865ff;
  outline-offset: 4px;
}
button {
  border: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: clamp(30px, 3.2vw, 48px);
  letter-spacing: -1.8px;
  line-height: 1.15;
  font-weight: 500;
}
h2 {
  font-size: 23px;
  letter-spacing: -0.6px;
  font-weight: 500;
}
h3 {
  font-size: 18px;
  font-weight: 600;
}
p {
  color: var(--muted);
}
small,
.meta {
  font-size: 13px;
  color: var(--muted);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  font-weight: 600;
}
.muted {
  color: var(--muted);
}
.skip {
  position: fixed;
  top: -80px;
  padding: 15px;
  background: white;
  z-index: 100;
}
.skip:focus {
  top: 0;
}
.boot {
  padding: 80px;
}
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  min-height: 46px;
  border-radius: 8px;
  background: var(--cobalt);
  color: white;
  font-size: 14px;
  font-weight: 600;
}
.button.secondary {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}
.button.quiet {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.text-button {
  background: none;
  color: var(--cobalt);
  padding: 10px 0;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 30px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  background: #e5ebe8;
  color: var(--green);
  white-space: nowrap;
}
.pill.warning {
  background: #f7e3d5;
  color: #874121;
}
.pill.neutral {
  background: #e9edf1;
  color: #52606e;
}
.pill.blue {
  background: #e6edff;
  color: #1644b7;
}
.badge {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e5ebf3;
  color: #3c536c;
  font-size: 12px;
  font-weight: 600;
  flex: none;
}
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.stack {
  display: grid;
  gap: 20px;
}
.gap {
  gap: 10px;
}
.sample {
  background: #dfe7f6;
  color: #364b70;
  text-align: center;
  font-size: 12px;
  padding: 7px 12px;
}
.shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 230px 1fr;
}
.sidebar {
  background: var(--night);
  color: #fff;
  position: fixed;
  width: 230px;
  inset: 0 auto 0 0;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand img {
  height: 49px;
  width: 38px;
  object-fit: contain;
}
.brand strong {
  font-size: 18px;
  letter-spacing: 1px;
}
.brand small {
  display: block;
  color: #aab4c0;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.workspace {
  border-top: 1px solid #26313c;
  border-bottom: 1px solid #26313c;
  padding: 23px 8px;
  margin: 29px 0 22px;
}
.workspace small {
  display: block;
  margin-top: 4px;
  color: #98a8b9;
}
.nav {
  display: grid;
  gap: 7px;
}
.nav a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: #aebac6;
}
.nav a.active {
  background: #162332;
  color: #fff;
}
.nav a.active .icon {
  color: #75a1ff;
}
.nav a:hover {
  background: #14202d;
}
.sidebar-bottom {
  margin-top: auto;
  border-top: 1px solid #26313c;
  padding-top: 22px;
  display: grid;
  gap: 18px;
}
.sidebar-bottom .text-button {
  color: #aebac6;
}
.sidebar-bottom small {
  color: #98a8b9;
}
.account {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}
.account .badge {
  background: #263549;
  color: white;
}
.main-wrap {
  grid-column: 2;
  min-width: 0;
}
.topbar {
  height: 77px;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f7f5;
}
.topbar .crumb {
  font-size: 14px;
  color: var(--muted);
}
.topbar .crumb strong {
  color: var(--ink);
  font-weight: 500;
}
.topbar .status {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}
.dot {
  width: 6px;
  height: 6px;
  background: #217a57;
  border-radius: 50%;
  display: inline-block;
}
.page {
  padding: 36px 42px 55px;
  max-width: 1530px;
  margin: auto;
}
.page-head {
  margin-bottom: 30px;
}
.page-head p {
  margin-top: 12px;
  max-width: 690px;
}
.page-head .eyebrow {
  margin-bottom: 12px;
  color: var(--muted);
}
.summary {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 25px;
  align-items: center;
  background: var(--night);
  color: white;
  padding: 30px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.summary h2 {
  font-size: 28px;
  max-width: 560px;
  line-height: 1.3;
  letter-spacing: -0.8px;
}
.summary p {
  color: #aab8c6;
  margin: 12px 0 22px;
  max-width: 560px;
}
.summary .eyebrow {
  color: #82a6fa;
  margin-bottom: 16px;
}
.summary .button {
  background: white;
  color: var(--night);
}
.summary-right {
  border-left: 1px solid #314051;
  padding-left: 30px;
}
.summary-right .number {
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -3px;
  font-weight: 500;
}
.summary-right p {
  margin: 5px 0 14px;
}
.sparkline {
  width: 100%;
  height: 54px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 24px 0 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
}
.metric {
  padding: 24px;
  min-width: 0;
}
.metric + .metric {
  border-left: 1px solid var(--line);
}
.metric span {
  display: block;
  font-size: 14px;
  color: #56606d;
  min-height: 22px;
}
.metric strong {
  font-size: 34px;
  letter-spacing: -1px;
  font-weight: 500;
  display: block;
  margin: 9px 0 6px;
}
.metric small {
  font-size: 12px;
}
.columns {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 1fr);
  gap: 24px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card-head {
  margin-bottom: 22px;
}
.card-head .eyebrow {
  color: var(--muted);
  margin-bottom: 7px;
}
.decision {
  border-left: 3px solid var(--copper);
  padding-left: 20px;
}
.decision h3 {
  font-size: 21px;
  line-height: 1.4;
  margin: 14px 0 10px;
  max-width: 550px;
}
.decision p {
  font-size: 14px;
  margin-bottom: 18px;
}
.decision .value {
  display: flex;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 20px;
  align-items: center;
  color: #87512e;
}
.system {
  padding: 18px 0;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.system:first-of-type {
  border-top: 0;
}
.system-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #edf2fb;
  color: var(--cobalt);
  display: grid;
  place-items: center;
  flex: none;
}
.system p {
  font-size: 14px;
  margin: 5px 0;
}
.system small {
  display: block;
}
.system .pill {
  margin-left: auto;
}
.section {
  margin-top: 30px;
}
.activity-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 0;
  border-top: 1px solid #e9ecef;
  text-align: left;
  width: 100%;
  background: transparent;
}
.activity-row .text {
  flex: 1;
  min-width: 0;
}
.activity-row strong {
  font-size: 14px;
}
.activity-row p {
  font-size: 14px;
  margin: 4px 0;
}
.activity-row small {
  font-size: 12px;
}
.activity-row:hover {
  background: #fafbf9;
}
.activity-row .meta {
  min-width: 80px;
  text-align: right;
}
.insight {
  padding: 22px 26px;
  border: 1px solid #c5d5f4;
  border-radius: 12px;
  margin-top: 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  background: #e9effa;
}
.insight p {
  font-size: 14px;
  margin-top: 4px;
}
.progress {
  height: 5px;
  background: #e3e7ec;
  border-radius: 5px;
  overflow: hidden;
  margin: 20px 0;
}
.progress progress {
  width: 100%;
  height: 100%;
  appearance: none;
  display: block;
}
.progress progress::-webkit-progress-bar {
  background: #e3e7ec;
}
.progress progress::-webkit-progress-value {
  background: var(--cobalt);
}
.checklist {
  display: grid;
  gap: 0;
}
.step {
  padding: 22px 0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-top: 1px solid #e9ecef;
}
.step .num {
  width: 30px;
  height: 30px;
  flex: none;
  border: 1px solid #c9d1d9;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
}
.step.done .num {
  background: #e5f0e9;
  color: #17654b;
  border-color: #e5f0e9;
}
.step-body {
  flex: 1;
}
.step h3 {
  font-size: 16px;
}
.step p {
  font-size: 14px;
  margin: 5px 0;
}
.step .text-button {
  padding-bottom: 0;
}
.connection {
  padding: 19px 0;
  border-top: 1px solid #e9ecef;
}
.connection p {
  font-size: 13px;
  margin: 6px 0;
}
.timeline {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.timeline li {
  position: relative;
  border-left: 1px solid #d2dbe5;
  padding: 0 0 25px 25px;
  margin-left: 7px;
}
.timeline li:last-child {
  border: 0;
  padding-bottom: 0;
}
.timeline li:before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c5cdd6;
  left: -5px;
  top: 6px;
}
.timeline li.done:before {
  background: var(--cobalt);
}
.timeline strong {
  display: block;
  font-size: 14px;
}
.timeline small {
  display: block;
  margin-top: 2px;
}
.filterbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.filterbar button {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  font-size: 14px;
}
.filterbar button.active {
  background: var(--night);
  color: white;
  border-color: var(--night);
}
.search {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  min-width: 240px;
  max-width: 100%;
}
.empty {
  text-align: center;
  padding: 55px 20px;
}
.empty h2 {
  margin: 16px 0 10px;
}
.empty p {
  max-width: 430px;
  margin: 0 auto 22px;
}
.empty .icon {
  width: 32px;
  height: 32px;
  color: var(--cobalt);
}
.notice {
  padding: 17px 21px;
  border-radius: 10px;
  background: #fae8da;
  border: 1px solid #e7c1a7;
  margin-bottom: 22px;
  font-size: 14px;
  color: #763e20;
}
.notice.error {
  background: #fceaea;
  border-color: #e8b9b9;
  color: #842727;
}
.skeleton {
  height: 130px;
  border-radius: 12px;
  background: linear-gradient(90deg, #e1e5e8, #f7f8f9, #e1e5e8);
  background-size: 200%;
  animation: shimmer 1.5s infinite;
}
.skeleton.large {
  height: 250px;
  margin-top: 25px;
}
.signin {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}
.signin-story {
  background: var(--night);
  color: white;
  padding: 55px 65px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
.signin-story .brand img {
  width: 55px;
  height: 75px;
}
.signin-story h1 {
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.03;
  max-width: 580px;
  letter-spacing: -3px;
  margin: 55px 0 25px;
}
.signin-story p {
  max-width: 430px;
  color: #b4c0cc;
  font-size: 18px;
}
.signin-story .mini-timeline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: #b3c4d5;
  font-size: 13px;
  margin-top: 35px;
}
.signin-story .mini-timeline span {
  border-top: 2px solid #365991;
  padding: 14px 12px 0 0;
}
.signin-form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
.signin-box {
  max-width: 410px;
  width: 100%;
}
.signin-box h2 {
  font-size: 32px;
  margin: 18px 0 12px;
}
.signin-box p {
  font-size: 15px;
  margin-bottom: 28px;
}
.field {
  display: grid;
  gap: 8px;
  font-size: 14px;
  margin: 20px 0;
}
.field input,
.field textarea,
.field select {
  padding: 13px 14px;
  border: 1px solid #c9d0d7;
  border-radius: 8px;
  background: #fff;
  width: 100%;
  color: var(--ink);
}
.field textarea {
  min-height: 125px;
  resize: vertical;
}
.wide {
  width: 100%;
}
.form-note {
  font-size: 13px !important;
  margin-top: 20px;
}
.welcome {
  max-width: 850px;
  margin: 20px auto;
}
.welcome h1 {
  margin: 18px 0;
}
.welcome .card {
  margin-top: 30px;
}
.welcome .benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 32px 0;
}
.welcome .benefits h3 {
  margin: 13px 0 7px;
}
.welcome .benefits p {
  font-size: 14px;
}
.ask-intro {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
}
.ask-intro img {
  width: 40px;
  height: 52px;
  object-fit: contain;
}
.prompts {
  display: grid;
  gap: 10px;
  margin: 25px 0;
}
.prompts button {
  background: #f4f6fa;
  border: 1px solid #dce3ed;
  padding: 17px;
  text-align: left;
  border-radius: 9px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.answer {
  background: #eaf0fb;
  padding: 23px;
  border-radius: 12px;
  margin-top: 20px;
}
.answer p {
  color: #233955;
  line-height: 1.7;
}
.answer small {
  display: block;
  margin-top: 14px;
}
.ticket {
  padding: 16px 0;
  border-top: 1px solid #ddd;
}
.ticket p {
  font-size: 14px;
  margin: 5px 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
dialog {
  padding: 0;
  border: 0;
  border-radius: 18px;
  width: min(610px, calc(100% - 28px));
  max-height: 90vh;
  color: var(--ink);
  box-shadow: 0 30px 100px #0005;
}
dialog::backdrop {
  background: #01081099;
  backdrop-filter: blur(4px);
}
.dialog-body {
  padding: 30px;
}
.dialog-body h2 {
  font-size: 27px;
  margin: 17px 0;
}
.dialog-body p {
  font-size: 15px;
}
.dialog-body blockquote {
  margin: 23px 0;
  background: #f0f3f9;
  border-left: 3px solid var(--cobalt);
  padding: 20px;
  color: #263e5e;
}
.dialog-body .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin: 20px 0 5px;
}
.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 30px;
  background: #f5f6f5;
  border-top: 1px solid #e0e4e8;
}
.close {
  background: none;
  border: 1px solid #d5dce2;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
}
.checklabel {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  font-size: 14px;
  align-items: flex-start;
}
.checklabel input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: none;
}
#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  background: #112639;
  color: white;
  border-radius: 10px;
  padding: 13px 20px;
  box-shadow: 0 8px 30px #0003;
  max-width: 90%;
  font-size: 14px;
  display: none;
}
#toast.show {
  display: block;
}
.review-header {
  background: var(--night);
  padding: 28px 40px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.review-header p {
  color: #afbdcd;
  font-size: 14px;
  margin-top: 6px;
}
.review-main {
  max-width: 1440px;
  margin: auto;
  padding: 32px 40px;
}
.review-controls {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 18px;
  align-items: end;
}
.review-controls .field {
  margin: 0;
}
.journey {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 26px 0;
}
.journey button {
  background: white;
  border: 1px solid #cbd3dc;
  border-radius: 10px;
  padding: 16px;
  text-align: left;
}
.journey strong {
  display: block;
  font-size: 14px;
}
.journey span {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 7px;
}
.journey button.active {
  border: 2px solid var(--cobalt);
  background: #eaf0fe;
}
.review-frame-wrap {
  background: #d9dee5;
  border: 1px solid #bec8d4;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  justify-content: center;
}
.review-frame-wrap iframe {
  border: 0;
  background: var(--mineral);
  width: 100%;
  height: 880px;
  border-radius: 8px;
}
.review-frame-wrap.mobile iframe {
  width: 390px;
  height: 844px;
}
.review-caption {
  margin: 18px 0;
  font-size: 14px;
}
.review-note {
  margin-top: 24px;
  font-size: 14px;
}
.staff {
  border: 1px solid #d9b797;
  background: #f7eee4;
}
.staff .eyebrow {
  color: #874b29;
}
.audit {
  font-size: 13px;
  display: grid;
  gap: 8px;
  margin-top: 20px;
}
.audit span {
  display: block;
  padding: 10px;
  background: white;
  border: 1px solid #e7dacc;
}
.support-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
}
.help-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.help-shortcut .icon { width: 17px; }
.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
  gap: 24px;
  align-items: start;
}
.support-side { display: grid; gap: 24px; }
.aria-support { min-height: 620px; }
.support-transcript {
  display: grid;
  gap: 12px;
  max-height: 390px;
  overflow: auto;
  margin: 24px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f5f7fb;
}
.support-message {
  max-width: 88%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.support-message--customer {
  justify-self: end;
  color: white;
  background: var(--blue, #2446da);
  border-color: transparent;
}
.support-message strong { display: block; margin-bottom: 5px; font-size: 13px; }
.support-message p { margin: 0; }
.support-checks { display: grid; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none; }
.support-checks li { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.support-related { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.support-related .button { min-height: 38px; padding: 8px 11px; font-size: 13px; }
.aria-form { border-top: 1px solid var(--line); padding-top: 20px; }
.knowledge-list { display: grid; gap: 9px; margin-top: 14px; }
.knowledge-list button {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 14px;
  text-align: left;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.knowledge-list button:hover { border-color: #3154e6; }
.knowledge-list button span { color: #3154e6; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.knowledge-list button small { color: #5e6b77; font-size: 13px; line-height: 1.4; }
.footer-note {
  margin-top: 28px;
  font-size: 12px;
  color: #6b7884;
}
.mobile-brand {
  display: none;
}
@keyframes shimmer {
  to {
    background-position: -200%;
  }
}
@media (min-width: 1500px) {
  .page {
    padding-top: 45px;
  }
}
@media (max-width: 1150px) {
  .sidebar {
    width: 200px;
    padding: 28px 15px;
  }
  .shell {
    grid-template-columns: 200px 1fr;
  }
  .page {
    padding: 28px;
  }
  .topbar {
    padding: 0 28px;
  }
  .metric {
    padding: 18px;
  }
  .metric strong {
    font-size: 29px;
  }
  .columns {
    grid-template-columns: 1.2fr 1fr;
  }
  .summary {
    grid-template-columns: 1.5fr 1fr;
    padding: 25px;
  }
  .summary h2 {
    font-size: 24px;
  }
  .summary-right {
    padding-left: 24px;
  }
  .summary-right .number {
    font-size: 48px;
  }
}
@media (max-width: 900px) {
  .columns,
  .support-grid,
  .support-layout {
    grid-template-columns: 1fr;
  }
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .metric:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .summary {
    grid-template-columns: 1fr;
  }
  .summary-right {
    display: none;
  }
  .signin-story {
    padding: 45px 35px;
  }
  .review-controls {
    grid-template-columns: 1fr 1fr;
  }
  .journey {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 680px) {
  .shell {
    display: block;
  }
  .sidebar {
    inset: auto 0 0;
    width: 100%;
    padding: 0;
    height: 72px;
    display: block;
    border-top: 1px solid #293746;
  }
  .help-shortcut { margin-left: auto; }
  .status { display: none; }
  .support-message { max-width: 96%; }
  .sidebar > .brand,
  .sidebar > .workspace,
  .sidebar-bottom {
    display: none;
  }
  .nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    height: 100%;
  }
  .nav a {
    font-size: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 0;
    justify-content: center;
    padding: 10px 2px;
  }
  .nav a .icon {
    width: 19px;
    height: 19px;
  }
  .topbar {
    height: 65px;
    padding: 0 20px;
  }
  .topbar .crumb {
    display: none;
  }
  .mobile-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .mobile-brand img {
    width: 23px;
    height: 33px;
  }
  .topbar .status {
    font-size: 12px;
  }
  .page {
    padding: 27px 20px 100px;
  }
  .page-head {
    margin-bottom: 23px;
  }
  .page-head h1 {
    font-size: 34px;
    letter-spacing: -1.2px;
  }
  .page-head p {
    font-size: 14px;
  }
  .page-head.row {
    display: block;
  }
  .page-head.row > .button {
    margin-top: 16px;
  }
  .summary {
    padding: 23px;
    border-radius: 12px;
  }
  .summary h2 {
    font-size: 24px;
  }
  .summary p {
    font-size: 14px;
  }
  .summary .eyebrow {
    font-size: 11px;
  }
  .metrics {
    margin: 20px 0;
  }
  .metric {
    padding: 18px 15px;
  }
  .metric span {
    font-size: 12px;
    line-height: 1.4;
  }
  .metric strong {
    font-size: 29px;
  }
  .metric small {
    font-size: 11px;
  }
  .card {
    padding: 22px 19px;
    border-radius: 12px;
  }
  .card h2 {
    font-size: 21px;
  }
  .decision {
    padding-left: 15px;
  }
  .decision h3 {
    font-size: 19px;
  }
  .activity-row .meta {
    display: none;
  }
  .activity-row {
    align-items: flex-start;
  }
  .activity-row .pill {
    font-size: 11px;
  }
  .activity-row p {
    font-size: 13px;
  }
  .activity-row .badge {
    width: 29px;
    height: 29px;
    font-size: 10px;
  }
  .insight {
    padding: 18px;
    align-items: flex-start;
  }
  .insight .button {
    margin-top: 10px;
  }
  .insight.row {
    display: block;
  }
  .welcome .benefits {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .welcome {
    margin: 0;
  }
  .signin {
    display: block;
  }
  .signin-story {
    padding: 27px 25px;
    min-height: unset;
  }
  .signin-story h1 {
    font-size: 40px;
    letter-spacing: -1.5px;
    margin: 35px 0 15px;
  }
  .signin-story p {
    font-size: 15px;
  }
  .signin-story .mini-timeline {
    display: none;
  }
  .signin-story > .meta {
    display: none;
  }
  .signin-story .brand img {
    height: 45px;
    width: 34px;
  }
  .signin-form {
    padding: 35px 25px;
  }
  .signin-box h2 {
    font-size: 29px;
  }
  .dialog-body {
    padding: 24px;
  }
  .dialog-actions {
    padding: 20px 24px;
  }
  .dialog-actions .button {
    flex: 1;
  }
  .review-header {
    padding: 24px;
    display: block;
  }
  .review-header .button {
    margin-top: 18px;
  }
  .review-main {
    padding: 24px 15px;
  }
  .review-controls {
    grid-template-columns: 1fr 1fr;
  }
  .review-controls .field:first-child {
    grid-column: 1/-1;
  }
  .review-controls label {
    font-size: 13px;
  }
  .review-controls select {
    font-size: 13px;
    padding: 10px;
  }
  .journey {
    gap: 7px;
  }
  .journey button {
    padding: 12px 9px;
  }
  .journey strong {
    font-size: 12px;
  }
  .review-frame-wrap {
    padding: 5px;
  }
  .review-frame-wrap.mobile iframe {
    max-width: 100%;
  }
  .sample {
    font-size: 11px;
  }
  .system .pill {
    white-space: normal;
  }
  .system {
    gap: 10px;
  }
  .search {
    width: 100%;
  }
  .filterbar {
    gap: 7px;
  }
  .filterbar button {
    padding: 9px 12px;
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
.block {
  display: block;
}
.mobile-exit {
  display: none;
}
@media (max-width: 680px) {
  .mobile-exit {
    display: grid;
  }
  .summary small {
    color: #aab8c6;
  }
}
