:root {
  --bg-white: #ffffff;
  --bg-soft: #f6f9fd;
  --bg-dark: #07111f;
  --fonteia-blue: #3363E1;
  --fonteia-blue-dark: #244BB8;
  --fonteia-green: #31ce36;
  --fonteia-text: #111827;
  --fonteia-muted: #4b5563;
  --fonteia-line: #dbe5f2;
  --sb-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: var(--fonteia-text);
  background: var(--bg-white);
  font-family: var(--sb-font-sans);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(1824px, calc(100% - 224px));
  max-width: none;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sb-site-header {
  --sb-header-shell: min(1824px, calc(100% - 224px));

  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(216, 226, 238, 0.96);
  background: #ffffff;
  backdrop-filter: blur(16px);
}

.sb-site-header .container {
  width: var(--sb-header-shell);
  max-width: none;
}

.sb-site-header-bar {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 88px;
}

.sb-site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.sb-site-brand-mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
  color: #111827;
  background: transparent;
  font-size: 24px;
  font-weight: 600;
  overflow: visible;
}

.sb-site-brand-mark svg,
.sb-site-brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.sb-site-brand-mark svg path[fill="#ffffff"] {
  display: none;
}

.sb-site-brand-text {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-ia {
  color: #3363E1;
}

.sb-site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}

.sb-site-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: #111827;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.sb-site-nav-link:hover,
.sb-site-nav-link:focus,
.sb-site-nav-item[open] > .sb-site-nav-link {
  background: #f4f7fb;
  color: var(--fonteia-blue);
}

.sb-site-nav-item {
  position: static;
}

.sb-site-nav-item summary {
  list-style: none;
  cursor: pointer;
}

.sb-site-nav-item summary::-webkit-details-marker {
  display: none;
}

.sb-site-mega-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 1px);
  width: 100%;
  display: none;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(216, 226, 238, 0.96);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.sb-site-nav-item[open] > .sb-site-mega-panel,
.sb-site-nav-item:hover > .sb-site-mega-panel,
.sb-site-nav-item:focus-within > .sb-site-mega-panel {
  display: block;
}

.sb-site-mega-grid {
  width: var(--sb-header-shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sb-site-mega-link {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 22px;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.sb-site-mega-link:hover,
.sb-site-mega-link:focus {
  border-color: rgba(51, 99, 225, 0.16);
  background: #f8fbff;
}

.sb-site-mega-icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #eef4fb;
  color: #111827;
  font-size: 13px;
  font-weight: 600;
}

.sb-site-mega-copy {
  display: grid;
  gap: 6px;
}

.sb-site-mega-copy strong {
  color: #111827;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.sb-site-mega-copy small {
  color: #667085;
  font-size: 15px;
  line-height: 1.5;
}

.sb-site-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: max-content;
}

.sb-site-icon-button {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #f4f7fb;
  color: #111827;
  font-size: 18px;
  cursor: pointer;
}

.sb-site-icon-button svg {
  width: 18px;
  height: 18px;
}

.sb-site-icon-button:hover,
.sb-site-icon-button:focus {
  color: var(--fonteia-blue);
  background: #eef4fb;
}

.sb-hero-btn,
.sb-final-cta-button,
.fonteia-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.15;
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.34s ease, border-color 0.18s ease, color 0.18s ease;
}

.sb-site-action-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
  transition: background-position 0.34s ease, background-color 0.18s ease, color 0.18s ease;
}

