:root {
  --slp-ink: var(--sls-ink, #081528);
  --slp-ink-soft: #18314f;
  --slp-blue: var(--sls-blue, #1268f3);
  --slp-blue-dark: var(--sls-blue-dark, #0849b6);
  --slp-lime: var(--sls-lime, #9ce234);
  --slp-paper: #ffffff;
  --slp-cloud: #f3f7fb;
  --slp-cloud-blue: #eaf3ff;
  --slp-line: #d9e3ed;
  --slp-muted: #5d6d80;
  --slp-danger: #b42318;
  --slp-success: #20713a;
  --slp-container: min(1180px, calc(100vw - 48px));
  --slp-reading: 760px;
  --slp-radius-sm: 12px;
  --slp-radius-md: 20px;
  --slp-radius-lg: 30px;
  --slp-shadow: 0 22px 64px rgba(8, 21, 40, .11);
}

body.sv3-body {
  overflow-x: clip;
  background: var(--slp-paper);
}

.sv3-main,
.slp-main {
  min-width: 0;
}

.sv3-main *,
.slp-main * {
  box-sizing: border-box;
}

.sv3-main img,
.slp-main img {
  max-width: 100%;
}

.slp-container {
  width: var(--slp-container);
  margin-inline: auto;
}

.slp-section {
  padding-block: clamp(70px, 8vw, 112px);
}

.slp-section.is-soft {
  background: var(--slp-cloud);
}

.slp-section.is-dark {
  color: #eff6fd;
  background:
    radial-gradient(circle at 86% 12%, rgba(18, 104, 243, .2), transparent 34%),
    var(--slp-ink);
}

.slp-eyebrow,
.slp-kicker {
  margin: 0 0 14px;
  color: var(--slp-blue-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.slp-section.is-dark .slp-eyebrow,
.slp-section.is-dark .slp-kicker {
  color: var(--slp-lime);
}

.slp-heading {
  max-width: 790px;
  margin-bottom: clamp(30px, 4.5vw, 52px);
}

.slp-heading.is-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
  align-items: end;
  gap: clamp(28px, 5vw, 76px);
}

.slp-heading h2,
.slp-copy h2,
.slp-legal h2 {
  margin: 0;
  color: var(--slp-ink);
  font-size: clamp(1.75rem, 3.4vw, 3.15rem);
  line-height: 1.06;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.slp-heading > p:last-child,
.slp-copy > p,
.slp-legal p {
  margin: 18px 0 0;
  color: var(--slp-muted);
  font-size: clamp(.98rem, 1.35vw, 1.08rem);
  line-height: 1.75;
  text-wrap: pretty;
}

.slp-section.is-dark h2,
.slp-section.is-dark h3 {
  color: #fff;
}

.slp-section.is-dark p {
  color: #bac9d9;
}

.slp-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  color: #6e7d8e;
  font-size: .74rem;
  font-weight: 780;
  list-style: none;
}

.slp-breadcrumbs li {
  min-width: 0;
}

.slp-breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: #afbac5;
}

.slp-breadcrumbs a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.slp-breadcrumbs a:hover {
  color: var(--slp-blue-dark);
}

.slp-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 7vw, 94px) clamp(62px, 8vw, 108px);
  background:
    linear-gradient(110deg, rgba(234, 243, 255, .9), rgba(255, 255, 255, .1) 56%),
    var(--slp-paper);
}

.slp-hero::after {
  content: "";
  position: absolute;
  top: 8%;
  right: -13%;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(156, 226, 52, .16), transparent 69%);
  pointer-events: none;
}

.slp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.slp-hero-copy {
  min-width: 0;
}

.slp-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--slp-ink);
  font-size: clamp(2.45rem, 5.5vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.062em;
  text-wrap: balance;
}

.slp-hero h1 em {
  color: var(--slp-blue);
  font-style: normal;
}

.slp-lead {
  max-width: 760px;
  margin: 25px 0 0;
  color: #53657a;
  font-size: clamp(1.04rem, 1.55vw, 1.22rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.slp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.slp-button,
.slp-link-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--slp-line);
  border-radius: var(--slp-radius-sm);
  padding: 11px 18px;
  color: #26394f;
  background: #fff;
  font: inherit;
  font-size: .88rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition-property: transform, color, background-color, border-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.slp-button:hover,
.slp-link-button:hover {
  border-color: #b8c7d7;
  background: var(--slp-cloud);
  transform: translateY(-1px);
}

.slp-button:active,
.slp-link-button:active {
  transform: scale(.97);
}

.slp-button.is-primary,
.slp-link-button.is-primary {
  color: #fff;
  border-color: var(--slp-blue);
  background: var(--slp-blue);
  box-shadow: 0 12px 28px rgba(18, 104, 243, .2);
}

.slp-button.is-primary:hover,
.slp-link-button.is-primary:hover {
  border-color: var(--slp-blue-dark);
  background: var(--slp-blue-dark);
  box-shadow: 0 16px 32px rgba(18, 104, 243, .24);
}

.slp-button.is-lime,
.slp-link-button.is-lime {
  color: #12230a;
  border-color: var(--slp-lime);
  background: var(--slp-lime);
}

.slp-hero-media {
  min-width: 0;
  margin: 0;
}

.slp-hero-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(8, 21, 40, .1);
  border-radius: var(--slp-radius-lg);
  background: #dfeaf5;
  box-shadow: var(--slp-shadow);
}

