:root {
  --wt-blue: #003da5;
  --button-blue: #009ac6;
  --dark-blue: #222d66;
  --ink: #17213a;
  --muted: #6f7b91;
  --line: #e5e9f0;
  --pale: #f4f7fb;
  --white: #ffffff;
  --green: #3c9668;
  --orange: #f98e2b;
  --red: #d44b51;
  --sidebar: #091c4c;
  --sidebar-bright: #123478;
  --shadow: 0 18px 44px rgba(22, 41, 78, 0.08);
  font-family: "Ubuntu", Arial, sans-serif;
  color: var(--ink);
  background: var(--pale);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--pale);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 75px;
  height: auto;
  object-fit: contain;
}

.brand-logo--sidebar {
  width: 66px;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 3px;
  background: var(--button-blue);
  color: var(--white);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.brand-name {
  color: var(--white);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.brand-name span {
  color: var(--button-blue);
}

.eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.eyebrow--blue {
  color: var(--wt-blue);
}

.login-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(390px, 46%) 1fr;
}

.login-brand-panel {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 52px 62px 40px;
  background: linear-gradient(145deg, #06163e 6%, #073485 62%, #0055ac 100%);
  color: var(--white);
}

.login-brand-panel::before {
  position: absolute;
  right: -17%;
  bottom: -18%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.login-brand-panel::after {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.brand-message {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin-top: 80px;
}

.brand-message h1 {
  margin: 16px 0 22px;
  font-size: clamp(45px, 5vw, 72px);
  letter-spacing: -4px;
  line-height: 0.98;
}

.brand-message h1 span {
  color: #53c3df;
}

.brand-message p:last-child {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.65;
}

.brand-grid {
  position: absolute;
  right: -1px;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, 50px);
  opacity: 0.46;
}

.brand-grid span {
  height: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.brand-footer {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.login-form-panel {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: #fbfcfe;
}

.login-card {
  width: min(100%, 420px);
}

.login-mobile-brand {
  display: none;
}

.login-mobile-brand .brand-logo {
  width: 71px;
}

.login-card h2,
.request-modal h2 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 34px;
  letter-spacing: -1.4px;
}

.login-intro {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

label > span:first-child {
  display: block;
  margin-bottom: 8px;
  color: #46536b;
  font-size: 12px;
  font-weight: 700;
}

.login-card label + label {
  display: block;
  margin-top: 18px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d9e0e9;
  border-radius: 5px;
  outline: none;
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  transition: border-color 0.18s, box-shadow 0.18s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--button-blue);
  box-shadow: 0 0 0 3px rgba(0, 154, 198, 0.13);
}

textarea {
  min-height: 92px;
  padding-top: 12px;
  resize: vertical;
}

.password-wrap {
  position: relative;
  display: block;
}

.password-wrap input {
  padding-right: 64px;
}

.text-icon-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--wt-blue);
  font-size: 12px;
  font-weight: 700;
  transform: translateY(-50%);
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 19px 0 22px;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.check-label input {
  width: 15px;
  min-height: 15px;
  margin: 0;
  accent-color: var(--wt-blue);
}

.inline-link {
  color: var(--wt-blue);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

.primary-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  border-radius: 4px;
  padding: 0 18px;
  background: var(--wt-blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
}

.primary-btn:hover {
  background: #002f81;
  transform: translateY(-1px);
}

.primary-btn svg {
  width: 14px;
  height: 14px;
}

.primary-btn--full {
  width: 100%;
}

.request-copy {
  margin: 27px 0 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  color: #7a8597;
  font-size: 11px;
}

.secure-note__icon {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: #e7f5ee;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}

.login-legal {
  position: absolute;
  bottom: 22px;
  margin: 0;
  color: #9ca5b4;
  font-size: 11px;
}

.legal-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: #7b879b;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.legal-link:hover {
  color: var(--wt-blue);
  text-decoration: underline;
}

.portal-shell {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  z-index: 20;
  display: flex;
  width: 240px;
  height: 100vh;
  flex-direction: column;
  padding: 26px 16px 17px;
  background: linear-gradient(180deg, var(--sidebar) 0%, #0c2862 100%);
  color: var(--white);
  transition: transform 0.25s ease;
}

.sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.sidebar-head .brand {
  min-height: 42px;
}

.sidebar-close {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 28px;
}

.portal-label {
  margin: 31px 10px 12px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.portal-label--inline {
  margin: 18px 10px 8px;
}

.main-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-item {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 4px;
  padding: 0 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-align: left;
  transition: background 0.18s, color 0.18s;
}

.nav-item:hover,
.nav-item.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.nav-item.is-active {
  box-shadow: inset 3px 0 0 var(--button-blue);
}

.nav-item svg,
.side-support svg {
  width: 16px;
  height: 16px;
}

.nav-badge {
  min-width: 17px;
  margin-left: auto;
  border-radius: 20px;
  padding: 2px 5px;
  background: var(--button-blue);
  color: white;
  font-size: 9px;
  text-align: center;
}

.nav-badge--warning {
  background: var(--orange);
}

.sidebar-bottom {
  margin-top: auto;
}

.side-support {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  margin: 16px 0;
  padding: 11px 10px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  text-align: left;
}

.side-support__icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 4px;
  background: var(--button-blue);
}

.side-support strong,
.side-support small {
  display: block;
}

.side-support strong {
  margin-bottom: 3px;
  font-size: 11px;
}

.side-support small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
}

.sidebar-meta {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.32);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.9px;
}

.sidebar-meta small {
  font-size: 8px;
  letter-spacing: 0;
}

.app-area {
  min-width: 0;
  flex: 1;
  margin-left: 240px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  height: 73px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 31px;
  background: rgba(255, 255, 255, 0.96);
}

.topbar-left,
.topbar-actions {
  display: flex;
  align-items: center;
}

.topbar-actions {
  gap: 5px;
}

.topbar-kicker {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.topbar h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -0.5px;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: 0;
  margin-right: 16px;
  padding: 4px 0;
  background: transparent;
}

.menu-btn span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--ink);
}

.icon-btn {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #63708a;
}

.icon-btn:hover {
  background: var(--pale);
  color: var(--wt-blue);
}

.icon-btn svg,
.top-search svg {
  width: 18px;
  height: 18px;
}

.notification-btn i {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
}

.notification-btn.is-read i {
  display: none;
}

.profile-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  margin-left: 10px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.avatar {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #e5effe;
  color: var(--wt-blue);
  font-size: 11px;
  font-weight: 700;
}

.profile-copy strong,
.profile-copy small {
  display: block;
}

.profile-copy strong {
  margin-bottom: 3px;
  font-size: 12px;
}

.profile-copy small {
  color: var(--muted);
  font-size: 10px;
}

.chevron {
  margin-left: 4px;
  color: var(--muted);
}

.top-search {
  position: absolute;
  right: 20px;
  left: 20px;
  display: none;
  height: 52px;
  align-items: center;
  gap: 11px;
  border-radius: 5px;
  padding: 0 14px;
  background: var(--white);
}

.top-search.is-open {
  display: flex;
}

.top-search input {
  min-height: 38px;
  flex: 1;
  border: 0;
  box-shadow: none;
}

kbd {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 3px 5px;
  color: var(--muted);
  font-size: 9px;
}

.pop-menu {
  position: absolute;
  top: 64px;
  right: 26px;
  display: none;
  min-width: 240px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pop-menu.is-open {
  display: block;
}

.notification-menu {
  right: 176px;
  width: 330px;
}

.pop-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 14px;
  font-size: 12px;
}

.pop-menu__head button {
  border: 0;
  background: transparent;
  color: var(--wt-blue);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.pop-menu__head button:disabled {
  color: var(--muted);
  cursor: default;
}

.notification-menu a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid #eef1f5;
  padding: 12px 14px;
  color: var(--ink);
  text-decoration: none;
}

.notification-menu a:hover {
  background: var(--pale);
}

.notification-menu a.is-read {
  opacity: 0.62;
}

.notification-menu a.is-read .notice-dot {
  background: #c7d0dc;
}

.notification-empty {
  padding: 14px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.notification-menu strong,
.notification-menu small {
  display: block;
  font-size: 11px;
}

.notification-menu small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.notice-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  margin-top: 3px;
}

.notice-dot--blue {
  background: var(--button-blue);
}

.notice-dot--orange {
  background: var(--orange);
}

.notice-dot--green {
  background: var(--green);
}

.profile-menu {
  padding: 7px;
}

.profile-menu__name {
  border-bottom: 1px solid var(--line);
  margin-bottom: 5px;
  padding: 9px 7px 11px;
}

.profile-menu__name strong,
.profile-menu__name small {
  display: block;
}

.profile-menu__name strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.profile-menu__name small {
  color: var(--muted);
  font-size: 10px;
}

.profile-menu button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 3px;
  padding: 9px 7px;
  background: transparent;
  color: #4e5c72;
  font-size: 11px;
  text-align: left;
}

