.home-page-final {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  align-items: flex-start;
  position: relative;
  background-color: #ffffff;
  overflow-x: hidden;
}

.home-page-final .frame {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.home-page-final .frame-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 12px 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #060606;
}

.home-page-final .div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home-page-final .buttons-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--3-spacing-spacing-xs);
  position: relative;
  flex: 0 0 auto;
  border-radius: var(--2-radius-radius-md);
  overflow: hidden;
}

.home-page-final .img {
  position: relative;
  width: 20px;
  height: 20px;
}

.home-page-final .text-padding {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px var(--3-spacing-spacing-xxs) 0px var(--3-spacing-spacing-xxs);
  position: relative;
  flex: 0 0 auto;
}

.home-page-final .text {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  color: var(--colors-global-white);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}

.home-page-final .line {
  position: relative;
  width: 1px;
  height: 16px;
  object-fit: cover;
}

.home-page-final .navbar-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
  padding: 14px clamp(24px, 5vw, 80px);
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  box-sizing: border-box;
  min-height: 72px;
  overflow: visible;
}

.home-page-final .navbar-final__logo {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  z-index: 1;
}

/* Nav sits in center column — aligned between logo and Login (not viewport-centered) */
.home-page-final .navbar-final__nav {
  grid-column: 2;
  justify-self: center;
  position: relative;
  left: auto;
  transform: none;
  z-index: 5;
  overflow: visible;
}

.home-page-final .navbar-final__actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0;
  position: relative;
  /* Above .navbar-final__nav (z-index 5) so wide primary nav cannot steal clicks from Login */
  z-index: 10;
}

/* Hamburger button — hidden on desktop */
.home-page-final .nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
}

.home-page-final .nav-hamburger span {
  display: block;
  height: 2px;
  background-color: #373940;
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Mobile nav drawer */
/* Mobile nav drawer */
.home-page-final .mobile-nav-drawer {
  display: none;
  flex-direction: column;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 8px 24px 24px;
  gap: 0;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 300;
}

.home-page-final .mobile-nav-drawer.open {
  display: flex;
}

/* Plain nav links (About Us) */
.home-page-final .mobile-nav-drawer>a.mobile-nav-item {
  display: flex;
  align-items: center;
  padding: 14px 0;
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #373940;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
}

.home-page-final .mobile-nav-drawer>a.mobile-nav-item:hover {
  color: #5b7d99;
}

.home-page-final .mobile-nav-login {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.home-page-final .mobile-nav-login .text-padding-wrapper {
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

.home-page-final .element {
  position: relative;
  width: 119.43px;
  height: 58.08px;
  aspect-ratio: 2.06;
  object-fit: cover;
}

.home-page-final .frame-2 {
  display: inline-flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: 8px 0;
  position: relative;
  flex: 0 0 auto;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-page-final .div-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.home-page-final .text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #373940;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.4;
  white-space: nowrap;
  font-style: normal;
}

.home-page-final .frame-3 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  flex: 0 0 auto;
}

/* Primary nav — dropdown menus (For Issuers / For Shareholders)
   Do not use padding-bottom on this wrapper — it made the row taller than plain links and misaligned
   “For Issuers / For Shareholders” vs About Us / Contact Us (centered flex items). */
.home-page-final .nav-dropdown {
  position: relative;
}

/* Invisible hit strip under the trigger: keeps :hover when moving to the panel (no layout height). */
.home-page-final .nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
  z-index: 1;
  pointer-events: auto;
}

.home-page-final .nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: inherit;
}

.home-page-final .nav-dropdown__trigger:focus-visible {
  outline: 2px solid var(--colors-primary-primary-400, #6b93b3);
  outline-offset: 3px;
  border-radius: 4px;
}

.home-page-final .nav-dropdown__chev {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  transform: rotate(0deg);
}

.home-page-final .nav-dropdown:hover .nav-dropdown__chev,
.home-page-final .nav-dropdown:focus-within .nav-dropdown__chev {
  transform: rotate(180deg);
}

.home-page-final .nav-dropdown.nav-dropdown--current>.nav-dropdown__trigger {
  color: #000000;
  font-weight: 700;
}

.home-page-final .nav-dropdown.nav-dropdown--current>.nav-dropdown__trigger .nav-dropdown__chev {
  opacity: 1;
}

.home-page-final .nav-dropdown__panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  max-width: min(400px, 94vw);
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow:
    0 8px 28px rgba(15, 23, 42, 0.1),
    0 2px 8px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(15, 23, 42, 0.04);
  padding: 8px 0 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
  z-index: 400;
  pointer-events: none;
}

.home-page-final .nav-dropdown__panel--issuers {
  min-width: 320px;
}

.home-page-final .nav-dropdown__panel--shareholders {
  min-width: 360px;
}

.home-page-final .nav-dropdown__panel--contact {
  min-width: 260px;
}

.home-page-final .nav-dropdown:hover .nav-dropdown__panel,
.home-page-final .nav-dropdown:focus-within .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.home-page-final .nav-dropdown__label {
  margin: 0;
  padding: 10px 16px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
}

.home-page-final .nav-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-page-final .nav-dropdown__list li {
  margin: 0 16px;
  padding: 0;
}

.home-page-final .nav-dropdown__list li:not(:last-child) {
  border-bottom: 1px solid #ececec;
}

.home-page-final .nav-dropdown__list a {
  display: block;
  padding: 14px 0;
  font-family: var(--text-sm-regular-font-family);
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: background-color 0.12s ease;
  border-radius: 4px;
}

.home-page-final .nav-dropdown__list a:hover,
.home-page-final .nav-dropdown__list a:focus-visible {
  background-color: #f8fafc;
  outline: none;
}

/* Mobile drawer — expandable menus */
.home-page-final .mobile-nav-details {
  border-bottom: 1px solid #f0f0f0;
}

.home-page-final .mobile-nav-details.mobile-nav-details--current>.mobile-nav-details__summary {
  color: #5b7d99;
  font-weight: 600;
}

.home-page-final .mobile-nav-details__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #373940;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.home-page-final .mobile-nav-details__summary::-webkit-details-marker {
  display: none;
}

/* Consistent chevron arrow for all <details> items */
.home-page-final .mobile-nav-details__summary::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.home-page-final .mobile-nav-details[open]>.mobile-nav-details__summary::after {
  transform: rotate(-135deg);
}

.home-page-final .mobile-nav-details__body {
  padding: 4px 0 16px 4px;
}

.home-page-final .mobile-nav-details__label {
  margin: 0 0 8px;
  padding: 4px 8px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
}

.home-page-final .mobile-nav-details__link {
  display: block;
  padding: 11px 10px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #373940;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
}

.home-page-final .mobile-nav-details__link:last-child {
  border-bottom: none;
}

.home-page-final .mobile-nav-details__link:hover,
.home-page-final .mobile-nav-details__link:focus-visible {
  color: var(--colors-primary-primary-600, #5b7d99);
  outline: none;
}

.home-page-final .majesticons-chevron {
  position: relative;
  width: 14px;
  height: 14px;
  aspect-ratio: 1;
}

.home-page-final .buttons-button-wrapper {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.home-page-final .text-padding-wrapper {
  all: unset;
  box-sizing: border-box;
  display: flex;
  width: 139px;
  gap: var(--3-spacing-spacing-xs);
  padding: 10px 14px;
  background-color: var(--colors-primary-primary-500);
  border-radius: 99px;
  border: 1px solid;
  box-shadow: var(--shadows-shadow-xs);
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-color: var(--colors-primary-primary-500);
}

.home-page-final .text-2 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--text-sm-medium-font-family);
  font-weight: var(--text-sm-medium-font-weight);
  color: var(--1-color-modes-component-colors-components-buttons-primary-button-primary-fg);
  font-size: var(--text-sm-medium-font-size);
  letter-spacing: var(--text-sm-medium-letter-spacing);
  line-height: var(--text-sm-medium-line-height);
  white-space: nowrap;
  font-style: var(--text-sm-medium-font-style);
}

.home-page-final .frame-4 {
  display: flex;
  align-items: center;
  gap: 54px;
  padding: 40px 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #f9f9f9;
  box-sizing: border-box;
}

.home-page-final .frame-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.home-page-final .frame-6 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home-page-final .p {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: var(--colors-nuetral-nuetral-900);
  font-size: 54px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page-final .transfer-online-is {
  position: relative;
  align-self: stretch;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: var(--colors-nuetral-nuetral-900);
  font-size: 18px;
  letter-spacing: 0;
  line-height: 27px;
}

.home-page-final .buttons-button-2 {
  display: inline-flex;
  gap: 10px;
  padding: var(--3-spacing-spacing-xl) 22px var(--3-spacing-spacing-xl) 22px;
  flex: 0 0 auto;
  background-color: var(--colors-primary-primary-500);
  border-radius: 99px;
  border: 1px solid;
  box-shadow: var(--shadows-shadow-xs);
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-color: var(--colors-primary-primary-500);
}

.home-page-final .text-3 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  color: var(--1-color-modes-component-colors-components-buttons-primary-button-primary-fg);
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}

.home-page-final .img-2 {
  position: relative;
  width: 24px;
  height: 24px;
}

.home-page-final .illustration {
  position: relative;
  width: 537.29px;
  height: 511px;
}

.home-page-final .frame-7 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 40px;
  padding: 100px 80px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
  box-sizing: border-box;
}

.home-page-final .div-2 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Roboto", Helvetica;
  font-weight: 500;
  color: var(--colors-nuetral-nuetral-900);
  font-size: 48px;
  text-align: center;
  letter-spacing: -0.96px;
  line-height: 60px;
}

.home-page-final .span {
  color: #373940;
  letter-spacing: -0.46px;
}

.home-page-final .text-wrapper-2 {
  color: #53728b;
  letter-spacing: var(--display-lg-medium-letter-spacing);
  font-family: var(--display-lg-medium-font-family);
  font-style: var(--display-lg-medium-font-style);
  font-weight: var(--display-lg-medium-font-weight);
  line-height: var(--display-lg-medium-line-height);
  font-size: var(--display-lg-medium-font-size);
}

.home-page-final .frame-8 {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home-page-final .frame-9 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.home-page-final .frame-10 {
  position: relative;
  width: 60px;
  height: 60px;
  z-index: 1;
  background-color: #53728b33;
  border-radius: 99px;
  overflow: hidden;
  border: 1px solid;
  border-color: var(--colors-primary-primary-100);
}

.home-page-final .frame-11 {
  position: relative;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--colors-primary-primary-500);
  border-radius: 99px;
  overflow: hidden;
  aspect-ratio: 1;
}

.home-page-final .text-wrapper-3 {
  margin-top: 0.8px;
  height: 38px;
  margin-left: 0.7px;
  width: 18px;
  font-family: var(--display-sm-medium-font-family);
  font-weight: var(--display-sm-medium-font-weight);
  color: #ffffff;
  font-size: var(--display-sm-medium-font-size);
  letter-spacing: var(--display-sm-medium-letter-spacing);
  line-height: var(--display-sm-medium-line-height);
  white-space: nowrap;
  font-style: var(--display-sm-medium-font-style);
}

.home-page-final .frame-12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 60px 40px 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin-top: -32px;
  z-index: 0;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid;
  border-color: var(--colors-primary-primary-100);
  box-shadow:
    0px 1px 2px #e6f2f21f,
    0px 1px 3px #1018281a;
}

.home-page-final .frame-13 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home-page-final .text-wrapper-4 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--text-xl-semibold-font-family);
  font-weight: var(--text-xl-semibold-font-weight);
  color: var(--colors-nuetral-nuetral-900);
  font-size: var(--text-xl-semibold-font-size);
  text-align: center;
  letter-spacing: var(--text-xl-semibold-letter-spacing);
  line-height: var(--text-xl-semibold-line-height);
  font-style: var(--text-xl-semibold-font-style);
}

.home-page-final .text-wrapper-5 {
  position: relative;
  align-self: stretch;
  font-family: var(--text-md-regular-font-family);
  font-weight: var(--text-md-regular-font-weight);
  color: var(--colors-nuetral-nuetral-700);
  font-size: var(--text-md-regular-font-size);
  text-align: center;
  letter-spacing: var(--text-md-regular-letter-spacing);
  line-height: var(--text-md-regular-line-height);
  font-style: var(--text-md-regular-font-style);
}

.home-page-final .frame-14 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 54px;
  padding: 100px 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #f5f5f5;
  border-radius: 48px;
  overflow: hidden;
}

.home-page-final .frame-15 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 54px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home-page-final .frame-16 {
  display: flex;
  align-items: flex-start;
  gap: 54px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home-page-final .everything-you-need {
  position: relative;
  width: 630px;
  margin-top: -1px;
  font-family: var(--display-lg-medium-font-family);
  font-weight: var(--display-lg-medium-font-weight);
  color: var(--colors-nuetral-nuetral-900);
  font-size: var(--display-lg-medium-font-size);
  letter-spacing: var(--display-lg-medium-letter-spacing);
  line-height: var(--display-lg-medium-line-height);
  font-style: var(--display-lg-medium-font-style);
}

.home-page-final .text-wrapper-6 {
  color: #373940;
  letter-spacing: var(--display-lg-medium-letter-spacing);
  font-family: var(--display-lg-medium-font-family);
  font-style: var(--display-lg-medium-font-style);
  font-weight: var(--display-lg-medium-font-weight);
  line-height: var(--display-lg-medium-line-height);
  font-size: var(--display-lg-medium-font-size);
}

.home-page-final .text-wrapper-7 {
  position: relative;
  width: 588px;
  margin-top: -1px;
  font-family: var(--text-lg-regular-font-family);
  font-weight: var(--text-lg-regular-font-weight);
  color: var(--colors-nuetral-nuetral-900);
  font-size: var(--text-lg-regular-font-size);
  letter-spacing: var(--text-lg-regular-letter-spacing);
  line-height: var(--text-lg-regular-line-height);
  font-style: var(--text-lg-regular-font-style);
}

.home-page-final .frame-17 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home-page-final .text-4 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--display-sm-semibold-font-family);
  font-weight: var(--display-sm-semibold-font-weight);
  color: var(--1-color-modes-colors-text-text-secondary-700);
  font-size: var(--display-sm-semibold-font-size);
  text-align: center;
  letter-spacing: var(--display-sm-semibold-letter-spacing);
  line-height: var(--display-sm-semibold-line-height);
  font-style: var(--display-sm-semibold-font-style);
}

.home-page-final .frame-18 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home-page-final .frame-19 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid;
  border-color: var(--colors-primary-primary-100);
  box-shadow:
    0px 1px 2px #e6f2f21f,
    0px 1px 3px #1018281a;
}

.home-page-final .frame-20 {
  position: relative;
  flex: 0 0 auto;
  margin-top: -2px;
  margin-left: -6px;
}

.home-page-final .frame-21 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home-page-final .text-wrapper-8 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--text-xl-semibold-font-family);
  font-weight: var(--text-xl-semibold-font-weight);
  color: var(--colors-nuetral-nuetral-900);
  font-size: var(--text-xl-semibold-font-size);
  letter-spacing: var(--text-xl-semibold-letter-spacing);
  line-height: var(--text-xl-semibold-line-height);
  font-style: var(--text-xl-semibold-font-style);
}

.home-page-final .text-wrapper-9 {
  position: relative;
  align-self: stretch;
  font-family: var(--text-md-regular-font-family);
  font-weight: var(--text-md-regular-font-weight);
  color: var(--colors-nuetral-nuetral-700);
  font-size: var(--text-md-regular-font-size);
  letter-spacing: var(--text-md-regular-letter-spacing);
  line-height: var(--text-md-regular-line-height);
  font-style: var(--text-md-regular-font-style);
}

.home-page-final .button {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  gap: var(--3-spacing-spacing-sm);
  flex: 0 0 auto;
  border-radius: var(--2-radius-radius-md);
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.home-page-final a.button {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.home-page-final .text-5 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  color: var(--colors-primary-primary-900);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.home-page-final .frame-22 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home-page-final .frame-23 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid;
  border-color: var(--colors-primary-primary-100);
  box-shadow:
    0px 1px 2px #e6f2f21f,
    0px 1px 3px #1018281a;
}

.home-page-final .frame-24 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 1;
  align-self: stretch;
  width: 100%;
  flex-grow: 1;
}