.slp-hero-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  outline: 1px solid rgba(0, 0, 0, .08);
  outline-offset: -1px;
}

.slp-hero-note {
  position: relative;
  width: calc(100% - 34px);
  margin: -28px auto 0;
  border: 1px solid var(--slp-line);
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 38px rgba(8, 21, 40, .12);
}

.slp-hero-note strong,
.slp-hero-note span {
  display: block;
}

.slp-hero-note strong {
  color: var(--slp-ink);
  font-size: .92rem;
}

.slp-hero-note span {
  margin-top: 4px;
  color: var(--slp-muted);
  font-size: .78rem;
  line-height: 1.45;
}

.slp-badges,
.slp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.slp-badges li,
.slp-pill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #cfe0f1;
  border-radius: 999px;
  padding: 6px 11px;
  color: #34506e;
  background: rgba(255, 255, 255, .75);
  font-size: .72rem;
  font-weight: 820;
}

.slp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.slp-card-grid.is-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.slp-card,
.slp-content-card,
.slp-legal article {
  min-width: 0;
  border: 1px solid var(--slp-line);
  border-radius: var(--slp-radius-md);
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  box-shadow: 0 10px 32px rgba(8, 21, 40, .045);
}

.slp-card.is-link {
  position: relative;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition-property: transform, border-color, box-shadow;
  transition-duration: 170ms;
  transition-timing-function: ease-out;
}

.slp-card.is-link:hover {
  border-color: #b9cde2;
  box-shadow: 0 18px 44px rgba(8, 21, 40, .09);
  transform: translateY(-3px);
}

.slp-card-number {
  display: block;
  margin-bottom: 30px;
  color: var(--slp-blue);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  font-variant-numeric: tabular-nums;
}

.slp-card h2,
.slp-card h3,
.slp-content-card h2,
.slp-content-card h3 {
  margin: 0;
  color: var(--slp-ink);
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.18;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.slp-card p,
.slp-content-card p {
  margin: 13px 0 0;
  color: var(--slp-muted);
  font-size: .92rem;
  line-height: 1.68;
  text-wrap: pretty;
}

.slp-card > strong:last-child {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--slp-blue-dark);
  font-size: .82rem;
}

.slp-card-media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: calc(clamp(22px, 3vw, 34px) * -1) calc(clamp(22px, 3vw, 34px) * -1) 25px;
  border-radius: calc(var(--slp-radius-md) - 1px) calc(var(--slp-radius-md) - 1px) 0 0;
  background: #dce7f2;
}

.slp-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, .08);
  outline-offset: -1px;
}

