.systems-page {
  --systems-ink: #071126;
  --systems-muted: #64748b;
  --systems-line: #dce3e9;
  --systems-paper: #fff;
  --systems-mist: #f5f8fb;
  --systems-navy: #030a17;
  --systems-navy-soft: #081a2c;
  --systems-violet: #7468ff;
  --systems-magenta: #e84d9b;
  --systems-cyan: #2fc2ff;
  overflow: hidden;
  background: var(--systems-paper);
  color: var(--systems-ink);
  font-family: var(--orby-font-family);
  line-height: 1.5;
}

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

.systems-page a {
  color: inherit;
  text-decoration: none;
}

.systems-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.systems-section {
  padding: 112px 0;
}

.systems-hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 132px 20px 76px;
  color: #fff;
  background: var(--systems-navy);
}

.systems-hero::before {
  content: "";
  position: absolute;
  inset: -2%;
  z-index: -2;
  background:
    url("../assets/images/systems/systems-hero.png")
    center center / cover no-repeat;
  transform: scale(1.025);
  animation: systemsHeroAtmosphere 18s ease-in-out infinite alternate;
}

.systems-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 7, 17, .36), rgba(2, 7, 17, .22) 42%, rgba(2, 7, 17, .83)),
    linear-gradient(90deg, rgba(2, 7, 17, .52), transparent 48%, rgba(2, 7, 17, .26));
}

.systems-hero__content {
  width: min(760px, 100%);
  text-align: center;
  text-shadow: 0 2px 28px rgba(0, 0, 0, .46);
}

.systems-page.motion-ready .systems-hero__content > * {
  opacity: 0;
  transform: translateY(12px);
  animation: systemsHeroReveal .78s cubic-bezier(.22, .61, .36, 1) forwards;
}

.systems-page.motion-ready .systems-hero__content > .systems-eyebrow { animation-delay: .08s; }
.systems-page.motion-ready .systems-hero__content > h1 { animation-delay: .16s; }
.systems-page.motion-ready .systems-hero__content > p:not(.systems-eyebrow) { animation-delay: .28s; }
.systems-page.motion-ready .systems-actions { animation-delay: .4s; }
.systems-page.motion-ready .systems-hero__scroll { animation-delay: .5s; }

.systems-hero h1 {
  max-width: 760px;
  margin: 0 auto;
  color: #fff !important;
  font-size: var(--orby-h1-desktop);
  font-weight: 760;
  letter-spacing: -.045em;
  line-height: 1;
}

.systems-hero__content > p:not(.systems-eyebrow) {
  max-width: 650px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, .8);
  font-size: 17px;
}

.systems-eyebrow {
  margin: 0 0 16px;
  color: #168ab4;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.systems-eyebrow--light {
  color: var(--systems-cyan);
}

.systems-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.systems-button {
  min-height: var(--orby-button-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border-radius: var(--orby-button-radius);
  font-size: var(--orby-button-font-size);
  font-weight: 750;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.systems-button:hover,
.systems-button:focus-visible {
  transform: translateY(-2px);
}

.systems-button--primary {
  border: 0;
  background: var(--systems-cyan);
  color: #041527 !important;
  box-shadow: 0 0 28px rgba(47, 194, 255, .34);
}

.systems-button--primary:hover,
.systems-button--primary:focus-visible {
  box-shadow: 0 8px 34px rgba(47, 194, 255, .46);
}

.systems-button--glass {
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .1);
  color: #fff !important;
  backdrop-filter: blur(14px);
}

.systems-button--glass:hover,
.systems-button--glass:focus-visible {
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .15);
}

.systems-hero__scroll {
  position: relative;
  width: 20px;
  height: 32px;
  display: block;
  margin: 26px auto 0;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
}

.systems-hero__scroll span {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 2px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
  animation: systemsScroll 1.8s infinite;
}

.systems-heading {
  max-width: 790px;
}

.systems-heading--center {
  margin: 0 auto;
  text-align: center;
}