.home-page-final .frame-25 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 24px;
  padding: 20px;
  position: relative;
  align-self: stretch;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid;
  border-color: var(--colors-primary-primary-100);
  box-shadow:
    0px 1px 2px #e6f2f21f,
    0px 1px 3px #1018281a;
}

.home-page-final .frame-26 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid;
  border-color: var(--colors-primary-primary-100);
  box-shadow:
    0px 1px 2px #e6f2f21f,
    0px 1px 3px #1018281a;
}

.home-page-final .frame-27 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  position: relative;
  align-self: stretch;
  margin-top: -7px;
  margin-bottom: -7px;
  margin-right: -7px;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid;
  border-color: var(--colors-primary-primary-100);
  box-shadow:
    0px 1px 2px #e6f2f21f,
    0px 1px 3px #1018281a;
}

.home-page-final .frame-28 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 100px 60px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--colors-global-white);
}

.home-page-final .why-choose-transfer {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Roboto", Helvetica;
  font-weight: 500;
  color: var(--colors-nuetral-nuetral-800);
  font-size: 48px;
  text-align: center;
  letter-spacing: -0.96px;
  line-height: 60px;
}

.home-page-final .text-wrapper-10 {
  color: #484a54;
  letter-spacing: -0.46px;
}

.home-page-final .text-wrapper-11 {
  color: #53728b;
  letter-spacing: -0.46px;
}

.home-page-final .frame-29 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

@media (min-width: 641px) {
  .home-page-final .frame-29 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1025px) {
  .home-page-final .frame-29 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    max-width: 1320px;
    margin-inline: auto;
  }

  .home-page-final .frame-30,
  .home-page-final .frame-32 {
    grid-column: span 2;
    width: auto;
    min-width: 0;
    max-width: none;
  }

  /* Row 1: three cards; row 2: two cards centered (mockup 3 + 2) */
  .home-page-final .frame-29>article:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .home-page-final .frame-29>article:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 1024px) {

  .home-page-final .frame-30,
  .home-page-final .frame-32 {
    grid-column: auto;
  }

  .home-page-final .frame-29>article:nth-child(4),
  .home-page-final .frame-29>article:nth-child(5) {
    grid-column: auto;
  }
}

.home-page-final .frame-30 {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid;
  border-color: var(--colors-primary-primary-100);
}

.home-page-final .frame-31 {
  position: relative;
  width: 60px;
  height: 60px;
  aspect-ratio: 1;
}

.home-page-final .frame-32 {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid;
  border-color: var(--colors-primary-primary-100);
}

.home-page-final .frame-33 {
  position: relative;
  width: 60px;
  height: 60px;
}

.home-page-final .frame-34 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 100px 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #fafafa;
}

.home-page-final .frame-35 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1266px;
  align-items: center;
  gap: 54px;
  position: relative;
}

.home-page-final .frame-36 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 377px;
}

.home-page-final .vector {
  position: absolute;
  top: 55px;
  left: calc(50% - 576px);
  width: 1121px;
  height: 266px;
}

.home-page-final .frame-37 {
  display: flex;
  flex-direction: column;
  width: 380px;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  top: 94px;
  left: 0;
}

.home-page-final .text-wrapper-12 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  background: linear-gradient(180deg,
      rgba(91, 125, 153, 1) 0%,
      rgba(239, 242, 245, 1) 100%);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-family: var(--display-sm-medium-font-family);
  font-weight: var(--display-sm-medium-font-weight);
  color: var(--colors-primary-primary-50);
  font-size: var(--display-sm-medium-font-size);
  letter-spacing: var(--display-sm-medium-letter-spacing);
  line-height: var(--display-sm-medium-line-height);
  font-style: var(--display-sm-medium-font-style);
}

.home-page-final .frame-38 {
  display: flex;
  flex-direction: column;
  width: 380px;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  top: 296px;
  left: 547px;
}

.home-page-final .frame-39 {
  display: flex;
  flex-direction: column;
  width: 340px;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  top: 0;
  left: 913px;
}

.home-page-final .text-wrapper-13 {
  top: 87px;
  left: 534px;
  position: absolute;
  background: linear-gradient(180deg,
      rgba(91, 125, 153, 1) 0%,
      rgba(230, 242, 242, 0) 100%);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-family: "Roboto", Helvetica;
  font-weight: 500;
  color: var(--colors-primary-primary-500);
  font-size: 195px;
  letter-spacing: 0;
  line-height: 247px;
  white-space: nowrap;
}

.home-page-final .text-wrapper-14 {
  top: 40px;
  left: 1155px;
  position: absolute;
  background: linear-gradient(180deg,
      rgba(91, 125, 153, 1) 0%,
      rgba(230, 242, 242, 0) 100%);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-family: "Roboto", Helvetica;
  font-weight: 500;
  color: var(--colors-primary-primary-500);
  font-size: 195px;
  letter-spacing: 0;
  line-height: 247px;
  white-space: nowrap;
}

.home-page-final .ellipse {
  top: 146px;
  left: 492px;
  position: absolute;
  width: 42px;
  height: 42px;
  background-color: var(--colors-primary-primary-800);
  border-radius: 21px;
}

.home-page-final .ellipse-2 {
  top: 104px;
  left: 1137px;
  position: absolute;
  width: 42px;
  height: 42px;
  background-color: var(--colors-primary-primary-800);
  border-radius: 21px;
}

.home-page-final .ellipse-3 {
  top: 228px;
  left: 52px;
  position: absolute;
  width: 42px;
  height: 42px;
  background-color: var(--colors-primary-primary-800);
  border-radius: 21px;
}

.home-page-final .text-wrapper-15 {
  top: 218px;
  left: -17px;
  position: absolute;
  background: linear-gradient(180deg,
      rgba(91, 125, 153, 1) 0%,
      rgba(230, 242, 242, 0) 100%);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-family: "Roboto", Helvetica;
  font-weight: 500;
  color: var(--colors-primary-primary-500);
  font-size: 195px;
  letter-spacing: 0;
  line-height: 247px;
  white-space: nowrap;
}

.home-page-final .frame-40 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 54px;
  padding: 100px 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #e6f2f2;
}

.home-page-final .trusted-by-clients {
  position: relative;
  flex: 1;
  margin-top: -1px;
  font-family: var(--display-lg-medium-font-family);
  font-weight: var(--display-lg-medium-font-weight);
  color: var(--colors-nuetral-nuetral-900);
  font-size: var(--display-lg-medium-font-size);
  letter-spacing: var(--display-lg-medium-letter-spacing);
  line-height: var(--display-lg-medium-line-height);
  font-style: var(--display-lg-medium-font-style);
}

.home-page-final .arrows {
  display: inline-flex;
  align-items: flex-start;
  gap: var(--3-spacing-spacing-4xl);
  position: relative;
  flex: 0 0 auto;
}

.home-page-final .testiomonial {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  gap: var(--3-spacing-spacing-lg);
  position: relative;
  background-color: #ffffff;
  border-radius: var(--2-radius-radius-full);
  border: 1px solid;
  border-color: var(--colors-global-white);
}

.home-page-final .frame-41 {
  position: relative;
  flex: 1 1 260px;
  min-width: 260px;
  height: 264px;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.08), 0px 0px 0px 1px rgba(0, 0, 0, 0.04);
}

.home-page-final .subtract {
  display: none;
}

.home-page-final .text-wrapper-16 {
  position: absolute;
  top: 8px;
  left: 12px;
  font-family: var(--display-2xl-medium-font-family);
  font-weight: var(--display-2xl-medium-font-weight);
  color: var(--colors-primary-primary-200);
  font-size: var(--display-2xl-medium-font-size);
  letter-spacing: var(--display-2xl-medium-letter-spacing);
  line-height: var(--display-2xl-medium-line-height);
  white-space: nowrap;
  font-style: var(--display-2xl-medium-font-style);
}

.home-page-final .text-wrapper-17 {
  position: absolute;
  top: 65px;
  left: 12px;
  width: 280px;
  font-family: var(--text-lg-regular-font-family);
  font-weight: var(--text-lg-regular-font-weight);
  color: var(--colors-nuetral-nuetral-700);
  font-size: var(--text-lg-regular-font-size);
  letter-spacing: var(--text-lg-regular-letter-spacing);
  line-height: var(--text-lg-regular-line-height);
  font-style: var(--text-lg-regular-font-style);
}

.home-page-final .avatar-label-group {
  display: inline-flex;
  align-items: center;
  gap: var(--3-spacing-spacing-lg);
  padding: 12px;
  position: absolute;
  top: 200px;
  left: 0;
  background-color: #e6f2f2;
  border-radius: 0px 16px 0px 16px;
  overflow: hidden;
}

.home-page-final .avatar {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--2-radius-radius-full);
  background-image: url(https://c.animaapp.com/1PlPr3gz/img/avatar@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.home-page-final .contrast-border {
  height: 100%;
  border-radius: var(--2-radius-radius-full);
  border: 0.75px solid;
  border-color: var(--1-color-modes-component-colors-components-avatars-avatar-contrast-border);
}

.home-page-final .text-and-supporting {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
  border-radius: 12px;
}

.home-page-final .text-6 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--text-sm-semibold-font-family);
  font-weight: var(--text-sm-semibold-font-weight);
  color: var(--1-color-modes-colors-text-text-primary-900);
  font-size: var(--text-sm-semibold-font-size);
  letter-spacing: var(--text-sm-semibold-letter-spacing);
  line-height: var(--text-sm-semibold-line-height);
  white-space: nowrap;
  font-style: var(--text-sm-semibold-font-style);
}

.home-page-final .element-jan {
  position: relative;
  width: fit-content;
  font-family: var(--text-sm-regular-font-family);
  font-weight: var(--text-sm-regular-font-weight);
  color: var(--1-color-modes-colors-text-text-tertiary-600);
  font-size: var(--text-sm-regular-font-size);
  letter-spacing: var(--text-sm-regular-letter-spacing);
  line-height: var(--text-sm-regular-line-height);
  white-space: nowrap;
  font-style: var(--text-sm-regular-font-style);
}

.home-page-final .contrast-border-wrapper {
  background-image: url(https://c.animaapp.com/1PlPr3gz/img/avatar-1@2x.png);
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--2-radius-radius-full);
  background-size: cover;
  background-position: 50% 50%;
}

.home-page-final .avatar-label-group-2 {
  display: inline-flex;
  align-items: center;
  gap: var(--3-spacing-spacing-lg);
  padding: 12px;
  position: absolute;
  top: 200px;
  left: 0;
  background-color: #e6f2f2;
  border-radius: 0px 16px 0px 12px;
  overflow: hidden;
}

.home-page-final .avatar-2 {
  background-image: url(https://c.animaapp.com/1PlPr3gz/img/avatar-2@2x.png);
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--2-radius-radius-full);
  background-size: cover;
  background-position: 50% 50%;
}

.home-page-final .avatar-3 {
  background-image: url(https://c.animaapp.com/1PlPr3gz/img/avatar-3@2x.png);
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--2-radius-radius-full);
  background-size: cover;
  background-position: 50% 50%;
}

.home-page-final .frame-42 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home-page-final .frame-43 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1064px;
  align-items: center;
  gap: 54px;
  padding: 40px;
  position: relative;
  flex: 0 0 auto;
  background-color: #f5f5f5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 4px 6px -2px #10182808;
  box-sizing: border-box;
}

.home-page-final .certifications-trust {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--display-lg-medium-font-family);
  font-weight: var(--display-lg-medium-font-weight);
  color: var(--colors-nuetral-nuetral-900);
  font-size: var(--display-lg-medium-font-size);
  text-align: center;
  letter-spacing: var(--display-lg-medium-letter-spacing);
  line-height: var(--display-lg-medium-line-height);
  font-style: var(--display-lg-medium-font-style);
}

.home-page-final .frame-44 {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home-page-final .frame-45 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.home-page-final .frame-46 {
  position: relative;
  width: 40px;
  height: 40px;
}

.home-page-final .frame-47 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home-page-final .text-wrapper-18 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--text-md-semibold-font-family);
  font-weight: var(--text-md-semibold-font-weight);
  color: var(--colors-nuetral-nuetral-900);
  font-size: var(--text-md-semibold-font-size);
  text-align: center;
  letter-spacing: var(--text-md-semibold-letter-spacing);
  line-height: var(--text-md-semibold-line-height);
  font-style: var(--text-md-semibold-font-style);
}

.home-page-final .text-wrapper-19 {
  position: relative;
  align-self: stretch;
  font-family: var(--text-sm-regular-font-family);
  font-weight: var(--text-sm-regular-font-weight);
  color: var(--colors-nuetral-nuetral-900);
  font-size: var(--text-sm-regular-font-size);
  text-align: center;
  letter-spacing: var(--text-sm-regular-letter-spacing);
  line-height: var(--text-sm-regular-line-height);
  font-style: var(--text-sm-regular-font-style);
}

.home-page-final .line-2 {
  position: relative;
  align-self: stretch;
  width: 1px;
  object-fit: cover;
}

.home-page-final .CTA {
  position: relative;
  align-self: stretch;
  width: 100%;
  min-height: 400px;
  background-color: #5b7d99;
  overflow: hidden;
  box-sizing: border-box;
}

.home-page-final .frame-48 {
  display: flex;
  flex-direction: column;
  width: 715px;
  max-width: calc(100% - 200px);
  align-items: flex-start;
  gap: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100px;
  z-index: 1;
}

.home-page-final .frame-49 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.home-page-final .text-wrapper-20 {
  position: relative;
  width: 100%;
  margin-top: -1px;
  font-family: var(--display-xl-semibold-font-family);
  font-weight: var(--display-xl-semibold-font-weight);
  color: #ffffff;
  font-size: var(--display-xl-semibold-font-size);
  letter-spacing: var(--display-xl-semibold-letter-spacing);
  line-height: var(--display-xl-semibold-line-height);
  font-style: var(--display-xl-semibold-font-style);
}

.home-page-final .text-wrapper-21 {
  position: relative;
  align-self: stretch;
  font-family: var(--text-lg-regular-font-family);
  font-weight: var(--text-lg-regular-font-weight);
  color: #ffffff;
  font-size: var(--text-lg-regular-font-size);
  letter-spacing: var(--text-lg-regular-letter-spacing);
  line-height: var(--text-lg-regular-line-height);
  font-style: var(--text-lg-regular-font-style);
}

.home-page-final .buttons-button-3 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  gap: var(--3-spacing-spacing-sm);
  padding: var(--3-spacing-spacing-lg) 18px var(--3-spacing-spacing-lg) 18px;
  flex: 0 0 auto;
  background-color: var(--colors-global-white);
  border-radius: 99px;
  border: 1px solid;
  border-color: var(--colors-primary-primary-500);
  box-shadow: var(--shadows-shadow-xs);
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.home-page-final .text-7 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  color: var(--colors-primary-primary-500);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.home-page-final .group {
  position: absolute;
  width: 813px;
  height: 100%;
  top: 0;
  left: 627px;
  mix-blend-mode: luminosity;
  object-fit: cover;
}

.home-page-final .footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: transparent;
}

.home-page-final .background {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 65px 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--colors-primary-primary-900);
}