.slp-check-list,
.slp-list {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.slp-check-list li,
.slp-list li {
  position: relative;
  padding-left: 28px;
  color: #42566d;
  font-size: .9rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.slp-check-list li::before,
.slp-list li::before {
  content: "✓";
  position: absolute;
  top: .08em;
  left: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #285b0f;
  background: #e7f6d1;
  font-size: .67rem;
  font-weight: 950;
}

.slp-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
}

.slp-copy {
  position: sticky;
  top: calc(var(--sls-header-height, 105px) + 32px);
}

.slp-stack {
  display: grid;
  gap: 16px;
}

.slp-process {
  margin: 0;
  padding: 0;
  counter-reset: slp-process;
  list-style: none;
}

.slp-process li {
  counter-increment: slp-process;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.slp-process li::before {
  content: counter(slp-process, decimal-leading-zero);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--slp-lime);
  font-size: .72rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.slp-process h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.slp-process p {
  margin: 6px 0 0;
  font-size: .88rem;
  line-height: 1.65;
}

.slp-faq {
  display: grid;
  gap: 10px;
}

.slp-faq article {
  overflow: hidden;
  border: 1px solid var(--slp-line);
  border-radius: 15px;
  background: #fff;
}

.slp-faq h3 {
  margin: 0;
}

.slp-faq button {
  width: 100%;
  min-height: 58px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  color: var(--slp-ink);
  background: #fff;
  font: inherit;
  font-size: .94rem;
  font-weight: 850;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.slp-faq button::after {
  content: "+";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--slp-blue-dark);
  background: var(--slp-cloud-blue);
  font-size: 1.1rem;
}

.slp-faq button[aria-expanded="true"]::after {
  content: "−";
}

.slp-faq-answer {
  padding: 0 18px 18px;
}

.slp-faq-answer[hidden] {
  display: none;
}

.slp-faq-answer p {
  max-width: 820px;
  margin: 0;
  color: var(--slp-muted);
  font-size: .9rem;
  line-height: 1.7;
}

.slp-cta {
  overflow: hidden;
  border-radius: var(--slp-radius-lg);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 36px;
  padding: clamp(30px, 5vw, 58px);
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(18, 104, 243, .36), transparent 36%),
    var(--slp-ink);
  box-shadow: var(--slp-shadow);
}

.slp-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.slp-cta p {
  max-width: 700px;
  margin: 14px 0 0;
  color: #bdccdc;
  line-height: 1.7;
  text-wrap: pretty;
}

.slp-cta .slp-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.slp-inquiry-wrap {
  padding-block: clamp(64px, 8vw, 108px);
  background:
    linear-gradient(180deg, #eef5fb, #f8fbfd 48%, #eef5fb),
    var(--slp-cloud);
}

.slp-inquiry {
  overflow: hidden;
  border: 1px solid #cbd9e7;
  border-radius: var(--slp-radius-lg);
  background: #fff;
  box-shadow: var(--slp-shadow);
}

.slp-inquiry summary {
  min-height: 150px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: clamp(26px, 4vw, 46px);
  cursor: pointer;
  list-style: none;
}

.slp-inquiry summary::-webkit-details-marker {
  display: none;
}

.slp-inquiry summary::marker {
  content: "";
}

.slp-inquiry summary h2 {
  margin: 0;
  color: var(--slp-ink);
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.slp-inquiry summary p {
  max-width: 760px;
  margin: 11px 0 0;
  color: var(--slp-muted);
  line-height: 1.65;
  text-wrap: pretty;
}

.slp-inquiry-toggle {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 13px;
  padding: 12px 17px;
  color: #fff;
  background: var(--slp-blue);
  font-size: .84rem;
  font-weight: 880;
  white-space: nowrap;
}

.slp-inquiry-toggle::after {
  content: "+";
  font-size: 1.1rem;
}

.slp-inquiry[open] .slp-inquiry-toggle::after {
  content: "−";
}

.slp-inquiry-panel {
  border-top: 1px solid var(--slp-line);
  padding: clamp(24px, 5vw, 52px);
  background: #fbfdff;
}

.slp-form-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.slp-form-head h2,
.slp-form-head h3 {
  margin: 0;
  color: var(--slp-ink);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  letter-spacing: -.025em;
}

.slp-form-head p {
  margin: 8px 0 0;
  color: var(--slp-muted);
  font-size: .84rem;
  line-height: 1.55;
}

.slp-required-note {
  flex: 0 0 auto;
  color: #6f7f90;
  font-size: .74rem;
  font-weight: 760;
}

.slp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.slp-form-group {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.slp-form-group.is-wide {
  grid-column: 1 / -1;
}

.slp-form-group label,
.slp-group-label {
  color: #273a51;
  font-size: .79rem;
  font-weight: 840;
  line-height: 1.35;
}

.slp-form-group input,
.slp-form-group select,
.slp-form-group textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid #bdccda;
  border-radius: 11px;
  padding: 11px 13px;
  color: var(--slp-ink);
  background: #fff;
  font: inherit;
  font-size: .9rem;
  line-height: 1.4;
  transition-property: border-color, box-shadow, background-color;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.slp-form-group textarea {
  min-height: 126px;
  resize: vertical;
}

.slp-form-group input:hover,
.slp-form-group select:hover,
.slp-form-group textarea:hover {
  border-color: #91a5b9;
}

.slp-form-group input:focus,
.slp-form-group select:focus,
.slp-form-group textarea:focus {
  border-color: var(--slp-blue);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(18, 104, 243, .13);
}

.slp-form-group.has-error input,
.slp-form-group.has-error select,
.slp-form-group.has-error textarea {
  border-color: var(--slp-danger);
  background: #fff9f8;
}

.slp-field-error {
  color: var(--slp-danger);
  font-size: .75rem;
  font-weight: 760;
  line-height: 1.4;
}

.slp-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.slp-choice {
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #d2dde8;
  border-radius: 11px;
  padding: 10px 11px;
  color: #40546a;
  background: #fff;
  font-size: .8rem;
  font-weight: 720;
  line-height: 1.4;
  cursor: pointer;
}

.slp-choice:hover {
  border-color: #aabed1;
  background: #f7faff;
}

.slp-choice input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--slp-blue);
  box-shadow: none;
}

.slp-form-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  color: #66778a;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.slp-form-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--slp-line);
}

.slp-privacy {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 22px;
  color: #536579;
  font-size: .78rem;
  line-height: 1.55;
  cursor: pointer;
}

.slp-privacy input {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin: 2px 0 0;
  accent-color: var(--slp-blue);
}

.slp-privacy a {
  color: var(--slp-blue-dark);
  font-weight: 800;
}

.slp-form-submit {
  min-height: 52px;
  border: 1px solid var(--slp-blue);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  padding: 12px 20px;
  color: #fff;
  background: var(--slp-blue);
  box-shadow: 0 12px 28px rgba(18, 104, 243, .2);
  font: inherit;
  font-size: .88rem;
  font-weight: 880;
  cursor: pointer;
  transition-property: transform, background-color, border-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.slp-form-submit:hover {
  border-color: var(--slp-blue-dark);
  background: var(--slp-blue-dark);
  box-shadow: 0 16px 32px rgba(18, 104, 243, .24);
  transform: translateY(-1px);
}

.slp-form-submit:active {
  transform: scale(.98);
}

.slp-form-message {
  border: 1px solid;
  border-radius: 13px;
  display: grid;
  gap: 3px;
  margin-bottom: 22px;
  padding: 14px 16px;
  font-size: .82rem;
  line-height: 1.5;
}

.slp-form-message.is-error {
  color: #81201a;
  border-color: #efb4ae;
  background: #fff2f0;
}

.slp-form-message.is-success {
  color: #165b2d;
  border-color: #a8d9b5;
  background: #eefaf1;
}

.slp-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.slp-legal {
  max-width: 920px;
  display: grid;
  gap: 14px;
}

.slp-legal article h2 {
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  letter-spacing: -.02em;
}

.slp-legal article p {
  overflow-wrap: anywhere;
  font-size: .93rem;
}

.slp-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.slp-main :focus-visible,
.sv3-main :focus-visible {
  outline: 3px solid #f2b400;
  outline-offset: 3px;
}

.sls-reveal-ready .slp-main [data-sls-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition-property: opacity, transform;
  transition-duration: 420ms;
  transition-timing-function: cubic-bezier(.2, .75, .25, 1);
}

.sls-reveal-ready .slp-main [data-sls-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Defensive rules for remaining specialist views while they share the live shell. */
.sv3-main section,
.sv3-main article,
.sv3-main div,
.sv3-main form,
.sv3-main fieldset {
  min-width: 0;
}

.sv3-main h1,
.sv3-main h2,
.sv3-main h3,
.sv3-main p,
.sv3-main li,
.sv3-main a,
.sv3-main span {
  overflow-wrap: break-word;
}

.sv3-main input,
.sv3-main select,
.sv3-main textarea,
.sv3-main button {
  max-width: 100%;
  font-family: inherit;
}

@media (max-width: 980px) {
  .slp-hero-grid,
  .slp-copy-grid {
    grid-template-columns: 1fr;
  }

  .slp-hero-copy {
    max-width: 800px;
  }

  .slp-hero-media {
    max-width: 760px;
  }

  .slp-copy {
    position: static;
  }

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

  .slp-heading.is-split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .slp-cta {
    grid-template-columns: 1fr;
  }

  .slp-cta .slp-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  :root {
    --slp-container: calc(100vw - 28px);
    --slp-radius-lg: 22px;
  }

  .slp-section {
    padding-block: 62px;
  }

  .slp-hero {
    padding-block: 38px 68px;
  }

  .slp-hero-grid {
    gap: 36px;
  }

  .slp-hero h1 {
    font-size: clamp(2.25rem, 12.3vw, 3.55rem);
  }

  .slp-card-grid,
  .slp-card-grid.is-two,
  .slp-form-grid,
  .slp-choice-grid {
    grid-template-columns: 1fr;
  }

  .slp-inquiry summary {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .slp-inquiry-toggle {
    width: 100%;
    white-space: normal;
  }

  .slp-form-head {
    display: grid;
    align-items: start;
    gap: 10px;
  }

  .slp-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .slp-button,
  .slp-link-button,
  .slp-form-submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slp-main *,
  .slp-main *::before,
  .slp-main *::after,
  .sv3-main *,
  .sv3-main *::before,
  .sv3-main *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .sls-reveal-ready .slp-main [data-sls-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Cinematic editorial hero signatures. Content stays server-rendered; every
   signature is a progressive visual layer and collapses to one column. */
.slp-hero[data-hero-variant] {
  isolation: isolate;
  --hero-blue: #006bff;
  --hero-lime: #62ff00;
  --hero-navy: #071425;
  --hero-warm: #f7f4ee;
}

.slp-hero-atmosphere,
.slp-hero-atmosphere span {
  position: absolute;
  pointer-events: none;
}

.slp-hero-atmosphere {
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.slp-hero-atmosphere span {
  display: block;
}

.slp-hero--service-world {
  min-height: min(900px, calc(100svh - 68px));
  display: grid;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 76% 38%, rgba(0, 107, 255, .3), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(98, 255, 0, .12), transparent 24%),
    #040b15;
}

.slp-hero--service-world::after,
.slp-hero--dossier::after,
.slp-hero--product::after {
  background: none;
}

.slp-hero--service-world .slp-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(25rem, .95fr);
}

.slp-hero--service-world h1 {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(3.2rem, 7.1vw, 7.4rem);
  line-height: .86;
  letter-spacing: -.078em;
}

.slp-hero--service-world .slp-hero-frame {
  aspect-ratio: 1 / 1;
  border-color: rgba(255, 255, 255, .2);
  border-radius: 48% 48% 18% 48%;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 3rem 8rem rgba(0, 0, 0, .5);
}

.slp-hero--service-world .slp-hero-atmosphere span:first-child {
  top: 8%;
  right: 6%;
  width: min(47vw, 44rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
}

.slp-hero--service-world .slp-hero-atmosphere span:nth-child(2) {
  right: 22%;
  bottom: 8%;
  width: 12rem;
  height: 1px;
  background: var(--hero-lime);
  transform: rotate(-32deg);
}

.slp-hero--clean-reveal {
  min-height: min(820px, calc(100svh - 68px));
  display: grid;
  align-items: center;
  background: linear-gradient(90deg, #fff 0 56%, #eef7fb 56%);
}

.slp-hero--clean-reveal::after {
  top: auto;
  right: 43%;
  bottom: -34%;
  width: 35rem;
  background: radial-gradient(circle, rgba(0, 107, 255, .1), transparent 68%);
}

.slp-hero--clean-reveal .slp-hero-grid {
  grid-template-columns: minmax(0, .78fr) minmax(27rem, 1.22fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.slp-hero--clean-reveal h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 6.4vw, 6.6rem);
  line-height: .89;
}

.slp-hero--clean-reveal .slp-hero-frame {
  aspect-ratio: 4 / 5;
  border-radius: 0 0 0 clamp(4rem, 10vw, 10rem);
  box-shadow: 2rem 2rem 0 rgba(98, 255, 0, .34);
}

.slp-hero--clean-reveal .slp-hero-atmosphere span:first-child {
  left: 0;
  top: 22%;
  width: 48%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 107, 255, .34));
}

.slp-hero--clearout,
.slp-hero--clearout-detail {
  color: #fff;
  background: linear-gradient(108deg, #071425 0 58%, #f7f4ee 58%);
}

.slp-hero--clearout::after,
.slp-hero--clearout-detail::after {
  display: none;
}

.slp-hero--clearout .slp-hero-grid,
.slp-hero--clearout-detail .slp-hero-grid {
  grid-template-columns: minmax(0, .9fr) minmax(25rem, 1.1fr);
}

.slp-hero--clearout h1,
.slp-hero--clearout-detail h1 {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(3rem, 6.2vw, 6.4rem);
  line-height: .9;
}

.slp-hero--clearout .slp-hero-frame,
.slp-hero--clearout-detail .slp-hero-frame {
  aspect-ratio: 16 / 13;
  border-radius: .3rem;
  box-shadow: 2rem 2rem 0 var(--hero-blue), 0 2.5rem 5rem rgba(0, 0, 0, .25);
}

.slp-hero--clearout .slp-hero-atmosphere span,
.slp-hero--clearout-detail .slp-hero-atmosphere span {
  left: 4%;
  width: 42%;
  height: 1px;
  background: rgba(255, 255, 255, .13);
}

.slp-hero--clearout .slp-hero-atmosphere span:first-child,
.slp-hero--clearout-detail .slp-hero-atmosphere span:first-child { top: 26%; }
.slp-hero--clearout .slp-hero-atmosphere span:nth-child(2),
.slp-hero--clearout-detail .slp-hero-atmosphere span:nth-child(2) { top: 54%; }
.slp-hero--clearout .slp-hero-atmosphere span:nth-child(3),
.slp-hero--clearout-detail .slp-hero-atmosphere span:nth-child(3) { top: 82%; }

.slp-hero--journey {
  min-height: min(800px, calc(100svh - 68px));
  display: grid;
  align-items: center;
  background: var(--hero-warm);
}

.slp-hero--journey::after {
  top: 50%;
  right: 0;
  width: 100%;
  height: 3px;
  aspect-ratio: auto;
  border-radius: 0;
  background: linear-gradient(90deg, transparent 5%, var(--hero-blue) 5% 73%, var(--hero-lime) 73% 92%, transparent 92%);
}

.slp-hero--journey .slp-hero-grid {
  grid-template-columns: minmax(24rem, 1.15fr) minmax(0, .85fr);
}

.slp-hero--journey .slp-hero-media { order: -1; }
.slp-hero--journey .slp-hero-frame {
  aspect-ratio: 16 / 11;
  border-radius: 5rem 1rem 5rem 1rem;
  transform: perspective(1000px) rotateY(4deg);
  transform-origin: left center;
}

.slp-hero--journey h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 6.2vw, 6.3rem);
  line-height: .9;
}

.slp-hero--architecture,
.slp-hero--architecture-detail {
  background-color: #edf4fa;
  background-image:
    linear-gradient(rgba(7, 20, 37, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 20, 37, .07) 1px, transparent 1px);
  background-size: 3rem 3rem;
}

.slp-hero--architecture::after,
.slp-hero--architecture-detail::after {
  right: -7rem;
  border: 1px solid rgba(0, 107, 255, .3);
  background: transparent;
}

.slp-hero--architecture .slp-hero-grid,
.slp-hero--architecture-detail .slp-hero-grid {
  grid-template-columns: minmax(0, .82fr) minmax(28rem, 1.18fr);
  align-items: end;
}

.slp-hero--architecture h1,
.slp-hero--architecture-detail h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5.7vw, 5.8rem);
  line-height: .91;
}

.slp-hero--architecture .slp-hero-frame,
.slp-hero--architecture-detail .slp-hero-frame {
  aspect-ratio: 16 / 12;
  border-radius: 0;
  border: 1px solid var(--hero-navy);
  box-shadow: 1rem 1rem 0 var(--hero-lime);
}

.slp-hero--dossier {
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    #071425;
  background-size: 5rem 5rem;
}

.slp-hero--dossier .slp-hero-grid {
  grid-template-columns: minmax(0, .7fr) minmax(27rem, 1.3fr);
}

.slp-hero--dossier h1,
.slp-hero--product h1 {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(2.9rem, 5.8vw, 6rem);
  line-height: .91;
}

.slp-hero--dossier .slp-hero-frame {
  aspect-ratio: 16 / 10;
  border-color: rgba(255, 255, 255, .2);
  border-radius: .5rem;
  box-shadow: 1.4rem 1.4rem 0 rgba(0, 107, 255, .75), 2.8rem 2.8rem 0 rgba(98, 255, 0, .18);
}

.slp-hero--evidence {
  border-left: clamp(.7rem, 2vw, 1.6rem) solid var(--hero-blue);
  background: linear-gradient(135deg, #fff, #edf4fa);
}

.slp-hero--evidence .slp-hero-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(19rem, .55fr);
}

.slp-hero--evidence h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: .9;
}

.slp-hero--evidence .slp-hero-frame {
  aspect-ratio: 3 / 4;
  border-radius: 12rem 12rem 1rem 1rem;
  box-shadow: 0 0 0 .7rem #fff, 0 0 0 .8rem rgba(7, 20, 37, .15);
}

.slp-hero--product {
  min-height: min(820px, calc(100svh - 68px));
  display: grid;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 107, 255, .42), transparent 35%),
    #050e1b;
}