.systems-heading h2,
.systems-integrations__copy h2,
.systems-process__copy h2,
.systems-cta h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  font-weight: 760;
  letter-spacing: -.045em;
  line-height: 1.03;
}

.systems-heading > p:not(.systems-eyebrow),
.systems-integrations__copy > p:not(.systems-eyebrow),
.systems-process__copy > p:not(.systems-eyebrow) {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--systems-muted);
}

.systems-heading--center > p:not(.systems-eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.systems-heading--dark h2 {
  color: #fff !important;
}

.systems-heading--dark > p:not(.systems-eyebrow) {
  color: rgba(255, 255, 255, .62);
}

.systems-solutions {
  background: linear-gradient(180deg, #def4ff 0, #fff 38%);
}

.systems-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.systems-solution-card {
  min-height: 430px;
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(84, 210, 255, .2);
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(14, 59, 82, .94), rgba(5, 12, 27, .99) 58%),
    var(--systems-navy);
  box-shadow: 0 22px 54px rgba(7, 17, 38, .18);
}

.systems-solution-card--violet {
  border-color: rgba(125, 110, 255, .24);
  background: linear-gradient(145deg, rgba(45, 35, 104, .96), rgba(7, 11, 28, .99) 60%);
}

.systems-solution-card--magenta {
  border-color: rgba(232, 77, 155, .22);
  background: linear-gradient(145deg, rgba(78, 25, 70, .95), rgba(8, 11, 27, .99) 60%);
}

.systems-card-tag {
  position: relative;
  margin: 0 0 48px;
  color: var(--systems-cyan);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.systems-solution-card h3 {
  position: relative;
  margin: 0;
  color: #fff !important;
  font-size: 18px;
  line-height: 1.25;
}

.systems-solution-card > p:not(.systems-card-tag) {
  position: relative;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .66);
}

.systems-solution-card ul {
  position: relative;
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.systems-solution-card li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
}

.systems-solution-card li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--systems-cyan);
  box-shadow: 0 0 12px rgba(47, 194, 255, .7);
}

.systems-comparison {
  padding: 120px 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(92, 68, 235, .14), transparent 42%),
    linear-gradient(180deg, #030713, #070414);
}

.systems-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.systems-comparison-card {
  min-height: 400px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.systems-comparison-card--after {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(116, 104, 255, .2);
  background:
    linear-gradient(145deg, rgba(116, 104, 255, .12), rgba(255, 255, 255, .025)),
    rgba(255, 255, 255, .025);
}

.systems-comparison-card--after::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 1px;
  bottom: 1px;
  left: -42%;
  width: 38%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(74, 198, 255, .08) 28%,
    rgba(124, 104, 255, .2) 62%,
    transparent
  );
  filter: blur(24px);
  transform: translate3d(0, 0, 0);
  animation: systemsAfterInnerGlow 6.4s ease-in-out infinite;
  pointer-events: none;
}

.systems-comparison-card--after::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 26%,
    rgba(47, 194, 255, .35) 42%,
    rgba(255, 255, 255, .95) 50%,
    rgba(139, 92, 246, .64) 58%,
    transparent 74%
  );
  background-position: 120% 0;
  background-size: 260% 100%;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: systemsAfterBorderSweep 6.4s ease-in-out infinite;
  pointer-events: none;
}

.systems-comparison-card--after .systems-comparison-card__title,
.systems-comparison-card--after ul {
  position: relative;
  z-index: 1;
}

.systems-comparison-card__title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.systems-comparison-card__title span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .07);
  font-size: 1.15rem;
}

.systems-comparison-card--after .systems-comparison-card__title span {
  color: #fff;
  background: var(--systems-violet);
  box-shadow: 0 10px 28px rgba(116, 104, 255, .28);
}

.systems-comparison-card h3 {
  margin: 0;
  color: #fff !important;
  font-size: 1.8rem;
}

.systems-comparison-card ul {
  display: grid;
  gap: 17px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.systems-comparison-card li {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, .48);
}

