/* Sterling Asset Ltd — full marketing visual system (self-contained) */
:root {
  --void: #06101f;
  --ink: #0b1f3a;
  --slate: #163a5f;
  --silver: #9ec0dd;
  --mist: #eaf3fa;
  --fog: #ffffff;
  --metal: #5a7189;
  --accent: #0f62fe;
  --accent-soft: #4589ff;
  --line: rgba(11, 31, 58, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --muted: #3d5266;
  --success: #1a6bb5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.st-body {
  margin: 0;
  background: var(--fog);
  color: var(--ink);
  font-family: Raleway, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.st-body a {
  color: inherit;
  text-decoration: none;
}

body.st-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

.st-section-pad {
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
}

.st-container {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.st-display {
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
}

.st-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
}

.st-body-copy {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.75;
  font-weight: 400;
  color: var(--muted);
  margin: 0;
}

/* Button selectors beat body.st-body a { color: inherit } so labels stay white at rest */
body.st-body a.st-btn-primary,
body.st-body a.st-btn-ghost,
body.st-body a.st-btn-ink,
.st-btn-primary,
.st-btn-ghost,
.st-btn-ink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  font-family: inherit;
  text-align: center;
}

body.st-body a.st-btn-primary,
.st-btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

body.st-body a.st-btn-primary:hover,
.st-btn-primary:hover {
  background: #0043ce;
  border-color: #0043ce;
  color: #fff;
}

/* Solid white at rest so secondary CTAs stay visible on dark heroes (navy-on-void blends away) */
body.st-body a.st-btn-ghost,
.st-btn-ghost {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
  font-weight: 600;
}

body.st-body a.st-btn-ghost:hover,
.st-btn-ghost:hover {
  background: var(--mist);
  border-color: var(--mist);
  color: var(--ink);
}

body.st-body a.st-btn-ink,
.st-btn-ink {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

body.st-body a.st-btn-ink:hover,
.st-btn-ink:hover {
  background: var(--slate);
  border-color: var(--slate);
  color: #fff;
}

.st-btn-block {
  width: 100%;
}

.text-accent {
  color: var(--accent);
}

.text-accent-soft {
  color: var(--accent-soft);
}

.text-ink {
  color: var(--ink);
}

.text-muted {
  color: var(--muted);
}

.text-white {
  color: #fff;
}

.bg-void {
  background: var(--void);
}

.bg-ink {
  background: var(--ink);
}

.bg-mist {
  background: var(--mist);
}

.bg-fog {
  background: var(--fog);
}

/* Header */
.st-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  color: #fff;
  background: transparent;
}

.st-header.is-solid {
  background: #fff;
  color: var(--ink);
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: 0 1px 0 rgba(11, 31, 58, 0.06);
}

.st-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}

.st-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  max-width: min(9.5rem, 44vw);
}

.st-logo img {
  height: 1.5rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

/* Higher specificity than .st-logo img so only one lockup shows (home transparent header) */
.st-logo .st-logo-light {
  display: block;
}

.st-logo .st-logo-dark {
  display: none;
}

.st-header.is-solid .st-logo .st-logo-light {
  display: none;
}

.st-header.is-solid .st-logo .st-logo-dark {
  display: block;
}

.st-nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.st-nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.st-nav-links > li > a,
.st-nav-links > li > button {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.st-header.is-solid .st-nav-links > li > a,
.st-header.is-solid .st-nav-links > li > button {
  color: var(--muted);
}

.st-nav-links > li > a:hover,
.st-nav-links > li > button:hover,
.st-nav-links > li > a.is-active {
  color: #fff;
}

.st-header.is-solid .st-nav-links > li > a:hover,
.st-header.is-solid .st-nav-links > li > button:hover,
.st-header.is-solid .st-nav-links > li > a.is-active {
  color: var(--ink);
}

.st-dropdown {
  position: relative;
}

.st-dropdown-panel {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  padding-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 20;
}

.st-dropdown:hover .st-dropdown-panel,
.st-dropdown.is-open .st-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.st-dropdown-panel-inner {
  width: 14rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(6, 16, 31, 0.12);
  padding: 0.5rem 0;
}

.st-dropdown-panel-inner a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: var(--ink);
}

.st-dropdown-panel-inner a:hover {
  background: rgba(234, 243, 250, 0.85);
}

.st-nav-account {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 2rem;
}

.st-header.is-solid .st-nav-account {
  border-left-color: rgba(11, 31, 58, 0.15);
}

.st-nav-login {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.st-header.is-solid .st-nav-login {
  color: var(--ink);
}

body.st-body a.st-nav-register,
.st-nav-register {
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.6rem 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

body.st-body a.st-nav-register:hover,
.st-nav-register:hover {
  background: #0043ce;
  border-color: #0043ce;
  color: #fff;
}

.st-header.is-solid .st-nav-register,
body.st-body .st-header.is-solid a.st-nav-register {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.st-header.is-solid .st-nav-register:hover,
body.st-body .st-header.is-solid a.st-nav-register:hover {
  background: var(--slate);
  border-color: var(--slate);
  color: #fff;
}

.st-menu-toggle {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.st-header.is-solid .st-menu-toggle {
  border-color: rgba(11, 31, 58, 0.15);
  color: var(--ink);
}

.st-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.st-mobile-overlay.is-open {
  pointer-events: auto;
}

.st-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 31, 0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
  border: 0;
  width: 100%;
  cursor: pointer;
}

.st-mobile-overlay.is-open .st-mobile-backdrop {
  opacity: 1;
}

.st-mobile-panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100%, 20.5rem);
  height: 100%;
  background: #fff;
  color: var(--ink);
  box-shadow: -12px 0 32px rgba(6, 16, 31, 0.18);
  transform: translateX(100%);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.st-mobile-overlay.is-open .st-mobile-panel {
  transform: translateX(0);
}

.st-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.st-mobile-close {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 31, 58, 0.15);
  background: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--ink);
}

.st-mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
}