.profile-menu button:hover {
  background: var(--pale);
  color: var(--wt-blue);
}

.profile-menu svg {
  width: 15px;
  height: 15px;
}

.content {
  padding: 30px;
}

.page-intro,
.section-head,
.section-tools,
.card-top,
.product-title,
.row-actions,
.support-status,
.data-topline,
.document-meta,
.user-copy {
  display: flex;
  align-items: center;
}

.row-actions {
  gap: 10px;
}

.admin-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

td .admin-actions {
  margin-top: 0;
}

.page-intro,
.section-head {
  justify-content: space-between;
}

.page-intro {
  gap: 20px;
  margin-bottom: 25px;
}

.page-intro h1 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 28px;
  letter-spacing: -1.2px;
}

.page-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.outline-btn {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  border: 1px solid #dce3ed;
  border-radius: 4px;
  padding: 0 12px;
  background: var(--white);
  color: #4e5c72;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
}

.outline-btn:hover {
  border-color: var(--button-blue);
  color: var(--wt-blue);
}

.outline-btn svg,
.table-link svg {
  width: 14px;
  height: 14px;
}

.hero-panel {
  display: grid;
  overflow: hidden;
  min-height: 170px;
  grid-template-columns: 1.45fr 0.95fr;
  border-radius: 7px;
  margin-bottom: 22px;
  background: linear-gradient(113deg, #073483, #0052a5);
  box-shadow: var(--shadow);
  color: var(--white);
}

.hero-copy {
  padding: 30px 33px;
}

.hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.hero-copy h2 {
  margin: 11px 0 8px;
  font-size: 25px;
  letter-spacing: -1px;
}

.hero-copy p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.hero-office {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  padding: 24px 31px;
  background: rgba(3, 21, 65, 0.23);
}

.hero-office::after {
  position: absolute;
  right: -52px;
  bottom: -64px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-office small {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.hero-office strong {
  margin-bottom: 7px;
  font-size: 18px;
}

.hero-office span {
  color: rgba(255, 255, 255, 0.71);
  font-size: 11px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 27px;
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 17px 18px;
  background: var(--white);
}

.metric-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 26px;
  letter-spacing: -1px;
}

.metric-card small {
  color: var(--muted);
  font-size: 10px;
}

.metric-card small b {
  color: var(--green);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.75fr);
  gap: 20px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.panel-pad {
  padding: 18px;
}

.section-head {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
}

.section-head h3,
.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.section-head a {
  color: var(--wt-blue);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.section-tools {
  gap: 8px;
}

.compact-select {
  width: auto;
  min-height: 34px;
  padding: 0 28px 0 10px;
  color: #536076;
  font-size: 11px;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 15px;
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.product-card:hover {
  border-color: #b9cbe8;
  box-shadow: 0 10px 24px rgba(32, 63, 113, 0.09);
  transform: translateY(-2px);
}

.product-card::after {
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 85px;
  height: 85px;
  border: 14px solid var(--product-pale);
  border-radius: 50%;
  content: "";
  opacity: 0.62;
}

.card-top {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  gap: 8px;
}

.product-title {
  gap: 10px;
}

.product-logo {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 5px;
  background: var(--product-pale);
  color: var(--product);
  font-size: 12px;
  font-weight: 700;
}

.product-title h4 {
  margin: 0 0 3px;
  color: var(--ink);
  font-size: 13px;
}

.product-title small {
  color: var(--muted);
  font-size: 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  padding: 5px 8px;
  background: #eaf7f0;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-pill::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.status-pill--legacy {
  background: #fef2e5;
  color: #c67621;
}

.status-pill--warning {
  background: #fff5e8;
  color: #be6b16;
}

.status-pill--danger {
  background: #fdeced;
  color: var(--red);
}

.status-pill--neutral {
  background: #f1f4f8;
  color: #667185;
}

.status-pill--blue {
  background: #e9f3ff;
  color: var(--wt-blue);
}

.product-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin-top: 16px;
}

.product-meta small,
.product-meta strong {
  display: block;
}

.product-meta small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-meta strong {
  color: #3c4b64;
  font-size: 11px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th {
  border-bottom: 1px solid var(--line);
  padding: 11px 16px;
  color: #8a94a5;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

td {
  border-bottom: 1px solid #edf0f4;
  padding: 12px 16px;
  color: #566278;
  font-size: 11px;
  white-space: nowrap;
}

td small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}

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

.product-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  background: var(--product);
}

.table-primary {
  color: var(--ink);
  font-weight: 700;
}

.table-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--wt-blue);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.table-link:hover {
  color: var(--button-blue);
}

.support-card {
  overflow: hidden;
  background: linear-gradient(153deg, #102f72, #071b4b);
  color: var(--white);
}

.support-card__top {
  padding: 20px;
}

.support-card .eyebrow {
  color: rgba(255, 255, 255, 0.56);
}

.support-card h3 {
  margin: 10px 0 7px;
  font-size: 20px;
  letter-spacing: -0.7px;
}

.support-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  line-height: 1.6;
}

.support-status {
  gap: 6px;
  margin: 17px 0;
  color: #91ddb5;
  font-size: 10px;
  font-weight: 700;
}

.support-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5bc88d;
}

.support-card .primary-btn {
  width: 100%;
  background: var(--button-blue);
}

.support-card .primary-btn:hover {
  background: #0087ad;
}

.support-card__foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.12);
}

