:root {
  --purple: #9e66d8;
  --purple-light: #af7ae6;
  --purple-pale: #c99ef0;
  --blue: #4e3fb7;
  --ink: #231f20;
  --lavender: #e3dfff;
  --wash: #f2f0ff;
  --white: #ffffff;
  --gray-border: #e8e5f0;
  --gray-text: #6b6578;
  --gray-light: #f7f6fb;
  --border: #e8e5f0;
  --surface-1: #f7f6fb;
  --surface-2: #ffffff;
  --text-primary: #231f20;
  --text-secondary: #6b6578;
  --text-muted: #9896a0;
  --text-accent: #695bcd;
  --bg-accent: #f2f0ff;
  --radius: 8px;
}
.mamsys-header--2026 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 400ms ease;
  border-radius: 0 0 16px 16px;
}
.mamsys-header--scrolled {
  background: var(--white);
  border-radius: 0 0 16px 16px;
  box-shadow:
    0 2px 24px rgba(158, 102, 216, 0.1),
    0 1px 4px rgba(35, 31, 32, 0.06);
  transition: background 400ms ease;
}

.demo-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  text-align: center;
  width: 100%;
  margin-bottom: -1rem;
}
.dropdown-menu {
  display: none;
}
.dropdown-menu.show {
  display: block;
}
.nav-wrapper {
  width: 100%;
}
.nav-topbar {
  display: flex;
  align-items: center;
  height: 67px;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 2rem;
}
.nav-logo-mark {
  width: 30px;
  height: 30px;
  background: var(--purple);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark svg {
  width: 16px;
  height: 16px;
}
.nav-logo-text {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-logo-text span {
  color: var(--purple);
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  margin: 0 1rem;
  height: 48px;
  font-size: 1.125rem;
  font-weight: 600;
  width: auto;
  /* color: var(--gray-text); */
  color: #231f20;
  background: transparent;
  cursor: pointer;
  border-bottom: 4px solid transparent;
  transition: color 0.15s;
  white-space: nowrap;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
}
#mobile-nav .nav-item {
  height: auto;
  border-bottom: 1px solid var(--gray-border);
  margin: 0;
  padding: 12px 16px;
  white-space: normal;
}
.nav-item:hover {
  color: var(--ink);
}
.nav-item.active {
  color: var(--purple);
  border-bottom-color: var(--purple);
}
.nav-item svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-item.active svg {
  transform: rotate(180deg);
}
.nav-cta {
  margin-left: auto;
  background: var(--purple);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--blue);
}
.expertise-dropdown {
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  border-radius: 0 0 16px 16px;
  display: none;
  flex-direction: column;
}
.tab-bar {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--gray-border);
  padding: 0 1.5rem;
  gap: 0;
  flex-shrink: 0;
}
.tab-btn {
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  height: 44px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-text);
  cursor: pointer;
  border: none;
  background: 0 0;
  margin-bottom: -1px;
  transition:
    color 0.15s,
    border-color 0.15s;
  white-space: nowrap;
}
.tab-btn:hover {
  color: var(--ink);
}
.tab-btn.active {
  color: var(--purple);
  border-bottom-color: var(--purple);
}
.dropdown-body {
  display: flex;
  flex: 1;
  min-height: 340px;
}
.rail {
  width: 280px;
  flex-shrink: 0;
  background: var(--gray-light);
  border-right: 1px solid var(--gray-border);
  border-radius: 0 0 0 16px;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0;
}
.rail-group {
  display: none;
  flex-direction: column;
}
.rail-group.active {
  display: flex;
}
.rail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-text);
  cursor: pointer;
  border: none;
  border-left: 2px solid transparent;
  background: 0 0;
  transition: 0.12s;
  text-align: left;
  width: 100%;
}
.rail-item svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}
.rail-item:hover {
  color: var(--ink);
  background: var(--lavender);
}
.rail-item.active {
  color: var(--purple);
  background: var(--white);
  border-left-color: var(--purple);
}
.rail-item.active svg {
  stroke: var(--purple);
}
.rail-footer {
  margin-top: auto;
  padding: 0.75rem 0 0;
  border-top: 1px solid var(--gray-border);
}
.rail-quick-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  transition: color 0.12s;
}
.rail-quick-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 1.8;
}
.rail-quick-link:hover {
  color: var(--blue);
}
.panels {
  flex: 1;
  min-width: 0;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.panel {
  display: none;
}
.panel.active {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.panel-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
}
.panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  height: 48px;
  border-bottom: 0.5px solid var(--border);
  flex-shrink: 0;
  background: var(--surface-2);
  position: sticky;
  top: 0;
  z-index: 5;
}
.panel-tagline {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.5;
  margin-top: 2px;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.svc-item {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-text);
  padding: 6px 10px;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  text-decoration: none;
  transition: 0.12s;
  line-height: 1.7;
}
.svc-item:hover {
  color: var(--purple);
  border-color: var(--purple);
  background: var(--wash);
}
.ind-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.ind-services-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 0.5rem;
}
.ind-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
.ind-svc {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-text);
  padding: 5px 8px;
  border: 1px solid var(--gray-border);
  border-radius: 7px;
  text-decoration: none;
  transition: 0.12s;
  line-height: 1.7;
}
.ind-svc:hover {
  color: var(--purple);
  border-color: var(--purple);
  background: var(--wash);
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.more-card {
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  text-decoration: none;
  display: block;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.more-card:hover {
  border-color: var(--purple);
  background: var(--wash);
}
.more-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}
.more-card-desc {
  font-size: 11px;
  color: var(--gray-text);
  line-height: 1.35;
  margin-bottom: 5px;
}
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.badge-cs {
  background: var(--lavender);
  color: var(--blue);
}
.badge-speak {
  background: var(--ink);
  color: var(--purple-pale);
}
.proof-strip {
  border-top: 1px solid var(--gray-border);
  padding-top: 1rem;
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}
.proof-label-vert {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  flex-shrink: 0;
  align-self: center;
}
.proof-cards {
  display: flex;
  gap: 0.75rem;
  flex: 1;
}
.proof-card {
  flex: 1;
  background: var(--wash);
  border: 1px solid var(--lavender);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  text-decoration: none;
  display: block;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.proof-card:hover {
  border-color: var(--purple);
  background: var(--lavender);
}
.proof-card-eye {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 6px;
}
@media screen and (max-width: 380px) {
  .proof-card-eye {
    font-size: 0.65rem;
  }
}
.proof-card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 6px;
}
.proof-card-outcome {
  font-size: 0.75rem;
  color: var(--gray-text);
  line-height: 1.3;
}
.proof-card-cta {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple);
  margin-top: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.proof-card.dark {
  background: var(--primary);
  border-color: var(--primary);
}
.proof-card.dark:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.proof-card.dark .proof-card-eye {
  color: var(--white);
}
.proof-card.dark .proof-card-title {
  color: var(--white);
}
.proof-card.dark .proof-card-outcome {
  color: rgba(255, 255, 255, 0.6);
}
.proof-card.dark .proof-card-cta {
  color: var(--white);
}
.partners-dropdown {
  background: var(--white);
  display: none;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--gray-border);
  border-radius: 0 0 16px 16px;
}
.pd-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.pd-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.pd-all-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
}
.pd-all-link:hover {
  color: var(--blue);
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.875rem;
}
.partner-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 1rem 1rem 0.875rem;
  position: relative;
  background: var(--white);
  transition:
    border-color 0.25s,
    background 0.25s;
}
.partner-card:hover {
  border-color: var(--purple);
  background: var(--wash);
}
.partner-card:hover::before {
  opacity: 1;
}
.partner-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--card-bg, var(--wash));
  border: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--card-accent, var(--purple));
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.partner-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.partner-desc {
  font-size: 11px;
  color: var(--gray-text);
  line-height: 1.45;
  margin-bottom: 0.6rem;
}
.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.partner-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  background: var(--lavender);
  color: var(--blue);
  letter-spacing: 0.03em;
}
.partner-cta {
  font-size: 11px;
  font-weight: 700;
  color: var(--purple);
  margin-top: 0.6rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.15s;
}
.partner-card:hover .partner-cta {
  opacity: 1;
}
.pd-footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pd-footer-text {
  font-size: 13px;
  color: var(--gray-text);
}
.pd-footer-text strong {
  color: var(--ink);
  font-weight: 600;
}
.pd-footer-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--ink);
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.pd-footer-cta:hover {
  background: var(--blue);
}
.tech-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.tech-group {
  display: flex;
  flex-direction: column;
}
.tech-col-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.3rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--lavender);
}
.tech-col-tagline {
  font-size: 11px;
  color: var(--gray-text);
  font-weight: 400;
  margin-bottom: 0.55rem;
  line-height: 1.35;
}
.tech-item {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-text);
  padding: 4px 0 4px 10px;
  border-left: 1.5px solid transparent;
  text-decoration: none;
  transition: 0.12s;
  line-height: 1.35;
}
.tech-item:hover {
  color: var(--purple);
  border-left-color: var(--purple);
  padding-left: 14px;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.industry-card {
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 0.75rem;
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s;
  text-decoration: none;
  display: block;
}
.industry-card:hover {
  border-color: var(--purple);
  background: var(--wash);
}
.industry-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.industry-card-desc {
  font-size: 11px;
  color: var(--gray-text);
  line-height: 1.3;
  margin-bottom: 7px;
}
.industry-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.industry-badge.cs {
  background: var(--lavender);
  color: var(--blue);
}
.industry-badge.speak {
  background: var(--ink);
  color: #fff;
}
.page-hero {
  width: 100%;
  max-width: 1200px;
  background: #fff;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  opacity: 0.3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hero-text h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.hero-text h1 span {
  color: var(--purple);
}
.hero-text p {
  font-size: 15px;
  color: var(--gray-text);
  max-width: 480px;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-shrink: 0;
}
.hero-stat {
  background: var(--wash);
  border: 1px solid var(--lavender);
  border-radius: 14px;
  padding: 1.25rem 1.75rem;
  text-align: center;
}
.hero-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}
.servicenow-header__burger {
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s;
}
.servicenow-header__burger:hover {
  background-color: #f5f4f9;
}
.servicenow-header__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #1a1633;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.servicenow-header__burger[aria-expanded="true"]
  .servicenow-header__burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.servicenow-header__burger[aria-expanded="true"]
  .servicenow-header__burger-line:nth-child(2) {
  opacity: 0;
}
.servicenow-header__burger[aria-expanded="true"]
  .servicenow-header__burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.mamsys-header--mobile {
  display: none;
}
.mobile--panel-track {
  display: flex;
  flex: 1;
  overflow: hidden;
  position: relative;
}
.mobile-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface-2);
  overflow-y: auto;
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.mobile-panel.slide-out {
  transform: translateX(-30%);
}
.mobile-panel.slide-in {
  transform: translateX(100%);
}
.mobile-panel.active {
  transform: translateX(0);
}
.mobile-panel--header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  height: 48px;
  border-bottom: 0.5px solid var(--border);
  flex-shrink: 0;
  background: var(--surface-2);
  position: sticky;
  top: 0;
  z-index: 5;
}
.nav-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fcfcfb;
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  color: #231f20;
}
.nav-item-text {
  font-size: 0.875rem;
  color: var(--text-primary);
  font-weight: 400;
}
.nav-item-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1px;
  font-weight: 400;
}
.nav-item-chevron {
  color: var(--text-muted);
}
.nav-item.top-level .nav-item-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
  color: #231f20;
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 14px 16px 4px;
  text-transform: uppercase;
}
.sub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 0.5px solid var(--border);
  cursor: pointer;
  transition: background 0.12s;
  text-decoration: none;
}
.sub-link:hover {
  background: var(--surface-1);
}
.sub-link-text {
  text-decoration: none;
  font-size: 14px;
  color: var(--text-primary);
}
.sub-link-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1px;
}
.sub-link i {
  font-size: 14px;
  color: var(--text-muted);
}
@media screen and (max-width: 992px) {
  .expertise-dropdown,
  .partners-dropdown {
    display: none !important;
  }
  .nav-links,
  .nav-topbar .button-first {
    display: none;
  }
  .mamsys-header--2026 {
    background: var(--white);
    border-radius: 0 0 16px 16px;
    box-shadow:
      0 2px 24px rgba(158, 102, 216, 0.1),
      0 1px 4px rgba(35, 31, 32, 0.06);
  }
}
.servicenow-header__mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc(100% - 3rem);
  background: #fff;
  z-index: 9994;
  display: flex;
  flex-direction: column;
  overflow: visible;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.servicenow-header__mobile-nav.is-open {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.back-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius);
  color: var(--text-accent);
  font-size: 16px;
  border: none;
  background: 0 0;
  flex-shrink: 0;
}
.back-btn:hover {
  background: var(--bg-accent);
}
#mobile-nav .nav-outer,
#mobile-nav .panel-track {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 0;
  height: 100%;
  width: 100%;
}
#mobile-nav .panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
  background: #fff;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}