.slp-hero--product .slp-hero-grid {
  grid-template-columns: minmax(0, .67fr) minmax(30rem, 1.33fr);
}

.slp-hero--product .slp-hero-frame {
  aspect-ratio: 16 / 10;
  border-color: rgba(255, 255, 255, .22);
  border-radius: 1.6rem;
  box-shadow: 0 3.5rem 8rem rgba(0, 0, 0, .55), 0 0 0 .7rem rgba(255, 255, 255, .045);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}

.slp-hero--roles {
  background: linear-gradient(105deg, #e8f5f1 0 52%, #fff 52%);
}

.slp-hero--roles .slp-hero-grid {
  grid-template-columns: minmax(25rem, .95fr) minmax(0, 1.05fr);
}

.slp-hero--roles .slp-hero-media { order: -1; }
.slp-hero--roles .slp-hero-frame {
  aspect-ratio: 4 / 5;
  border-radius: 14rem 14rem 1.5rem 1.5rem;
  box-shadow: -1.5rem 1.5rem 0 var(--hero-lime);
}

.slp-hero--roles h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6.2vw, 6.4rem);
  line-height: .9;
}

.slp-hero--atlas,
.slp-hero--atlas-detail {
  background:
    radial-gradient(circle at 74% 48%, rgba(0, 107, 255, .18), transparent 35%),
    #eef4f4;
}