.sb-site-action-button-primary,
.sb-final-cta-button,
.fonteia-search button {
  color: #ffffff;
  background-image: linear-gradient(90deg, #244BB8 0 50%, #3363E1 50% 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
}

.sb-site-action-button-primary:hover,
.sb-site-action-button-primary:focus,
.sb-final-cta-button:hover,
.sb-final-cta-button:focus,
.fonteia-search button:hover,
.fonteia-search button:focus {
  color: #ffffff;
  background-position: 0 0;
}

.sb-site-action-button-secondary {
  border: 0;
  color: #111827;
  background-image: linear-gradient(90deg, #dbe4ef 0 50%, #eef2f7 50% 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
}

.sb-site-action-button-secondary:hover,
.sb-site-action-button-secondary:focus {
  color: #111827;
  background-position: 0 0;
}

.sb-site-mobile-header-actions {
  display: none;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.sb-site-mobile-menu {
  display: none;
  margin-left: 0;
  position: relative;
}

.sb-site-mobile-menu summary {
  list-style: none;
  cursor: pointer;
}

.sb-site-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.sb-site-mobile-toggle {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #f4f7fb;
  color: #111827;
  font-size: 18px;
}

.sb-site-mobile-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: 83px;
  width: 100vw;
  height: calc(100vh - 83px);
  min-height: calc(100vh - 83px);
  padding: 28px 32px 40px;
  border-top: 1px solid #dbe7f3;
  background: #ffffff;
  box-shadow: none;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.sb-site-mobile-view {
  display: none;
}

.sb-site-mobile-view.is-active {
  display: block;
}

.sb-site-mobile-root {
  display: grid;
  gap: 6px;
}

.sb-site-mobile-link {
  width: calc(100% + 64px);
  margin: 0 -32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 50px;
  border: 0;
  border-radius: 22px;
  background: transparent;
  color: #111827;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.sb-site-mobile-link:hover,
.sb-site-mobile-link:focus {
  background: #f3f4f6;
  color: #111827;
}

.sb-hero {
  --sb-hero-shell: min(1824px, calc(100% - 224px));

  position: relative;
  min-height: 86vh;
  padding: 118px 0 92px;
  overflow: hidden;
  color: #111827;
  background:
    radial-gradient(circle at 18% 0%, rgba(51, 99, 225, 0.10) 0%, rgba(51, 99, 225, 0.04) 24%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 86% 0%, rgba(51, 99, 225, 0.06) 0%, rgba(51, 99, 225, 0.025) 24%, rgba(255, 255, 255, 0) 40%),
    #ffffff;
}

.sb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.34) 46%, rgba(0, 0, 0, 0) 86%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.34) 46%, rgba(0, 0, 0, 0) 86%);
  pointer-events: none;
}

.sb-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 78%);
  pointer-events: none;
}

.sb-hero .container {
  position: relative;
  z-index: 1;
  width: var(--sb-hero-shell);
  max-width: none;
}

.sb-hero-content {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.sb-hero-title {
  max-width: 1280px;
  margin: 0 auto 30px;
  color: #111827;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.sb-hero-description {
  max-width: 920px;
  margin: 0 auto 38px;
  color: #4b5563;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.68;
}

.fonteia-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: min(920px, 100%);
  min-height: 66px;
  margin: 0 auto 32px;
  padding: 7px;
  border: 1px solid #dbe5f2;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
}

.fonteia-search-field {
  display: flex;
  align-items: center;
  align-self: stretch;
  height: 52px;
  margin: 0;
  min-width: 0;
}

.fonteia-search-icon {
  flex: 0 0 auto;
  margin-left: 18px;
  margin-right: 12px;
  color: #6b7280;
  font-size: 22px;
  line-height: 1;
  transform: translateY(-2px);
}

.fonteia-search input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: #111827;
  background: transparent;
  font-size: 18px;
  line-height: 1.2;
  transform: translateY(-2px);
}

.fonteia-search input::placeholder {
  color: #6b7280;
}

.fonteia-search button {
  min-width: 130px;
  min-height: 52px;
}

.sb-hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  max-width: 920px;
  margin: 0 auto;
}

.sb-hero-trust li {
  position: relative;
  padding-left: 24px;
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.sb-hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--fonteia-green);
  box-shadow: 0 0 0 5px rgba(49, 206, 54, 0.14);
}

.sb-product,
.sb-api,
.sb-publics {
  --sb-section-shell: min(1824px, calc(100% - 224px));

  padding: 112px 0;
  background: #ffffff;
}

.sb-product .container,
.sb-api .container,
.sb-publics .container,
.sb-faq .container {
  width: var(--sb-section-shell);
  max-width: none;
}

.sb-api {
  background: #f6f9fd;
}

.sb-publics {
  color: #111827;
  background: #f6f9fd;
}

.sb-publics .sb-section-heading h2 {
  color: #111827;
}

.sb-publics .sb-section-heading p {
  color: #4b5563;
}

.sb-section-heading {
  max-width: 980px;
}

.sb-section-heading h2,
.sb-repurchase-cycle-heading h2 {
  max-width: 1040px;
  margin: 0 0 22px;
  color: #111827;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.sb-section-heading p,
.sb-repurchase-cycle-heading p {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.68;
}

.sb-product-grid,
.sb-publics-grid,
.sb-api-grid {
  display: grid;
  gap: 18px;
  margin-top: 52px;
}

.sb-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sb-publics-grid,
.sb-api-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sb-product-grid article,
.sb-publics-grid article,
.sb-api-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  background: #ffffff;
}