.home-page-final .frame-50 {
  display: flex;
  align-items: flex-start;
  gap: 94px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home-page-final .mask-group-wrapper {
  display: flex;
  flex-direction: column;
  width: 337px;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.home-page-final .mask-group {
  position: relative;
  width: 119.43px;
  height: 58.08px;
}

.home-page-final .frame-51 {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.home-page-final .frame-52 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
}

.home-page-final .heading-about {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1.5px;
  margin-left: -0.5px;
  -webkit-text-stroke: 0.5px #ffffff;
  font-family: var(--text-xl-medium-font-family);
  font-weight: var(--text-xl-medium-font-weight);
  color: #ffffff;
  font-size: var(--text-xl-medium-font-size);
  letter-spacing: var(--text-xl-medium-letter-spacing);
  line-height: var(--text-xl-medium-line-height);
  white-space: nowrap;
  border-color: var(--product-theme-white);
  font-style: var(--text-xl-medium-font-style);
}

.home-page-final .frame-53 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home-page-final .frame-54 {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.home-page-final .item-link-home {
  color: var(--colors-colors-primary-50);
  font-size: 16px;
  line-height: 23px;
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.home-page-final .frame-55 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.home-page-final .text-wrapper-22 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1px;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: var(--colors-colors-primary-50);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 23px;
  white-space: nowrap;
}

.home-page-final .newsletter {
  display: flex;
  flex-direction: column;
  width: 323px;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.home-page-final .frame-56 {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home-page-final .img-3 {
  position: relative;
  width: 20px;
  height: 20px;
  aspect-ratio: 1;
}

.home-page-final .heading {
  position: relative;
  display: flex;
  align-items: center;
  width: 295px;
  margin-top: -1px;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: var(--colors-colors-primary-50);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 23px;
}

.home-page-final .background-shadow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 32px 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--colors-primary-primary-900);
  border-top-width: 1px;
  border-top-style: solid;
  box-shadow: 0px -1px 0px #ffffff0d;
  border-color: var(--colors-primary-primary-900);
}

.home-page-final .frame-57 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home-page-final .frame-58 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex: 0 0 auto;
}

.home-page-final .item-link-contact {
  color: var(--primitives-light-500);
  font-size: 14px;
  line-height: 16px;
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.home-page-final .item-link-contact-2 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1px;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: var(--primitives-light-500);
  font-size: 16px;
  letter-spacing: 0.16px;
  line-height: 24px;
  white-space: nowrap;
}

.home-page-final .text-wrapper-23 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: var(--primitives-main-white);
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}

.home-page-final .frame-59 {
  position: relative;
  flex: 0 0 auto;
  margin-top: -1px;
  margin-bottom: -1px;
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */

/* ---- TABLET  (641px – 1024px) ---- */
@media (min-width: 641px) and (max-width: 1024px) {
  .home-page-final .frame-wrapper {
    padding: 12px 32px;
  }

  .home-page-final .navbar-final {
    grid-template-columns: 1fr auto;
    padding: 12px 32px;
  }

  .home-page-final .navbar-final__logo {
    grid-column: 1;
  }

  .home-page-final .navbar-final__actions {
    grid-column: 2;
  }

  /* Show hamburger, hide centered nav + header Login (drawer has its own Login) */
  .home-page-final .nav-hamburger {
    display: flex;
  }

  .home-page-final .navbar-final__nav {
    display: none !important;
  }

  .home-page-final .navbar-final__login {
    display: none !important;
  }

  /* Hero */
  .home-page-final .frame-4 {
    flex-direction: column;
    padding: 48px 32px;
    gap: 32px;
    align-items: flex-start;
  }

  .home-page-final .illustration {
    width: 100%;
    height: auto;
    max-width: 500px;
    align-self: center;
  }

  .home-page-final .p {
    font-size: 38px;
    line-height: 1.2;
  }

  .home-page-final .transfer-online-is {
    font-size: 16px;
  }

  /* Built for Issuers */
  .home-page-final .frame-7 {
    padding: 64px 32px;
  }

  .home-page-final .div-2 {
    font-size: 36px;
    line-height: 46px;
  }

  .home-page-final .frame-8 {
    flex-wrap: wrap;
  }

  .home-page-final .frame-9 {
    flex: 1 1 240px;
    min-width: 220px;
  }

  /* Services */
  .home-page-final .frame-14 {
    padding: 64px 32px;
    border-radius: 24px;
  }

  .home-page-final .frame-16 {
    flex-direction: column;
    gap: 24px;
  }

  .home-page-final .everything-you-need {
    width: 100%;
    font-size: 36px;
    line-height: 46px;
  }

  .home-page-final .text-wrapper-7 {
    width: 100%;
  }

  .home-page-final .frame-22 {
    flex-wrap: wrap;
  }

  .home-page-final .frame-23 {
    flex: 1 1 260px;
    min-width: 240px;
  }

  .home-page-final .frame-25,
  .home-page-final .frame-26,
  .home-page-final .frame-27 {
    margin: 0;
    flex: 1 1 260px;
    min-width: 240px;
  }

  /* Why Choose Us */
  .home-page-final .frame-28 {
    padding: 64px 32px;
  }

  .home-page-final .why-choose-transfer {
    font-size: 36px;
    line-height: 46px;
  }

  /* Steps */
  .home-page-final .frame-34 {
    padding: 64px 32px;
  }

  .home-page-final .frame-36 {
    height: auto;
    min-height: 500px;
  }

  .home-page-final .frame-37 {
    width: 280px;
  }

  .home-page-final .frame-38 {
    width: 280px;
    left: 380px;
  }

  .home-page-final .frame-39 {
    width: 260px;
    left: 660px;
    top: 60px;
  }

  .home-page-final .text-wrapper-13 {
    font-size: 130px;
    line-height: 160px;
    left: 360px;
    top: 60px;
  }

  .home-page-final .text-wrapper-14 {
    font-size: 130px;
    line-height: 160px;
    left: 780px;
    top: 30px;
  }

  .home-page-final .text-wrapper-15 {
    font-size: 130px;
    line-height: 160px;
    top: 170px;
    left: -10px;
  }

  /* Testimonials */
  .home-page-final .frame-40 {
    padding: 64px 32px;
  }

  .home-page-final .frame-8 {
    flex-wrap: wrap;
  }

  .home-page-final .frame-41 {
    flex: 1 1 260px;
    min-width: 260px;
  }

  /* Certifications */
  .home-page-final .frame-42 {
    padding: 64px 32px;
  }

  .home-page-final .frame-44 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .home-page-final .frame-45 {
    flex: 1 1 200px;
    min-width: 180px;
  }

  .home-page-final .line-2 {
    display: none;
  }

  /* CTA */
  .home-page-final .CTA {
    min-height: 500px;
  }

  .home-page-final .frame-48 {
    left: 40px;
    max-width: calc(100% - 80px);
    width: auto;
  }

  .home-page-final .group {
    left: auto;
    right: 0;
    width: 50%;
    opacity: 0.4;
  }

  /* Footer */
  .home-page-final .background {
    padding: 48px 32px;
  }

  .home-page-final .frame-50 {
    flex-direction: column;
    gap: 40px;
  }

  .home-page-final .mask-group-wrapper {
    width: 100%;
  }

  .home-page-final .frame-51 {
    flex-wrap: wrap;
    gap: 32px;
  }

  .home-page-final .newsletter {
    width: auto;
    flex: 1 1 250px;
  }

  .home-page-final .background-shadow {
    padding: 24px 32px;
  }

  .home-page-final .frame-57 {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ---- MOBILE  (≤ 640px) ---- */
@media (max-width: 640px) {

  /* Top bar */
  .home-page-final .frame-wrapper {
    padding: 10px 16px;
  }

  .home-page-final .div {
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .home-page-final .text {
    font-size: 12px;
  }

  /* Navbar */
  .home-page-final .navbar-final {
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
  }

  .home-page-final .navbar-final__logo {
    grid-column: 1;
  }

  .home-page-final .navbar-final__actions {
    grid-column: 2;
  }

  .home-page-final .nav-hamburger {
    display: flex;
  }

  .home-page-final .navbar-final__nav {
    display: none !important;
  }

  .home-page-final .navbar-final__login {
    display: none !important;
  }

  /* Hero */
  .home-page-final .frame-4 {
    flex-direction: column;
    padding: 32px 16px;
    gap: 28px;
    align-items: flex-start;
  }

  .home-page-final .frame-5 {
    gap: 28px;
    width: 100%;
  }

  .home-page-final .p {
    font-size: 28px;
    line-height: 1.25;
  }

  .home-page-final .transfer-online-is {
    font-size: 15px;
    line-height: 24px;
  }

  .home-page-final .transfer-online-is br {
    display: none;
  }

  .home-page-final .illustration {
    width: 100%;
    height: auto;
  }

  /* Built for Issuers */
  .home-page-final .frame-7 {
    padding: 48px 16px;
  }

  .home-page-final .div-2 {
    font-size: 28px;
    line-height: 38px;
    letter-spacing: -0.5px;
  }

  .home-page-final .frame-8 {
    flex-direction: column;
    gap: 20px;
  }

  .home-page-final .frame-9 {
    width: 100%;
  }

  /* Services */
  .home-page-final .frame-14 {
    padding: 40px 16px;
    border-radius: 16px;
    gap: 32px;
  }

  .home-page-final .frame-15 {
    gap: 32px;
  }

  .home-page-final .frame-16 {
    flex-direction: column;
    gap: 20px;
  }

  .home-page-final .everything-you-need {
    width: 100%;
    font-size: 26px;
    line-height: 36px;
  }

  .home-page-final .text-wrapper-7 {
    width: 100%;
    font-size: 15px;
  }

  .home-page-final .frame-18 {
    gap: 16px;
  }

  .home-page-final .frame-8,
  .home-page-final .frame-22 {
    flex-direction: column;
    gap: 16px;
  }

  .home-page-final .frame-19,
  .home-page-final .frame-23,
  .home-page-final .frame-25,
  .home-page-final .frame-26,
  .home-page-final .frame-27 {
    width: 100%;
    margin: 0;
    flex: unset;
  }

  /* Why Choose Us */
  .home-page-final .frame-28 {
    padding: 48px 16px;
    gap: 28px;
  }

  .home-page-final .why-choose-transfer {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: -0.5px;
  }

  .home-page-final .frame-29 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-page-final .frame-30,
  .home-page-final .frame-32 {
    width: 100%;
    height: auto;
    padding: 24px;
  }

  /* Steps — convert absolute layout to a simple vertical list */
  .home-page-final .frame-34 {
    padding: 48px 16px;
  }

  .home-page-final .frame-35 {
    height: auto;
  }

  .home-page-final .frame-36 {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0;
  }

  .home-page-final .vector {
    display: none;
  }

  .home-page-final .text-wrapper-13,
  .home-page-final .text-wrapper-14,
  .home-page-final .text-wrapper-15 {
    display: none;
  }

  .home-page-final .ellipse,
  .home-page-final .ellipse-2,
  .home-page-final .ellipse-3 {
    display: none;
  }

  .home-page-final .frame-37,
  .home-page-final .frame-38,
  .home-page-final .frame-39 {
    position: static;
    width: 100%;
    background-color: #fff;
    border: 1px solid var(--colors-primary-primary-100);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 1px 3px #1018281a;
  }

  .home-page-final .text-wrapper-12 {
    font-size: 20px;
    line-height: 28px;
  }

  /* Testimonials */
  .home-page-final .frame-40 {
    padding: 48px 16px;
    gap: 32px;
  }

  .home-page-final .frame-16 {
    flex-wrap: wrap;
    gap: 16px;
  }

  .home-page-final .trusted-by-clients {
    font-size: 26px;
    line-height: 36px;
  }

  .home-page-final .frame-41 {
    flex: 1 1 100%;
    min-width: 0;
    height: 264px;
  }

  /* Certifications */
  .home-page-final .frame-42 {
    padding: 48px 16px;
  }

  .home-page-final .frame-43 {
    padding: 24px 16px;
    gap: 28px;
  }

  .home-page-final .certifications-trust {
    font-size: 26px;
    line-height: 36px;
  }

  .home-page-final .frame-44 {
    flex-direction: column;
    gap: 24px;
  }

  .home-page-final .line-2 {
    display: none;
  }

  /* CTA */
  .home-page-final .CTA {
    min-height: 0;
    height: auto;
    padding: 48px 16px;
  }

  .home-page-final .frame-48 {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    left: auto;
    gap: 24px;
  }

  .home-page-final .group {
    display: none;
  }

  .home-page-final .text-wrapper-20 {
    font-size: 26px;
    line-height: 36px;
  }

  .home-page-final .text-wrapper-21 {
    font-size: 15px;
  }

  /* Footer */
  .home-page-final .background {
    padding: 40px 16px;
  }

  .home-page-final .frame-50 {
    flex-direction: column;
    gap: 32px;
  }

  .home-page-final .mask-group-wrapper {
    width: 100%;
  }

  .home-page-final .frame-51 {
    flex-direction: column;
    gap: 28px;
  }

  .home-page-final .newsletter {
    width: 100%;
  }

  .home-page-final .heading {
    width: 100%;
    white-space: normal;
  }

  .home-page-final .background-shadow {
    padding: 20px 16px;
  }

  .home-page-final .frame-57 {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .home-page-final .frame-58 {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* =====================================================
   ABOUT US PAGE — all classes prefixed with abus-
   ===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.abus-page {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  align-items: flex-start;
  position: relative;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* =====================================================
   TOP UTILITY BAR
   ===================================================== */
.abus-topbar {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 12px clamp(20px, 5.5vw, 80px);
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: #060606;
}

.abus-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex-wrap: wrap;
}

.abus-topbar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--3-spacing-spacing-xs);
  position: relative;
  flex: 0 0 auto;
  border-radius: var(--2-radius-radius-md);
  overflow: hidden;
}

.abus-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.abus-topbar__label-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--3-spacing-spacing-xxs);
  position: relative;
  flex: 0 0 auto;
}

.abus-topbar__label {
  position: relative;
  width: fit-content;
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  color: var(--colors-global-white);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}

.abus-topbar__divider {
  position: relative;
  width: 1px;
  height: 16px;
  object-fit: cover;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.abus-nav {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(20px, 5.5vw, 80px);
  position: relative;
  background-color: #ffffff;
  border-bottom: 0.3px solid var(--gray-400);
}

.abus-nav__logo {
  position: relative;
  width: clamp(80px, 10vw, 119px);
  height: auto;
  aspect-ratio: 2.06;
  object-fit: cover;
  flex-shrink: 0;
}

.abus-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  position: relative;
  flex: 0 0 auto;
  border-radius: 12px;
}

.abus-nav__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.abus-nav__item--chevron {
  gap: 6px;
}

.abus-nav__item-text {
  position: relative;
  width: fit-content;
  font-family: var(--text-sm-regular-font-family);
  font-weight: var(--text-sm-regular-font-weight);
  color: var(--colors-nuetral-nuetral-900-duplicate);
  font-size: var(--text-sm-regular-font-size);
  text-align: center;
  letter-spacing: var(--text-sm-regular-letter-spacing);
  line-height: var(--text-sm-regular-line-height);
  white-space: nowrap;
  font-style: var(--text-sm-regular-font-style);
}

.abus-nav__chevron {
  position: relative;
  width: 14px;
  height: 14px;
}

.abus-nav__login-wrap {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.abus-nav__login-btn {
  all: unset;
  box-sizing: border-box;
  display: flex;
  width: 139px;
  gap: var(--3-spacing-spacing-xs);
  padding: 10px 14px;
  background-color: var(--colors-primary-primary-500);
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 99px;
  overflow: hidden;
  border: 1px solid var(--colors-primary-primary-500);
  box-shadow: var(--shadows-shadow-xs);
  cursor: pointer;
}

.abus-nav__login-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.abus-nav__login-text {
  position: relative;
  width: fit-content;
  font-family: var(--text-sm-medium-font-family);
  font-weight: var(--text-sm-medium-font-weight);
  color: var(--1-color-modes-component-colors-components-buttons-primary-button-primary-fg);
  font-size: var(--text-sm-medium-font-size);
  letter-spacing: var(--text-sm-medium-letter-spacing);
  line-height: var(--text-sm-medium-line-height);
  white-space: nowrap;
  font-style: var(--text-sm-medium-font-style);
}

/* Hamburger */
.abus-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}

.abus-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0f172b;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.abus-nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.abus-nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.abus-nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =====================================================
   HERO BANNER
   ===================================================== */
.abus-hero {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: clamp(220px, 25vw, 330px);
  background-color: var(--colors-primary-primary-500);
  overflow: hidden;
}

.abus-hero__bg-right {
  position: absolute;
  width: 55%;
  height: 100%;
  top: 0;
  right: 0;
  mix-blend-mode: multiply;
  object-fit: cover;
}

.abus-hero__bg-left {
  position: absolute;
  width: 35%;
  height: 100%;
  left: 0;
  top: 0;
  mix-blend-mode: multiply;
  object-fit: cover;
}

.abus-hero__content {
  display: flex;
  flex-direction: column;
  width: min(619px, 90%);
  align-items: center;
  gap: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.abus-hero__eyebrow {
  position: relative;
  align-self: stretch;
  font-family: var(--text-md-regular-font-family);
  font-weight: var(--text-md-regular-font-weight);
  color: #ffffff;
  font-size: var(--text-md-regular-font-size);
  text-align: center;
  letter-spacing: var(--text-md-regular-letter-spacing);
  line-height: var(--text-md-regular-line-height);
  font-style: var(--text-md-regular-font-style);
}

.abus-hero__headline {
  position: relative;
  align-self: stretch;
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  color: var(--colors-global-white);
  font-size: clamp(28px, 4.5vw, 54px);
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

/* =====================================================
   WHO WE ARE
   ===================================================== */
.abus-who {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: clamp(48px, 7vw, 100px) clamp(20px, 5.5vw, 80px);
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: #ffffff;
}

.abus-who__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex-wrap: wrap;
}

.abus-who__left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  padding: 24px;
  position: relative;
  flex: 1 1 360px;
  min-width: 280px;
  background-color: var(--colors-primary-primary-600);
  border-radius: 16px;
  border: 1px solid var(--colors-global-white);
}

.abus-who__text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.abus-who__label {
  position: relative;
  align-self: stretch;
  font-family: var(--text-xs-semibold-font-family);
  font-weight: var(--text-xs-semibold-font-weight);
  color: #ffffff;
  font-size: var(--text-xs-semibold-font-size);
  letter-spacing: var(--text-xs-semibold-letter-spacing);
  line-height: var(--text-xs-semibold-line-height);
  font-style: var(--text-xs-semibold-font-style);
}

.abus-who__text-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.abus-who__headline {
  position: relative;
  align-self: stretch;
  font-family: var(--display-md-semibold-font-family);
  font-weight: var(--display-md-semibold-font-weight);
  color: #ffffff;
  font-size: clamp(22px, 3vw, var(--display-md-semibold-font-size));
  letter-spacing: var(--display-md-semibold-letter-spacing);
  line-height: var(--display-md-semibold-line-height);
  font-style: var(--display-md-semibold-font-style);
}

.abus-who__headline--highlight {
  font-style: italic;
  font-weight: 700;
}

.abus-who__body {
  position: relative;
  align-self: stretch;
  font-family: var(--text-md-regular-font-family);
  font-weight: var(--text-md-regular-font-weight);
  color: #ffffff;
  font-size: var(--text-md-regular-font-size);
  letter-spacing: var(--text-md-regular-letter-spacing);
  line-height: var(--text-md-regular-line-height);
  font-style: var(--text-md-regular-font-style);
}

.abus-who__quote-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  border-top: 0.8px solid #ffffff;
}

.abus-who__quote {
  position: relative;
  align-self: stretch;
  width: 100%;
}

.abus-who__quote-text {
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 21px;
}

.abus-who__right {
  display: flex;
  flex-direction: column;
  width: min(636px, 100%);
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 1 1 300px;
  min-width: 260px;
}

.abus-who__cards-top {
  display: flex;
  align-items: stretch;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex-wrap: wrap;
}

.abus-who__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 24px;
  position: relative;
  background-color: #f8fafc;
  border-radius: 16px;
  border: 1px solid var(--colors-nuetral-nuetral-100);
}

.abus-who__card--sec {
  flex: 1 1 140px;
  min-width: 140px;
  align-items: center;
  justify-content: center;
}

.abus-who__card--years {
  flex: 1 1 140px;
  min-width: 140px;
  align-items: flex-start;
}

.abus-who__card--portland {
  align-self: stretch;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.abus-who__card-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.abus-who__card-icon {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.abus-who__card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.abus-who__card-title {
  font-family: var(--text-lg-semibold-font-family);
  font-weight: var(--text-lg-semibold-font-weight);
  color: #0f172b;
  font-size: var(--text-lg-semibold-font-size);
  letter-spacing: var(--text-lg-semibold-letter-spacing);
  line-height: var(--text-lg-semibold-line-height);
  font-style: var(--text-lg-semibold-font-style);
}

.abus-who__card-sub {
  font-family: var(--text-sm-regular-font-family);
  font-weight: var(--text-sm-regular-font-weight);
  color: #45556c;
  font-size: var(--text-sm-regular-font-size);
  letter-spacing: var(--text-sm-regular-letter-spacing);
  line-height: var(--text-sm-regular-line-height);
  font-style: var(--text-sm-regular-font-style);
}

.abus-who__card-stat {
  font-family: "Roboto", Helvetica;
  font-weight: 700;
  color: #314158;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.abus-who__card-stat-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.abus-who__card-row {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 16px;
}

.abus-who__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.abus-who__badges span {
  padding: 12px 20px;
  background: #f3f3f3;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  color: #334155;
}

.abus-who__badge {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background-color: var(--colors-nuetral-nuetral-50);
  border-radius: 26843500px;
}

.abus-who__badge-text {
  font-family: var(--text-xs-medium-font-family);
  font-weight: var(--text-xs-medium-font-weight);
  color: #314158;
  font-size: var(--text-xs-medium-font-size);
  letter-spacing: var(--text-xs-medium-letter-spacing);
  line-height: var(--text-xs-medium-line-height);
  white-space: nowrap;
  font-style: var(--text-xs-medium-font-style);
}

.abus-who__badges--links {
  gap: 0 6px;
  align-items: baseline;
}

.abus-who__badge-link {
  font-family: var(--text-xs-medium-font-family);
  font-weight: var(--text-xs-medium-font-weight);
  font-size: var(--text-xs-medium-font-size);
  letter-spacing: var(--text-xs-medium-letter-spacing);
  line-height: var(--text-xs-medium-line-height);
  font-style: var(--text-xs-medium-font-style);
  color: var(--colors-primary-primary-600);
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
  background: none;
  border-radius: 0;
  white-space: nowrap;
}

.abus-who__badge-link:hover {
  color: var(--colors-primary-primary-700);
}

/* =====================================================
   MISSION STATEMENT
   ===================================================== */
.abus-mission {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(48px, 7vw, 98px) clamp(20px, 5.5vw, 80px);
  position: relative;
  background-color: #fafafa;
}

.abus-mission__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex-wrap: wrap;
}

.abus-mission__text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  flex: 1 1 300px;
  min-width: 260px;
}

.abus-mission__icon {
  position: relative;
  width: 71px;
  height: 71px;
}

.abus-mission__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.abus-mission__title {
  position: relative;
  align-self: stretch;
  font-family: "Roboto", Helvetica;
  font-weight: 500;
  color: var(--colors-nuetral-nuetral-900);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.96px;
  line-height: 1.25;
}

.abus-mission__body {
  position: relative;
  align-self: stretch;
  font-family: var(--text-md-regular-font-family);
  font-weight: var(--text-md-regular-font-weight);
  color: var(--colors-colors-gray-600-2);
  font-size: var(--text-md-regular-font-size);
  letter-spacing: var(--text-md-regular-letter-spacing);
  line-height: var(--text-md-regular-line-height);
  font-style: var(--text-md-regular-font-style);
}

.abus-mission__plain {
  color: #535861;
}

.abus-mission__highlight {
  color: inherit;
  font-weight: 600;
}

.abus-mission__photo {
  position: relative;
  width: clamp(220px, 30vw, 336px);
  height: auto;
  aspect-ratio: 0.78;
  object-fit: cover;
  flex-shrink: 0;
}

/* =====================================================
   WHAT MAKES US DIFFERENT
   ===================================================== */
.abus-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--3-spacing-spacing-7xl);
  padding: var(--3-spacing-spacing-9xl) 0;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.abus-features__header-wrap {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  align-items: flex-start;
  gap: var(--3-spacing-spacing-4xl);
  padding: 0 clamp(20px, 5.5vw, 80px);
  position: relative;
  width: 100%;
}

.abus-features__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--3-spacing-spacing-4xl);
  position: relative;
  align-self: stretch;
  width: 100%;
}