.slp-hero--atlas .slp-hero-grid,
.slp-hero--atlas-detail .slp-hero-grid {
  grid-template-columns: minmax(0, .78fr) minmax(28rem, 1.22fr);
}

.slp-hero--atlas h1,
.slp-hero--atlas-detail h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6.2vw, 6.4rem);
  line-height: .9;
}

.slp-hero--atlas .slp-hero-frame,
.slp-hero--atlas-detail .slp-hero-frame {
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 1rem rgba(255, 255, 255, .7), 0 2rem 6rem rgba(7, 20, 37, .17);
}

.slp-hero--magazine {
  background:
    linear-gradient(90deg, transparent 0 72%, rgba(0, 107, 255, .08) 72%),
    #fbfaf7;
}

.slp-hero--magazine .slp-hero-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(17rem, .5fr);
  align-items: end;
}

.slp-hero--magazine h1 {
  max-width: 13ch;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.065em;
}

.slp-hero--magazine .slp-hero-frame {
  aspect-ratio: 3 / 4;
  border-radius: 50% 50% 1rem 1rem;
  box-shadow: none;
}

.slp-hero--article {
  background: #f7f4ee;
}

.slp-hero--article .slp-hero-grid {
  grid-template-columns: minmax(21rem, .72fr) minmax(0, 1.28fr);
}

