.sp-c-hero {
  min-height: 68vh;
  padding-bottom: clamp(2.75rem, 5vw, 4.25rem);
  background:
    radial-gradient(circle at 82% 14%, rgb(0 61 255 / 22%) 0%, transparent 36%),
    radial-gradient(circle at 14% 88%, rgb(20 240 181 / 15%) 0%, transparent 32%),
    linear-gradient(180deg, #050f2c 0%, #122f71 100%);
}

.sp-c-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1rem, 2vw, 1.9rem);
  align-items: center;
}

.sp-c-hero .section-intro {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.9rem);
}

.sp-c-hero__title {
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 3.45rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  max-width: 16ch;
}

.sp-c-orbit {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1 / 1;
  justify-self: center;
  isolation: isolate;
}

.sp-c-orbit::before,
.sp-c-orbit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgb(255 255 255 / 28%);
  z-index: 0;
  pointer-events: none;
}

.sp-c-orbit::before {
  inset: 12%;
}

.sp-c-orbit::after {
  inset: 3%;
  opacity: 0.55;
}

.sp-c-orbit__inner-glow {
  display: block;
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  --orbit-spin-duration: 4.2s;

  filter: drop-shadow(0 0 3px rgb(245 114 0 / 28%));
}

.sp-c-orbit__inner-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: rgb(245 114 0 / 82%);
  border-right-color: rgb(245 114 0 / 64%);
  filter: drop-shadow(0 0 6px rgb(245 114 0 / 72%)) drop-shadow(0 0 12px rgb(245 114 0 / 42%));
  animation: orbitInnerGlowSpin var(--orbit-spin-duration) linear infinite;
}

.sp-c-orbit__inner-glow::after {
  content: none;
}

.sp-c-orbit__core {
  position: absolute;
  inset: 35%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.9rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  z-index: 2;
  border: 1px solid rgb(255 255 255 / 20%);
  background: linear-gradient(145deg, rgb(255 255 255 / 16%), rgb(255 255 255 / 8%));
}

@keyframes orbitInnerGlowSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sp-c-orbit__inner-glow,
  .sp-c-orbit__inner-glow::before,
  .sp-c-orbit__inner-glow::after {
    animation: none;
  }
}

.sp-c-orbit__node {
  position: absolute;
  z-index: 2;
  width: 108px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 12px;
  background: rgb(7 24 68 / 64%);
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  padding: 0.5rem;
  color: #ffffff;
  font-size: 0.75rem;
  transition:
    transform var(--dur-std) var(--ease-std),
    background var(--dur-std) var(--ease-std);
}

.sp-c-orbit__node i {
  font-size: 1.15rem;
}

.sp-c-orbit__node:hover {
  transform: translateY(-2px);
  background: rgb(255 255 255 / 12%);
}

.sp-c-orbit__node--1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sp-c-orbit__node--2 {
  top: 17%;
  right: 0;
}

.sp-c-orbit__node--3 {
  right: 0;
  bottom: 17%;
}

.sp-c-orbit__node--4 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sp-c-orbit__node--5 {
  bottom: 17%;
  left: 0;
}

.sp-c-orbit__node--6 {
  top: 17%;
  left: 0;
}

.sp-c-orbit__node--1:hover,
.sp-c-orbit__node--4:hover {
  transform: translateX(-50%) translateY(-2px);
}

@media (width <= 1480px) and (width > 1024px) {
  .sp-c-hero {
    padding-bottom: clamp(3rem, 5.5vw, 4.4rem);
  }

  .sp-c-hero__grid {
    grid-template-columns: 1.02fr 0.98fr;
    gap: clamp(1.4rem, 2.6vw, 2.2rem);
  }

  .sp-c-hero__title {
    max-width: 15ch;
  }

  .sp-c-orbit {
    width: min(390px, 100%);
  }

  .sp-c-orbit__node {
    width: 102px;
    font-size: 0.72rem;
  }

  .sp-c-transform {
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  }
}

.sp-c-split {
  background: #f4f8ff;
}