.abus-features__heading-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--3-spacing-spacing-2xl);
  position: relative;
  width: 100%;
}

.abus-features__heading-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--3-spacing-spacing-lg);
  position: relative;
  align-self: stretch;
  width: 100%;
}

.abus-features__heading {
  position: relative;
  align-self: stretch;
  font-family: "Roboto", Helvetica;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.96px;
  line-height: 1.25;
}

.abus-features__heading--dark {
  color: #101828;
  letter-spacing: -0.46px;
}

.abus-features__heading--blue {
  color: #53728b;
  letter-spacing: -0.46px;
}

.abus-features__body {
  display: flex;
  max-width: 1280px;
  align-items: flex-start;
  gap: var(--3-spacing-spacing-7xl);
  padding: 0 clamp(20px, 5.5vw, 80px);
  position: relative;
  width: 100%;
  flex-wrap: wrap;
}

.abus-features__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--3-spacing-spacing-6xl);
  position: relative;
  flex: 1 1 300px;
  min-width: 260px;
}

.abus-features__item {
  display: flex;
  align-items: flex-start;
  gap: var(--3-spacing-spacing-xl);
  position: relative;
  width: 100%;
}

.abus-features__icon {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.abus-features__item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--3-spacing-spacing-md);
  position: relative;
  flex: 1;
}

.abus-features__item-title {
  position: relative;
  align-self: stretch;
  font-family: var(--text-xl-semibold-font-family);
  font-weight: var(--text-xl-semibold-font-weight);
  color: var(--colors-nuetral-nuetral-900);
  font-size: var(--text-xl-semibold-font-size);
  letter-spacing: var(--text-xl-semibold-letter-spacing);
  line-height: var(--text-xl-semibold-line-height);
  font-style: var(--text-xl-semibold-font-style);
}

.abus-features__item-desc {
  position: relative;
  align-self: stretch;
  font-family: var(--text-md-regular-font-family);
  font-weight: var(--text-md-regular-font-weight);
  color: var(--colors-colors-gray-600-2);
  font-size: var(--text-md-regular-font-size);
  letter-spacing: var(--text-md-regular-letter-spacing);
  line-height: var(--text-md-regular-line-height);
  font-style: var(--text-md-regular-font-style);
}

.abus-features__graphic {
  position: relative;
  flex: 1 1 260px;
  min-width: 220px;
  height: auto;
  max-height: 560px;
  object-fit: contain;
}

/* =====================================================
   OUR COMMITMENT
   ===================================================== */
.abus-commitment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 54px;
  padding: clamp(48px, 7vw, 100px) clamp(20px, 5.5vw, 80px);
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: #fafafa;
}

.abus-commitment__heading {
  position: relative;
  align-self: stretch;
  font-family: "Roboto", Helvetica;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  text-align: center;
  letter-spacing: -0.96px;
  line-height: 1.25;
}

.abus-commitment__heading--dark {
  color: #373940;
  letter-spacing: -0.46px;
}

.abus-commitment__heading--blue {
  color: #53728b;
  letter-spacing: -0.46px;
}

.abus-commitment__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  align-self: stretch;
  width: 100%;
}

.abus-commitment__card {
  display: flex;
  flex: 1 1 200px;
  min-width: 180px;
  max-width: 304px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px;
  position: relative;
  background-color: #fafafa;
  border-radius: 16px;
  border: 1px solid var(--colors-nuetral-nuetral-100);
}

.abus-commitment__card-icon {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.abus-commitment__card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  flex: 1;
}

.abus-commitment__card-title {
  position: relative;
  align-self: stretch;
  font-family: var(--display-xs-regular-font-family);
  font-weight: var(--display-xs-regular-font-weight);
  color: var(--colors-primary-primary-500);
  font-size: var(--display-xs-regular-font-size);
  letter-spacing: var(--display-xs-regular-letter-spacing);
  line-height: var(--display-xs-regular-line-height);
  font-style: var(--display-xs-regular-font-style);
}

.abus-commitment__card-desc {
  position: relative;
  align-self: stretch;
  font-family: var(--text-sm-regular-font-family);
  font-weight: var(--text-sm-regular-font-weight);
  color: var(--colors-colors-gray-600-2);
  font-size: var(--text-sm-regular-font-size);
  letter-spacing: var(--text-sm-regular-letter-spacing);
  line-height: var(--text-sm-regular-line-height);
  font-style: var(--text-sm-regular-font-style);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.abus-cta {
  position: relative;
  align-self: stretch;
  width: 100%;
  min-height: 320px;
  background-color: #5b7d99;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.abus-cta__content {
  display: flex;
  flex-direction: column;
  max-width: 715px;
  align-items: flex-start;
  gap: 32px;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 7vw, 100px);
  position: relative;
  z-index: 2;
  flex: 1 1 300px;
}

.abus-cta__text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  width: 100%;
}

.abus-cta__headline {
  position: relative;
  width: 100%;
  font-family: var(--display-xl-semibold-font-family);
  font-weight: var(--display-xl-semibold-font-weight);
  color: #ffffff;
  font-size: clamp(28px, 4vw, var(--display-xl-semibold-font-size));
  letter-spacing: var(--display-xl-semibold-letter-spacing);
  line-height: 1.2;
  font-style: var(--display-xl-semibold-font-style);
}

.abus-cta__sub {
  position: relative;
  align-self: stretch;
  font-family: var(--text-lg-regular-font-family);
  font-weight: var(--text-lg-regular-font-weight);
  color: #ffffff;
  font-size: var(--text-lg-regular-font-size);
  letter-spacing: var(--text-lg-regular-letter-spacing);
  line-height: var(--text-lg-regular-line-height);
  font-style: var(--text-lg-regular-font-style);
}

.abus-cta__btn {
  display: inline-flex;
  gap: var(--3-spacing-spacing-sm);
  padding: var(--3-spacing-spacing-lg) 18px;
  flex: 0 0 auto;
  background-color: var(--colors-global-white);
  border-color: var(--colors-primary-primary-500);
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 99px;
  overflow: hidden;
  border: 1px solid;
  box-shadow: var(--shadows-shadow-xs);
  cursor: pointer;
}

.abus-cta__btn-inner {
  display: inline-flex;
  align-items: center;
}

.abus-cta__btn-text {
  position: relative;
  width: fit-content;
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  color: var(--colors-primary-primary-500);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.abus-cta__bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  max-width: 56%;
  mix-blend-mode: luminosity;
  object-fit: cover;
  pointer-events: none;
}

/* CTA arrow icon — distinct from topbar icon */
.abus-cta__arrow-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* =====================================================
   FOOTER
   ===================================================== */
.abus-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.abus-footer__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: clamp(40px, 5vw, 65px) clamp(20px, 5.5vw, 80px);
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: var(--colors-primary-primary-900);
}

.abus-footer__inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 94px);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex-wrap: wrap;
}

.abus-footer__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
}

.abus-footer__logo {
  position: relative;
  width: clamp(80px, 12vw, 119px);
  height: auto;
}

.abus-footer__cols {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2.5vw, 32px);
  position: relative;
  flex: 1 1 280px;
  flex-wrap: wrap;
}

.abus-footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  flex: 1 1 120px;
}

.abus-footer__col-title {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  -webkit-text-stroke: 0.5px #ffffff;
  font-family: var(--text-xl-medium-font-family);
  font-weight: var(--text-xl-medium-font-weight);
  color: #ffffff;
  font-size: var(--text-xl-medium-font-size);
  letter-spacing: var(--text-xl-medium-letter-spacing);
  line-height: var(--text-xl-medium-line-height);
  white-space: nowrap;
  font-style: var(--text-xl-medium-font-style);
}

.abus-footer__col-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.abus-footer__link-row {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.abus-footer__link {
  color: var(--colors-colors-primary-50);
  font-size: 16px;
  line-height: 23px;
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.abus-footer__link--light {
  color: var(--colors-colors-primary-50);
}

.abus-footer__chevron {
  position: relative;
  width: 24px;
  height: 24px;
}

.abus-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  flex: 1 1 240px;
}

.abus-footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.abus-footer__contact-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.abus-footer__contact-text {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: var(--colors-colors-primary-50);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 23px;
  white-space: nowrap;
}

.abus-footer__address {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: var(--colors-colors-primary-50);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 23px;
}

.abus-footer__cta-btn {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  gap: var(--3-spacing-spacing-sm);
  padding: var(--3-spacing-spacing-lg) 18px;
  flex: 0 0 auto;
  background-color: var(--colors-global-white);
  border-color: var(--colors-primary-primary-500);
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 99px;
  overflow: hidden;
  border: 1px solid;
  box-shadow: var(--shadows-shadow-xs);
  cursor: pointer;
}

.abus-footer__cta-inner {
  display: inline-flex;
  align-items: center;
}

.abus-footer__cta-text {
  position: relative;
  width: fit-content;
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  color: var(--colors-primary-primary-500);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.abus-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 32px clamp(20px, 5.5vw, 80px);
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: var(--colors-primary-primary-900);
  border-top: 1px solid #ffffff0d;
  box-shadow: 0px -1px 0px #ffffff0d;
}

.abus-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex-wrap: wrap;
  gap: 12px;
}

