:root {
  --sv-ink: #100b1d;
  --sv-ink-soft: #1a122b;
  --sv-paper: #f7f3ff;
  --sv-lavender: #d9cbff;
  --sv-lavender-strong: #b79aff;
  --sv-purple: #7c3aed;
  --sv-purple-dark: #4c1d95;
  --sv-lime: #d8ff59;
  --sv-muted: #aaa0bb;
  --sv-line: rgba(255, 255, 255, 0.12);
}

.sv-page,
.sv-footer {
  color: #fff;
  background: var(--sv-ink);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.sv-page {
  overflow: hidden;
}

.sv-page *,
.sv-footer * {
  box-sizing: border-box;
}

.sv-page section {
  border-top: 0;
}

.sv-page a,
.sv-footer a {
  color: inherit;
  text-decoration: none;
}

.sv-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.sv-page section.sv-hero {
  position: relative;
  min-height: 100svh;
  padding: 0 !important;
  overflow: hidden;
  color: #0b0713;
  background:
    linear-gradient(rgba(76, 29, 149, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 29, 149, 0.075) 1px, transparent 1px),
    radial-gradient(circle at 62% 40%, #fbf9ff 0, #ede5ff 53%, #d9c9ff 100%) !important;
  background-size: 64px 64px, 64px 64px, auto;
  border-radius: 0 0 36px 36px;
}

.sv-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 68%, rgba(67, 32, 133, 0.12));
}

.sv-orb {
  position: absolute !important;
  border-radius: 50%;
  pointer-events: none;
}

.sv-page .studio-section-sweep {
  display: none !important;
}

.sv-orb-one {
  width: 500px;
  height: 500px;
  top: 160px;
  right: -280px;
  background: radial-gradient(circle, rgba(216, 255, 89, 0.52), transparent 68%);
}

.sv-orb-two {
  width: 540px;
  height: 540px;
  left: 29%;
  bottom: -400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35), transparent 68%);
}

.sv-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 860px;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  gap: 64px;
  align-items: center;
  padding: 150px 0 115px;
}

.sv-hero-copy,
.sv-system {
  min-width: 0;
}

.sv-eyebrow,
.sv-label {
  margin: 0 0 25px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sv-eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #22162f;
}

.sv-eyebrow > span {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sv-purple);
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.12);
}

.sv-eyebrow > span::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid var(--sv-purple);
  border-radius: inherit;
  animation: sv-pulse 2.4s ease-out infinite;
}

@keyframes sv-pulse {
  0% {
    opacity: 0.75;
    transform: scale(0.6);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

.sv-hero h1 {
  max-width: 650px;
  margin: 0;
  color: #090510;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(58px, 6.2vw, 88px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-transform: none;
  text-wrap: balance;
}

.sv-hero h1 span {
  display: block;
  margin-top: 12px;
}

.sv-hero h1 em {
  color: #35106f;
  font-style: normal;
}

.sv-hero-lede {
  max-width: 610px;
  margin: 34px 0 0;
  color: rgba(16, 11, 29, 0.88);
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.65;
}

.sv-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 34px;
}

.sv-button {
  min-height: 56px;
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 13px 28px rgba(16, 11, 29, 0.14);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.sv-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(16, 11, 29, 0.2);
}

.sv-button-dark {
  color: #fff !important;
  background: var(--sv-ink);
}

.sv-button-dark:hover {
  background: var(--sv-purple-dark);
}

.sv-text-link {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--sv-ink) !important;
  font-size: 14px;
  font-weight: 700;
}

.sv-text-link span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 11, 29, 0.22);
  border-radius: 50%;
}

.sv-system {
  position: relative;
  perspective: 1200px;
}

.sv-system-glow {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  filter: blur(75px);
}

.sv-system-window {
  position: relative;
  z-index: 2;
  min-height: 510px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 4%, rgba(124, 58, 237, 0.25), transparent 35%),
    linear-gradient(155deg, #291747, #100a20 70%);
  box-shadow:
    0 50px 90px rgba(65, 29, 127, 0.35),
    0 8px 22px rgba(16, 11, 29, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: rotateY(-3deg);
}

.sv-system-window::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.027) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000, transparent 70%);
}

.sv-system-top,
.sv-system-status,
.sv-system-list,
.sv-system-footer {
  position: relative;
  z-index: 1;
}

.sv-system-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 4px 18px;
}

.sv-system-top > div {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 14px;
}

.sv-system-top > div span {
  color: var(--sv-lime);
  font-family: "Manrope", Arial, sans-serif;
}