.sb-publics-grid article {
  border-color: #dbe5f2;
  background: #ffffff;
}

.sb-product-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: var(--fonteia-blue);
  background: #eef4fb;
  font-size: 13px;
  font-weight: 600;
}

.sb-product-grid h3,
.sb-publics-grid h3,
.sb-api-grid h3 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.22;
}

.sb-publics-grid h3 {
  color: #111827;
}

.sb-product-grid p,
.sb-publics-grid p,
.sb-api-grid p {
  margin: 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.62;
}

.sb-publics-grid p {
  color: #4b5563;
}

.sb-proof-compare {
  --sb-proof-shell: min(1824px, calc(100% - 224px));

  padding: 116px 0;
  color: #ffffff;
  background: #111827;
}

.sb-proof-compare .container {
  width: var(--sb-proof-shell);
  max-width: none;
}

.sb-proof-compare-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  column-gap: 86px;
  row-gap: 26px;
  align-items: end;
}

.sb-proof-compare-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.sb-proof-compare-heading p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.68;
}

.sb-proof-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 64px;
}

.sb-proof-card {
  min-height: 320px;
  padding: 34px 38px;
  border-radius: 8px;
  background: transparent;
}

.sb-proof-card-muted {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.sb-proof-card-highlight {
  border: 1px solid rgba(255, 255, 255, 0.86);
}

.sb-proof-card h3 {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.sb-proof-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding-left: 22px;
}

.sb-proof-card li {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.5;
}

.sb-proof-card-highlight li {
  color: #ffffff;
}

.sb-repurchase-cycle {
  --sb-repurchase-shell: min(1824px, calc(100% - 224px));

  padding: 96px 0;
  background: #ffffff;
}

.sb-repurchase-cycle .container {
  width: var(--sb-repurchase-shell);
  max-width: none;
}

.sb-repurchase-cycle-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  column-gap: 80px;
  row-gap: 24px;
  align-items: end;
  max-width: none;
  margin-bottom: 72px;
}

.sb-repurchase-cycle-heading h2 {
  margin: 0;
}

.sb-repurchase-cycle-heading p {
  max-width: 560px;
  margin: 0;
}

.sb-repurchase-cycle-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 58px 0 0;
  list-style: none;
  border-top: 2px solid rgba(51, 99, 225, 0.16);
}

.sb-repurchase-cycle-rail::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3363E1 0%, #3363E1 68%, #31ce36 100%);
  transform: scaleX(0.94);
  transform-origin: left center;
}

.sb-repurchase-cycle-rail li {
  position: relative;
  min-height: 178px;
  padding: 0 34px 0 0;
}

.sb-repurchase-cycle-rail li::before {
  content: "";
  position: absolute;
  top: -73px;
  left: -13px;
  width: 26px;
  height: 26px;
  border: 5px solid #ffffff;
  border-radius: 999px;
  background: #3363E1;
  box-shadow:
    0 0 0 1px rgba(51, 99, 225, 0.24),
    0 0 0 6px rgba(51, 99, 225, 0.08);
}

.sb-repurchase-cycle-rail li:last-child::before {
  background: #31ce36;
  box-shadow:
    0 0 0 1px rgba(49, 206, 54, 0.24),
    0 0 0 6px rgba(49, 206, 54, 0.10);
}

.sb-repurchase-cycle-rail li + li {
  padding-left: 34px;
  border-left: 1px solid rgba(217, 226, 239, 0.82);
}

.sb-repurchase-cycle-rail span {
  display: block;
  margin-bottom: 32px;
  color: rgba(51, 99, 225, 0.32);
  font-size: 54px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0;
}

.sb-repurchase-cycle-rail strong {
  display: block;
  margin-bottom: 10px;
  color: #0b1220;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.12;
}

.sb-repurchase-cycle-rail p {
  max-width: 210px;
  margin: 0;
  color: #374151;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

.sb-core-features {
  --sb-core-shell: min(1824px, calc(100% - 224px));

  padding: 128px 0;
  color: #ffffff;
  background: var(--bg-dark);
  overflow: hidden;
}

.sb-core-features .container {
  width: var(--sb-core-shell);
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.sb-core-band-intro {
  max-width: 980px;
}

.sb-core-band-intro > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sb-core-band-intro > span span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--fonteia-green);
}

.sb-core-band-intro h2 {
  max-width: 1040px;
  margin: 28px 0 22px;
  color: #ffffff;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.12;
}