.slp-hero--article .slp-hero-media { order: -1; }
.slp-hero--article .slp-hero-frame {
  aspect-ratio: 4 / 5;
  border-radius: 0;
  box-shadow: 1rem 1rem 0 var(--hero-blue);
}

.slp-hero--article h1 {
  max-width: 14ch;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.7rem, 5.7vw, 5.9rem);
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.055em;
}

.slp-hero--clean-detail {
  background: linear-gradient(120deg, #fff 0 68%, #e9f7f2 68%);
}

.slp-hero--clean-detail .slp-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(24rem, .72fr);
}

.slp-hero--clean-detail .slp-hero-frame {
  aspect-ratio: 4 / 5;
  border-radius: 9rem 9rem 1rem 1rem;
  box-shadow: 1rem 1rem 0 rgba(98, 255, 0, .5);
}

.slp-hero--clean-detail h1,
.slp-hero--clearout-detail h1,
.slp-hero--architecture-detail h1,
.slp-hero--atlas-detail h1 {
  font-size: clamp(2.8rem, 5.6vw, 5.7rem);
}

.slp-hero--service-world .slp-lead,
.slp-hero--clearout .slp-lead,
.slp-hero--clearout-detail .slp-lead,
.slp-hero--dossier .slp-lead,
.slp-hero--product .slp-lead {
  color: rgba(255, 255, 255, .7);
}