.abus-footer__legal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex: 0 0 auto;
}

.abus-footer__legal-link {
  color: var(--primitives-light-500);
  font-size: 14px;
  line-height: 16px;
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.abus-footer__legal-sep {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: var(--primitives-light-500);
  font-size: 16px;
  letter-spacing: 0.16px;
  line-height: 24px;
  white-space: nowrap;
}

.abus-footer__copy {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: var(--primitives-main-white);
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}

.abus-footer__socials {
  position: relative;
  flex: 0 0 auto;
}

/* =====================================================
   TABLET — 641px to 1024px
   ===================================================== */
@media (min-width: 641px) and (max-width: 1024px) {
  .abus-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .abus-nav__links {
    gap: 16px;
  }

  .abus-who__grid {
    flex-direction: column;
  }

  .abus-who__left {
    flex: 1 1 100%;
    min-width: unset;
  }

  .abus-who__right {
    width: 100%;
    flex: 1 1 100%;
  }

  .abus-mission__inner {
    gap: 32px;
  }

  .abus-mission__photo {
    width: clamp(200px, 28vw, 300px);
  }

  .abus-cta__bg {
    max-width: 45%;
    opacity: 0.6;
  }

  .abus-features__graphic {
    display: none;
  }
}

/* =====================================================
   MOBILE — max 640px
   ===================================================== */
@media (max-width: 640px) {

  /* utility bar */
  .abus-topbar {
    padding: 10px 16px;
  }

  .abus-topbar__inner {
    justify-content: center;
  }

  .abus-topbar__label {
    font-size: 12px;
    line-height: 18px;
  }

  /* navbar */
  .abus-nav {
    padding: 12px 16px;
    position: relative;
    align-items: center;
  }

  .abus-nav__hamburger {
    display: flex;
  }

  .abus-nav__links {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid var(--gray-400);
    border-bottom: 1px solid var(--gray-400);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .abus-nav__links.open {
    display: flex;
  }

  .abus-nav__item {
    width: 100%;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f1f1;
    justify-content: space-between;
  }

  .abus-nav__item-text {
    white-space: normal;
    font-size: 15px;
  }

  .abus-nav__login-wrap {
    width: 100%;
    padding: 14px 20px;
    justify-content: flex-start;
  }

  .abus-nav__login-btn {
    width: 100%;
    border-radius: 8px;
  }

  /* hero */
  .abus-hero {
    height: clamp(180px, 50vw, 260px);
  }

  .abus-hero__headline {
    font-size: clamp(22px, 7vw, 34px);
  }

  .abus-hero__bg-right,
  .abus-hero__bg-left {
    width: 50%;
  }

  /* who we are */
  .abus-who {
    padding: 40px 16px;
  }

  .abus-who__grid {
    flex-direction: column;
  }

  .abus-who__left {
    flex: 1 1 100%;
    min-width: unset;
  }

  .abus-who__right {
    width: 100%;
    flex: 1 1 100%;
  }

  .abus-who__cards-top {
    flex-direction: column;
  }

  .abus-who__card--sec,
  .abus-who__card--years {
    flex: 1 1 100%;
    min-width: unset;
  }

  .abus-who__card-row {
    flex-wrap: wrap;
  }

  .abus-who__badges {
    flex-wrap: wrap;
  }

  /* mission */
  .abus-mission {
    padding: 40px 16px;
  }

  .abus-mission__inner {
    flex-direction: column;
    gap: 32px;
  }

  .abus-mission__photo {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .abus-mission__text-col {
    min-width: unset;
    flex: 1 1 100%;
  }

  /* features */
  .abus-features {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .abus-features__header-wrap {
    padding: 0 16px;
  }

  .abus-features__body {
    padding: 0 16px;
    flex-direction: column;
    gap: 32px;
  }

  .abus-features__graphic {
    display: none;
  }

  .abus-features__list {
    min-width: unset;
    flex: 1 1 100%;
  }

  /* commitment */
  .abus-commitment {
    padding: 40px 16px;
    gap: 32px;
  }

  .abus-commitment__grid {
    flex-direction: column;
    align-items: stretch;
  }

  .abus-commitment__card {
    max-width: 100%;
    flex: 1 1 100%;
  }

  /* CTA */
  .abus-cta {
    min-height: 280px;
  }

  .abus-cta__content {
    padding: 40px 16px;
    flex: 1 1 100%;
    max-width: 100%;
  }

  .abus-cta__headline {
    font-size: clamp(22px, 6vw, 36px);
  }

  .abus-cta__bg {
    max-width: 50%;
    opacity: 0.35;
  }

  /* footer */
  .abus-footer__main {
    padding: 40px 16px;
  }

  .abus-footer__inner {
    flex-direction: column;
    gap: 32px;
  }

  .abus-footer__cols {
    flex-direction: column;
    gap: 28px;
  }

  .abus-footer__contact {
    flex: 1 1 100%;
  }

  .abus-footer__bottom {
    padding: 24px 16px;
  }

  .abus-footer__bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .cnt-main__grid {
    flex-direction: column;
  }

  .cnt-type-grid {
    grid-template-columns: 1fr;
  }

  .cnt-accredit__grid {
    grid-template-columns: 1fr;
  }

  .cnt-sec {
    margin-top: -28px;
    padding-bottom: 40px;
  }

  .cnt-sec__watermark {
    filter: grayscale(1) sepia(0.7) hue-rotate(175deg) saturate(1.4) brightness(0.9) opacity(0.12);
  }

  .cnt-sec__card {
    border-radius: 16px 16px 12px 12px;
    padding: 32px 18px 28px;
  }

  .cnt-sec__banner-img {
    max-width: 100%;
  }
}

/* =====================================================
   CONTACT PAGE (Figma)
   ===================================================== */
.cnt-page {
  width: 100%;
  align-self: stretch;
  background-color: #ffffff;
}

.cnt-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cnt-main {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
  background-color: #ffffff;
}

.cnt-main__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cnt-main__form-col {
  flex: 1 1 340px;
  min-width: 0;
  max-width: 560px;
}

.cnt-main__aside {
  flex: 1 1 300px;
  min-width: 0;
  max-width: 420px;
}

@media (max-width: 900px) {
  .cnt-main__grid {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(28px, 6vw, 40px);
  }

  .cnt-main__form-col,
  .cnt-main__aside {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }

  .cnt-submit,
  .contact-button.cnt-submit {
    max-width: 100%;
  }

  .cnt-dropzone {
    padding: 18px 14px;
    min-height: 88px;
  }
}

@media (max-width: 480px) {
  .cnt-role-badge {
    width: 44px;
    height: 44px;
  }

  .cnt-role-badge__letter {
    font-size: 22px;
  }

  .cnt-form--audience .cnt-form__title {
    font-size: clamp(20px, 5.5vw, 24px);
  }
}

.cnt-form__title {
  font-family: var(--display-sm-semibold-font-family, "Roboto", Helvetica, Arial, sans-serif);
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 28px);
  color: #1e293b;
  margin: 0 0 12px;
}

.cnt-form__lead {
  font-family: var(--text-md-regular-font-family, "Roboto", Helvetica, Arial, sans-serif);
  font-size: var(--text-md-regular-font-size, 16px);
  line-height: 1.55;
  color: #475569;
  margin: 0 0 28px;
}

.cnt-form__required-note {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 16px;
}

.cnt-form__asterisk {
  color: #dc2626;
}

.cnt-alert {
  margin-bottom: 20px;
}

.cnt-form .form-label {
  color: #334155;
  font-weight: 600;
}

.cnt-form .form-control {
  border-radius: 8px;
  border: 1px solid #d0d5dd;
  padding: 10px 14px;
}

.cnt-form .form-control:focus {
  border-color: var(--colors-primary-primary-500);
  outline: none;
  box-shadow: 0 0 0 3px rgba(91, 125, 153, 0.2);
}

.cnt-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
}

.cnt-form select.form-control:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%235b7d99' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cnt-form select.form-control:disabled {
  cursor: not-allowed;
  background-color: #f8fafc;
  color: #64748b;
  opacity: 1;
}

.cnt-account-field {
  margin-bottom: 20px;
}

.cnt-type-label {
  font-family: var(--text-xs-semibold-font-family, "Roboto", Helvetica, Arial, sans-serif);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 12px;
}

.cnt-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.cnt-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 112px;
  padding: 16px 12px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  color: #475569;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.cnt-type-card:hover {
  border-color: var(--colors-primary-primary-300);
}

.cnt-type-card--selected {
  border-color: var(--colors-primary-primary-500);
  box-shadow: 0 0 0 1px var(--colors-primary-primary-500);
  color: var(--colors-primary-primary-700);
}

/* Active state for navigation link cards (e.g. pre-selected role) */
.cnt-type-card--link.cnt-type-card--active {
  border-color: #5B7D99;
  box-shadow: 0 0 0 1px #5B7D99;
}

/* Navigation variant — full card is a link, larger icon */
.cnt-type-grid--nav {
  gap: 16px;
  margin-bottom: 0;
}

.cnt-type-card--link {
  text-decoration: none;
  min-height: 140px;
  padding: 24px 16px;
  color: #4a6a85;
  border-color: #dde6ef;
}

.cnt-type-card--link .cnt-type-card__icon {
  margin-bottom: 4px;
}

.cnt-type-card--link .cnt-type-card__icon svg {
  width: 44px;
  height: 44px;
  stroke-width: 1.5;
}

.cnt-type-card--link:hover {
  border-color: #5b7d99;
  background: #f0f6fb;
  color: #2d4f6b;
  box-shadow: 0 2px 10px rgba(90, 125, 154, 0.12);
}

.cnt-type-card--link .cnt-type-card__label {
  font-size: 13px;
  font-weight: 500;
  color: #475569;
}

.cnt-type-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.cnt-type-card__label {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
}

.cnt-account-select-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.cnt-file-btn {
  border-radius: 8px;
}

.cnt-submit {
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
  width: 100%;
  max-width: 320px;
}

.cnt-aside__photo-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

.cnt-aside__photo {
  display: block;
  width: 100%;
  height: auto;
}

.cnt-aside__heading {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 20px;
}

.cnt-aside__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cnt-aside__row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cnt-aside__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #5B7D99;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* Alias — used in Contact.cshtml nav variant */
.cnt-aside__icon--badge {
  background: #5B7D99;
  color: #ffffff;
}

.cnt-aside__icon img {
  display: block;
}

.cnt-aside__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  margin-bottom: 4px;
}

.cnt-aside__value {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #1e293b;
}

.cnt-aside__dot {
  margin: 0 4px;
  color: #94a3b8;
}

.cnt-aside__link {
  color: var(--colors-primary-primary-600);
  font-weight: 600;
  text-decoration: none;
}

.cnt-aside__link:hover {
  text-decoration: underline;
}

.cnt-aside__social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.cnt-aside__social-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.cnt-aside__social-links {
  display: flex;
  gap: 10px;
}

.cnt-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #E8ECEF;
  color: #5B7D99;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.cnt-social-btn:hover {
  background: #5B7D99;
  color: #ffffff;
}

.cnt-trust {
  position: relative;
  isolation: isolate;
}

.cnt-accredit {
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5.5vw, 80px) clamp(104px, 16vw, 168px);
  background-color: #5b7d99;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cnt-accredit__title {
  margin: 0;
  font-family: var(--display-sm-semibold-font-family, "Roboto", Helvetica, Arial, sans-serif);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 30px);
  color: #ffffff;
  text-align: center;
}

.cnt-accredit__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 3vw, 28px);
  width: 100%;
  max-width: min(720px, 100%);
  justify-items: stretch;
}

.cnt-accredit__card {
  box-sizing: border-box;
  width: 220px;
  height: 194px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

/* WBENC card — matches the steel-blue badge with white inner border from Figma */
.cnt-accredit__card--wbenc {
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  backdrop-filter: blur(4px);
}

.cnt-accredit__card--wbenc::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 10px;
  pointer-events: none;
}

/* BBB seal */
.cnt-accredit__bbb-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cnt-accredit__bbb-seal {
  display: block;
  width: 100%;
  max-width: 212px;
  height: auto;
}

/* WBENC badge */
.cnt-accredit__wbenc-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #ffffff;
}

.cnt-accredit__wbenc-certified {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}

.cnt-accredit__wbenc-logo-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cnt-accredit__wbenc-text {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}