.sb-core-band-intro p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.68;
}

.sb-source-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.sb-source-board article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.sb-source-board strong {
  display: block;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.28;
}

.sb-source-board p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.62;
}

.sb-api-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.16fr);
  gap: 72px;
  align-items: start;
}

.sb-api-grid {
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sb-faq {
  --sb-section-shell: min(1824px, calc(100% - 224px));

  padding: 96px 0 120px;
  color: #111827;
  background: var(--bg-white);
}

.sb-faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 96px;
  align-items: start;
}

.sb-faq-heading {
  position: sticky;
  top: 104px;
}

.sb-faq-heading span {
  display: block;
  margin-bottom: 22px;
  color: var(--fonteia-blue);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.sb-faq-heading h2 {
  max-width: 560px;
  margin: 0 0 22px;
  color: #111827;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.12;
}

.sb-faq-heading p {
  max-width: 520px;
  margin: 0;
  color: #4b5563;
  font-size: 20px;
  line-height: 1.68;
}

.sb-faq-list {
  border-top: 1px solid rgba(217, 226, 239, 0.58);
}

.sb-faq-list details {
  border-bottom: 1px solid rgba(217, 226, 239, 0.58);
}

.sb-faq-list summary {
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 24px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  color: #111827;
}

.sb-faq-list summary::-webkit-details-marker {
  display: none;
}

.sb-faq-list summary span {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.28;
}

.sb-faq-list summary::after {
  content: "+";
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3px;
  border: 1px solid #d9e2ef;
  border-radius: 999px;
  color: var(--fonteia-blue);
  background: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.sb-faq-list details[open] summary::after {
  content: "-";
  padding-bottom: 5px;
  color: #ffffff;
  border-color: var(--fonteia-blue);
  background: var(--fonteia-blue);
}

.sb-faq-list p {
  max-width: 760px;
  margin: -14px 76px 32px 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.68;
}

.sb-pricing {
  --sb-pricing-shell: min(1824px, calc(100% - 224px));

  scroll-margin-top: 118px;
  padding: 96px 0 112px;
  color: #111827;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #f6f9fd 100%);
}

.sb-pricing .container {
  width: var(--sb-pricing-shell);
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.sb-pricing-heading {
  max-width: 860px;
  margin-bottom: 64px;
}

.sb-pricing-heading h2 {
  margin: 0 0 20px;
  color: #111827;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.12;
}

.sb-pricing-heading p {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 20px;
  line-height: 1.68;
}

.sb-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.sb-plan-card {
  position: relative;
  min-width: 0;
  border: 1px solid #dbe5f2;
  border-radius: 22px;
  background: #ffffff;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.sb-plan-card:hover {
  transform: translateY(-4px);
  border-color: #b6c7dc;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.12);
}

.sb-plan-featured {
  border: 2px solid var(--fonteia-blue);
  transform: translateY(-8px);
  box-shadow: 0 22px 62px rgba(51, 99, 225, 0.17);
}

.sb-plan-featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 74px rgba(51, 99, 225, 0.22);
}

.sb-plan-dark {
  color: #ffffff;
  border-color: var(--bg-dark);
  background: var(--bg-dark);
  overflow: visible;
  box-shadow: 0 24px 64px rgba(7, 17, 31, 0.24);
}

.sb-plan-tag {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: #f97316;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.sb-plan-header {
  padding: 36px 32px 16px;
}

.sb-plan-name {
  display: block;
  margin: 0 0 6px;
  color: #111827;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.sb-plan-dark .sb-plan-name {
  color: #ffffff;
}

.sb-plan-limit {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.sb-plan-dark .sb-plan-limit {
  color: #cbd5e1;
}

.sb-price-box {
  padding: 0 32px 30px;
}

.sb-price-lead {
  margin-bottom: 12px;
  color: #111827;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.sb-price-lead span {
  text-decoration: line-through;
}

.sb-plan-dark .sb-price-lead {
  color: #ffffff;
}

.sb-price-current {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  min-height: 86px;
  color: #111827;
}

.sb-plan-dark .sb-price-current {
  color: #ffffff;
}

.sb-price-currency {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.sb-price-main {
  display: block;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
}

.sb-price-cents {
  margin-top: 12px;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.sb-price-period {
  margin-top: 8px;
  color: #4b5563;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.sb-plan-dark .sb-price-period {
  color: #cbd5e1;
}

.sb-plan-features {
  display: grid;
  gap: 14px;
  margin: auto 0 0;
  padding: 28px 32px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  list-style: none;
}

.sb-plan-dark .sb-plan-features {
  border-color: rgba(255, 255, 255, 0.12);
}

.sb-plan-features li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #374151;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.sb-plan-dark .sb-plan-features li {
  color: #e5e7eb;
}

.sb-plan-features i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--fonteia-green);
  font-size: 16px;
  line-height: 1;
}

.sb-plan-dark .sb-plan-features i {
  color: #16c75e;
}

.sb-plan-cta {
  padding: 30px 32px 22px;
}

.sb-plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  border: 0;
  border-radius: 45px;
  color: #ffffff;
  background: var(--fonteia-blue);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.18s ease, transform 0.18s ease, background-position 0.34s ease;
}

.sb-plan-button:hover,
.sb-plan-button:focus {
  color: #ffffff;
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.sb-plan-button-secondary {
  color: var(--fonteia-blue);
  border: 1px solid var(--fonteia-blue);
  background: #ffffff;
}

.sb-plan-button-secondary:hover,
.sb-plan-button-secondary:focus {
  color: var(--fonteia-blue);
}

.sb-plan-dark .sb-plan-button {
  color: #111827;
  background: #ffffff;
}

.sb-plan-dark .sb-plan-button:hover,
.sb-plan-dark .sb-plan-button:focus {
  color: #111827;
}

.sb-plan-note {
  margin-top: 12px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.sb-plan-dark .sb-plan-note {
  color: #cbd5e1;
}

.sb-plan-refund {
  padding: 16px 30px 22px;
  color: #111827;
  background: #f9fafb;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.sb-plan-dark .sb-plan-refund {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.sb-pricing-footnote {
  margin: 36px 0 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.5;
}

.sb-final-cta {
  --sb-final-cta-shell: min(1824px, calc(100% - 224px));

  position: relative;
  overflow: hidden;
  padding: 128px 0;
  color: #111827;
  background:
    radial-gradient(circle at 18% 100%, rgba(51, 99, 225, 0.16) 0%, rgba(51, 99, 225, 0.08) 24%, rgba(255, 255, 255, 0) 46%),
    radial-gradient(circle at 84% 100%, rgba(51, 99, 225, 0.11) 0%, rgba(51, 99, 225, 0.045) 24%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(0deg, rgba(246, 249, 253, 0.96) 0%, rgba(255, 255, 255, 0) 68%),
    #ffffff;
}

.sb-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 24, 39, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.052) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.58) 50%, rgba(0, 0, 0, 0.12) 86%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.58) 50%, rgba(0, 0, 0, 0.12) 86%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.sb-final-cta .container {
  position: relative;
  z-index: 1;
  width: var(--sb-final-cta-shell);
  max-width: none;
}

.sb-final-cta-content {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.sb-final-cta-content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-bottom: 34px;
  padding: 9px 18px;
  border: 1px solid rgba(51, 99, 225, 0.20);
  border-radius: 999px;
  color: var(--fonteia-blue);
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
}

.sb-final-cta h2 {
  max-width: 980px;
  margin: 0 auto 28px;
  color: #111827;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.1;
}

.sb-final-cta p {
  max-width: 720px;
  margin: 0 auto;
  color: #4b5563;
  font-size: 20px;
  line-height: 1.68;
}

.sb-final-cta-actions {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.sb-final-cta-button {
  min-width: 190px;
  min-height: 54px;
  padding: 0 28px;
}

.sb-site-footer {
  --sb-footer-shell: min(1824px, calc(100% - 224px));

  position: relative;
  padding: 112px 0 54px;
  overflow: hidden;
  color: #d9e6f7;
  background:
    radial-gradient(circle at 0% 100%, rgba(51, 99, 225, 0.12) 0%, rgba(51, 99, 225, 0) 32%),
    radial-gradient(circle at 100% 0%, rgba(51, 99, 225, 0.08) 0%, rgba(51, 99, 225, 0) 28%),
    var(--bg-dark);
}

.sb-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.07) 48%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.07) 48%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.sb-site-footer .container {
  position: relative;
  z-index: 1;
  width: var(--sb-footer-shell);
  max-width: none;
}

