:root {
  color-scheme: light;
  --ink: #203b66;
  --muted: #687189;
  --paper: #fff8fa;
  --panel: rgba(255, 255, 255, 0.64);
  --panel-strong: rgba(255, 255, 255, 0.82);
  --line: rgba(217, 47, 107, 0.16);
  --shadow: 0 20px 70px rgba(98, 34, 66, 0.16);
  --teal: #d92f6b;
  --teal-dark: #b52557;
  --mint: #fde4ec;
  --coral: #ef6f8e;
  --amber: #efb85b;
  --blue: #4384bd;
  --violet: #955aa8;
  --radius: 8px;
  --topbar-height: 72px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
}

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

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

.app-background {
  min-height: 100vh;
  padding: 20px;
}

.glass-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.5)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 6px;
  font-size: 1.55rem;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.identity-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.care-visual {
  align-self: end;
  width: min(620px, 100%);
  margin: 20px auto 8px;
  filter: drop-shadow(0 24px 38px rgba(151, 40, 88, 0.2));
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signal-row span,
.status-pill {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 47, 107, 0.2);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill.online {
  border-color: rgba(217, 47, 107, 0.34);
  color: var(--teal-dark);
  background: rgba(253, 228, 236, 0.9);
}

.status-pill.offline,
.status-pill.danger {
  border-color: rgba(229, 107, 95, 0.34);
  color: #9b2d26;
  background: rgba(255, 226, 224, 0.8);
}

.status-pill.warn {
  border-color: rgba(240, 185, 79, 0.45);
  color: #7a520c;
  background: rgba(255, 242, 206, 0.82);
}

.status-pill.neutral {
  color: #37515d;
  border-color: rgba(47, 111, 190, 0.2);
  background: rgba(239, 246, 255, 0.72);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field span,
.toggle-row span {
  color: #31434c;
  font-size: 0.86rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(20, 70, 78, 0.18);
  border-radius: var(--radius);
  padding: 11px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  outline: none;
  transition:
    border 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(217, 47, 107, 0.62);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(217, 47, 107, 0.12);
}

.primary-action,
.secondary-action,
.ghost-action,
.icon-text-button,
.icon-button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 850;
}

.primary-action,
.secondary-action,
.ghost-action,
.icon-text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
}

.primary-action {
  width: 100%;
  color: white;
  background: var(--blue);
  box-shadow: 0 15px 30px rgba(67, 132, 189, 0.24);
}

.primary-action.compact {
  width: auto;
}

.secondary-action {
  color: #2f6fbe;
  background: #e8f1fb;
  border: 1px solid rgba(67, 132, 189, 0.18);
}

.ghost-action,
.icon-text-button {
  color: #2f6fbe;
  border: 1px solid rgba(67, 132, 189, 0.2);
  background: rgba(232, 241, 251, 0.82);
}