#mobile-nav .panel.active {
  transform: translateX(0);
  visibility: visible;
}
#mobile-nav .panel.slide-out {
  transform: translateX(-30%);
  visibility: visible;
}
#mobile-nav .panel.slide-in {
  transform: translateX(100%);
  visibility: hidden;
}
#mobile-nav .panel-scroll {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}
.direct-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1.12rem;
  font-weight: 700;
  color: #231f20;
  border-bottom: 0.5px solid var(--border);
  text-decoration: none;
  transition: background 0.12s;
}
.direct-link:hover {
  text-decoration: none;
  background: var(--surface-1);
}
.direct-link i {
  font-size: 17px;
  color: inherit;
}
.direct-link span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}
.nav-footer {
  flex-shrink: 0;
  padding: 14px 16px;
  border-top: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  background: #fff;
}
.offset-mobile-menu__close {
  position: absolute;
  left: -3rem;
  top: 0;
  background: #695bcd;
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.offset-mobile-menu__close button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgba(0, 0, 0, 0);
  border: none;
  color: inherit;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font: inherit;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
.primary-nav__overlay {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  top: 0;
  left: -100%;
  transition: background 0.6s;
  z-index: 9993;
  cursor: pointer;
}
.primary-nav__overlay--visible {
  background: rgba(0, 0, 0, 0.3);
  left: 0;
}
.mn-close-btn {
  position: fixed;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  background: #695bcd;
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  z-index: 9996;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mn-close-btn:hover {
  background: #4e3fb7;
}
.mn-close-btn.visible {
  display: flex;
}
.off-canvas-menu--careers .off-canvas-menu__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 2.5rem 1.25rem 2rem 1rem;
  position: relative;
}
.offset-mobile-menu__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding-inline: 1rem;
  position: relative;
  border-bottom: 1px solid var(--gray-border);
}
.nav-item-chevron {
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.panel-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  flex: 1;
}
.nav-footer--button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px solid #695bcd;
  background-color: #695bcd;
  border-radius: var(--radius);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 12px 0;
  width: 100%;
}
.nav-footer--button:hover {
  background-color: #4e3fb7;
}
.nav-footer--button-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px solid #231f20;
  background-color: #231f20;
  border-radius: var(--radius);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 12px 0;
  width: 100%;
}
.mn-partner-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-border);
  text-decoration: none;
  transition: background 0.12s;
}
.mn-partner-row:hover {
  background: var(--wash);
}
.mn-partner-logo {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid var(--gray-border);
}
.mn-partner-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.mn-partner-desc {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.4;
}
.mn-logo-row {
  padding: 16px 16px 8px;
  border-bottom: 1px solid var(--gray-border);
  margin-bottom: 4px;
}
/*# sourceMappingURL=header-2026.min.css.map */