.sb-site-footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px 44px;
  align-items: start;
}

.sb-site-footer-brand-column {
  padding-right: 0;
}

.sb-site-footer-brand {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.sb-site-footer-brand-mark {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 72px;
  border-radius: 14px;
  color: #ffffff;
  background: #ffffff;
  color: #07111f;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.sb-site-footer-title {
  display: block;
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.sb-site-footer-subtitle {
  margin-top: 34px;
}

.sb-site-footer-column ul {
  display: grid;
  gap: 12px;
  margin: 0;
}

.sb-site-footer-column a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.5;
  transition: color 0.18s ease, transform 0.18s ease;
}

.sb-site-footer-column a:hover,
.sb-site-footer-column a:focus {
  color: #ffffff;
  transform: translateX(2px);
}

.sb-site-footer-segment-list {
  grid-template-columns: 1fr;
  gap: 12px;
}

.sb-site-footer-segment-list a {
  font-size: 15px;
  line-height: 1.5;
}

.sb-site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sb-site-footer-legal,
.sb-site-footer-locale {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.sb-site-footer-legal span,
.sb-site-footer-legal a,
.sb-site-footer-locale span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.5;
}

.sb-site-footer-legal a {
  transition: color 0.18s ease;
}

.sb-site-footer-legal a:hover,
.sb-site-footer-legal a:focus {
  color: #ffffff;
}

.sb-site-footer-legal > *:not(:last-child)::after,
.sb-site-footer-locale > *:not(:last-child)::after {
  content: "•";
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 1499.98px) {
  .sb-site-header {
    --sb-header-shell: min(1520px, calc(100% - 120px));
  }

  .sb-hero {
    --sb-hero-shell: min(1520px, calc(100% - 120px));
  }

  .sb-product,
  .sb-api,
  .sb-publics,
  .sb-faq {
    --sb-section-shell: min(1520px, calc(100% - 120px));
  }

  .sb-proof-compare {
    --sb-proof-shell: min(1520px, calc(100% - 120px));
  }

  .sb-repurchase-cycle {
    --sb-repurchase-shell: min(1520px, calc(100% - 120px));
  }

  .sb-core-features {
    --sb-core-shell: min(1520px, calc(100% - 120px));
  }

  .sb-pricing {
    --sb-pricing-shell: min(1520px, calc(100% - 120px));
  }

  .sb-final-cta {
    --sb-final-cta-shell: min(1520px, calc(100% - 120px));
  }

  .sb-site-footer {
    --sb-footer-shell: min(1520px, calc(100% - 120px));
  }

  .sb-hero-title {
    font-size: 58px;
  }
}

@media (max-width: 1399.98px) {
  .sb-site-footer {
    --sb-footer-shell: calc(100% - 120px);
  }

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

  .sb-site-footer-segment-list {
    grid-template-columns: 1fr;
  }

  .sb-site-footer-brand-column {
    grid-column: auto;
  }
}

@media (max-width: 1279.98px) {
  .sb-site-brand-text {
    display: none;
  }

  .sb-site-nav-link {
    padding: 0 14px;
    font-size: 14px;
  }
}

@media (max-width: 1099.98px) {
  .sb-site-header {
    --sb-header-shell: calc(100% - 56px);
  }

  .sb-hero {
    --sb-hero-shell: calc(100% - 56px);
  }

  .sb-product,
  .sb-api,
  .sb-publics,
  .sb-faq {
    --sb-section-shell: calc(100% - 56px);
  }

  .sb-proof-compare {
    --sb-proof-shell: calc(100% - 56px);
  }

  .sb-repurchase-cycle {
    --sb-repurchase-shell: calc(100% - 56px);
  }

  .sb-core-features {
    --sb-core-shell: calc(100% - 56px);
  }

  .sb-pricing {
    --sb-pricing-shell: calc(100% - 56px);
  }

  .sb-final-cta {
    --sb-final-cta-shell: calc(100% - 56px);
  }

  .sb-site-footer {
    --sb-footer-shell: calc(100% - 56px);
  }

  .sb-site-nav,
  .sb-site-actions {
    display: none;
  }

  .sb-site-mobile-header-actions {
    display: flex;
    justify-content: flex-end;
  }

  .sb-site-mobile-menu {
    display: block;
  }

  .sb-site-header-bar {
    min-height: 82px;
    gap: 12px;
  }

  .sb-site-mobile-header-actions {
    gap: 10px;
  }

  .sb-site-mobile-header-actions .sb-site-action-button {
    min-height: 48px;
    padding: 0 20px;
    font-size: 14px;
  }

  .sb-site-mobile-toggle {
    width: 48px;
    height: 48px;
  }

  .sb-hero {
    min-height: auto;
    padding: 92px 0 76px;
  }

  .sb-hero-title,
  .sb-section-heading h2,
  .sb-repurchase-cycle-heading h2,
  .sb-proof-compare-heading h2,
  .sb-core-band-intro h2,
  .sb-pricing-heading h2,
  .sb-faq-heading h2 {
    font-size: 44px;
  }

  .sb-product-grid,
  .sb-publics-grid,
  .sb-api-layout,
  .sb-api-grid,
  .sb-repurchase-cycle-rail,
  .sb-proof-compare-heading,
  .sb-proof-compare-grid,
  .sb-plan-grid,
  .sb-source-board,
  .sb-faq-layout {
    grid-template-columns: 1fr;
  }

  .sb-site-footer {
    padding: 64px 0 40px;
  }

  .sb-site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 28px;
  }

  .sb-site-footer-brand-column {
    grid-column: 1 / -1;
  }

  .sb-api-layout,
  .sb-proof-compare-heading,
  .sb-faq-layout {
    gap: 52px;
  }

  .sb-faq-heading {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .sb-site-header {
    --sb-header-shell: 100%;
  }

  .sb-hero {
    --sb-hero-shell: calc(100% - 24px);
  }

  .sb-product,
  .sb-api,
  .sb-publics,
  .sb-faq {
    --sb-section-shell: calc(100% - 24px);
  }

  .sb-proof-compare {
    --sb-proof-shell: calc(100% - 24px);
  }

  .sb-repurchase-cycle {
    --sb-repurchase-shell: calc(100% - 24px);
  }

  .sb-core-features {
    --sb-core-shell: calc(100% - 56px);
  }

  .sb-final-cta {
    --sb-final-cta-shell: calc(100% - 24px);
  }

  .sb-site-footer {
    --sb-footer-shell: calc(100% - 24px);
    padding: 42px 0 32px;
  }

  .sb-site-header .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .sb-site-header-bar {
    min-height: 76px;
    gap: 8px;
  }

  .sb-site-mobile-header-actions {
    gap: 8px;
  }

  .sb-site-mobile-header-actions .sb-site-action-button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }

  .sb-site-mobile-toggle {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .sb-site-mobile-panel {
    top: 77px;
    height: calc(100vh - 77px);
    min-height: calc(100vh - 77px);
    padding: 24px 20px 32px;
  }

  .sb-site-brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 19px;
  }

  .sb-site-mobile-link {
    min-height: 64px;
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 34px;
    font-size: 18px;
  }

  .sb-site-nav-link {
    min-height: 42px;
    padding: 0 12px;
    font-size: 14px;
  }

  .sb-hero {
    padding: 72px 0 62px;
  }

  .sb-hero-content {
    text-align: center;
  }

  .sb-hero-title {
    font-size: 38px;
    line-height: 1.18;
  }

  .sb-hero-description,
  .sb-section-heading p,
  .sb-repurchase-cycle-heading p,
  .sb-proof-compare-heading p,
  .sb-core-band-intro p,
  .sb-pricing-heading p,
  .sb-faq-heading p,
  .sb-final-cta p {
    font-size: 16px;
    line-height: 1.72;
  }

  .fonteia-search {
    grid-template-columns: 1fr;
    border-radius: 26px;
    padding: 10px;
  }

  .fonteia-search-field {
    min-height: 52px;
  }

  .fonteia-search input {
    font-size: 16px;
  }

  .fonteia-search button {
    width: 100%;
  }

  .sb-hero-trust {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    justify-content: flex-start;
    text-align: left;
  }

  .sb-product,
  .sb-api,
  .sb-publics,
  .sb-repurchase-cycle,
  .sb-proof-compare,
  .sb-core-features,
  .sb-pricing,
  .sb-faq,
  .sb-final-cta {
    padding: 76px 0;
  }

  .sb-section-heading h2,
  .sb-repurchase-cycle-heading h2,
  .sb-proof-compare-heading h2,
  .sb-core-band-intro h2,
  .sb-pricing-heading h2,
  .sb-faq-heading h2 {
    font-size: 36px;
    line-height: 1.18;
  }

  .sb-proof-compare-heading {
    gap: 20px;
  }

  .sb-proof-compare-grid {
    gap: 16px;
    margin-top: 42px;
  }

  .sb-proof-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .sb-proof-card h3 {
    margin-bottom: 22px;
    font-size: 18px;
  }

  .sb-proof-card ul {
    gap: 14px;
  }

  .sb-proof-card li {
    font-size: 16px;
    line-height: 1.55;
  }

  .sb-pricing-heading {
    margin-bottom: 42px;
  }

  .sb-plan-grid {
    gap: 18px;
  }

  .sb-plan-featured {
    transform: none;
  }

  .sb-plan-header {
    padding: 30px 24px 14px;
  }

  .sb-price-box,
  .sb-plan-features,
  .sb-plan-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sb-price-main {
    font-size: 56px;
  }

  .sb-final-cta h2 {
    font-size: 38px;
    line-height: 1.18;
  }

  .sb-final-cta-actions {
    justify-content: center;
  }

  .sb-final-cta-button {
    width: 100%;
  }

  .sb-faq-list summary {
    min-height: 84px;
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 18px;
  }

  .sb-faq-list summary span {
    font-size: 20px;
  }

  .sb-faq-list summary::after {
    width: 36px;
    height: 36px;
    font-size: 21px;
  }

  .sb-faq-list p {
    margin: -8px 54px 28px 0;
    font-size: 16px;
  }

  .sb-site-footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .sb-site-footer-brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 19px;
    border-radius: 10px;
  }

  .sb-site-footer-title {
    font-size: 17px;
  }

  .sb-site-footer-column a,
  .sb-site-footer-legal span,
  .sb-site-footer-legal a,
  .sb-site-footer-locale span {
    font-size: 15px;
  }

  .sb-site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 34px;
    padding-top: 22px;
  }
}