.systems-comparison-card li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, .26);
}

.systems-comparison-card--after li {
  color: rgba(255, 255, 255, .88);
  font-weight: 650;
}

.systems-comparison-card--after li::before {
  content: "✓";
  color: var(--systems-violet);
}

.systems-impact {
  margin-top: 20px;
  padding: 46px 28px;
  border: 1px solid rgba(139, 114, 246, .18);
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(115deg, rgba(23, 26, 60, .96), rgba(59, 23, 79, .88));
}

.systems-impact strong {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -.035em;
}

.systems-impact p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .58);
}

.systems-impact span {
  color: #9f97ff;
  font-weight: 750;
}

.systems-benefits {
  background: #fafbfc;
}

.systems-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.systems-benefit-card {
  min-height: 205px;
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--systems-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(7, 17, 38, .07);
}

.systems-benefit-card span {
  position: absolute;
  top: -18px;
  right: 12px;
  color: #edf1f5;
  font-size: 5.8rem;
  font-weight: 850;
  line-height: 1;
}

.systems-benefit-card h3,
.systems-benefit-card p {
  position: relative;
}

.systems-benefit-card h3 {
  margin: 62px 0 9px;
  color: #123c5e;
  font-size: 18px;
}

.systems-benefit-card p {
  margin: 0;
  color: var(--systems-muted);
}

.systems-integrations {
  padding: 120px 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(47, 194, 255, .08), transparent 34%),
    linear-gradient(180deg, #061829, #030712 78%);
}

.systems-integrations__layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 68px;
  align-items: center;
}

.systems-integrations__copy h2 {
  color: #fff !important;
}

.systems-integrations__copy > p:not(.systems-eyebrow) {
  color: rgba(255, 255, 255, .62);
}

.systems-flow {
  display: grid;
  gap: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.systems-flow__node {
  padding: 19px 20px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
}

.systems-flow__node--active {
  border-color: rgba(47, 194, 255, .34);
  background: linear-gradient(105deg, rgba(47, 194, 255, .14), rgba(116, 104, 255, .09));
}

.systems-flow__node span {
  display: block;
  color: var(--systems-cyan);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.systems-flow__node strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 1.05rem;
}

.systems-flow__line {
  width: 1px;
  height: 18px;
  margin: -3px 0 -3px 26px;
  background: linear-gradient(var(--systems-cyan), rgba(116, 104, 255, .4));
}

.systems-logo-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 26px;
  align-items: center;
  margin-top: 16px;
  padding: 28px 34px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.systems-logo-strip img {
  width: 100%;
  max-width: 92px;
  max-height: 38px;
  justify-self: center;
  object-fit: contain;
  transition: transform .2s ease, filter .2s ease;
}

.systems-logo-strip img[alt="ChatGPT"],
.systems-logo-strip img[alt="Notion"] {
  filter: brightness(0) invert(1);
  opacity: .82;
}

.systems-process {
  background: linear-gradient(180deg, #e8f7ff, #fff 42%);
}

.systems-process__layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.systems-process__steps {
  border-top: 1px solid var(--systems-line);
}

.systems-process-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--systems-line);
}

.systems-process-step > span {
  color: #1a8cb7;
  font-size: .75rem;
  font-weight: 800;
}

.systems-process-step small {
  color: var(--systems-muted);
  font-size: .72rem;
}

.systems-process-step h3 {
  margin: 5px 0 0;
  color: #123c5e;
  font-size: 18px;
}

.systems-process-step p {
  margin: 7px 0 0;
  color: var(--systems-muted);
}

.systems-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  margin-top: 72px;
  padding: 48px;
  border: 1px solid rgba(47, 194, 255, .18);
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(47, 194, 255, .1), transparent 45%),
    linear-gradient(145deg, #061829, #05091a);
  box-shadow: 0 28px 80px rgba(7, 17, 38, .2);
}

.systems-cta h2 {
  max-width: 720px;
  color: #fff !important;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.systems-cta > div > p:not(.systems-eyebrow) {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .64);
}