.slp-hero--service-world .slp-breadcrumbs,
.slp-hero--service-world .slp-breadcrumbs a,
.slp-hero--clearout .slp-breadcrumbs,
.slp-hero--clearout .slp-breadcrumbs a,
.slp-hero--clearout-detail .slp-breadcrumbs,
.slp-hero--clearout-detail .slp-breadcrumbs a,
.slp-hero--dossier .slp-breadcrumbs,
.slp-hero--dossier .slp-breadcrumbs a,
.slp-hero--product .slp-breadcrumbs,
.slp-hero--product .slp-breadcrumbs a {
  color: rgba(255, 255, 255, .64);
}

.slp-hero--service-world .slp-eyebrow,
.slp-hero--clearout .slp-eyebrow,
.slp-hero--clearout-detail .slp-eyebrow,
.slp-hero--dossier .slp-eyebrow,
.slp-hero--product .slp-eyebrow {
  color: var(--hero-lime);
}

.slp-hero--service-world .slp-badges li,
.slp-hero--clearout .slp-badges li,
.slp-hero--clearout-detail .slp-badges li,
.slp-hero--dossier .slp-badges li,
.slp-hero--product .slp-badges li {
  color: rgba(255, 255, 255, .78);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
}

@media (max-width: 980px) {
  .slp-hero--service-world,
  .slp-hero--clean-reveal,
  .slp-hero--journey,
  .slp-hero--product {
    min-height: auto;
  }

  .slp-hero--service-world .slp-hero-grid,
  .slp-hero--clean-reveal .slp-hero-grid,
  .slp-hero--clearout .slp-hero-grid,
  .slp-hero--clearout-detail .slp-hero-grid,
  .slp-hero--journey .slp-hero-grid,
  .slp-hero--architecture .slp-hero-grid,
  .slp-hero--architecture-detail .slp-hero-grid,
  .slp-hero--dossier .slp-hero-grid,
  .slp-hero--evidence .slp-hero-grid,
  .slp-hero--product .slp-hero-grid,
  .slp-hero--roles .slp-hero-grid,
  .slp-hero--atlas .slp-hero-grid,
  .slp-hero--atlas-detail .slp-hero-grid,
  .slp-hero--magazine .slp-hero-grid,
  .slp-hero--article .slp-hero-grid,
  .slp-hero--clean-detail .slp-hero-grid {
    grid-template-columns: 1fr;
  }

  .slp-hero--journey .slp-hero-media,
  .slp-hero--roles .slp-hero-media,
  .slp-hero--article .slp-hero-media {
    order: initial;
  }

  .slp-hero--clean-reveal,
  .slp-hero--roles,
  .slp-hero--magazine {
    background-position: center;
    background-size: cover;
  }

  .slp-hero--clearout,
  .slp-hero--clearout-detail {
    background: #071425;
  }

  .slp-hero--service-world .slp-hero-media,
  .slp-hero--clean-reveal .slp-hero-media,
  .slp-hero--clearout .slp-hero-media,
  .slp-hero--clearout-detail .slp-hero-media,
  .slp-hero--architecture .slp-hero-media,
  .slp-hero--architecture-detail .slp-hero-media,
  .slp-hero--dossier .slp-hero-media,
  .slp-hero--product .slp-hero-media,
  .slp-hero--atlas .slp-hero-media,
  .slp-hero--atlas-detail .slp-hero-media {
    max-width: 46rem;
  }
}