.st-mobile-section {
  margin-bottom: 1.5rem;
}

.st-mobile-section p {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.st-mobile-section a {
  display: block;
  padding: 0.75rem 0.15rem;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.st-mobile-foot {
  border-top: 1px solid var(--line);
  background: rgba(234, 243, 250, 0.7);
  padding: 1rem 1.25rem;
}

.st-mobile-foot .st-btn-primary {
  width: 100%;
}

.st-mobile-foot .st-mail {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
}

@media (min-width: 1024px) {
  .st-nav-desktop {
    display: flex;
  }

  .st-menu-toggle {
    display: none;
  }

  .st-logo {
    max-width: 9.75rem;
  }

  .st-logo img {
    height: 1.75rem;
  }
}

/* Hero */
.st-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--void);
  color: #fff;
}

.st-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.st-hero-slide.is-active {
  opacity: 1;
}

.st-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 16, 31, 0.94) 10%,
    rgba(6, 16, 31, 0.78) 48%,
    rgba(6, 16, 31, 0.5) 100%
  );
}

.st-hero-content {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 6rem;
  padding-top: 8rem;
}

.st-hero-copy {
  max-width: 48rem;
}

.st-hero-copy h1 {
  margin-top: 1.25rem;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.st-hero-copy .st-support {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

.st-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.st-hero-controls {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.st-hero-tabs {
  display: flex;
  flex: 1;
  max-width: 28rem;
  align-items: center;
  gap: 0.5rem;
}

.st-hero-tab {
  position: relative;
  height: 2px;
  flex: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.st-hero-tab span {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--accent);
  width: 0%;
}

.st-hero-tab.is-done span {
  width: 100%;
}

.st-hero-counter {
  display: none;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.st-hero-counter button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.st-hero-counter button:hover {
  color: #fff;
}

@media (min-width: 640px) {
  .st-hero-counter {
    display: flex;
  }
}

@media (min-width: 768px) {
  .st-hero-content {
    justify-content: center;
    padding-bottom: 5rem;
    padding-top: 7rem;
  }
}

/* Page hero (inner) */
.st-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--void);
  color: #fff;
  min-height: 72vh;
}

.st-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.st-page-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 16, 31, 0.8), rgba(6, 16, 31, 0.55), var(--void));
}

.st-page-hero-inner {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 5rem;
}

.st-page-hero h1 {
  margin-top: 1.25rem;
  max-width: 50rem;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
}