.sv-live-pill {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(216, 255, 89, 0.16);
  border-radius: 999px;
  color: #dffb93;
  background: rgba(216, 255, 89, 0.08);
  font-size: 14px;
  font-weight: 600;
}

.sv-live-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sv-lime);
  box-shadow: 0 0 10px var(--sv-lime);
}

.sv-system-status {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid rgba(183, 154, 255, 0.17);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(255, 255, 255, 0.04));
}

.sv-system-status span {
  color: var(--sv-lime);
  font-size: 14px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sv-system-status strong {
  max-width: 430px;
  margin-top: 8px;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.sv-system-status p {
  max-width: 430px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.sv-system-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 10px;
}

.sv-system-list > button {
  min-width: 0;
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 4px 10px;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.sv-system-list > button:hover,
.sv-system-list > button.is-active {
  border-color: rgba(216, 255, 89, 0.5);
  background: rgba(216, 255, 89, 0.075);
  transform: translateY(-2px);
}

.sv-system-list span {
  grid-row: 1 / 3;
  align-self: center;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--sv-ink);
  background: var(--sv-lime);
  font-size: 14px;
  font-weight: 700;
}

.sv-system-list > button:not(.is-active) span {
  color: var(--sv-lime);
  background: rgba(216, 255, 89, 0.1);
}

.sv-system-list strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sv-system-list i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sv-system-list > button.is-active i {
  color: var(--sv-lime);
}

.sv-system-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sv-system-footer i {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--sv-purple), var(--sv-lime));
}

.sv-float {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 5px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  color: var(--sv-ink);
  background: rgba(250, 247, 255, 0.88);
  box-shadow: 0 18px 45px rgba(65, 29, 127, 0.18);
  backdrop-filter: blur(18px);
  animation: sv-float 5s ease-in-out infinite;
}

.sv-float span {
  color: rgba(16, 11, 29, 0.48);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sv-float strong {
  font-size: 14px;
}

.sv-float-one {
  top: 19%;
  right: -48px;
}

.sv-float-one strong {
  color: var(--sv-purple-dark);
}

.sv-float-two {
  left: -38px;
  bottom: 13%;
  animation-delay: -2s;
}

@keyframes sv-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.sv-signal-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(16px);
}

.sv-signal-inner {
  min-height: 94px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

.sv-signal-inner p {
  margin: 0;
  color: rgba(16, 11, 29, 0.52);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sv-signal-inner > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 24px);
  font-size: 14px;
  font-weight: 700;
}

.sv-signal-inner > div i {
  color: var(--sv-purple);
  font-style: normal;
}

.sv-page section.sv-intro,
.sv-page section.sv-catalogue,
.sv-page section.sv-process,
.sv-page section.sv-faq {
  background: var(--sv-ink) !important;
}

.sv-page section.sv-intro {
  padding: 145px 0 75px !important;
}

.sv-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 60px 100px;
  align-items: end;
}

.sv-intro-grid .sv-label {
  grid-column: 1 / -1;
  margin-bottom: -34px;
}

.sv-label {
  color: var(--sv-lime);
}

.sv-intro h2,
.sv-engagement h2,
.sv-process h2,
.sv-faq h2,
.sv-cta h2 {
  margin: 0;
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(46px, 5.4vw, 76px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-transform: none;
  text-wrap: balance;
}

.sv-intro h2 span {
  color: var(--sv-lavender-strong);
}

.sv-intro-grid > p:last-child,
.sv-engagement-copy > p,
.sv-process-heading > p {
  margin: 0;
  color: var(--sv-muted);
  font-size: 15px;
  line-height: 1.7;
}

.sv-page section.sv-catalogue {
  padding: 0 0 150px !important;
}

.sv-catalogue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sv-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--sv-line);
  border-radius: 25px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014));
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.sv-card:hover {
  transform: translateY(-5px);
  border-color: rgba(183, 154, 255, 0.38);
}

.sv-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: #756a82;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sv-card-meta span:last-child {
  color: var(--sv-lime);
}

.sv-visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 17px;
  background: #160f24;
}

.sv-card-copy {
  padding: 28px 6px 7px;
}

.sv-card h3 {
  margin: 0;
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.1;
  text-transform: none;
}

.sv-card-copy > p {
  min-height: 67px;
  margin: 14px 0 20px;
  color: #95899f;
  font-size: 14px;
  line-height: 1.7;
}

.sv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.sv-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #897d96;
  background: rgba(255, 255, 255, 0.025);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sv-services-page .sv-catalogue-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sv-offer-card {
  display: flex;
  flex-direction: column;
}