@media (max-width: 699.98px) {
  .sb-pricing {
    --sb-pricing-shell: calc(100% - 64px);
  }
}

@media (max-width: 419.98px) {
  .sb-pricing {
    --sb-pricing-shell: calc(100% - 40px);
  }
}

@media (max-width: 1099.98px) {
  .sb-repurchase-cycle {
    padding: 96px 0;
  }

  .sb-repurchase-cycle-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 56px;
  }

  .sb-repurchase-cycle-heading h2 {
    max-width: 760px;
    font-size: 44px;
  }

  .sb-repurchase-cycle-heading p {
    max-width: 680px;
    font-size: 18px;
  }

  .sb-repurchase-cycle-rail {
    grid-template-columns: 1fr;
    padding-top: 0;
    border-top: 0;
  }

  .sb-repurchase-cycle-rail::before {
    top: 0;
    bottom: 0;
    left: 27px;
    width: 4px;
    height: auto;
    transform: none;
    background: linear-gradient(180deg, #3363E1 0%, #3363E1 64%, #31ce36 100%);
  }

  .sb-repurchase-cycle-rail li,
  .sb-repurchase-cycle-rail li + li {
    min-height: auto;
    padding: 0 0 42px 82px;
    border-left: 0;
  }

  .sb-repurchase-cycle-rail li::before {
    top: 14px;
    left: 14px;
  }

  .sb-repurchase-cycle-rail li:last-child {
    padding-bottom: 0;
  }

  .sb-repurchase-cycle-rail span {
    margin-bottom: 14px;
  }

  .sb-repurchase-cycle-rail p {
    max-width: 520px;
  }
}