.st-page-hero .st-lede {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* Sections */
.st-section {
  padding-block: 5rem;
}

@media (min-width: 768px) {
  .st-section {
    padding-block: 6rem;
  }
}

.st-service-strip {
  border: 1px solid var(--line);
  background: #fff;
}

.st-service-row {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s ease;
}

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

.st-service-row:hover {
  background: rgba(234, 243, 250, 0.6);
}

.st-service-row h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.st-service-row p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

.st-service-explore {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

@media (min-width: 768px) {
  .st-service-row {
    grid-template-columns: 48px 220px 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
  }
}

.st-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  color: var(--ink);
  flex-shrink: 0;
}

.st-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.st-icon-light {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.st-grid-2 {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.st-grid-3 {
  display: grid;
  gap: 1.25rem;
}

.st-media {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .st-media {
    min-height: 420px;
  }
}

@media (min-width: 1024px) {
  .st-grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

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

.st-pillars {
  display: grid;
  border: 1px solid var(--line);
  margin-top: 3.5rem;
}

.st-pillar {
  background: #fff;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--line);
}

.st-pillar h3 {
  margin: 1.25rem 0 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.st-pillar p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
}

@media (min-width: 768px) {
  .st-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .st-pillar:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
}

@media (min-width: 1024px) {
  .st-pillars {
    grid-template-columns: repeat(3, 1fr);
  }

  .st-pillar:nth-child(odd) {
    border-right: 0;
  }

  .st-pillar:not(:nth-child(3n)) {
    border-right: 1px solid var(--line);
  }

  .st-pillar:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
}

.st-how {
  background: var(--ink);
  color: #fff;
}

.st-how-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.st-how-grid h3 {
  margin: 1.5rem 0 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.st-how-grid p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

.st-how-num {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-soft);
}

@media (min-width: 768px) {
  .st-how-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.st-plan-cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

.st-plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.75rem 2rem;
}

.st-plan-card h3 {
  margin: 1.25rem 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.st-plan-rate {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.st-plan-rate span {
  font-size: 1.1rem;
  color: var(--accent);
}

.st-plan-range {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.st-plan-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}

.st-plan-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.st-plan-list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
  background: var(--accent);
  border-radius: 50%;
}

.st-plan-card .st-btn-ink {
  margin-top: auto;
  width: 100%;
  padding-top: 2rem;
}

@media (min-width: 1024px) {
  .st-plan-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.st-calc {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.st-calc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.st-calc-inner {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.st-calc-panel {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  padding: 1.75rem 2rem;
}

.st-calc-panel label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.st-calc-panel select,
.st-calc-panel input {
  margin-top: 0.75rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(6, 16, 31, 0.6);
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  font-family: inherit;
  outline: none;
}

.st-calc-results {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.st-calc-results p.lbl {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.st-calc-results p.val {
  margin: 0.5rem 0 0;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

@media (min-width: 640px) {
  .st-calc-results {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .st-calc-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.st-trust-box {
  overflow: hidden;
  border: 1px solid var(--line);
  display: grid;
}

.st-trust-media {
  min-height: 260px;
  background-size: cover;
  background-position: center;
}

.st-trust-copy {
  background: var(--mist);
  padding: 2.5rem 1.75rem;
}

.st-trust-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

body.st-body a.st-btn-outline,
.st-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--ink);
  background: #fff;
  padding: 0.85rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.st-body a.st-btn-outline:hover,
.st-btn-outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.st-map-section {
  padding-block: 0 4rem;
}

.st-map-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--mist);
  aspect-ratio: 21 / 9;
  min-height: 240px;
  max-height: 420px;
}

.st-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.st-map-caption {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

@media (min-width: 640px) {
  .st-trust-actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .st-trust-box {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .st-trust-media {
    min-height: 100%;
  }

  .st-trust-copy {
    padding: 3rem 2.5rem;
  }
}

.st-quote-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.st-quote-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.st-avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.22);
}

.st-quote-card blockquote {
  margin: 1.5rem 0 0;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex: 1;
}

.st-faq-wrap {
  background: rgba(234, 243, 250, 0.6);
}

.st-faq-grid {
  display: grid;
  gap: 3rem;
}

.st-faq-item {
  border: 1px solid var(--line);
  background: #fff;
  margin-bottom: 0.75rem;
}

.st-faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.st-faq-toggle {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
}

.st-faq-a {
  display: none;
  border-top: 1px solid var(--line);
  padding: 1rem 1.25rem;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
}

.st-faq-item.is-open .st-faq-a {
  display: block;
}

@media (min-width: 1024px) {
  .st-faq-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.st-cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--void);
  color: #fff;
}

.st-cta-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background: radial-gradient(
      ellipse 70% 60% at 85% 20%,
      rgba(15, 98, 254, 0.35),
      transparent 55%
    ),
    linear-gradient(120deg, rgba(6, 16, 31, 0.2) 0%, transparent 50%);
}

.st-cta-inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding-block: 4rem;
}

.st-cta-stats {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.st-cta-stats > div {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
}

.st-cta-stats dt {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.st-cta-stats dd {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.st-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .st-cta-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .st-cta-actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .st-cta-inner {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 4rem;
  }

  .st-cta-actions {
    flex-direction: column;
  }
}

.st-markets {
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}

.st-markets-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1rem;
}

.st-frame {
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.5rem;
}

.st-frame h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.st-frame p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
}

.st-list-ruled {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.st-list-ruled li {
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
}

.st-stat-row {
  display: grid;
  gap: 1.5rem;
  background: var(--mist);
  padding: 1.5rem;
}

.st-stat-row strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.st-stat-row span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

@media (min-width: 640px) {
  .st-stat-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Forms (contact + auth helpers) */
.st-form label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.st-form input,
.st-form textarea,
.st-form select,
.st-form .inpts {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.st-form input:focus,
.st-form textarea:focus,
.st-form select:focus,
.st-form .inpts:focus {
  border-color: var(--ink);
}

.st-form .sbmt,
.st-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.55rem;
  background: var(--ink);
  color: #fff;
  border: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}

.st-form .sbmt:hover,
.st-form button[type="submit"]:hover {
  background: var(--slate);
}

.st-form table {
  width: 100%;
  border-collapse: collapse;
}

.st-form table td {
  padding: 0.35rem 0;
  vertical-align: top;
  color: var(--muted);
  font-size: 0.875rem;
}

.st-form .error,
.st-form ul[style*="red"] {
  color: #b42318 !important;
}

/* Footer */
.st-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--void);
  color: #fff;
}

.st-footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 3rem;
}

.st-footer-brand a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.st-footer-brand img {
  display: block;
  height: 1.35rem;
  width: auto;
  max-width: 7.25rem;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

.st-footer-brand p {
  margin: 1rem 0 0;
  max-width: 18rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.st-footer h4 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}

.st-footer ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.st-footer li {
  margin-bottom: 0.65rem;
}

.st-footer a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.st-footer a:hover {
  color: #fff;
}

.st-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 640px) {
  .st-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .st-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .st-footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  }
}

.st-mt-4 {
  margin-top: 1rem;
}
.st-mt-5 {
  margin-top: 1.25rem;
}
.st-mt-6 {
  margin-top: 1.5rem;
}
.st-mt-8 {
  margin-top: 2rem;
}
.st-mt-10 {
  margin-top: 2.5rem;
}
.st-mt-12 {
  margin-top: 3rem;
}
.st-mt-14 {
  margin-top: 3.5rem;
}
.st-flex-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.st-max-2xl {
  max-width: 42rem;
}
.st-max-3xl {
  max-width: 48rem;
}

/* Kill leftover theme chrome if somehow loaded */
#rs-header,
#rs-footer,
#scrollUp,
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

/* Sterling preloader */
.st-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: #06101f;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.st-preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.st-preloader-inner {
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
  display: grid;
  place-items: center;
}

.st-preloader-logo {
  position: relative;
  z-index: 1;
  display: block;
  height: 1.5rem;
  width: auto;
  max-width: 6.5rem;
  object-fit: contain;
}

.st-preloader-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(15, 98, 254, 0.22);
  border-top-color: #0f62fe;
  border-radius: 50%;
  animation: st-preloader-spin 0.85s linear infinite;
}

@keyframes st-preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Header tools + Google Translate */
.st-header-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.st-translate {
  line-height: 1;
  max-width: 11rem;
  overflow: visible;
}

.st-translate .goog-te-gadget {
  font-family: Raleway, Helvetica, sans-serif !important;
  font-size: 0 !important;
  color: transparent !important;
}

.st-translate .goog-te-gadget .goog-te-combo,
.st-translate select.goog-te-combo {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-family: Raleway, Helvetica, sans-serif !important;
  font-size: 0.75rem !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  text-transform: none !important;
  color: #0b1f3a !important;
  -webkit-text-fill-color: #0b1f3a !important;
  background: #fff !important;
  border: 1px solid rgba(11, 31, 58, 0.16);
  border-radius: 2px;
  padding: 0.35rem 0.45rem;
  max-width: 11rem;
  min-width: 7rem;
  height: auto !important;
  overflow: visible !important;
  cursor: pointer;
}

.st-translate .goog-te-gadget .goog-te-combo option,
.st-translate select.goog-te-combo option {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #0b1f3a !important;
  -webkit-text-fill-color: #0b1f3a !important;
  background: #fff !important;
  font-size: 0.85rem !important;
}

.st-header:not(.is-solid) .st-translate .goog-te-gadget .goog-te-combo,
.st-header:not(.is-solid) .st-translate select.goog-te-combo {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: rgba(6, 16, 31, 0.35) !important;
  border-color: rgba(255, 255, 255, 0.28);
}

.st-auth .st-translate .goog-te-gadget .goog-te-combo,
.st-auth .st-translate select.goog-te-combo {
  color: #0b1f3a !important;
  -webkit-text-fill-color: #0b1f3a !important;
  background: #fff !important;
  border-color: rgba(11, 31, 58, 0.15);
}

.goog-logo-link,
.goog-te-gadget > span {
  display: none !important;
}

.skiptranslate iframe {
  visibility: hidden !important;
}

body > .skiptranslate {
  display: none !important;
}
