:root {
  --sp-surface: #f8fafc;
  --sp-surface-soft: #eef3fb;
  --sp-surface-strong: #ffffff;
  --sp-primary: #1e40af;
  --sp-primary-deep: #102b7a;
  --sp-secondary: #166534;
  --sp-text: #1e293b;
  --sp-muted: #64748b;
  --sp-border: #e2e8f0;
  --sp-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  --sp-shadow-soft: 0 12px 32px rgba(30, 64, 175, 0.12);
  --sp-radius-xl: 2rem;
  --sp-radius-lg: 1.5rem;
  --sp-radius-md: 1rem;
}

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

html {
  scroll-behavior: smooth;
}

body.sp-body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--sp-text);
  background:
    radial-gradient(circle at top right, rgba(30, 64, 175, 0.14), transparent 34%),
    linear-gradient(180deg, #fdfefe 0%, #f8fafc 40%, #f4f7fb 100%);
  line-height: 1.7;
}

a {
  color: var(--sp-primary);
  text-decoration: none;
}

a:hover {
  color: var(--sp-primary-deep);
}

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

.sp-shell {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.sp-main {
  min-height: 60vh;
}

.sp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.sp-header__inner {
  min-height: 5.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.sp-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  color: var(--sp-text);
}

.sp-brand:hover {
  color: var(--sp-text);
}

.sp-brand__mark {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--sp-primary), #3d7bff);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(30, 64, 175, 0.25);
}

.sp-brand__text {
  display: grid;
  gap: 0.1rem;
}

.sp-brand__text strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.sp-brand__text small {
  color: var(--sp-muted);
  font-size: 0.72rem;
}

.sp-primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  flex: 1;
  flex-wrap: wrap;
}

.sp-primary-nav__link {
  position: relative;
  padding: 0.4rem 0;
  color: var(--sp-muted);
  font-size: 0.93rem;
  font-weight: 600;
}

.sp-primary-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--sp-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.sp-primary-nav__link:hover::after,
.sp-primary-nav__link.is-active::after {
  transform: scaleX(1);
}

.sp-primary-nav__link.is-active {
  color: var(--sp-primary);
}

.sp-header__cta,
.sp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.sp-header__cta,
.sp-button--solid {
  background: var(--sp-primary);
  color: #fff;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 16px 28px rgba(30, 64, 175, 0.2);
}

.sp-header__cta:hover,
.sp-button--solid:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 20px 32px rgba(30, 64, 175, 0.25);
}

.sp-button--light {
  background: #fff;
  color: var(--sp-primary-deep);
  padding: 0.95rem 1.35rem;
}

.sp-button--ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.95rem 1.35rem;
}

.sp-hero {
  padding: 4rem 0 2.5rem;
}

.sp-hero__grid,
.sp-duo {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.sp-hero__lead {
  position: relative;
  overflow: hidden;
  padding: 3rem;
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(30, 64, 175, 0.96), rgba(61, 123, 255, 0.86)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent);
  color: #f8fbff;
  box-shadow: 0 26px 60px rgba(30, 64, 175, 0.2);
}

.sp-hero__lead::before,
.sp-hero__lead::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.sp-hero__lead::before {
  width: 15rem;
  height: 15rem;
  top: -5rem;
  right: -4rem;
}

.sp-hero__lead::after {
  width: 10rem;
  height: 10rem;
  left: -2rem;
  bottom: -3rem;
}

.sp-chip,
.sp-card__eyebrow,
.sp-footer__eyebrow,
.sp-sidebar__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sp-chip {
  background: rgba(255, 255, 255, 0.14);
}

.sp-card__eyebrow,
.sp-sidebar__eyebrow {
  color: var(--sp-primary);
  background: rgba(30, 64, 175, 0.08);
}

.sp-footer__eyebrow {
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.08);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  font-family: "Outfit", sans-serif;
  line-height: 1.08;
  color: var(--sp-text);
}

.sp-hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  max-width: 10ch;
  margin-top: 1.25rem;
}

.sp-hero p,
.sp-page-head p,
.sp-card p,
.sp-footer p,
.sp-sidebar p {
  margin: 0;
  color: var(--sp-muted);
}

.sp-hero__lead p {
  margin-top: 1.35rem;
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(248, 251, 255, 0.88);
}

.sp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.sp-hero__aside {
  display: grid;
  gap: 1.25rem;
}

.sp-section {
  padding: 1.75rem 0 3.5rem;
}

.sp-section--alt {
  padding-top: 0;
}

.sp-section--compact {
  padding-top: 0;
}

.sp-section__intro {
  margin-bottom: 1.4rem;
}