@media (max-width: 767.98px) {
  .sb-repurchase-cycle {
    padding: 72px 0;
  }

  .sb-repurchase-cycle-heading {
    margin-bottom: 44px;
  }

  .sb-repurchase-cycle-heading h2 {
    font-size: 36px;
    line-height: 1.18;
  }

  .sb-repurchase-cycle-heading p {
    font-size: 16px;
    line-height: 1.72;
  }

  .sb-repurchase-cycle-rail::before {
    top: 0;
    bottom: 0;
    left: 22px;
    width: 3px;
    height: auto;
    transform: none;
    background: linear-gradient(180deg, #3363E1 0%, #3363E1 44%, #31ce36 100%);
  }

  .sb-repurchase-cycle-rail li,
  .sb-repurchase-cycle-rail li + li {
    min-height: auto;
    padding: 0 0 34px 64px;
    border-left: 0;
  }

  .sb-repurchase-cycle-rail li::before {
    top: 12px;
    left: 15px;
    width: 16px;
    height: 16px;
    border-width: 4px;
  }

  .sb-repurchase-cycle-rail li:last-child {
    padding-bottom: 0;
  }

  .sb-repurchase-cycle-rail span {
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 999px;
    color: #3363E1;
    background: #edf5ff;
    font-size: 13px;
    line-height: 1;
  }

  .sb-repurchase-cycle-rail strong {
    font-size: 24px;
  }

  .sb-repurchase-cycle-rail p {
    max-width: none;
    font-size: 16px;
  }
}