.support-card__foot div {
  padding: 14px 18px;
}

.support-card__foot div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.support-card__foot small,
.support-card__foot strong {
  display: block;
}

.support-card__foot small {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.support-card__foot strong {
  font-size: 11px;
}

.update-list {
  padding: 4px 16px 9px;
}

.update-item {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #edf0f4;
  padding: 12px 0;
}

.update-item:last-child {
  border-bottom: 0;
}

.update-item .notice-dot {
  margin-top: 5px;
}

.update-item strong,
.update-item small {
  display: block;
}

.update-item strong {
  color: var(--ink);
  font-size: 11px;
  line-height: 1.35;
}

.update-item small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
}

.filter-btn {
  min-height: 31px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0 11px;
  background: var(--white);
  color: #617087;
  font-size: 10px;
  font-weight: 700;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: #c7d8f3;
  background: #eaf2ff;
  color: var(--wt-blue);
}

.module-panel {
  margin-top: 20px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.module-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 15px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.module-card:hover {
  border-color: #bfd3ef;
  box-shadow: 0 10px 24px rgba(32, 63, 113, 0.08);
  transform: translateY(-2px);
}

.module-card > span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 4px;
  margin-bottom: 14px;
  background: #eaf2ff;
  color: var(--wt-blue);
}

.module-card svg {
  width: 16px;
  height: 16px;
}