.cnt-accredit__wbenc-icon {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

.cnt-accredit__wbenc-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

/* WBENC logo image — fills the card content area */
.cnt-accredit__wbenc-img {
  display: block;
  width: 100%;
  max-width: 212px;
  height: auto;
  border-radius: 8px;
}

/* SEC section */
.cnt-sec {
  margin-top: clamp(-40px, -6vw, -84px);
  padding: 0 clamp(20px, 5.5vw, 80px) clamp(48px, 8vw, 96px);
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

.cnt-sec__banner-img {
  display: block;
  width: 100%;
  max-width: min(960px, 100%);
  height: auto;
  margin: 0 auto;
}

.cnt-sec__card {
  max-width: min(960px, 100%);
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px 20px 16px 16px;
  border: none;
  padding: clamp(40px, 6vw, 56px) clamp(24px, 5vw, 56px) clamp(36px, 5vw, 52px);
  box-shadow:
    0 20px 48px rgba(15, 23, 42, 0.14),
    0 8px 20px rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.cnt-sec__watermark {
  position: absolute;
  top: 50%;
  width: min(58vw, 420px);
  height: min(58vw, 420px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  /* tint the gold/navy SEC seal to match the steel-blue palette */
  filter: grayscale(1) sepia(0.7) hue-rotate(175deg) saturate(1.4) brightness(0.9) opacity(0.18);
}

.cnt-sec__watermark--left {
  left: -12%;
}

.cnt-sec__watermark--right {
  right: -12%;
}

.cnt-sec__lead {
  margin: 0 0 28px;
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

.cnt-sec__lead-dark {
  color: #1e293b;
}

.cnt-sec__lead-blue {
  color: #5b7d99;
}

/* SEC brand row — seal icon + text inline */
.cnt-sec__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.cnt-sec__seal-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  filter: invert(24%) sepia(34%) saturate(545%) hue-rotate(168deg) brightness(96%) contrast(89%);
}

.cnt-sec__brand-text {
  display: flex;
  flex-direction: column;
}

.cnt-sec__brand-name {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
}

/* Audience-specific contact pages (shareholder, broker, prospective client) */
.cnt-page--shareholder .cnt-main,
.cnt-page--broker .cnt-main,
.cnt-page--prospect .cnt-main {
  padding-top: clamp(40px, 6vw, 72px);
}

.cnt-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--colors-primary-primary-600);
  text-decoration: none;
}

.cnt-back:hover {
  color: var(--colors-primary-primary-700);
  text-decoration: underline;
}

.cnt-back__arrow {
  font-size: 16px;
  line-height: 1;
}

.cnt-role-badge {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--colors-primary-primary-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(91, 125, 153, 0.35);
}

.cnt-role-badge--broker {
  background: var(--colors-secondary-primary-600, #1e3a5f);
  box-shadow: 0 4px 12px rgba(0, 40, 80, 0.25);
}

.cnt-role-badge--prospect {
  background: var(--colors-primary-primary-600);
}

.cnt-role-badge__letter {
  font-family: var(--display-md-semibold-font-family, "Roboto", Helvetica, Arial, sans-serif);
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.cnt-form__hint {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: #64748b;
}

.cnt-form__footnote {
  margin: 18px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--text-sm-regular-font-family, "Roboto", Helvetica, Arial, sans-serif);
  font-size: var(--text-sm-regular-font-size, 14px);
  font-weight: var(--text-sm-regular-font-weight, 400);
  line-height: var(--text-sm-regular-line-height, 20px);
  letter-spacing: var(--text-sm-regular-letter-spacing, 0);
  color: var(--colors-primary-primary-500, #5b7d99);
}

.cnt-form__footnote-icon {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--colors-primary-primary-500, #5b7d99);
}

.cnt-dropzone-wrap {
  margin-bottom: 8px;
}

.cnt-dropzone {
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  cursor: pointer;
  background: #fafafa;
  transition: border-color 0.15s ease, background 0.15s ease;
  margin-bottom: 12px;
}

.cnt-dropzone:hover {
  border-color: var(--colors-primary-primary-400);
  background: #f8fafc;
}

.cnt-dropzone:focus {
  outline: 2px solid var(--colors-primary-primary-400);
  outline-offset: 2px;
}

.cnt-dropzone__text {
  margin: 0 0 6px;
  font-size: 15px;
  color: #334155;
}

.cnt-dropzone__sub {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.cnt-file-btn--secondary {
  margin-bottom: 12px;
}

.cnt-consent {
  margin-top: 8px;
}

.cnt-consent__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
  cursor: pointer;
}

.cnt-consent__input {
  flex-shrink: 0;
  margin-top: 4px;
  width: 18px;
  height: 18px;
}

.cnt-consent__label a {
  color: var(--colors-primary-primary-600);
  font-weight: 600;
}

@media (max-width: 640px) {
  .cnt-consent__label {
    align-items: flex-start;
    gap: 10px;
  }

  .cnt-consent__input {
    margin-top: 2px;
  }
}

/* -------------------------------------------------------------------------- */
/* Software Development landing (Home/SoftwareDevelopment)                    */
/* -------------------------------------------------------------------------- */

.sd-page {
  width: 100%;
  align-self: stretch;
}

.sd-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sd-section-title {
  font-family: var(--display-md-semibold-font-family, "Roboto", Helvetica, Arial, sans-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #1e3a5f;
  margin: 0 0 16px;
  line-height: 1.2;
}

.sd-section-title--center {
  text-align: center;
}

.sd-section-title--light {
  color: #ffffff;
}

/* Intro block: centered column */
.sd-intro__inner {
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Software Development page — split heading colors */
.sd-hl-software {
  color: #263540;
}

.sd-hl-development {
  color: #53728b;
}

.sd-section-title--intro {
  text-align: center;
}

/* -------------------------------------------------------------------------- */
/* Particle mesh (SVG + CSS) — reusable SaaS-style network background         */
/* -------------------------------------------------------------------------- */

.particle-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle-mesh__layer {
  position: absolute;
  background-image: url("images/particle-mesh.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Dual layers: depth + slow drift (disable via .particle-mesh--static or reduced-motion) */
.particle-mesh--dual .particle-mesh__layer--back {
  inset: -10%;
  opacity: 0.38;
  transform: scale(1.08);
  animation: pm-drift-a 28s ease-in-out infinite alternate;
}

.particle-mesh--dual .particle-mesh__layer--front {
  inset: -6%;
  opacity: 0.52;
  animation: pm-drift-b 36s ease-in-out infinite alternate;
}

@keyframes pm-drift-a {
  from {
    transform: scale(1.08) translate(0, 0);
  }

  to {
    transform: scale(1.08) translate(-2.2%, -1.8%);
  }
}

@keyframes pm-drift-b {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(2.4%, 1.6%);
  }
}

.particle-mesh--static .particle-mesh__layer--back,
.particle-mesh--static .particle-mesh__layer--front {
  animation: none;
}

.particle-mesh--static .particle-mesh__layer--back {
  opacity: 0.4;
}

.particle-mesh--static .particle-mesh__layer--front {
  opacity: 0.48;
}

@media (prefers-reduced-motion: reduce) {

  .particle-mesh--dual .particle-mesh__layer--back,
  .particle-mesh--dual .particle-mesh__layer--front {
    animation: none;
  }
}

/* Figma: dotted wave mesh — top-right + bottom-left only; −50.33° / opposed angle; Multiply; fade to center */
.particle-mesh-wave {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle-mesh-wave__panel {
  position: absolute;
  width: min(1044px, 92vw);
  aspect-ratio: 1044 / 639.5476974371146;
  height: auto;
  opacity: 1;
  mix-blend-mode: multiply;
}

/* Top-right corner (Figma rotation) */
.particle-mesh-wave__panel--tr {
  top: min(-36vh, -240px);
  right: min(-5vw, -20px);
  bottom: auto;
  left: auto;
  transform: rotate(-50.33deg);
  transform-origin: 78% 18%;
}

/* Bottom-left corner — diagonal opposite of TR */
.particle-mesh-wave__panel--bl {
  bottom: min(-36vh, -240px);
  left: min(-5vw, -20px);
  top: auto;
  right: auto;
  transform: rotate(50.33deg);
  transform-origin: 22% 82%;
}

.particle-mesh-wave__mesh {
  position: absolute;
  inset: 0;
  background-image: url("images/particle-mesh-wave.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  /* Soft vignette so dots dense at corner, fade toward hero center */
  -webkit-mask-image: radial-gradient(ellipse 95% 95% at var(--pm-mask-x, 100%) var(--pm-mask-y, 0%),
      #000 22%,
      rgba(0, 0, 0, 0.55) 48%,
      transparent 78%);
  mask-image: radial-gradient(ellipse 95% 95% at var(--pm-mask-x, 100%) var(--pm-mask-y, 0%),
      #000 22%,
      rgba(0, 0, 0, 0.55) 48%,
      transparent 78%);
}

.particle-mesh-wave__panel--tr .particle-mesh-wave__mesh {
  --pm-mask-x: 92%;
  --pm-mask-y: 8%;
}

.particle-mesh-wave__panel--bl .particle-mesh-wave__mesh {
  --pm-mask-x: 8%;
  --pm-mask-y: 92%;
  transform: scale(-1, -1);
}

@media (max-width: 900px) {
  .particle-mesh-wave__panel--tr {
    width: min(1044px, 145vw);
    top: min(-38vh, -200px);
    right: -20vw;
    transform: rotate(-50.33deg) scale(0.9);
  }

  .particle-mesh-wave__panel--bl {
    width: min(1044px, 145vw);
    bottom: min(-38vh, -200px);
    left: -20vw;
    transform: rotate(50.33deg) scale(0.9);
  }
}

@media (max-width: 480px) {
  .particle-mesh-wave__panel--tr {
    width: min(920px, 175vw);
    top: -42vh;
    right: -36vw;
    transform: rotate(-50.33deg) scale(0.78);
  }

  .particle-mesh-wave__panel--bl {
    width: min(920px, 175vw);
    bottom: -42vh;
    left: -36vw;
    transform: rotate(50.33deg) scale(0.78);
  }
}

/* Single full-bleed layer (no parallax) */
.particle-mesh--single {
  background-image: url("images/particle-mesh.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.55;
}

.sd-hero {
  position: relative;
  background-color: #5b7d99;
  color: #ffffff;
  padding: clamp(56px, 10vw, 88px) 24px clamp(64px, 11vw, 96px);
  overflow: hidden;
}

.sd-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.sd-hero__title {
  font-family: var(--display-md-semibold-font-family, "Roboto", Helvetica, Arial, sans-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.12;
  color: #ffffff;
}

/* Hero only: full title white (intro below keeps split navy / steel on .sd-hl-*) */
.sd-hero__title .sd-hl-software,
.sd-hero__title .sd-hl-development {
  color: #ffffff;
}

.sd-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.98);
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.sd-btn--hero-cta {
  background: #eef1f5;
  color: #1a3654;
  border-radius: 999px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  box-shadow: none;
}

.sd-btn--hero-cta:hover {
  background: #ffffff;
  color: #152a40;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.sd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.sd-btn--white {
  background: #ffffff;
  color: #2c4a63;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.sd-btn--white:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sd-intro {
  background: #ffffff;
  padding: 56px 0 64px;
}

.sd-intro__text {
  margin: 14px 0 0;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #334155;
}

.sd-expert {
  background: #f4f4f4;
  padding: 56px 0 64px;
}

.sd-cards {
  display: grid;
  gap: 24px;
}

.sd-cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

.sd-cards--4 {
  grid-template-columns: repeat(4, 1fr);
}

.sd-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.sd-card--ghost {
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.05);
}

.sd-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(91, 125, 153, 0.18);
  color: #3d5670;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sd-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 10px;
}

.sd-card__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #475569;
}

.sd-deliver {
  background: #ffffff;
  padding: 56px 0 64px;
}

.sd-deliver__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sd-checklist {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.sd-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #64748b;
  margin-bottom: 14px;
}

.sd-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #5b7d99;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.sd-check svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.sd-deliver__visual {
  display: flex;
  justify-content: center;
}

.sd-mock-ui {
  width: 100%;
  max-width: 420px;
  background: #eef2f6;
  border-radius: 12px;
  padding: 16px;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.sd-mock-ui__bar {
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, #cbd5e1, #e2e8f0);
  margin-bottom: 16px;
}

.sd-mock-ui__rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sd-mock-ui__rows span {
  height: 44px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.sd-mock-ui__rows .sd-mock-ui__wide {
  grid-column: 1 / -1;
  height: 72px;
}

.sd-features {
  background: linear-gradient(165deg, #5b7d99 0%, #4a6782 100%);
  padding: 56px 0 64px;
  color: #ffffff;
}

.sd-features__lead {
  text-align: left;
  margin: -8px auto 36px;
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.92;
}

.sd-feature-tile {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 24px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  backdrop-filter: blur(8px);
}

.sd-feature-tile__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 0 16px 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.sd-feature-tile__ico svg {
  display: block;
}

.sd-feature-tile h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.sd-feature-tile p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.92;
}

.sd-industries {
  background: #ffffff;
  padding: 56px 0 64px;
}

.sd-industries__sub {
  text-align: center;
  margin: -8px 0 32px;
  color: #64748b;
  font-size: 1rem;
}

.sd-cta {
  position: relative;
  background: linear-gradient(155deg, #5b7d99 0%, #3d5468 100%);
  padding: 72px 24px;
  overflow: hidden;
}

.sd-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(255, 255, 255, 0.15), transparent 55%);
  pointer-events: none;
}

.sd-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
}

.sd-cta__title {
  font-family: var(--display-md-semibold-font-family, "Roboto", Helvetica, Arial, sans-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.2;
}

.sd-cta__sub {
  margin: 0 0 28px;
  font-size: 1.0625rem;
  opacity: 0.94;
}

@media (max-width: 960px) {

  .sd-cards--3,
  .sd-cards--4 {
    grid-template-columns: 1fr;
  }

  .sd-deliver__grid {
    grid-template-columns: 1fr;
  }

  .sd-deliver__visual {
    order: -1;
  }
}

@media (max-width: 480px) {
  .sd-hero {
    padding: 48px 18px 56px;
  }

  .particle-mesh--dual .particle-mesh__layer--back {
    opacity: 0.3;
  }

  .particle-mesh--dual .particle-mesh__layer--front {
    opacity: 0.42;
  }

  .sd-container {
    padding: 0 18px;
  }
}

/* -------------------------------------------------------------------------- */
/* Glass login (Issuer / Investor / portal)                                   */
/* -------------------------------------------------------------------------- */

.login-glass-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--single-line-body-base-font-family, "Roboto", Helvetica, Arial, sans-serif);
}

.login-glass-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  box-sizing: border-box;
  background: linear-gradient(145deg, #2d1b69 0%, #4c3d8f 35%, #2563ab 90%);
}

.login-glass-page--portal {
  align-items: flex-start;
  padding-top: 48px;
}

.login-glass-card {
  width: 100%;
  max-width: 420px;
  padding: 40px 36px 36px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.login-glass-logo-link {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.login-glass-logo {
  max-width: 200px;
  height: auto;
}

.login-glass-title {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 14px;
  line-height: 1.2;
}

.login-glass-intro {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
  line-height: 1.55;
  text-align: center;
  margin: 0 0 24px;
}

.login-glass-errors.validation-summary-errors {
  background: rgba(220, 38, 38, 0.25);
  border: 1px solid rgba(252, 165, 165, 0.5);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
  color: #fef2f2;
  font-size: 0.875rem;
}

.login-glass-errors ul {
  margin: 0;
  padding-left: 18px;
}

.login-glass-form .field-validation-error {
  display: block;
  color: #fecaca;
  font-size: 0.8125rem;
  margin-top: 6px;
}

.login-glass-field {
  margin-bottom: 18px;
}

.login-glass-label {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.login-glass-input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.login-glass-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.login-glass-input:focus {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.16);
}

.login-glass-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.login-glass-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  cursor: pointer;
}

.login-glass-check input {
  width: 16px;
  height: 16px;
  accent-color: #5a7d9a;
}

.login-glass-link {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  text-decoration: underline;
}

.login-glass-link:hover {
  color: #ffffff;
}

.login-glass-submit {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.login-glass-submit:hover {
  background: #000000;
}

.login-glass-submit:active {
  transform: scale(0.99);
}

.login-glass-register {
  text-align: center;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

.login-glass-link-strong {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
}

.login-glass-card--investor {
  padding-bottom: 28px;
}

/* Login portal chooser */

.login-glass-portal {
  width: 100%;
  max-width: 520px;
  padding: 40px 36px 44px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.login-glass-title--portal {
  margin-bottom: 8px;
}

.login-glass-intro--portal {
  margin-bottom: 28px;
}

.login-glass-portal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.login-glass-portal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
}

.login-glass-portal-card:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.login-glass-portal-card__label {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.login-glass-portal-card__sub {
  font-size: 0.8125rem;
  line-height: 1.45;
  opacity: 0.88;
}

.login-glass-portal__note {
  text-align: center;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
}

@media (max-width: 520px) {
  .login-glass-portal__grid {
    grid-template-columns: 1fr;
  }

  .login-glass-card,
  .login-glass-portal {
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* Home header — “Choose Login” modal (before glass Issuer / Investor pages) */
body.login-choice-modal-active {
  overflow: hidden;
}

.login-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s;
}

.login-choice-modal--open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.login-choice-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  cursor: pointer;
}

.login-choice-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  box-sizing: border-box;
}

.login-choice-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  border-radius: 8px;
}

.login-choice-modal__close:hover {
  background: #f1f5f9;
  color: #1e293b;
}

.login-choice-modal__title {
  margin: 0 0 24px;
  color: #373940;
  font-size: 36px;
  font-weight: 500;
  line-height: 44px; /* 122.222% */
  letter-spacing: -0.72px;
}

.login-choice-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.login-choice-modal__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  border: 1px solid #D9DADF;
  border-radius: 12px;
  background: #fff;
  min-height: 235px;
  gap: 24px;
}

.login-choice-modal__icon {
  margin-bottom: 4px;
}

.login-choice-modal__card-title {
  color: #373940;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.login-choice-modal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  width: 100%;
  max-width: 220px;
  padding: 11px 18px;
  background: #5a7d9a;
  color: #ffffff !important;
  border-radius: 999px;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-sizing: border-box;
}

.login-choice-modal__cta:hover {
  background: #4d6d88;
  color: #ffffff !important;
}

.login-choice-modal__note {
  margin: 0;
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

.login-choice-modal__link {
  color: #5a7d9a;
  font-weight: 600;
  text-decoration: none;
}

.login-choice-modal__link:hover {
  text-decoration: underline;
}

@media (max-width: 520px) {
  .login-choice-modal__grid {
    grid-template-columns: 1fr;
  }

  .login-choice-modal__card {
    min-height: 0;
  }
}

/* Home header — issuer signup flow (modal before wizard) */
body.issuer-signup-modal-active {
  overflow: hidden;
}

body.shareholder-signup-modal-active {
  overflow: hidden;
}

.issuer-signup-modal {
  position: fixed;
  inset: 0;
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s;
}

.issuer-signup-modal--open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.issuer-signup-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  cursor: pointer;
}

.issuer-signup-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: min(92vh, 900px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  box-sizing: border-box;
}

.home-page-final .issuer-signup-modal__dialog--wizard {
  max-width: 960px;
  padding: 44px 28px 28px;
}

.home-page-final .issuer-signup-modal-popup-brand {
  margin-bottom: 4px;
}

.home-page-final .issuer-signup-modal-popup-kicker {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #64748b;
  text-align: left;
}

.home-page-final .issuer-signup-modal__dialog--wizard .isu-signup-h1 {
  margin-top: 0;
}

.home-page-final .issuer-signup-modal__dialog--wizard .isu-stepper {
  margin-bottom: 18px;
}

.home-page-final .register-modal-switch {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
}

.home-page-final .register-modal-switch a {
  color: #5a7d9a;
  font-weight: 600;
  text-decoration: none;
}

.home-page-final .register-modal-switch a:hover {
  text-decoration: underline;
}

.home-page-final .register-form-corp-note {
  margin: 4px 0 18px;
}

.home-page-final .register-form-corp-note__text {
  margin: 0;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.home-page-final .register-form-corp-note__icon {
  margin-right: 6px;
  color: #5a7d9a;
  font-weight: 700;
}

.home-page-final .register-modal-terms-link {
  margin: 12px 0 16px;
  font-size: 13px;
  text-align: center;
}

.home-page-final .register-modal-terms-link a {
  color: #5a7d9a;
  font-weight: 600;
}

.home-page-final .register-form-agreement {
  margin: 16px 0 8px;
  font-size: 14px;
  line-height: 1.45;
  color: #334155;
}

.home-page-final .register-form-agreement label {
  display: inline;
  font-weight: 400;
  margin-left: 6px;
}

.home-page-final .register-form-actions {
  margin-top: 16px;
}

.issuer-signup-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  border-radius: 8px;
}

.issuer-signup-modal__close:hover {
  background: #f1f5f9;
  color: #1e293b;
}

.home-page-final button.buttons-button-wrapper {
  font: inherit;
  cursor: pointer;
}

/* -------------------------------------------------------------------------- */
/* Service landing pages (IssuerServices / shareholder tools)                 */
/* -------------------------------------------------------------------------- */

.svc-page {
  width: 100%;
  align-self: stretch;
}

.svc-section {
  padding: 52px 0 56px;
}

.svc-section--gray {
  background: #f4f4f4;
}

.svc-section--white {
  background: #ffffff;
}

.svc-section__narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.svc-section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
  padding: 0 24px;
}

.svc-section-head__title {
  font-family: var(--display-md-semibold-font-family, "Roboto", Helvetica, Arial, sans-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: #1e3a5f;
  margin: 0 0 12px;
  line-height: 1.25;
}

.svc-section-head__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}

.svc-section-head__lead--neutral-900 {
  color: #373940;
}

.svc-highlight {
  color: #5a7d9a;
}

.svc-card-grid {
  display: grid;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.svc-card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.svc-card-line {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 22px 22px 22px;
  border: 1px solid #e8eef4;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

/* Platform Capabilities variant — centred, larger icon, light grey bg */
.svc-card-line--platform {
  background: #f5f7fa;
  border-color: #eaeff5;
  text-align: center;
  align-items: center;
  padding: 36px 28px;
}

.svc-card-line--platform .svc-card-line__ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin: 0 auto 18px;
}

.svc-card-line--platform .svc-card-line__ico svg {
  width: 26px;
  height: 26px;
}

.svc-card-line__ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(90, 125, 154, 0.14);
  color: #3d5f78;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.svc-card-line__ico svg {
  display: block;
}

.svc-card-line__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px;
}

.svc-card-line__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #475569;
}

.svc-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 24px;
}

.svc-how {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.svc-how__step {
  text-align: center;
}

.svc-how__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1e3a5f;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.svc-how__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px;
}

.svc-how__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #64748b;
}

.svc-split {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.svc-split__title {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #1e3a5f;
  margin: 0 0 16px;
  line-height: 1.25;
}

.svc-split__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
}

.svc-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.svc-mini-tile {
  background: #f1f5f9;
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.svc-mini-tile__ico {
  font-size: 22px;
  margin-bottom: 8px;
}

.svc-mini-tile__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #334155;
}

.svc-benefits-head {
  text-align: center;
  margin-bottom: 32px;
}

.svc-benefits-head__title {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 10px;
}

.svc-edgar-split-head {
  max-width: 1100px;
  margin: 0 auto 28px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.svc-edgar-split-head h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

.svc-edgar-split-head p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}

.svc-edgar-forms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.svc-edgar-form-cell {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border-radius: 10px;
  padding: 12px 16px;
  border: 1px solid #e8eef4;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.svc-edgar-form-cell__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #475569;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  white-space: nowrap;
}

.svc-edgar-form-cell__meta {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.3;
}

.svc-edgar-note {
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 0 24px;
  font-size: 0.8125rem;
  color: #64748b;
}

.svc-contact-form-wrap {
  max-width: 560px;
  margin: 44px auto 0;
  padding: 0 24px;
}

.svc-form-panel {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 26px 32px;
  border: 1px solid #e8eef4;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.svc-form-panel h3 {
  margin: 0 0 18px;
  font-size: 1.25rem;
  color: #1e293b;
}

.svc-field {
  margin-bottom: 16px;
}

.svc-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.svc-field input[type="text"],
.svc-field input[type="email"],
.svc-field input[type="tel"],
.svc-field select {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
}

.svc-field input:focus,
.svc-field select:focus {
  outline: 2px solid rgba(90, 125, 154, 0.35);
  border-color: #5a7d9a;
}

.svc-submit {
  margin-top: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  background: #5a7d9a;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

.svc-submit:hover {
  background: #4d6d88;
}

.svc-band-dark {
  background: linear-gradient(155deg, #5a7d9a 0%, #4a6d8a 100%);
  color: #ffffff;
  padding: 48px 24px;
}

.svc-band-dark__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.svc-band-dark__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.svc-band-dark__sub {
  margin: 0 0 24px;
  opacity: 0.92;
  font-size: 0.9375rem;
}

.svc-req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.svc-req-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  padding: 20px 18px;
  backdrop-filter: blur(8px);
}

.svc-req-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.svc-req-card__ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ffffff;
  color: #4a6d8a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-req-card__ico svg {
  display: block;
}

.svc-req-card__step {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.95;
}

.svc-req-card__title {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 10px;
}

.svc-req-card__desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  opacity: 0.92;
}