.button-icon {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.demo-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.app-shell {
  min-height: calc(100vh - 40px);
}

.topbar {
  position: sticky;
  top: 20px;
  z-index: 20;
  display: flex;
  min-height: var(--topbar-height);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
}

.brand-stack {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand-stack img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.brand-copy span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-menu {
  position: relative;
}

.profile-login {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  border: 0;
  color: inherit;
  background: transparent;
  padding: 4px 2px 4px 8px;
  text-align: left;
}

.profile-login:hover {
  background: rgba(217, 47, 107, 0.08);
}

.profile-login:focus-visible {
  outline: 3px solid rgba(67, 132, 189, 0.32);
  outline-offset: 3px;
}

.profile-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 7px 18px rgba(67, 132, 189, 0.24);
  font-size: 0.74rem;
  font-weight: 900;
}

.profile-copy {
  min-width: 0;
}

.profile-copy strong,
.profile-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-copy strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.profile-copy span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.profile-chevron {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  transform: translateY(-1px);
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  min-width: 168px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 250, 0.96);
  box-shadow: 0 18px 42px rgba(98, 34, 66, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.profile-logout {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border: 0;
  border-radius: 6px;
  color: var(--teal-dark);
  background: transparent;
  padding: 10px 12px;
  font-weight: 800;
  text-align: left;
}

.profile-logout:hover {
  background: rgba(217, 47, 107, 0.1);
}

.icon-button {
  display: none;
  width: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid rgba(20, 70, 78, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.icon-button span,
.icon-button span::before,
.icon-button span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #25464d;
  content: "";
}

.icon-button span::before {
  transform: translateY(-6px);
}

.icon-button span::after {
  transform: translateY(4px);
}

.workspace {
  display: grid;
  grid-template-columns: minmax(250px, 280px) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.sidebar {
  position: sticky;
  top: calc(var(--topbar-height) + 38px);
  display: grid;
  align-self: start;
  gap: 8px;
  padding: 10px;
}

.nav-item {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 12px;
  color: #31434c;
  background: transparent;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-align: left;
}

.nav-item.active {
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(67, 132, 189, 0.22);
}

.content {
  min-width: 0;
}

.route-view {
  display: none;
}

.route-view.active {
  display: block;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 12px 0 18px;
}

.section-title h2 {
  margin: 0;
}

.section-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.metric-card {
  display: grid;
  min-height: 134px;
  align-content: space-between;
  padding: 18px;
}

.metric-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.metric-card strong {
  font-size: 2.2rem;
  line-height: 1;
}

.metric-card small {
  color: var(--muted);
  line-height: 1.4;
}

.panel-pad,
.report-form {
  padding: 18px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.panel-heading h3 {
  margin: 0;
}

.chart-panel {
  margin-bottom: 18px;
}

.chart-heading {
  align-items: flex-start;
}

.chart-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.chart-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.compact-field {
  display: grid;
  gap: 5px;
  min-width: 118px;
}

.compact-field span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.compact-field input,
.compact-field select {
  min-height: 40px;
  border: 1px solid rgba(20, 70, 78, 0.16);
  border-radius: var(--radius);
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.72);
}

.chart-canvas-wrap {
  position: relative;
  width: 100%;
  height: 360px;
  border: 1px solid rgba(20, 70, 78, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.44);
}

#visitChart {
  display: block;
  width: 100%;
  height: 100%;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.legend-item {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(20, 70, 78, 0.12);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.58);
  color: #31434c;
  font-size: 0.76rem;
  font-weight: 800;
}

.legend-swatch {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.report-form {
  margin-bottom: 20px;
}

.target-workspace {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}

.target-filter-grid {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(130px, 0.85fr) minmax(170px, 1fr) repeat(3, minmax(160px, 1fr));
  gap: 12px;
  align-items: end;
}

.target-filter-grid .field {
  margin-bottom: 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(20, 70, 78, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
}

.target-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
}

.target-table th,
.target-table td {
  border-bottom: 1px solid rgba(20, 70, 78, 0.1);
  padding: 12px;
  text-align: left;
  vertical-align: middle;
}

.target-table th {
  color: #31434c;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
}

.target-table td {
  color: #20323c;
  font-size: 0.86rem;
}

.target-table tr.selected td {
  background: rgba(217, 47, 107, 0.08);
}

.target-table tr:last-child td {
  border-bottom: 0;
}

.table-empty {
  color: var(--muted);
  text-align: center !important;
}

.photo-download-cell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.photo-download-cell span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 190px;
}

.target-filter-grid > button {
  width: 100%;
}

.table-footer,
.pagination-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.history-panel {
  margin-bottom: 20px;
}

.history-panel p {
  margin: 4px 0 0;
  color: var(--muted);
}

.history-list {
  display: grid;
  gap: 10px;
}

.history-item {
  border: 1px solid rgba(20, 70, 78, 0.12);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.58);
}

.history-item p {
  margin: 6px 0 0;
  line-height: 1.5;
}

.history-soap {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.history-soap-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  border-top: 1px solid rgba(20, 70, 78, 0.1);
  padding-top: 8px;
}

.history-soap-row strong {
  color: var(--blue);
  font-size: 0.82rem;
}

.history-soap-row p {
  margin: 0;
  color: #31434c;
  line-height: 1.5;
  white-space: pre-wrap;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 14px;
}

.field.wide {
  grid-column: 1 / -1;
}

.form-type-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(20, 70, 78, 0.14);
  padding-top: 18px;
}

.form-type-switch.wide {
  grid-column: 1 / -1;
}

.form-type-switch > span {
  color: #31434c;
  font-size: 0.86rem;
  font-weight: 850;
}

.segmented-control {
  display: inline-grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 6px;
  width: min(100%, 980px);
  border: 1px solid rgba(20, 70, 78, 0.14);
  border-radius: var(--radius);
  padding: 5px;
  background: rgba(255, 255, 255, 0.58);
}

.form-mode-button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  padding: 0 12px;
  color: #31434c;
  background: transparent;
  font-weight: 850;
  line-height: 1.2;
  overflow-wrap: anywhere;
  white-space: normal;
}