.sp-c-transform {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
  gap: 0.95rem;
  align-items: stretch;
}

.sp-c-transform__col {
  border: 1px solid #d9e4fb;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 1rem;
  box-shadow: 0 12px 24px rgb(17 41 94 / 8%);
}

.sp-c-transform__col--before {
  background:
    radial-gradient(circle at 12% 8%, rgb(241 247 255 / 88%) 0%, transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.sp-c-transform__col--after {
  background:
    radial-gradient(circle at 88% 14%, rgb(227 240 255 / 88%) 0%, transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
}

.sp-c-transform__eyebrow {
  margin: 0 0 0.5rem;
  color: #2f4db7;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-c-transform__list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.sp-c-transform__list li {
  border: 1px solid #d7e4fc;
  border-radius: 11px;
  background: #ffffff;
  padding: 0.5rem 0.6rem;
  color: #334155;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.sp-c-transform__list i {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf1ff;
  color: #1f4bde;
  font-size: 0.74rem;
}

.sp-c-transform__list--success li {
  border-color: #cfe2ff;
  background: linear-gradient(180deg, #f8fcff 0%, #eef6ff 100%);
}

.sp-c-transform__flow {
  position: relative;
  place-self: stretch center;
  width: 100%;
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: #2f4db7;
}

.sp-c-transform__flow::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10%;
  bottom: 10%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgb(61 100 218 / 18%) 0%,
    rgb(61 100 218 / 68%) 48%,
    rgb(61 100 218 / 18%) 100%
  );
}

.sp-c-transform__flow span {
  border: 1px solid #cde0ff;
  border-radius: 999px;
  background: #ffffff;
  color: #2f4db7;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.58rem;
  position: relative;
  z-index: 1;
}

.sp-c-transform__flow i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.08rem;
  color: #1f4bde;
  border: 1px solid #cde0ff;
  background: #ffffff;
  box-shadow: 0 10px 18px rgb(17 41 94 / 12%);
  position: relative;
  z-index: 1;
}

.sp-c-deliver-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.sp-c-deliver-grid article {
  border: 1px solid #d9e5fc;
  border-radius: 11px;
  background: #ffffff;
  padding: 0.7rem;
  box-shadow: 0 10px 18px rgb(17 41 94 / 7%);
  transition:
    transform var(--dur-std) var(--ease-std),
    box-shadow var(--dur-std) var(--ease-std);
}

.sp-c-deliver-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf1ff;
  color: #1f4bde;
  margin-bottom: 0.45rem;
}

.sp-c-deliver-grid h3 {
  font-size: 0.96rem;
  color: #1f2937;
  margin-bottom: 0.2rem;
}

.sp-c-deliver-grid p {
  color: #51627c;
  font-size: 0.84rem;
  line-height: 1.45;
}

.sp-c-audience-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.sp-c-audience-grid article {
  border: 1px solid #d8e4fc;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.72rem;
  box-shadow: 0 10px 20px rgb(17 41 94 / 7%);
}

.sp-c-audience-grid i {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f4bde;
  background: #eaf1ff;
  margin-bottom: 0.45rem;
}

.sp-c-audience-grid h3 {
  color: #1f2937;
  font-size: 0.96rem;
  margin-bottom: 0.18rem;
}

.sp-c-audience-grid p {
  color: #4f607a;
  font-size: 0.84rem;
  line-height: 1.42;
}

.sp-c-value-delta {
  margin-top: 1rem;
  padding: 0;
}

.sp-c-value-delta__grid {
  display: grid;
  grid-template-columns: 1fr 88px 1fr;
  gap: 0.8rem;
  align-items: stretch;
}

.sp-c-value-delta__col {
  border: 1px solid #d7e4fc;
  border-radius: 14px;
  background: #ffffff;
  padding: 0.75rem;
}

.sp-c-value-delta__col h3 {
  margin-bottom: 0.6rem;
  color: #1f2937;
}

.sp-c-value-delta__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.sp-c-value-delta__col li {
  border: 1px solid #d8e5fc;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.4rem 0.5rem;
  color: #45566f;
  font-size: 0.82rem;
}