.module-card strong {
  margin-bottom: 7px;
  font-size: 12px;
}

.module-card small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

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

.full-product-grid .product-card {
  min-height: 172px;
}

.data-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 17px;
  background: var(--white);
}

.data-topline {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}

.data-topline h3 {
  margin: 0;
  font-size: 14px;
}

.data-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

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

.data-field small,
.data-field strong {
  display: block;
}

.data-field small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.data-field strong {
  color: #46536a;
  font-size: 11px;
}

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

.document-row {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 13px 15px;
  background: var(--white);
}

.document-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 4px;
  background: #edf4ff;
  color: var(--wt-blue);
}

.document-icon svg {
  width: 17px;
  height: 17px;
}

.document-copy {
  min-width: 0;
  flex: 1;
}

.document-copy h3 {
  overflow: hidden;
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.document-meta {
  flex-wrap: wrap;
  gap: 6px 12px;
  color: var(--muted);
  font-size: 10px;
}

.doc-type {
  border-radius: 20px;
  padding: 4px 7px;
  background: #f1f4f8;
  color: #637089;
  font-size: 9px;
  font-weight: 700;
}

.user-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
}

.user-row:last-child {
  border-bottom: 0;
}

.user-copy {
  min-width: 0;
  flex: 1;
  justify-content: space-between;
  gap: 14px;
}

.user-copy strong,
.user-copy small {
  display: block;
}

.user-copy strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 12px;
}

.user-copy small {
  color: var(--muted);
  font-size: 10px;
}

.announcement {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  background: var(--white);
}

.announcement + .announcement {
  margin-top: 12px;
}

.announcement-date {
  color: var(--wt-blue);
  text-align: center;
}

.announcement-date strong,
.announcement-date small {
  display: block;
}