.form-mode-button.active {
  color: white;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(67, 132, 189, 0.18);
}

.form-section {
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(20, 70, 78, 0.14);
  padding-top: 18px;
}

.form-section.wide,
.objective-block.wide {
  grid-column: 1 / -1;
}

.subsection-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.subsection-title span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
}

.subsection-title h3 {
  margin: 0;
}

.nested-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 14px;
}

.short-field input {
  max-width: 160px;
}

.objective-block {
  border: 1px solid rgba(20, 70, 78, 0.12);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.36);
}

.objective-label {
  display: block;
  margin-bottom: 12px;
  color: #31434c;
  font-size: 0.86rem;
  font-weight: 850;
}

.unit-field {
  position: relative;
}

.unit-field input {
  padding-right: 68px;
}

.unit-field em {
  position: absolute;
  right: 12px;
  bottom: 13px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  pointer-events: none;
}

.photo-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.photo-upload-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(20, 70, 78, 0.12);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.48);
}

.photo-upload-card span {
  color: #31434c;
  font-size: 0.84rem;
  font-weight: 850;
}

.photo-upload-card input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(20, 70, 78, 0.14);
  border-radius: var(--radius);
  padding: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 10px;
  margin: 4px 0 18px;
}

.photo-tile {
  overflow: hidden;
  border: 1px solid rgba(20, 70, 78, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
}

.photo-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-tile span {
  display: block;
  overflow: hidden;
  padding: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.form-actions .primary-action {
  width: auto;
}

.report-list {
  display: grid;
  gap: 12px;
}

.report-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  border: 1px solid rgba(20, 70, 78, 0.12);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.report-card h3 {
  margin: 0 0 6px;
}

.report-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.report-actions {
  display: flex;
  align-items: start;
  gap: 8px;
}

.small-button {
  min-height: 34px;
  border: 1px solid rgba(20, 70, 78, 0.14);
  border-radius: var(--radius);
  padding: 0 10px;
  color: #294651;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 850;
}

.small-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.empty-state {
  border: 1px dashed rgba(20, 70, 78, 0.22);
  border-radius: var(--radius);
  padding: 22px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.44);
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.toggle-row {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
}

.toggle-row input {
  width: 20px;
  height: 20px;
  accent-color: var(--teal);
}

.toast-host {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 40px));
}

.toast {
  border: 1px solid rgba(20, 70, 78, 0.16);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: #20323c;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(18, 42, 52, 0.18);
  backdrop-filter: blur(18px);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1020px) {
  .metric-grid,
  .target-filter-grid,
  .settings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 780px) {
  .app-background {
    padding: 12px;
  }

  .topbar {
    top: 12px;
    align-items: flex-start;
  }

  .topbar-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .icon-button {
    display: grid;
  }

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

  .sidebar {
    position: fixed;
    inset: 96px 12px auto;
    z-index: 30;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .sidebar.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .section-title,
  .section-actions,
  .form-actions,
  .form-type-switch {
    align-items: stretch;
    flex-direction: column;
  }

  .segmented-control {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chart-controls {
    justify-content: stretch;
  }

  .chart-controls button,
  .compact-field {
    width: 100%;
  }

  .chart-canvas-wrap {
    height: 320px;
  }

  .form-actions button,
  .section-title button,
  .target-filter-grid > button {
    width: 100%;
  }

  .metric-grid,
  .settings-grid,
  .target-filter-grid,
  .form-grid,
  .nested-grid,
  .photo-upload-grid {
    grid-template-columns: 1fr;
  }

  .table-footer,
  .pagination-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .report-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.5rem;
  }

  .panel-pad,
  .report-form {
    padding: 16px;
  }

  .brand-copy {
    max-width: 170px;
  }

  .profile-copy {
    display: none;
  }

  .status-pill {
    font-size: 0.72rem;
  }

  .icon-text-button {
    padding: 0 11px;
  }
}