.sp-card,
.sp-sidebar__card {
  background: var(--sp-surface-strong);
  border: 1px solid var(--sp-border);
  border-radius: 1.75rem;
  box-shadow: var(--sp-shadow);
}

.sp-card {
  padding: 1.8rem;
}

.sp-card__header {
  margin-bottom: 1rem;
}

.sp-card--stats {
  display: grid;
  gap: 1rem;
}

.sp-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.sp-stats article {
  padding: 1rem;
  border-radius: 1.2rem;
  background: var(--sp-surface);
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.sp-stats strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.85rem;
  color: var(--sp-primary);
}

.sp-stats span {
  color: var(--sp-muted);
  font-size: 0.92rem;
}

.sp-pill-row,
.sp-footer__partners,
.sp-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.sp-pill-row span,
.sp-pill-row a,
.sp-footer__partners span,
.sp-related__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(30, 64, 175, 0.08);
  color: var(--sp-primary);
  font-size: 0.84rem;
  font-weight: 700;
}

.sp-related {
  margin-top: 2rem;
}

.sp-map-card {
  min-height: 100%;
}

.sp-map-graphic {
  position: relative;
  height: 14rem;
  margin: 1.5rem 0;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 25% 45%, rgba(30, 64, 175, 0.18), transparent 1.7rem),
    radial-gradient(circle at 42% 38%, rgba(30, 64, 175, 0.18), transparent 1.7rem),
    radial-gradient(circle at 58% 49%, rgba(30, 64, 175, 0.18), transparent 1.7rem),
    linear-gradient(135deg, #eef3fb, #f8fafc);
  overflow: hidden;
}

.sp-map-graphic::before {
  content: "";
  position: absolute;
  inset: 1.8rem 2rem 2.2rem;
  background: rgba(30, 64, 175, 0.08);
  clip-path: polygon(6% 54%, 17% 24%, 34% 18%, 50% 32%, 71% 20%, 93% 42%, 79% 74%, 48% 82%, 18% 73%);
}

.sp-map-graphic span {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--sp-primary);
  box-shadow: 0 0 0 0.35rem rgba(30, 64, 175, 0.12);
}

.sp-map-graphic span:nth-child(1) { top: 4.6rem; left: 5rem; }
.sp-map-graphic span:nth-child(2) { top: 5rem; left: 8rem; }
.sp-map-graphic span:nth-child(3) { top: 4.3rem; left: 11rem; }
.sp-map-graphic span:nth-child(4) { top: 5.2rem; left: 14.5rem; }
.sp-map-graphic span:nth-child(5) { top: 6rem; left: 17.7rem; }
.sp-map-graphic span:nth-child(6) { top: 4.8rem; left: 20.5rem; }

.sp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.sp-card-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.sp-card--feature,
.sp-card--mini {
  display: grid;
  gap: 0.8rem;
}

.sp-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--sp-primary), #3d7bff);
}

.sp-card__icon--green {
  background: linear-gradient(145deg, var(--sp-secondary), #2bb673);
}

.sp-card__icon--teal {
  background: linear-gradient(145deg, #0f766e, #2dd4bf);
}

.sp-step-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.sp-step-list li {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1rem 1rem 1.2rem;
  border-left: 4px solid rgba(30, 64, 175, 0.3);
  border-radius: 0 1rem 1rem 0;
  background: rgba(30, 64, 175, 0.04);
}

.sp-card--image img {
  border-radius: 1.2rem;
  border: 1px solid var(--sp-border);
  margin: 1.3rem 0 1rem;
  box-shadow: var(--sp-shadow-soft);
}

.sp-breadcrumbs {
  padding-top: 1rem;
}

.sp-breadcrumbs nav {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.6rem 1rem;
}

.sp-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--sp-muted);
  font-size: 0.9rem;
}

.sp-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.75rem;
  color: rgba(100, 116, 139, 0.6);
}

.sp-page-head {
  padding: 1rem 0 1.4rem;
}

.sp-page-head--gradient .sp-page-head__inner {
  background:
    radial-gradient(circle at top right, rgba(30, 64, 175, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(238, 243, 251, 0.88), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--sp-shadow);
}

.sp-page-head__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 1.75rem;
}

.sp-page-head h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 0.8rem;
}

.sp-page-head__badge {
  display: grid;
  gap: 0.6rem;
  min-width: 17rem;
}

.sp-page-head__badge span,
.sp-contact-callout {
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(30, 64, 175, 0.08);
  color: var(--sp-primary);
  font-weight: 700;
}

.sp-contact-callout {
  max-width: 19rem;
  display: grid;
  gap: 0.85rem;
}

.sp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.sp-layout--wide {
  grid-template-columns: 19rem minmax(0, 1fr);
  align-items: start;
}