.sv-offer-card.is-active {
  border-color: rgba(216, 255, 89, 0.48);
  box-shadow: 0 0 0 1px rgba(216, 255, 89, 0.07), 0 28px 65px rgba(0, 0, 0, 0.18);
}

.sv-offer-card .sv-card-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sv-offer-card .sv-card-copy > p:not(.sv-offer-outcome) {
  min-height: 88px;
}

.sv-offer-outcome {
  min-height: 62px !important;
  margin: 0 0 20px !important;
  padding: 12px 13px;
  border: 1px solid rgba(216, 255, 89, 0.12);
  border-radius: 10px;
  color: #c7bbd4 !important;
  background: rgba(216, 255, 89, 0.04);
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.sv-offer-outcome span {
  display: block;
  margin-bottom: 5px;
  color: var(--sv-lime);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sv-scope-trigger {
  width: 100%;
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  padding: 0 14px;
  border: 1px solid rgba(183, 154, 255, 0.22);
  border-radius: 10px;
  color: #d8cfea;
  background: rgba(183, 154, 255, 0.055);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.sv-scope-trigger:hover,
.sv-scope-trigger[aria-pressed="true"] {
  border-color: var(--sv-lime);
  color: var(--sv-ink);
  background: var(--sv-lime);
}

.sv-scope-trigger span {
  font-size: 14px;
}

.sv-scope-panel {
  display: grid;
  grid-template-columns: 0.88fr 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(183, 154, 255, 0.2);
  border-radius: 25px;
  background:
    radial-gradient(circle at 5% 0%, rgba(124, 58, 237, 0.2), transparent 32%),
    #150e23;
}

.sv-scope-panel.is-updating > * {
  animation: sv-scope-reveal 360ms cubic-bezier(.16, 1, .3, 1);
}

@keyframes sv-scope-reveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.sv-system-status.is-updating > *,
.sv-window-body.is-updating > *:not(.sv-mini-tabs),
.sv-content-queue > p.is-updating,
.sv-discovery-core.is-updating > * {
  animation: sv-scope-reveal 320ms cubic-bezier(.16, 1, .3, 1);
}

[data-system-step],
[data-website-view],
[data-recovery-step],
[data-discovery],
[data-offer] {
  touch-action: manipulation;
}

.sv-scope-copy,
.sv-scope-list {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.028);
}

.sv-scope-copy h3 {
  margin: 17px 0 14px;
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.sv-scope-copy > p:not(.sv-label) {
  margin: 0;
  color: #9a8fa6;
  font-size: 14px;
  line-height: 1.7;
}

.sv-scope-copy .sv-text-link {
  margin-top: 25px;
  color: var(--sv-lime);
}

.sv-scope-list > span {
  color: var(--sv-lime);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sv-scope-list ul {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.sv-scope-list li {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 10px 0 10px 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #b2a7bd;
  font-size: 14px;
  line-height: 1.45;
}

.sv-scope-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sv-lime);
  box-shadow: 0 0 12px rgba(216, 255, 89, 0.35);
}

.sv-capability-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid var(--sv-line);
  border-radius: 16px;
}

.sv-capability-strip > span {
  color: var(--sv-lime);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sv-capability-strip > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.sv-capability-strip i {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  color: #92869d;
  background: rgba(255, 255, 255, 0.025);
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sv-website-visual {
  display: grid;
  place-items: center;
  padding: 26px;
  background:
    radial-gradient(circle at 20% 90%, rgba(124, 58, 237, 0.2), transparent 34%),
    #160f24;
}

.sv-website-frame {
  width: min(100%, 420px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: #211632;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
  transform: rotate(-0.5deg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.sv-website-visual:focus-within .sv-website-frame {
  border-color: rgba(216, 255, 89, 0.38);
  transform: rotate(0);
}

.sv-window-bar {
  min-height: 35px;
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sv-window-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5d5069;
}

.sv-window-bar span {
  margin-left: 6px;
  color: #675b73;
  font-size: 14px;
}

.sv-window-body {
  display: grid;
  gap: 11px;
  padding: 18px;
}

.sv-mini-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  margin-bottom: 4px;
}

.sv-mini-tabs button {
  min-height: 28px;
  padding: 0 6px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 7px;
  color: #8f829d;
  background: rgba(255, 255, 255, 0.035);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.sv-mini-tabs button:hover,
.sv-mini-tabs button.is-active {
  border-color: rgba(216, 255, 89, 0.42);
  color: var(--sv-lime);
  background: rgba(216, 255, 89, 0.08);
}

.sv-window-body > span {
  color: var(--sv-lime);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sv-window-body strong {
  max-width: 300px;
  color: var(--sv-lavender);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.sv-window-body p {
  min-height: 43px;
  margin: 0;
  color: #a99db5;
  font-size: 14px;
  line-height: 1.5;
}

.sv-window-body b {
  width: fit-content;
  margin-top: 4px;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--sv-ink);
  background: var(--sv-lime);
  font-size: 14px;
  line-height: 1.35;
}

.sv-discovery-visual {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #160f24;
  background-size: 30px 30px;
}

.sv-discovery-core,
.sv-discovery-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(183, 154, 255, 0.22);
}

.sv-discovery-core {
  left: 50%;
  top: 50%;
  width: 142px;
  min-height: 102px;
  padding: 13px;
  border-radius: 14px;
  color: var(--sv-ink);
  background: var(--sv-lime);
  transform: translate(-50%, -50%);
  text-align: center;
  box-shadow: 0 0 40px rgba(216, 255, 89, 0.12);
}

.sv-discovery-core span {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sv-discovery-core strong {
  margin-top: 4px;
  font-size: 14px;
}

.sv-discovery-core small {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.35;
}

.sv-discovery-node {
  min-width: 80px;
  min-height: 35px;
  padding: 0 9px;
  border-radius: 9px;
  color: #b9adc6;
  background: #241735;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.sv-discovery-node:hover,
.sv-discovery-node.is-active {
  border-color: rgba(216, 255, 89, 0.58);
  color: var(--sv-lime);
  background: #30203f;
  transform: translateY(-2px);
}

.sv-node-search {
  top: 31px;
  left: 38px;
}

.sv-node-ai {
  top: 31px;
  right: 38px;
}

.sv-node-proof {
  left: 38px;
  bottom: 31px;
}

.sv-node-schema {
  right: 38px;
  bottom: 31px;
}

.sv-discovery-line {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 1px;
  opacity: 0.2;
  background: linear-gradient(90deg, var(--sv-purple), rgba(216, 255, 89, 0.72));
  transform-origin: left center;
  transition: opacity 180ms ease, height 180ms ease;
}

.sv-discovery-visual[data-active="search"] .sv-line-search,
.sv-discovery-visual[data-active="ai"] .sv-line-ai,
.sv-discovery-visual[data-active="proof"] .sv-line-proof,
.sv-discovery-visual[data-active="content"] .sv-line-schema {
  height: 2px;
  opacity: 1;
}

.sv-line-search {
  transform: rotate(-145deg);
}

.sv-line-ai {
  transform: rotate(-35deg);
}

.sv-line-proof {
  transform: rotate(145deg);
}

.sv-line-schema {
  transform: rotate(35deg);
}

.sv-content-visual {
  display: grid;
  place-items: center;
  padding: 25px;
  background:
    radial-gradient(circle at 85% 10%, rgba(183, 154, 255, 0.15), transparent 34%),
    #160f24;
}

.sv-content-queue {
  width: min(100%, 410px);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.sv-content-queue > span {
  color: #74687f;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sv-content-queue > strong {
  display: block;
  margin: 7px 0 18px;
  color: var(--sv-lavender);
  font-size: 19px;
  font-weight: 600;
}

.sv-content-queue > button {
  width: 100%;
  min-height: 46px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  color: #fff;
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, padding 180ms ease;
}

.sv-content-queue > button:hover,
.sv-content-queue > button.is-active {
  padding-inline: 8px;
  background: rgba(216, 255, 89, 0.055);
}

.sv-content-queue i,
.sv-content-queue em {
  font-size: 14px;
  font-style: normal;
}

.sv-content-queue i {
  color: #6e6279;
}

.sv-content-queue b {
  font-size: 14px;
}

.sv-content-queue em {
  padding: 5px 7px;
  border-radius: 99px;
  color: var(--sv-lime);
  background: rgba(216, 255, 89, 0.08);
}

.sv-content-queue > button.is-active em {
  color: var(--sv-ink);
  background: var(--sv-lime);
}

.sv-content-queue > p {
  min-height: 46px;
  margin: 13px 0 0;
  padding: 11px 12px;
  border: 1px solid rgba(183, 154, 255, 0.14);
  border-radius: 9px;
  color: #aca0b8;
  background: rgba(183, 154, 255, 0.05);
  font-size: 14px;
  line-height: 1.5;
}

.sv-system-list button:focus-visible,
.sv-mini-tabs button:focus-visible,
.sv-content-queue button:focus-visible,
.sv-discovery-node:focus-visible,
.sv-scope-trigger:focus-visible {
  outline: 2px solid var(--sv-lime);
  outline-offset: 3px;
}

.sv-proof-visual {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 15px;
  align-items: stretch;
  padding: 25px;
}

.sv-proof-score,
.sv-proof-checks {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.sv-proof-score {
  display: grid;
  align-content: center;
  text-align: center;
}

.sv-proof-score span {
  color: #716679;
  font-size: 14px;
  text-transform: uppercase;
}

.sv-proof-score strong {
  margin-top: 8px;
  color: var(--sv-lime);
  font-size: 36px;
  letter-spacing: -0.08em;
}

.sv-proof-checks {
  display: grid;
  align-content: center;
  padding: 15px;
}

.sv-proof-checks span {
  min-height: 40px;
  display: flex;
  gap: 9px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #a99eb4;
  font-size: 14px;
}

.sv-proof-checks span:last-child {
  border-bottom: 0;
}

.sv-proof-checks i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--sv-ink);
  background: var(--sv-lime);
  font-size: 14px;
  font-style: normal;
}

.sv-reuse-visual {
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #160f24;
  background-size: 28px 28px;
}

.sv-reuse-source {
  position: relative;
  z-index: 2;
  width: 160px;
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--sv-ink);
  background: var(--sv-lime);
  font-size: 14px;
  font-weight: 700;
}

.sv-reuse-path {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--sv-lime), var(--sv-purple));
}

.sv-reuse-outputs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.sv-reuse-outputs span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(183, 154, 255, 0.18);
  border-radius: 9px;
  color: #a99db5;
  background: #211632;
  font-size: 14px;
}

.sv-workflow-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 30px;
}

.sv-workflow-visual > i {
  color: var(--sv-purple);
  font-style: normal;
}

.sv-workflow-step {
  width: 105px;
  min-height: 110px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #908498;
  background: rgba(255, 255, 255, 0.035);
}

.sv-workflow-step span {
  font-size: 14px;
}

.sv-workflow-step strong {
  font-size: 14px;
}

.sv-workflow-step.active {
  color: var(--sv-ink);
  background: var(--sv-lime);
  box-shadow: 0 0 35px rgba(216, 255, 89, 0.12);
}

.sv-page section.sv-evidence {
  position: relative;
  z-index: 2;
  padding: 125px 0 !important;
  color: var(--sv-ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(183, 154, 255, 0.28), transparent 30%),
    var(--sv-paper) !important;
  border-radius: 36px;
}

.sv-evidence-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  align-items: end;
}

.sv-evidence-heading h2 {
  max-width: 780px;
  margin: 0;
  color: var(--sv-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(46px, 5.4vw, 76px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

.sv-evidence-heading .sv-label {
  color: var(--sv-purple);
}

.sv-evidence-heading > .sv-text-link {
  margin-bottom: 7px;
  color: var(--sv-ink);
}

.sv-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 55px;
}

.sv-evidence-card {
  min-height: 355px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(16, 11, 29, 0.11);
  border-radius: 22px;
  color: var(--sv-ink) !important;
  background: rgba(255, 255, 255, 0.38);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.sv-evidence-card:hover {
  border-color: var(--sv-ink);
  color: #fff !important;
  background: var(--sv-ink);
  transform: translateY(-5px);
}

.sv-evidence-card > span {
  color: var(--sv-purple);
  font-size: 14px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sv-evidence-card:hover > span,
.sv-evidence-card:hover > strong {
  color: var(--sv-lime);
}

.sv-evidence-card h3 {
  margin: 44px 0 18px;
  color: inherit;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.sv-evidence-card p {
  margin: 0;
  color: #6e6378;
  font-size: 14px;
  line-height: 1.7;
  transition: color 220ms ease;
}

.sv-evidence-card:hover p {
  color: #9f94ab;
}

.sv-evidence-card > strong {
  margin-top: auto;
  padding-top: 28px;
  color: var(--sv-purple);
  font-size: 14px;
}

.sv-page section.sv-engagement {
  position: relative;
  z-index: 2;
  padding: 140px 0 !important;
  color: var(--sv-ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(183, 154, 255, 0.25), transparent 28%),
    var(--sv-paper) !important;
  border-radius: 36px;
}

.sv-engagement-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 85px;
  align-items: center;
}

.sv-engagement .sv-label {
  color: var(--sv-purple);
}

.sv-engagement h2 {
  color: var(--sv-ink);
}

.sv-engagement-copy > p {
  max-width: 500px;
  margin-top: 28px;
  color: #6e6378;
}

.sv-console {
  padding: 18px;
  border-radius: 26px;
  color: #fff;
  background: var(--sv-ink);
  box-shadow: 0 35px 75px rgba(55, 22, 113, 0.2);
}

.sv-console article {
  min-height: 190px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 19px;
  align-items: center;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
}

.sv-console article + article {
  margin-top: 10px;
}

.sv-console-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--sv-ink);
  background: var(--sv-lime);
  font-size: 14px;
  font-weight: 700;
}

.sv-console article > div:nth-child(2) > span {
  color: var(--sv-lime);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sv-console h3 {
  margin: 7px 0 9px;
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: none;
}

.sv-console article p {
  max-width: 500px;
  margin: 0;
  color: #94899f;
  font-size: 14px;
  line-height: 1.65;
}

.sv-console article > strong {
  color: var(--sv-lavender);
  font-size: 14px;
}

.sv-console-footer {
  min-height: 55px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 15px;
  color: #776d81;
  font-size: 14px;
}

.sv-console-footer i {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.sv-console-footer strong {
  color: var(--sv-lime);
  font-weight: 500;
}

.sv-page section.sv-process {
  padding: 150px 0 95px !important;
}

.sv-process-heading {
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  gap: 80px;
  align-items: end;
}

.sv-process-heading h2 {
  max-width: 760px;
}

.sv-process-heading > p {
  max-width: 380px;
  font-size: 14px;
}

.sv-process-list {
  margin: 65px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--sv-line);
}

.sv-process-list li {
  min-height: 165px;
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid var(--sv-line);
}

.sv-process-list li > span {
  color: var(--sv-lime);
  font-size: 14px;
}

.sv-process-list li > div {
  display: grid;
  grid-template-columns: 0.66fr 1fr;
  gap: 50px;
  align-items: center;
}

.sv-process-list h3 {
  margin: 0;
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.1;
  text-transform: none;
}

.sv-process-list p {
  max-width: 540px;
  margin: 0;
  color: #91869b;
  font-size: 14px;
  line-height: 1.7;
}

.sv-process-list b {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 1px solid var(--sv-line);
  border-radius: 50%;
  color: var(--sv-lavender);
  font-size: 14px;
}

.sv-page section.sv-faq {
  padding: 55px 0 150px !important;
}

.sv-faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.sv-faq h2 {
  max-width: 440px;
  font-size: clamp(40px, 4.4vw, 62px);
}

.sv-faq-list {
  border-top: 1px solid var(--sv-line);
}

.sv-faq-list details {
  border-bottom: 1px solid var(--sv-line);
}

.sv-faq-list summary {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.025em;
  list-style: none;
}

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

.sv-faq-list summary span {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--sv-line);
  border-radius: 50%;
  color: var(--sv-lime);
  transition: transform 200ms ease;
}

.sv-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.sv-faq-list details p {
  max-width: 680px;
  margin: -8px 0 30px;
  color: #988da5;
  font-size: 14px;
  line-height: 1.75;
}

.sv-page section.sv-cta {
  position: relative;
  overflow: hidden;
  padding: 135px 0 !important;
  color: var(--sv-ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(135deg, #7c3aed, #b69afb 62%, #d5c7ff) !important;
  background-size: 60px 60px, 60px 60px, auto;
  border-radius: 36px 36px 0 0;
}

.sv-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 100%, rgba(216, 255, 89, 0.48), transparent 36%);
}

.sv-cta > .sv-orb {
  width: 520px;
  height: 520px;
  top: -330px;
  left: -90px;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(15px);
}

.sv-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.sv-cta .sv-label {
  color: var(--sv-ink);
}

.sv-cta h2 {
  max-width: 900px;
  margin-inline: auto;
  color: var(--sv-ink);
  font-size: clamp(52px, 7vw, 96px);
}

.sv-cta-inner > p {
  max-width: 610px;
  margin: 30px auto 0;
  color: rgba(16, 11, 29, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

.sv-button-light {
  margin-top: 34px;
  color: var(--sv-ink) !important;
  background: #fff;
}

.sv-button-light:hover {
  background: var(--sv-lime);
}

.sv-cta-inner small {
  display: block;
  margin-top: 18px;
  color: rgba(16, 11, 29, 0.53);
  font-size: 14px;
}

.sv-footer {
  padding: 70px 0 35px;
  background: #0b0713;
}

.sv-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.sv-footer-brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
}

.sv-footer-brand > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--sv-lime);
  background: var(--sv-ink);
  font-size: 14px;
}

.sv-footer-grid > p {
  margin: 0;
  color: #7e738a;
  font-size: 14px;
  line-height: 1.65;
}

.sv-footer-grid > div {
  display: flex;
  gap: 26px;
  justify-content: flex-end;
  font-size: 14px;
}

.sv-footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--sv-line);
  color: #51485d;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html body .sv-page section.sv-hero {
  padding: 0 !important;
}

html body .sv-page section.sv-intro {
  padding: 145px 0 75px !important;
}

html body .sv-page section.sv-catalogue {
  padding: 0 0 150px !important;
}

html body .sv-page section.sv-engagement {
  padding: 140px 0 !important;
}

html body .sv-page section.sv-process {
  padding: 150px 0 95px !important;
}

html body .sv-page section.sv-faq {
  padding: 55px 0 150px !important;
}

html body .sv-page section.sv-cta {
  padding: 135px 0 !important;
}

@media (max-width: 1320px) {
  .sv-float-one {
    right: 12px;
  }
}

@media (max-width: 1180px) {
  .sv-shell {
    width: calc(100% - 32px);
  }

  .sv-hero-grid {
    gap: 40px;
  }

  .sv-hero h1 {
    font-size: clamp(56px, 6.6vw, 76px);
  }

  .sv-system-window {
    transform: none;
  }
}

@media (max-width: 1040px) {
  .sv-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 80px;
    padding-top: 165px;
  }

  .sv-hero-copy {
    max-width: 780px;
  }

  .sv-system {
    width: min(720px, 100%);
    margin-inline: auto;
  }

  .sv-intro-grid,
  .sv-engagement-grid,
  .sv-faq-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .sv-intro-grid .sv-label {
    margin-bottom: -32px;
  }

  .sv-intro-grid > p:last-child {
    max-width: 650px;
  }

  .sv-services-page .sv-catalogue-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .sv-services-page .sv-catalogue-grid::-webkit-scrollbar,
  .sv-evidence-grid::-webkit-scrollbar {
    display: none;
  }

  .sv-offer-card {
    flex: 0 0 min(72vw, 440px);
    scroll-snap-align: start;
  }

  .sv-scope-panel {
    grid-template-columns: 1fr 1fr;
  }

  .sv-scope-copy {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .sv-evidence-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .sv-evidence-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .sv-evidence-card {
    flex: 0 0 min(68vw, 430px);
    scroll-snap-align: start;
  }

  .sv-engagement-copy {
    max-width: 720px;
  }

  .sv-process-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sv-process-list li > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 760px) {
  .sv-shell {
    width: calc(100% - 24px);
  }

  .sv-page section.sv-hero {
    background-size: 44px 44px, 44px 44px, auto;
    border-radius: 0 0 24px 24px;
  }

  .sv-hero-grid {
    gap: 65px;
    padding: 135px 0 88px;
  }

  .sv-hero h1 {
    font-size: clamp(48px, 14.5vw, 68px);
  }

  .sv-hero-lede {
    font-size: 15px;
  }

  .sv-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .sv-system-window {
    min-height: auto;
    padding: 12px;
    border-radius: 21px;
  }

  .sv-system-top {
    padding-bottom: 13px;
  }

  .sv-system-status {
    min-height: 105px;
    padding: 17px;
  }

  .sv-system-status strong {
    font-size: 19px;
  }

  .sv-system-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .sv-system-list::-webkit-scrollbar {
    display: none;
  }

  .sv-system-list > button {
    flex: 0 0 78%;
    min-height: 72px;
    scroll-snap-align: start;
  }

  .sv-system-footer {
    flex-wrap: wrap;
  }

  .sv-float-one {
    top: -35px;
    right: 6px;
  }

  .sv-float-two {
    display: none;
  }

  .sv-signal-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 25px;
  }

  .sv-signal-inner > div {
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 14px;
  }

  html body .sv-page section.sv-intro {
    padding: 100px 0 60px !important;
  }

  .sv-intro-grid {
    gap: 35px;
  }

  .sv-intro-grid .sv-label {
    margin-bottom: -18px;
  }

  .sv-intro h2,
  .sv-engagement h2,
  .sv-evidence-heading h2,
  .sv-process h2,
  .sv-faq h2 {
    font-size: 42px;
  }

  html body .sv-page section.sv-catalogue {
    padding-bottom: 100px !important;
  }

  .sv-catalogue-grid {
    grid-template-columns: 1fr;
  }

  .sv-visual {
    min-height: 245px;
  }

  .sv-card-copy > p {
    min-height: auto;
  }

  .sv-offer-card {
    flex-basis: 88%;
  }

  .sv-offer-card .sv-card-copy > p:not(.sv-offer-outcome) {
    min-height: auto;
  }

  .sv-scope-panel {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .sv-scope-copy,
  .sv-scope-list {
    grid-column: auto;
    min-height: auto;
    padding: 20px;
  }

  .sv-capability-strip {
    grid-template-columns: 1fr;
  }

  .sv-page section.sv-evidence {
    padding: 95px 0 !important;
    border-radius: 24px;
  }

  .sv-evidence-grid {
    margin-top: 38px;
  }

  .sv-evidence-card {
    flex-basis: 86%;
    min-height: 330px;
    padding: 23px;
  }

  .sv-proof-visual {
    grid-template-columns: 0.8fr 1.2fr;
    padding: 15px;
  }

  .sv-reuse-outputs {
    grid-template-columns: repeat(2, 1fr);
  }

  .sv-workflow-visual {
    gap: 7px;
    padding: 16px;
  }

  .sv-workflow-step {
    width: 84px;
    min-height: 95px;
  }

  html body .sv-page section.sv-engagement {
    padding: 95px 0 !important;
    border-radius: 24px;
  }

  .sv-console {
    padding: 11px;
  }

  .sv-console article {
    grid-template-columns: 44px 1fr;
    gap: 15px;
    padding: 18px;
  }

  .sv-console-number {
    width: 42px;
    height: 42px;
  }

  .sv-console article > strong {
    grid-column: 2;
  }

  .sv-console-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding-block: 15px;
  }

  .sv-console-footer i {
    width: 100%;
    flex: 0 0 1px;
  }

  html body .sv-page section.sv-process {
    padding: 100px 0 75px !important;
  }

  .sv-process-list {
    margin-top: 45px;
  }

  .sv-process-list li {
    grid-template-columns: 40px 1fr;
    gap: 15px;
    padding: 25px 0;
  }

  .sv-process-list li > b {
    display: none;
  }

  html body .sv-page section.sv-faq {
    padding: 25px 0 100px !important;
  }

  .sv-faq-grid {
    gap: 35px;
  }

  .sv-faq-list summary {
    min-height: 84px;
    font-size: 15px;
  }

  html body .sv-page section.sv-cta {
    padding: 105px 0 !important;
    border-radius: 24px 24px 0 0;
  }

  .sv-cta h2 {
    font-size: 52px;
  }

  .sv-footer-grid {
    grid-template-columns: 1fr;
  }

  .sv-footer-grid > div {
    justify-content: flex-start;
  }

  .sv-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 430px) {
  .sv-hero h1 {
    font-size: 47px;
  }

  .sv-system-top .sv-live-pill {
    display: none;
  }

  .sv-float-one {
    max-width: 165px;
  }

  .sv-website-visual,
  .sv-content-visual,
  .sv-reuse-visual {
    padding: 16px;
  }

  .sv-window-body {
    padding: 21px;
  }

  .sv-window-body strong {
    font-size: 23px;
  }

  .sv-discovery-node {
    min-width: 68px;
  }

  .sv-node-search,
  .sv-node-proof {
    left: 13px;
  }

  .sv-node-ai,
  .sv-node-schema {
    right: 13px;
  }

  .sv-proof-score strong {
    font-size: 28px;
  }

  .sv-workflow-visual > i {
    display: none;
  }

  .sv-workflow-visual {
    justify-content: space-between;
  }

  .sv-workflow-step {
    width: 30%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sv-page *,
  .sv-page *::before,
  .sv-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Accessibility: readable service copy and full-size interactive targets. */
.sv-page :is(
  .sv-system-status p,
  .sv-card-copy > p,
  .sv-offer-outcome,
  .sv-scope-copy p,
  .sv-scope-list li,
  .sv-evidence-card p,
  .sv-footer-grid > p,
  .sv-footer-bottom
) {
  color: #bdb2c7;
}

.sv-page button {
  min-height: 44px;
}

.sv-system-list > button {
  min-height: 96px;
}

.sv-visual {
  min-height: 340px;
}

.sv-card-copy > p,
.sv-intro-grid > p:last-child,
.sv-engagement-copy > p,
.sv-process-heading > p,
.sv-faq-list p {
  font-size: 16px;
}

.sv-system-status p,
.sv-offer-outcome,
.sv-scope-copy p,
.sv-scope-list li,
.sv-evidence-card p {
  line-height: 1.6;
}

@media (max-width: 760px) {
  .sv-system-list > button {
    min-height: 92px;
  }

  .sv-visual {
    min-height: 360px;
  }
}