.sp-c-value-delta__flow {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgb(47 77 183 / 0%) 0%,
    rgb(47 77 183 / 18%) 50%,
    rgb(47 77 183 / 0%) 100%
  );
}

.sp-c-value-delta__flow span {
  border: 1px solid #cde0ff;
  border-radius: 999px;
  padding: 0.22rem 0.52rem;
  font-size: 0.66rem;
  font-weight: 700;
  color: #2f4db7;
  background: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sp-c-value-delta__flow i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cde0ff;
  color: #1f4bde;
  background: #ffffff;
}

.sp-c-deliver-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgb(17 41 94 / 11%);
}

.sp-c-deliver-grid article:nth-child(1),
.sp-c-deliver-grid article:nth-child(4),
.sp-c-deliver-grid article:nth-child(7) {
  border-color: #c7d8fc;
  background: linear-gradient(180deg, #f6faff 0%, #edf4ff 100%);
}

.sp-c-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgb(20 240 181 / 15%) 0%, transparent 34%),
    linear-gradient(180deg, #091a4d 0%, #003dff 100%);
}

.sp-c-cta__shell {
  position: relative;
  z-index: 1;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 18px;
  background: rgb(255 255 255 / 6%);
  padding: clamp(1.2rem, 2.2vw, 1.8rem);
}

.cta-particles-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

@media (width <= 1024px) {
  .sp-c-hero {
    min-height: auto;
    padding-bottom: 2.2rem;
  }

  .sp-c-hero__grid,
  .sp-c-transform,
  .sp-c-value-delta__grid {
    grid-template-columns: 1fr;
  }

  .sp-c-hero__grid {
    align-items: start;
    gap: 1.15rem;
  }

  .sp-c-orbit {
    margin-top: 0.25rem;
    width: min(430px, 100%);
  }

  .sp-c-transform__flow {
    width: 100%;
    min-height: 82px;
    min-width: 0;
  }

  .sp-c-transform__flow::before {
    inset: 50% 10% auto;
    width: auto;
    height: 2px;
    transform: none;
    background: linear-gradient(
      90deg,
      rgb(61 100 218 / 18%) 0%,
      rgb(61 100 218 / 68%) 50%,
      rgb(61 100 218 / 18%) 100%
    );
  }

  .sp-c-transform__flow i {
    transform: rotate(90deg);
  }

  .sp-c-value-delta__flow {
    min-height: 74px;
    background: linear-gradient(
      90deg,
      rgb(47 77 183 / 0%) 0%,
      rgb(47 77 183 / 18%) 50%,
      rgb(47 77 183 / 0%) 100%
    );
  }

  .sp-c-value-delta__flow i {
    transform: rotate(90deg);
  }

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

  .sp-c-audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (width <= 640px) {
  .sp-c-hero {
    padding-bottom: 1.8rem;
  }

  .sp-c-orbit {
    width: min(300px, 100%);
  }

  .sp-c-orbit__core {
    inset: 33%;
    font-size: 0.78rem;
  }

  .sp-c-orbit__node {
    width: 84px;
    padding: 0.42rem;
    font-size: 0.64rem;
  }

  .sp-c-orbit__node i {
    font-size: 0.98rem;
  }

  .sp-c-transform__col {
    padding: 0.9rem;
  }

  .sp-c-value-delta {
    padding: 0;
  }

  .sp-c-transform__list li {
    font-size: 0.8rem;
  }
}

@media (width <= 420px) {
  .sp-c-hero {
    padding-bottom: 1.45rem;
  }

  .sp-c-hero__title {
    max-width: 10.8ch;
    font-size: clamp(1.9rem, 11vw, 2.35rem);
  }

  .sp-c-hero .section-intro {
    max-width: 30ch;
    font-size: 1.01rem;
    line-height: 1.58;
    margin-bottom: 1rem;
  }

  .sp-c-orbit {
    margin-top: 0.1rem;
    width: min(282px, 100%);
  }
}