.systems-faq-section {
  background: #fafbfc;
}

.systems-faq-list {
  width: min(1080px, 100%);
  display: grid;
  gap: 12px;
  margin: 42px auto 0;
}

.systems-faq {
  border: 1px solid var(--systems-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(7, 17, 38, .05);
}

.systems-faq summary {
  min-height: 68px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 64px 20px 22px;
  cursor: pointer;
  list-style: none;
  color: var(--systems-ink);
  font-size: 16px;
  font-weight: 720;
}

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

.systems-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #315676;
  background: #eef5fa;
  transform: translateY(-50%);
}

.systems-faq[open] summary::after {
  content: "−";
}

.systems-faq > div {
  max-width: 900px;
  padding: 0 22px 22px;
}

.systems-faq p {
  margin: 0 0 12px;
  color: var(--systems-muted);
}

.systems-faq p:last-child {
  margin-bottom: 0;
}

.systems-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .72s cubic-bezier(.22, .61, .36, 1) var(--systems-reveal-delay, 0ms),
    transform .72s cubic-bezier(.22, .61, .36, 1) var(--systems-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.systems-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

@media (hover: hover) and (pointer: fine) {
  .systems-solution-card,
  .systems-benefit-card,
  .systems-comparison-card {
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  }

  .systems-solution-card:hover,
  .systems-benefit-card:hover,
  .systems-comparison-card:hover {
    transform: translateY(-4px);
  }

  .systems-solution-card:hover {
    border-color: rgba(255, 255, 255, .28);
    box-shadow: 0 28px 65px rgba(7, 17, 38, .24);
  }

  .systems-benefit-card:hover {
    box-shadow: 0 22px 48px rgba(7, 17, 38, .11);
  }

  .systems-logo-strip img:hover {
    transform: translateY(-3px);
    filter: brightness(1.12);
  }

  .systems-logo-strip img[alt="ChatGPT"]:hover,
  .systems-logo-strip img[alt="Notion"]:hover {
    filter: brightness(0) invert(1);
    opacity: 1;
  }
}

@keyframes systemsHeroAtmosphere {
  from { transform: scale(1.025) translate3d(-.2%, 0, 0); }
  to { transform: scale(1.055) translate3d(.3%, -.2%, 0); }
}

@keyframes systemsAfterBorderSweep {
  0%,
  16% {
    background-position: 120% 0;
    opacity: .28;
  }
  58% {
    opacity: 1;
  }
  78%,
  100% {
    background-position: -120% 0;
    opacity: .3;
  }
}

@keyframes systemsAfterInnerGlow {
  0%,
  16% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  34% {
    opacity: .65;
  }
  78% {
    opacity: .18;
    transform: translate3d(380%, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(380%, 0, 0);
  }
}

@keyframes systemsHeroReveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes systemsScroll {
  0%, 100% { opacity: .3; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 10px); }
}

@media (max-width: 1080px) {
  .systems-hero h1 {
    font-size: var(--orby-h1-tablet-large);
  }

  .systems-section,
  .systems-comparison,
  .systems-integrations {
    padding: 96px 0;
  }

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

  .systems-solution-card:last-child {
    grid-column: 1 / -1;
    min-height: 340px;
  }

  .systems-integrations__layout,
  .systems-process__layout {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .systems-hero h1 {
    font-size: var(--orby-h1-tablet);
  }

  .systems-comparison-grid,
  .systems-integrations__layout,
  .systems-process__layout {
    grid-template-columns: 1fr;
  }

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

  .systems-logo-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .systems-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .systems-container {
    width: min(
      calc(100% - 28px - env(safe-area-inset-left) - env(safe-area-inset-right)),
      1160px
    );
  }

  .systems-hero {
    min-height: 100svh;
    padding:
      calc(86px + env(safe-area-inset-top))
      14px
      calc(30px + env(safe-area-inset-bottom));
  }

  .systems-hero::before {
    background-position: 56% center;
    animation: none;
    transform: scale(1.03);
  }

  .systems-hero h1 {
    font-size: var(--orby-h1-mobile) !important;
    line-height: 1.02;
  }

  .systems-hero__content > p:not(.systems-eyebrow) {
    max-width: 370px;
    margin-top: 18px;
    font-size: var(--orby-copy-mobile);
    line-height: 1.55;
  }

  .systems-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 24px;
  }

  .systems-actions .systems-button {
    width: 100%;
    min-height: 50px;
  }

  .systems-hero__scroll {
    width: 18px;
    height: 28px;
    margin-top: 16px;
  }

  .systems-section,
  .systems-comparison,
  .systems-integrations {
    padding: 72px 0;
  }

  .systems-heading h2,
  .systems-integrations__copy h2,
  .systems-process__copy h2,
  .systems-cta h2 {
    font-size: var(--orby-h2-mobile) !important;
    line-height: 1.04;
  }

  .systems-page p:not(.systems-eyebrow):not(.systems-card-tag) {
    font-size: var(--orby-copy-mobile);
  }

  .systems-eyebrow,
  .systems-card-tag,
  .systems-flow__node span,
  .systems-process-step small {
    font-size: 12px;
  }

  .systems-solution-grid,
  .systems-benefit-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 42px;
  }

  .systems-solution-card,
  .systems-solution-card:last-child {
    min-height: 0;
    grid-column: auto;
    padding: 24px;
  }

  .systems-card-tag {
    margin-bottom: 54px;
  }

  .systems-solution-card h3 {
    font-size: 21px;
  }

  .systems-comparison-grid {
    gap: 14px;
    margin-top: 42px;
  }

  .systems-comparison-card {
    min-height: 0;
    padding: 24px;
  }

  .systems-comparison-card h3 {
    font-size: 21px;
  }

  .systems-comparison-card li {
    font-size: 15px;
  }

  .systems-impact {
    padding: 32px 20px;
  }

  .systems-impact strong {
    font-size: 2.05rem;
  }

  .systems-benefit-card {
    min-height: 180px;
    padding: 24px;
  }

  .systems-benefit-card h3 {
    font-size: 17px;
  }

  .systems-integrations__layout {
    gap: 38px;
  }

  .systems-flow {
    padding: 18px;
  }

  .systems-logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding: 26px 12px;
  }

  .systems-logo-strip img {
    max-width: 76px;
    max-height: 34px;
  }

  .systems-process__layout {
    gap: 42px;
  }

  .systems-process-step {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .systems-process-step h3 {
    font-size: 19px;
  }

  .systems-cta {
    gap: 28px;
    margin-top: 54px;
    padding: 30px 22px;
  }

  .systems-cta .systems-button {
    width: 100%;
    min-height: 50px;
  }

  .systems-faq-list {
    margin-top: 38px;
  }

  .systems-faq summary {
    min-height: 62px;
    padding: 18px 54px 18px 18px;
    font-size: 16px;
    line-height: 1.35;
  }

  .systems-faq summary::after {
    right: 14px;
  }

  .systems-faq > div {
    padding: 0 18px 18px;
  }

  .systems-faq p {
    font-size: var(--orby-copy-mobile);
    line-height: 1.6;
  }
}

@media (max-width: 375px) {
  .systems-container {
    width: calc(100% - 24px - env(safe-area-inset-left) - env(safe-area-inset-right));
  }

  .systems-hero {
    padding-right: 12px;
    padding-left: 12px;
  }

  .systems-logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .systems-hero::before,
  .systems-hero__scroll span,
  .systems-comparison-card--after::before,
  .systems-comparison-card--after::after {
    animation: none;
  }

  .systems-page.motion-ready .systems-hero__content > *,
  .systems-reveal {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .systems-button,
  .systems-solution-card,
  .systems-benefit-card,
  .systems-comparison-card,
  .systems-logo-strip img {
    transition: none;
  }
}