.svc-fees {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.svc-fee-card {
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}

.svc-fee-card--dark {
  background: #222e3c;
  color: #ffffff;
}

.svc-fee-card--light {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
}

.svc-fee-card__label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 10px;
}

.svc-fee-card__amt {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1;
}

.svc-fee-card__note {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  opacity: 0.88;
}

.svc-processing {
  max-width: 900px;
  margin: 36px auto 0;
  padding: 0 24px;
}

.svc-processing__banner {
  --svc-processing-accent: #155dfc;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #eef4f9;
  border-radius: 12px;
  padding: 24px 28px;
  border: 1px solid #d8e6f2;
}

.svc-processing__ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(21, 93, 252, 0.12);
  color: #155dfc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-processing__ico svg {
  display: block;
  width: 22px;
  height: 22px;
}

.svc-processing__body {
  min-width: 0;
}

.svc-processing__eyebrow {
  margin: 0 0 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #155dfc;
}

.svc-processing__title {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.svc-processing__text {
  margin: 0;
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.svc-processing__highlight {
  color: #155dfc;
  font-weight: 700;
}

/* Service pages: bottom CTA partial (_ServicePageCta) */
.svc-page .CTA {
  position: relative;
  align-self: stretch;
  width: 100%;
  min-height: 400px;
  background-color: #5b7d99;
  overflow: hidden;
  box-sizing: border-box;
}

.svc-page .frame-48 {
  display: flex;
  flex-direction: column;
  width: 715px;
  max-width: calc(100% - 200px);
  align-items: flex-start;
  gap: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100px;
  z-index: 1;
}

.svc-page .frame-49 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 16px;
}

.svc-page .text-wrapper-20 {
  width: 100%;
  margin: 0;
  font-family: var(--display-xl-semibold-font-family, "Roboto", Helvetica, Arial, sans-serif);
  font-weight: var(--display-xl-semibold-font-weight, 600);
  color: #ffffff;
  font-size: var(--display-xl-semibold-font-size, clamp(1.75rem, 4vw, 2.5rem));
  letter-spacing: var(--display-xl-semibold-letter-spacing, normal);
  line-height: var(--display-xl-semibold-line-height, 1.2);
}

.svc-page .text-wrapper-21 {
  margin: 0;
  font-family: var(--text-lg-regular-font-family, "Roboto", Helvetica, Arial, sans-serif);
  font-weight: var(--text-lg-regular-font-weight, 400);
  color: #ffffff;
  font-size: var(--text-lg-regular-font-size, 1.125rem);
  line-height: var(--text-lg-regular-line-height, 1.5);
}

.svc-page .buttons-button-3 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  gap: 8px;
  padding: 14px 18px;
  background-color: #ffffff;
  border-radius: 99px;
  border: 1px solid var(--colors-primary-primary-500, #5b7d99);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.svc-page .text-7 {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: var(--colors-primary-primary-500, #5b7d99);
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.svc-page .group {
  position: absolute;
  width: 813px;
  height: 100%;
  top: 0;
  left: 627px;
  mix-blend-mode: luminosity;
  object-fit: cover;
  pointer-events: none;
}

@media (max-width: 960px) {
  .svc-page .CTA {
    min-height: 500px;
  }

  .svc-page .frame-48 {
    left: 40px;
    max-width: calc(100% - 80px);
    width: auto;
  }

  .svc-page .group {
    left: auto;
    right: 0;
    width: 50%;
    opacity: 0.4;
  }
}

.svc-share-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 24px 56px;
}

.svc-share-form-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 28px 36px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid #eef2f6;
}

.svc-share-form-card__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px;
}

.svc-share-form-card__sub {
  text-align: center;
  margin: 0 0 22px;
  color: #64748b;
  font-size: 1rem;
}

.svc-share-form-card .svc-field label.required::after {
  content: " *";
  color: #b91c1c;
}

.svc-lock-note {
  margin-top: 18px;
  font-size: 0.8125rem;
  color: #64748b;
  text-align: center;
}

.svc-cta {
  padding-left: 0;
  padding-right: 0;
}

.svc-cta--left .sd-cta__inner,
.svc-cta__wrap .svc-cta__inner {
  text-align: left;
  max-width: 640px;
  margin: 0;
}

.svc-cta__wrap {
  display: flex;
  justify-content: flex-start;
}

.svc-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.svc-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 8px;
}

.svc-cta__contact-link {
  font-family: var(--text-sm-regular-font-family, "Roboto", Helvetica, Arial, sans-serif);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.svc-cta__contact-link:hover,
.svc-cta__contact-link:focus-visible {
  color: #ffffff;
}

.svc-cta__arrow {
  font-size: 1.1em;
}

.svc-two-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.svc-bordered-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px;
  border: 1px solid #e2e8f0;
}

.svc-bordered-card__row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.svc-bordered-card__ico {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(90, 125, 154, 0.15);
  color: #3d5f78;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-bordered-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #1e293b;
}

.svc-bordered-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #64748b;
}

.svc-bordered-card--stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.svc-page .svc-bordered-card--stacked .svc-bordered-card__ico,
.svc-page .svc-bordered-card__ico--circle {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 20px;
  background: rgba(90, 125, 154, 0.15);
}

.svc-page .svc-bordered-card--stacked h3 {
  font-weight: 700;
  margin: 0 0 10px;
  padding-top: 0;
}

@media (max-width: 960px) {

  .svc-card-grid--3,
  .svc-edgar-forms,
  .svc-platform-grid,
  .svc-how,
  .svc-req-grid {
    grid-template-columns: 1fr;
  }

  .svc-split,
  .svc-edgar-split-head,
  .svc-fees,
  .svc-two-col-cards {
    grid-template-columns: 1fr;
  }

  .svc-mini-grid {
    grid-template-columns: 1fr;
  }

  .svc-how {
    gap: 28px;
  }
}

/* -------------------------------------------------------------------------- */
/* Issuer signup wizard (NewIssuer — modal layout)                             */
/* -------------------------------------------------------------------------- */

.isu-signup-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--text-sm-regular-font-family, "Roboto", Helvetica, Arial, sans-serif);
  background: #1e293b;
}

.isu-signup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  z-index: 1;
}

.isu-signup-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 20px 16px 48px;
  box-sizing: border-box;
}

.isu-signup-topbar {
  max-width: 960px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.isu-signup-logo {
  height: 44px;
  width: auto;
}

.isu-signup-logo-link {
  text-decoration: none;
}

.isu-signup-topnav {
  display: flex;
  gap: 20px;
}

.isu-signup-topnav__link {
  font-size: 14px;
  font-weight: 500;
  color: #e2e8f0;
  text-decoration: none;
}

.isu-signup-topnav__link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.isu-signup-modal {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  padding: 28px 28px 32px;
  box-sizing: border-box;
}

.isu-signup-modal--wide {
  max-width: 960px;
}

.isu-signup-kicker {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #64748b;
}

.isu-signup-h1 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #1e293b;
  text-align: center;
}

.isu-signup-lead {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.55;
  color: #64748b;
  text-align: center;
}

.isu-signup-lead--compact {
  margin: -8px 0 18px;
  font-size: 14px;
}

.isu-signup-lead--compact a {
  color: #5a7d9a;
  font-weight: 600;
}

.isu-signup-modal--wide .isu-signup-kicker {
  text-align: center;
}

.isu-stepper {
  margin: 0 -8px 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid #e2e8f0;
  overflow-x: auto;
}

.isu-stepper__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  min-width: min-content;
}

.isu-stepper__item {
  flex: 0 0 auto;
}

.isu-stepper__label {
  display: block;
  padding: 10px 12px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}

.isu-stepper__item--active .isu-stepper__label {
  color: #1e3a5f;
  border-bottom-color: #5a7d9a;
}

.isu-stepper__item--done .isu-stepper__label {
  color: #64748b;
}

.isu-signup-content {
  font-size: 15px;
  line-height: 1.5;
  color: #334155;
}

.isu-signup-content .field-validation-error {
  color: #b91c1c;
  font-size: 13px;
}

.isu-signup-content .message-box {
  margin-bottom: 14px;
}

.isu-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .isu-form-grid {
    grid-template-columns: 1fr;
  }
}

.isu-field {
  margin-bottom: 14px;
}


.isu-field input[type="text"],
.isu-field input[type="email"],
.isu-field input[type="tel"],
.isu-field input[type="url"],
.isu-field select,
.isu-signup-content input[type="text"],
.isu-signup-content input[type="email"],
.isu-signup-content input[type="tel"],
.isu-signup-content input[type="url"],
.isu-signup-content select {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
}

.isu-field-full {
  grid-column: 1 / -1;
  margin-bottom: 14px;
}

.isu-radio-row {
  margin: 16px 0;
}

.isu-radio-row label strong {
  display: block;
  margin-bottom: 8px;
}

.isu-note {
  font-size: 13px;
  color: #64748b;
  margin: 12px 0 18px;
}

.isu-signup-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}

.isu-signup-actions--triple {
  justify-content: flex-start;
  gap: 16px;
}

.isu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.isu-btn--ghost {
  background: #ffffff;
  color: #334155;
  border: 1px solid #cbd5e1;
}

.isu-btn--ghost:hover {
  background: #f8fafc;
}

.isu-btn--muted {
  background: #e2e8f0;
  color: #334155;
}

.isu-btn--muted:hover {
  background: #cbd5e1;
}

.isu-btn--primary {
  background: #5a7d9a;
  color: #ffffff;
}

.isu-btn--primary:hover {
  background: #4d6d88;
}

.isu-table-wrap {
  overflow-x: auto;
  margin: 16px 0;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.isu-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.isu-table-wrap th,
.isu-table-wrap td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
}

.isu-table-wrap th {
  background: #f8fafc;
  font-weight: 600;
  color: #475569;
}

.isu-table-wrap tr:last-child td {
  border-bottom: none;
}

.isu-welcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
  margin-top: 8px;
}

@media (max-width: 720px) {
  .isu-welcome-grid {
    grid-template-columns: 1fr;
  }
}

.isu-welcome-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px 20px 20px;
  background: #f8fafc;
  box-sizing: border-box;
}

.isu-welcome-card__body {
  flex: 1 1 auto;
}

.isu-welcome-card__body>p:first-of-type {
  margin-top: 0;
}

.isu-welcome-card h2 {
  margin: 0 0 12px;
  font-size: 1.125rem;
  color: #1e293b;
}

.isu-welcome-card p {
  margin: 0 0 12px;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}