@media (max-width: 700px) {
  .slp-hero[data-hero-variant] h1 {
    font-size: clamp(2.45rem, 12.4vw, 4rem);
    line-height: .91;
  }

  .slp-hero--clean-reveal .slp-hero-frame,
  .slp-hero--service-world .slp-hero-frame,
  .slp-hero--roles .slp-hero-frame,
  .slp-hero--atlas .slp-hero-frame,
  .slp-hero--atlas-detail .slp-hero-frame,
  .slp-hero--magazine .slp-hero-frame,
  .slp-hero--article .slp-hero-frame,
  .slp-hero--clean-detail .slp-hero-frame {
    aspect-ratio: 4 / 3;
    border-radius: 1.25rem;
  }

  .slp-hero--journey .slp-hero-frame,
  .slp-hero--product .slp-hero-frame {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slp-hero--journey .slp-hero-frame,
  .slp-hero--product .slp-hero-frame {
    transform: none;
  }
}

.slp-hero--casefiles {
  background:
    linear-gradient(90deg, rgba(7,20,37,.07) 1px, transparent 1px),
    #f7f4ee;
  background-size: 5rem 100%;
}
.slp-hero--casefiles .slp-hero-grid { grid-template-columns:minmax(0,1.12fr) minmax(23rem,.68fr); }
.slp-hero--casefiles h1 { max-width:12ch; font-size:clamp(3rem,6.3vw,6.5rem); line-height:.9; }
.slp-hero--casefiles .slp-hero-frame { aspect-ratio:4/5; border-radius:.25rem; box-shadow:1rem 1rem 0 #fff,2rem 2rem 0 var(--hero-blue),0 3rem 6rem rgba(7,20,37,.2); transform:rotate(1.5deg); }

.slp-hero--reflection { background:linear-gradient(96deg,#fff 0 62%,#071425 62%); }
.slp-hero--reflection::after { right:2%; border:1px solid rgba(98,255,0,.35); background:transparent; }
.slp-hero--reflection .slp-hero-grid { grid-template-columns:minmax(0,1fr) minmax(25rem,.82fr); }
.slp-hero--reflection h1 { max-width:12ch; font-size:clamp(3rem,6.1vw,6.3rem); line-height:.9; }
.slp-hero--reflection .slp-hero-frame { aspect-ratio:1; border-radius:50%; border-color:rgba(255,255,255,.26); box-shadow:0 0 0 .8rem rgba(255,255,255,.08),0 3rem 7rem rgba(0,0,0,.45); }

.slp-hero--layers { background:linear-gradient(135deg,#edf5ff 0 65%,#fff 65%); }
.slp-hero--layers .slp-hero-grid { grid-template-columns:minmax(0,.82fr) minmax(27rem,1.18fr); }
.slp-hero--layers h1 { max-width:10ch; font-size:clamp(3.1rem,6.5vw,6.7rem); line-height:.88; }
.slp-hero--layers .slp-hero-frame { aspect-ratio:16/11; border-radius:.7rem; box-shadow:1rem 1rem 0 rgba(0,107,255,.16),2rem 2rem 0 rgba(98,255,0,.28),0 3rem 7rem rgba(7,20,37,.18); }
.slp-hero--layers .slp-hero-atmosphere span { left:5%; width:37%; height:1px; background:rgba(0,107,255,.22); }
.slp-hero--layers .slp-hero-atmosphere span:first-child { top:24%; }
.slp-hero--layers .slp-hero-atmosphere span:nth-child(2) { top:52%; width:24%; }
.slp-hero--layers .slp-hero-atmosphere span:nth-child(3) { top:80%; width:31%; }

.slp-hero--cycle { background:radial-gradient(circle at 76% 45%,rgba(98,255,0,.24),transparent 31%),#eef6ef; }
.slp-hero--cycle::after { right:4%; border:1px dashed rgba(7,20,37,.24); background:transparent; }
.slp-hero--cycle .slp-hero-grid { grid-template-columns:minmax(0,.88fr) minmax(25rem,1.12fr); }
.slp-hero--cycle h1 { max-width:11ch; font-size:clamp(3rem,6.2vw,6.4rem); line-height:.9; }
.slp-hero--cycle .slp-hero-frame { aspect-ratio:1; border-radius:42% 58% 55% 45%/48% 42% 58% 52%; box-shadow:0 2.5rem 6rem rgba(7,20,37,.18); }

@media (max-width:980px) {
  .slp-hero--casefiles .slp-hero-grid,
  .slp-hero--reflection .slp-hero-grid,
  .slp-hero--layers .slp-hero-grid,
  .slp-hero--cycle .slp-hero-grid { grid-template-columns:1fr; }
  .slp-hero--reflection { background:#fff; }
  .slp-hero--casefiles .slp-hero-media,
  .slp-hero--reflection .slp-hero-media,
  .slp-hero--layers .slp-hero-media,
  .slp-hero--cycle .slp-hero-media { max-width:44rem; }
}

@media (max-width:700px) {
  .slp-hero--casefiles .slp-hero-frame,
  .slp-hero--reflection .slp-hero-frame,
  .slp-hero--layers .slp-hero-frame,
  .slp-hero--cycle .slp-hero-frame { aspect-ratio:4/3; border-radius:1.25rem; transform:none; }
}