.announcement-date strong {
  font-size: 24px;
}

.announcement-date small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.announcement h3 {
  margin: 0 0 7px;
  font-size: 14px;
}

.announcement p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.announcement .doc-type {
  display: inline-block;
  margin-top: 12px;
}

.support-page-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 18px;
}

.support-page-card {
  padding: 22px;
}

.support-page-card h2,
.support-page-card h3 {
  margin: 0 0 10px;
}

.support-page-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.account-card--wide {
  grid-column: 1 / -1;
}

.account-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.account-form--grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.account-form label {
  display: grid;
  gap: 7px;
}

.account-form label span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-form button {
  justify-self: start;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 19px 0;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  font-size: 11px;
}

.info-list span {
  color: var(--muted);
}

.info-list strong {
  color: #46536a;
  text-align: right;
}

.modal-backdrop {
  position: fixed;
  z-index: 90;
  display: grid;
  inset: 0;
  place-items: center;
  padding: 20px;
  background: rgba(4, 16, 48, 0.66);
}

.request-modal {
  position: relative;
  width: min(100%, 500px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 7px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.admin-modal {
  width: min(100%, 720px);
}

.privacy-modal {
  width: min(100%, 760px);
}

.request-modal p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 27px;
}

.request-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin: 20px 0;
}

.admin-form-grid {
  align-items: end;
}

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

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

.empty-state {
  border: 1px dashed #d8e0eb;
  border-radius: 5px;
  padding: 16px;
  color: var(--muted);
  background: #fbfcfe;
  font-size: 12px;
  line-height: 1.6;
}

.privacy-check {
  align-items: flex-start;
  line-height: 1.5;
}

.privacy-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.privacy-summary article {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 14px;
  background: #fbfcfe;
}

.privacy-summary h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 13px;
}

.privacy-summary p {
  margin: 0;
  font-size: 12px;
}

.privacy-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding-top: 15px;
  color: var(--muted);
  font-size: 12px;
}

.privacy-contact a {
  color: var(--wt-blue);
  font-weight: 700;
  text-decoration: none;
}

.privacy-contact a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  z-index: 70;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  max-width: 980px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(0, 61, 165, 0.18);
  border-radius: 7px;
  margin: 0 auto;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(16, 36, 80, 0.18);
}

.cookie-banner h2 {
  margin: 4px 0 7px;
  color: var(--ink);
  font-size: 18px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.toast {
  position: fixed;
  z-index: 110;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100vw - 44px));
  border-radius: 5px;
  padding: 13px 16px;
  background: #132552;
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s, transform 0.2s;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .full-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .login-shell {
    grid-template-columns: minmax(310px, 40%) 1fr;
  }

  .login-brand-panel {
    padding: 40px 34px;
  }

  .brand-message h1 {
    font-size: 48px;
    letter-spacing: -2.8px;
  }

  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.is-open {
    box-shadow: 16px 0 40px rgba(0, 0, 0, 0.18);
    transform: translateX(0);
  }

  .sidebar-close,
  .menu-btn {
    display: flex;
  }

  .app-area {
    margin-left: 0;
  }

  .dashboard-grid,
  .support-page-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .login-shell {
    display: block;
  }

  .login-brand-panel {
    display: none;
  }

  .login-form-panel {
    padding: 22px;
  }

  .login-mobile-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 45px;
  }

  .content {
    padding: 19px;
  }

  .topbar {
    padding: 0 18px;
  }

  .profile-copy,
  .chevron {
    display: none;
  }

  .profile-btn {
    margin-left: 4px;
  }

  .notification-menu {
    right: 12px;
    width: min(330px, calc(100vw - 24px));
  }

  .profile-menu {
    right: 12px;
  }

  .page-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 24px;
  }

  .hero-office {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
    padding: 19px 24px;
  }

  .metrics {
    gap: 10px;
  }

  .metric-card {
    padding: 14px;
  }

  .metric-card strong {
    font-size: 23px;
  }

  .product-grid,
  .full-product-grid,
  .module-grid,
  .data-grid,
  .account-form--grid,
  .privacy-summary {
    grid-template-columns: 1fr;
  }

  .document-row {
    gap: 10px;
    padding: 12px;
  }

  .document-row .outline-btn {
    width: 34px;
    min-height: 34px;
    overflow: hidden;
    padding: 0 9px;
    white-space: nowrap;
  }
}