.isu-welcome-card ul {
  margin: 0 0 12px;
  padding-left: 18px;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

.isu-welcome-notice {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #92400e;
  font-size: 14px;
  line-height: 1.45;
}

.isu-welcome-card__actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.isu-welcome-card__actions .isu-btn {
  width: 100%;
  box-sizing: border-box;
}

.isu-welcome-footnote {
  margin: 24px 0 0;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

.isu-welcome-footnote a {
  color: #5a7d9a;
  font-weight: 500;
}

.isu-welcome-footnote a:hover {
  text-decoration: underline;
}

.isu-par-field {
  position: relative;
}

.isu-par-field .isu-dollar {
  position: absolute;
  left: 12px;
  top: 38px;
  color: #5a7d9a;
  font-weight: 600;
}

.isu-par-field input {
  padding-left: 26px;
}

.isu-cusip-hint {
  font-size: 12px;
  color: #64748b;
  margin: 4px 0 0;
}

/* ── Shareholder Registration Modal ─────────────────────────────────────────── */

.sh-register__issuer-note {
  color: #444;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin: 0 0 16px;
}

.sh-register__issuer-note a {
 
  color: #444;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
  &:hover {
    color: #5b7d99;
    text-decoration: underline;
  }
}

.sh-register__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sh-register__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  .sh-register__grid {
    grid-template-columns: 1fr;
  }
}

.sh-register__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sh-register__field--full {
  grid-column: 1 / -1;
  margin-bottom: 12px;
}

.sh-register__label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.sh-register__label--required::after {
  content: " *";
  color: #e53e3e;
}

.sh-register__input,
.sh-register__select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  color: #1e293b;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s ease;
  appearance: none;
}

.sh-register__input:focus,
.sh-register__select:focus {
  border-color: #5b7d99;
  box-shadow: 0 0 0 3px rgba(91, 125, 153, 0.12);
}

.sh-register__input::placeholder {
  color: #94a3b8;
}

.sh-register__select-wrap {
  position: relative;
}

.sh-register__select-wrap::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #64748b;
  pointer-events: none;
}

.sh-register__corp-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  padding: 10px 12px;
  background: #f0f6fb;
  border-radius: 8px;
  font-size: 13px;
  color: #334155;
  line-height: 1.5;
}

.sh-register__corp-note-icon {
  flex-shrink: 0;
  font-size: 16px;
  color: #5b7d99;
  margin-top: 1px;
}

.sh-register__agreement {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 12px 0 20px;
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

.sh-register__agreement input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 15px;
  height: 15px;
  accent-color: #5b7d99;
}

.sh-register__actions {
  display: flex;
  gap: 12px;
}

.sh-register__btn {
  flex: 1;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.sh-register__btn--ghost {
  background: #ffffff;
  color: #334155;
  border: 1.5px solid #cbd5e1;
}

.sh-register__btn--ghost:hover {
  background: #f1f5f9;
}

.sh-register__btn--primary {
  background: #3d5f78;
  color: #ffffff;
}

.sh-register__btn--primary:hover {
  background: #2d4f68;
}

/* === extracted-inline:start === */
/* Auto-extracted from inline style="..." in /Views and /Areas.
   Regenerate via dev-scripts/extract-inline-styles.js. is-NNN = Views,
   is-aNNN = Areas. */

.is-001 {
  display: none;
}

.is-002 {
  margin-top: 10px !important;
}

.is-003 {
  font-size: 20px !important;
}

.is-004 {
  margin: 10px;
  position: relative;
}

.is-005 {
  margin-top: 40px !important;
  font-size: 20px;
  font-weight: 600;
  margin: 20px auto;
  color: black !important;
}

.is-006 {
  margin-top: 40px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: black !important;
}

.is-007 {
  margin: 30px auto;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: black !important;
  line-height: 2em;
}

.is-008 {
  margin: 20px auto;
}

.is-009 {
  color: black !important;
}

.is-010 {
  font-size: 20px;
  font-weight: 600;
  color: #9dd227 !important;
  margin: 30px auto;
  text-align: center;
}

.is-015 {
  margin: 5px auto;
  font-size: 14px;
}

.is-016 {
  margin: 20px auto 10px;
  font-size: 15px;
}

.is-017 {
  margin-top: 10px;
  font-size: 16px;
}

.is-018 {
  margin-bottom: 20px;
}

.is-019 {
  font-weight: 300;
  font-size: 28px;
}

.is-020 {
  border-style: none;
}

.is-021 {
  display: inline;
}

.is-022 {
  width: 100%;
}

.is-023 {
  margin-bottom: 25px;
}

.is-024 {
  width: 5em;
}

.is-025 {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.is-033 {
  color: #b91c1c;
}

.is-034 {
  margin-bottom: 16px;
}

.is-035 {
  margin-bottom: 0;
}

.is-036 {
  margin-bottom: 18px;
}

.is-037 {
  margin-top: 16px;
}

.is-038 {
  text-align: center;
  margin-bottom: 18px;
}

.is-039 {
  margin-top: 28px;
}

.is-040 {
  margin-top: 12px;
}

.is-041 {
  width: 296px;
  height: 141px;
}

.is-042 {
  color: #53728b;
}

.is-043 {
  color: #53728B;
}

.is-044 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.is-045 {
  border: 1px solid #808080;
  position: relative;
}

.is-046 {
  display: inline-block;
  font-size: 13px;
}

.is-047 {
  padding: 0px 20px 0 20px;
}

.is-048 {
  display: inline-block;
  width: 45%;
}

.is-049 {
  margin: 0;
}

.is-050 {
  float: none;
}

.is-051 {
  margin-top: 4px;
}

.is-052 {
  font-size: 13px;
  color: #475569;
  margin: 18px 0;
}

.is-053 {
  margin-bottom: 14px;
}

.is-054 {
  font-size: 12px;
  color: #64748b;
  margin-left: 8px;
}

.is-055 {
  margin-top: 8px;
}

.is-056 {
  margin-top: 24px;
}

.is-057 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: #1e3a5f;
}

.is-058 {
  margin: 24px 0 10px;
  font-size: 1rem;
  color: #1e293b;
}

.is-059 {
  font-size: 14px;
}

.is-060 {
  margin: 20px 0 10px;
  font-size: 1rem;
  color: #1e293b;
}

.is-062 {
  font-size: 14px;
  color: #64748b;
  margin: 16px 0 8px;
}

.is-063 {
  font-size: 12px;
}

.is-087 {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 12px;
  background: #f8fafc;
  padding: 12px;
  border-radius: 6px;
  overflow: auto;
}

.is-088 {
  text-align: right;
  padding-top: 10px;
  padding-bottom: 10px;
}

.is-089 {
  text-align: center;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 10px;
}

.is-090 {
  text-align: center;
  font-weight: bold;
  padding-top: 5px;
  padding-bottom: 5px;
}

.is-091 {
  color: #777;
}

.is-093 {
  clear: both;
}

.is-094 {
  float: right;
  text-align: left;
  margin-bottom: 1em;
  width: 220px;
}

.is-095 {
  color: orange;
}

.is-096 {
  z-index: 10;
}

.is-097 {
  margin-left: 20px;
}

.is-098 {
  float: right;
  text-align: right;
}

.is-099 {
  float: left;
  text-align: left;
}

.is-100 {
  flex-shrink: 0;
  margin-top: 3px;
}

.is-101 {
  margin-top: 24px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #64748b;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.is-102 {
  color: #ef4444;
}

.is-103 {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 24px;
}

.is-104 {
  color: #d97706;
  text-decoration: underline;
}

.is-105 {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 12px;
}

.is-106 {
  text-align: center;
  margin-bottom: 32px;
}

.is-107 {
  color: #444 !important;
  font-weight: 500;
  list-style-type: disc;
  padding-left: 20px;
}

.is-108 {
  font-weight: 500;
}

.is-109 {
  color: #444 !important;
  font-weight: 500;
  padding-left: 20px;
}

.is-110 {
  margin-bottom: 46px;
}

.is-111 {
  font-weight: 700;
}

.is-112 {
  margin-bottom: 28px;
}

.is-113 {
  text-decoration: underline;
}

.is-114 {
  font-size: 14px;
  font-weight: 500;
  color: #212529 !important;
}

.is-115 {
  font-weight: 900 !important;
}

.is-116 {
  margin-bottom: 32px;
}

.is-119 {
  width: 50px;
}

.is-120 {
  display: inline-block;
  margin-bottom: 24px !important;
  font-size: 17px;
  font-weight: 600;
  color: darkblue !important;
  text-decoration: underline;
}

.is-121 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 600;
  color: red;
}

.is-122 {
  color: darkblue !important;
  text-decoration: underline;
}

.is-123 {
  font-size: 17px;
  font-weight: 600;
  color: red;
}

.is-124 {
  color: #1e3a5f;
}

.is-a001 {
  float: right;
  right: 0px;
  top: -25px;
  position: relative;
}

.is-a002 {
  margin: 0;
}

.is-a003 {
  font-weight: 600;
}

.is-a004 {
  margin: 4px auto 14px auto;
  font-weight: 400;
  color: red;
}

.is-a005 {
  margin-bottom: 20px;
}

.is-a006 {
  margin-bottom: 10px;
}

.is-a007 {
  width: auto;
}

.is-a008 {
  margin-left: 17px;
}

.is-a009 {
  vertical-align: top;
}

.is-a010 {
  margin: 2px;
}

.is-a011 {
  width: 100px;
}

.is-a012 {
  display: none;
  margin-left: 50px;
}

.is-a013 {
  width: 20%;
  vertical-align: top;
}

.is-a014 {
  margin: 20px;
}

.is-a015 {
  width: 50%;
}

.is-a016 {
  clear: both;
}

.is-a017 {
  display: block;
  float: right;
}

.is-a018 {
  display: block;
  float: left;
}

.is-a019 {
  margin-left: 25px;
  height: 30px;
}

.is-a020 {
  display: block;
  float: left;
  color: Red;
}

.is-a021 {
  margin-top: 10px;
}

.is-a022 {
  margin-left: 25px;
}

.is-a023 {
  color: #737373;
  font-weight: bold;
}

.is-a024 {
  color: #737373;
  font-weight: bold;
  font-size: 18px;
}

.is-a025 {
  margin: 15px 0;
}

.is-a026 {
  width: 200px;
}

.is-a027 {
  width: 220px;
}

.is-a028 {
  display: none;
}

.is-a029 {
  margin-top: 12px;
}

.is-a030 {
  padding-left: 20px;
}

.is-a031 {
  width: 140px;
}

.is-a032 {
  width: 120px;
}

.is-a033 {
  float: right;
  margin-left: 40px;
}

.is-a034 {
  float: right;
  margin-left: 20px;
}

.is-a035 {
  width: 48%;
  max-width: fit-content;
  white-space: nowrap;
  padding-right: 10px;
}

.is-a036 {
  width: 30%;
}

.is-a037 {
  color: Black;
  font-style: italic;
}

.is-a038 {
  margin-bottom: 80px;
}

.is-a039 {
  padding-left: 10px;
}

.is-a040 {
  padding-left: 10px;
  white-space: nowrap;
}

.is-a041 {
  border: none;
  padding: 0;
}

.is-a042 {
  text-align: center;
}

.is-a043 {
  color: Black;
}

.is-a044 {
  margin-right: 8px;
}

.is-a045 {
  margin-left: 20px;
}

.is-a046 {
  display: block;
  float: left;
  margin-left: 50px;
}

.is-a047 {
  font-size: 10px;
}

.is-a048 {
  color: #ff0000;
}

.is-a049 {
  width: 140px;
  vertical-align: top;
}

.is-a050 {
  color: Red;
  text-align: justify;
}

.is-a051 {
  width: 500px;
  display: block;
  float: left;
}

.is-a052 {
  width: 100%;
}

.is-a053 {
  background-color: #EEE;
}

.is-a054 {
  color: #547010;
  cursor: pointer;
}

.is-a055 {
  float: right;
}

.is-a056 {
  padding-left: 15px;
}

.is-a057 {
  width: 200px;
  text-align: right;
  vertical-align: top;
}

.is-a058 {
  color: Red;
}

.is-a059 {
  width: 200px;
  text-align: right;
}

.is-a060 {
  display: inline-block;
  background-color: red;
  color: white;
  border-radius: 5px;
  padding: 2px 5px;
}

.is-a061 {
  padding-right: 200px;
}

.is-a062 {
  color: red;
}

.is-a063 {
  width: 70%;
}

.is-a064 {
  display: none;
  padding-left: 2em;
}

.is-a065 {
  font-size: small;
}

.is-a066 {
  max-width: 20px;
}

.is-a067 {
  margin: 20px auto;
}

.is-a068 {
  float: left;
  margin-bottom: 20px;
}

.is-a069 {
  display: block;
  height: 80px;
}


.is-a071 {
  color: #F00;
}

.is-a072 {
  margin-bottom: 30px;
}

.is-a073 {
  width: 80%;
}

.is-a074 {
  text-align: right;
}

.is-a075 {
  padding: 4px;
}

.is-a076 {
  font-weight: bold;
}

.is-a077 {
  margin-right: 20px;
}

.is-a078 {
  padding: 5px;
}

.is-a079 {
  margin-bottom: 10px;
  margin-top: 10px;
}

.is-a080 {
  font-size: 12px;
}

.is-a081 {
  padding: 10px 0px;
  margin-top: 20px;
}

.is-a082 {
  margin-right: 30px;
}

.is-a083 {
  width: 150px;
}

.is-a084 {
  width: 102px;
}

.is-a085 {
  width: 98%;
  margin-top: 20px;
}

.is-a086 {
  float: left;
  margin-bottom: 20px;
  width: 50%;
}


.is-a088 {
  width: 40%;
}

.is-a089 {
  margin-left: 15px;
}

.is-a090 {
  display: none;
  margin: 20px auto;
}

.is-a091 {
  margin-right: 2em;
  width: 50%;
}

.is-a092 {
  margin-top: 20px;
}

.is-a093 {
  padding-left: 80px;
  display: block;
}

.is-a094 {
  display: inline-block;
  margin-bottom: 24px !important;
  font-size: 17px;
  font-weight: 600;
  color: darkblue !important;
  text-decoration: underline;
}

.is-a095 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 600;
  color: red;
}

.is-a096 {
  padding: 20px;
}

.is-a097 {
  text-align: right;
  width: 100px;
}

.is-a098 {
  text-align: right;
  width: 150px;
  margin: 2px;
}

.is-a099 {
  margin-left: 50px;
  margin-top: 0.35em;
  margin-bottom: 1em;
}

.is-a100 {
  text-decoration: underline;
}

.is-a101 {
  border: none;
}

.is-a102 {
  color: green;
  font-weight: bold;
}

.is-a103 {
  color: red;
  font-weight: bold;
}

.is-a104 {
  font-size: 1.15em;
  color: #FE6300;
}

.is-a105 {
  font-size: 1.1em;
}

.is-a106 {
  width: 35%;
}

.is-a107 {
  width: 90%;
}

.is-a108 {
  font-size: 1.05em;
  color: #FE6300;
}

.is-a109 {
  font-size: 1.15em;
}

.is-a110 {
  width: 45%;
}

.is-a111 {
  position: relative;
  width: 90%;
}

.is-a112 {
  border: none !important;
  padding-top: 30px;
}

.is-a113 {
  text-align: right;
  width: 100px;
  margin: 2px;
}

.is-a114 {
  position: relative;
  margin: 2px;
  width: 90%;
}

.is-a115 {
  position: relative;
  margin-left: 10px;
  margin-top: 0.35em;
  margin-bottom: 1em;
}

.is-a116 {
  min-height: 600px;
}

.is-a117 {
  margin-right: 100px;
}

.is-a118 {
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}

.is-a119 {
  margin-top: 5px;
  margin-bottom: 10px;
}

.is-a120 {
  padding-left: 25px;
}

.is-a121 {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.is-a122 {
  margin-top: 10px;
  padding: 5px;
}

.is-a123 {
  margin-top: 5px;
  display: block;
}

.is-a124 {
  margin-top: 10px;
  line-height: 22px;
}

.is-a125 {
  margin-top: 5px;
}

.is-a126 {
  padding-left: 25px;
  padding-top: 5px;
  line-height: 18px;
}

/* === extracted-inline:end === */


.payment-required-field {
  margin-bottom: 0px !important;
}

.form-table td {
  padding: 5px;
}

.expiration-month {
  width: 100px !important;
}

.expiration-year {
  width: 100px !important;
}

.money-sign {
  position: absolute;
  left: 11px;
  font-weight: bold;
  font-size: 20px;
  top: 12px;
}

#PaymentAmount {
  padding-left: 20px;
  font-size: 16px;
  font-weight: bold;
  width: 150px;
}

input:focus,
select:focus {
  background-color: #ffe8d5;
  border-color: #f07d20;
}