.sp-sidebar {
  align-self: start;
}

.sp-sidebar__card {
  position: sticky;
  top: 6.4rem;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.sp-sidebar__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.sp-sidebar__list a {
  display: block;
  padding: 0.75rem 0.9rem;
  border-radius: 0.95rem;
  background: var(--sp-surface);
  color: var(--sp-text);
  font-weight: 600;
}

.sp-sidebar__list a[aria-current="page"] {
  background: var(--sp-primary);
  color: #fff;
}

.sp-sidebar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: rgba(22, 101, 52, 0.1);
  color: var(--sp-secondary);
  font-weight: 800;
}

.sp-article {
  padding: 2rem;
}

.sp-article--feature,
.sp-article--wide {
  padding: 2.2rem;
}

.sp-footer {
  padding: 1rem 0 2.5rem;
}

.sp-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 1.75rem;
  background: #18304f;
  color: #f8fafc;
  box-shadow: var(--sp-shadow);
}

.sp-footer__panel h2,
.sp-footer__links h3 {
  color: #f8fafc;
}

.sp-footer__panel p {
  color: rgba(248, 250, 252, 0.78);
}

.sp-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.sp-footer__links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.sp-footer__links a {
  color: rgba(248, 250, 252, 0.9);
}

.sp-footer__partners {
  margin-top: 1.3rem;
}

.sp-footer__partners span {
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}

.ae-block + .ae-block,
.ae-figure + .ae-block,
.ae-list + .ae-block,
.ae-table-shell + .ae-block,
.ae-blockquote + .ae-block {
  margin-top: 1rem;
}

.ae-heading {
  color: var(--sp-text);
  font-family: "Outfit", sans-serif;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

.ae-heading--1,
.ae-heading--2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.ae-heading--3 {
  font-size: 1.35rem;
}

.ae-copy,
.ae-inline-text {
  margin: 0 0 1rem;
  color: var(--sp-text);
}

.ae-list,
.ae-list--ordered {
  margin: 0 0 1.2rem;
  padding-left: 1.2rem;
}

.ae-list li,
.ae-list--ordered li {
  margin-bottom: 0.45rem;
}

.ae-figure {
  margin: 1.4rem 0;
  padding: 1rem;
  border-radius: 1.2rem;
  background: var(--sp-surface);
}

.ae-figure img,
.ae-inline-asset img {
  width: 100%;
  border-radius: 0.9rem;
}

.ae-figure figcaption {
  margin-top: 0.6rem;
  color: var(--sp-muted);
  font-size: 0.9rem;
}

.ae-blockquote {
  margin: 1.4rem 0;
  padding: 1.1rem 1.2rem;
  border-left: 4px solid var(--sp-primary);
  border-radius: 0 1rem 1rem 0;
  background: rgba(30, 64, 175, 0.05);
}

.ae-blockquote p,
.ae-blockquote cite {
  margin: 0;
}

.ae-table-shell {
  overflow-x: auto;
  margin: 1.4rem 0;
  border-radius: 1rem;
  border: 1px solid var(--sp-border);
}

.ae-data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.ae-data-table th,
.ae-data-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--sp-border);
  vertical-align: top;
}

.ae-data-table th {
  background: rgba(30, 64, 175, 0.07);
  color: var(--sp-primary);
}

.ae-code {
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: #0f172a;
  color: #e2e8f0;
  overflow-x: auto;
}

.ae-separator {
  border: 0;
  border-top: 1px solid var(--sp-border);
  margin: 1.5rem 0;
}

.ae-card--linked {
  padding: 1.1rem 1.2rem;
  border-radius: 1rem;
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
}

.ae-card__title {
  margin-bottom: 0.5rem;
}

@media (max-width: 1100px) {
  .sp-hero__grid,
  .sp-duo,
  .sp-footer__grid {
    grid-template-columns: 1fr;
  }

  .sp-card-grid,
  .sp-card-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sp-layout--wide {
    grid-template-columns: 1fr;
  }

  .sp-sidebar__card {
    position: static;
  }
}

@media (max-width: 760px) {
  .sp-shell {
    width: min(1200px, calc(100% - 1.25rem));
  }

  .sp-header__inner,
  .sp-page-head__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .sp-primary-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .sp-header__cta {
    width: 100%;
  }

  .sp-hero__lead,
  .sp-card,
  .sp-article,
  .sp-footer__grid {
    padding: 1.35rem;
  }

  .sp-stats,
  .sp-card-grid,
  .sp-card-grid--compact,
  .sp-footer__links {
    grid-template-columns: 1fr;
  }

  .sp-hero h1,
  .sp-page-head h1 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .sp-map-graphic {
    height: 10rem;
  }
}
