* {
  box-sizing: border-box;
}

/* Türkiye geneli web tasarım hizmet alanı */
.service-area-sec {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(91, 124, 250, 0.15),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(87, 224, 216, 0.1),
      transparent 30%
    ),
    #080a10;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.service-area-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 72px;
}
.service-area-copy .h2 {
  margin-top: 18px;
}
.service-area-copy .lead {
  margin-top: 24px;
  max-width: 68ch;
}
.service-area-note {
  margin-top: 18px;
  color: rgba(244, 246, 251, 0.62);
  font-size: 15px;
  line-height: 1.8;
}
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.service-area-grid span,
.service-area-grid a {
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(244, 246, 251, 0.8);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.25s,
    border-color 0.25s,
    background 0.25s,
    color 0.25s;
}
.service-area-grid span:hover,
.service-area-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(87, 224, 216, 0.35);
  background: rgba(87, 224, 216, 0.07);
  color: #57e0d8;
}
@media (max-width: 900px) {
  .service-area-sec {
    padding: 84px 0;
  }
  .service-area-wrap {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}
@media (max-width: 560px) {
  .service-area-grid {
    grid-template-columns: 1fr;
  }
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: #06070a;
  color: #f4f6fb;
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1,
h2,
h3,
h4 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #9db2ff;
}
img {
  max-width: 100%;
  display: block;
}
:focus-visible {
  outline: 2px solid #7c95ff;
  outline-offset: 3px;
  border-radius: 4px;
}
.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: #5b7cfa;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 200;
}
.skip:focus {
  left: 16px;
  top: 16px;
}
/* layout */
.wrap {
  width: min(1220px, 100% - 48px);
  margin-inline: auto;
}
.sec {
  padding: 120px 0;
  position: relative;
}
.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7c95ff;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: #5b7cfa;
  display: inline-block;
}
.display {
  font-size: clamp(40px, 6.6vw, 86px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
.h1 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 600;
}
.h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
}
.lead {
  font-size: clamp(17px, 1.5vw, 21px);
  color: rgba(244, 246, 251, 0.66);
  line-height: 1.6;
  max-width: 60ch;
}
.muted {
  color: rgba(244, 246, 251, 0.6);
}
.muted2 {
  color: rgba(244, 246, 251, 0.42);
}
.mono {
  font-family: "JetBrains Mono", monospace;
}
.grad {
  background: linear-gradient(100deg, #9db2ff 0%, #7c95ff 40%, #57e0d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 52px;
  padding: 0 26px;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: #5b7cfa;
  color: #fff;
  box-shadow: 0 10px 40px -12px rgba(91, 124, 250, 0.7);
}
.btn-primary:hover {
  background: #6d8bff;
  color: #fff;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #f4f6fb;
  border-color: rgba(255, 255, 255, 0.14);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #f4f6fb;
}
.btn-sm {
  height: 44px;
  padding: 0 20px;
  font-size: 14.5px;
}
.arrow {
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.btn:hover .arrow,
.lnk:hover .arrow {
  transform: translateX(4px);
}
.lnk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #9db2ff;
  font-size: 15px;
}
.lnk:hover {
  color: #c3d0ff;
}
/* reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="1"] {
  transition-delay: 0.08s;
}
[data-reveal][data-delay="2"] {
  transition-delay: 0.16s;
}
[data-reveal][data-delay="3"] {
  transition-delay: 0.24s;
}
[data-reveal][data-delay="4"] {
  transition-delay: 0.32s;
}
[data-reveal][data-delay="5"] {
  transition-delay: 0.4s;
}
/* header */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 0;
  transition:
    background 0.4s,
    border-color 0.4s,
    backdrop-filter 0.4s;
}
.hdr.scrolled {
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
}
.hdr-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  margin-top: 14px;
  padding: 8px 12px;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(8, 11, 22, 0.58);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.025em;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, #5b7cfa, #57e0d8);
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
  color: #06070a;
  box-shadow: 0 6px 20px -6px rgba(91, 124, 250, 0.8);
}
.brand-logo {
  display: block;
  width: 260px;
  height: auto;
  max-width: none;
  object-fit: contain;
}
.brand-logo-foot {
  width: 280px;
  height: auto;
  max-width: 100%;
}
@media (max-width: 560px) {
  .brand-logo {
    width: 210px;
    height: auto;
    max-width: calc(100vw - 112px);
  }
  .brand-logo-foot {
    width: 240px;
    max-width: 100%;
  }
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  padding: 0;
}
.nav a {
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(244, 246, 251, 0.72);
  transition:
    color 0.2s,
    background 0.2s;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.hdr.scrolled .hdr-in {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(8, 11, 22, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}
.hdr-cta {
  display: none;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1180px) {
  .hdr-cta {
    display: flex;
  }
  .burger {
    display: flex;
  }
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.burger span {
  width: 18px;
  height: 2px;
  background: #f4f6fb;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
/* mobile menu */
.mob {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(6, 7, 10, 0.98);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  padding: 96px 28px 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.35s,
    transform 0.35s;
}
.mob.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.mob a.mlink {
  font-family: "DM Sans", sans-serif;
  font-size: 30px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f4f6fb;
}
.mob a.mlink:hover {
  color: #9db2ff;
}
.mob-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
/* breadcrumb */
.crumb {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(244, 246, 251, 0.4);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.crumb a:hover {
  color: #9db2ff;
}
/* hero */
.hero {
  height: 500vh;
  min-height: 100vh;
  padding-top: 0;
  position: relative;
  overflow: clip;
  background: #020205;
  --hero-p: 0;
  --world-scale: 0.86;
  --world-x: 0px;
  --world-y: 54px;
  --world-opacity: 1;
  --charge-alpha: 0;
  --charge-scale: 0.76;
  --charge-y: 20px;
  --charge-copy: 0;
  --charge-copy-y: 38px;
  --charge-stem: 40px;
}
.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 760px;
  background: radial-gradient(
    ellipse at center,
    rgba(91, 124, 250, 0.28),
    rgba(87, 224, 216, 0.09) 42%,
    transparent 70%
  );
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 30%,
    #000 30%,
    transparent 75%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-in {
  position: sticky;
  top: 0;
  z-index: 3;
  text-align: center;
  max-width: 920px;
  margin-inline: auto;
  height: 100vh;
  padding-top: clamp(108px, 14vh, 160px);
  pointer-events: none;
  will-change: transform, opacity;
}
.hero h1 {
  margin: 16px auto 0;
  max-width: 20ch;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.hero-alt {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(11px, 1.1vw, 14px);
  letter-spacing: 0.08em;
  color: #57e0d8;
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  text-transform: uppercase;
}
.hero-alt span {
  opacity: 0.5;
}
.hero-lead {
  margin: 17px auto 0;
  text-align: center;
  max-width: 690px;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.65;
  color: rgba(244, 246, 251, 0.62);
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
  pointer-events: auto;
}
.world-wrap {
  width: 100%;
  max-width: none;
  height: 100%;
  margin-top: -100vh;
}
.hero-stage-wrap {
  position: sticky;
  top: 0;
  z-index: 2;
  height: 100vh;
  min-height: 600px;
  margin-top: 0;
  overflow: hidden;
}
.hero-stage {
  position: absolute;
  inset: 0;
  perspective: 1200px;
  --globe-scroll: 0;
}
.hero-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: min(72vw, 820px);
  height: 14%;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse,
    rgba(91, 124, 250, 0.25),
    transparent 68%
  );
  filter: blur(20px);
  opacity: calc(0.85 - var(--globe-scroll) * 0.4);
  pointer-events: none;
}
.hero-stage .dev,
.hero-stage .hero-conn {
  display: none;
}
.world-canvas {
  position: absolute;
  inset: -7% -5%;
  width: 110%;
  height: 114%;
  display: block;
  opacity: var(--world-opacity);
  filter: saturate(1.06) contrast(1.12) brightness(1.04);
  transform: translate3d(var(--world-x), var(--world-y), 0)
    scale(var(--world-scale));
  transform-origin: 50% 50%;
  will-change: transform, opacity;
  animation: worldIntro 1.7s 0.15s cubic-bezier(0.16, 0.8, 0.2, 1) backwards;
}
.world-hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translate3d(var(--world-x), var(--world-y), 0);
  opacity: calc(1 - var(--hero-p) * 1.15);
  animation: hudIntro 1s 1.15s ease backwards;
}
.world-copy {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.world-chapter {
  position: absolute;
  left: 8vw;
  top: 50%;
  width: min(540px, 42vw);
  opacity: 0;
  transform: translateY(44px);
  will-change: opacity, transform;
}
.world-chapter.right {
  left: auto;
  right: 8vw;
  text-align: right;
}
.world-chapter.center {
  left: 50%;
  right: auto;
  top: auto;
  bottom: 10vh;
  width: min(760px, 84vw);
  text-align: center;
  transform: translate(-50%, 44px);
}
.world-kicker {
  display: block;
  margin-bottom: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #57e0d8;
}
.world-chapter h2 {
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.world-chapter p {
  max-width: 46ch;
  margin-top: 18px;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.65;
  color: rgba(244, 246, 251, 0.58);
}
.world-chapter.right p {
  margin-left: auto;
}
.world-chapter.center p {
  margin-inline: auto;
}
.world-status {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 246, 251, 0.42);
  white-space: nowrap;
}
.world-status i {
  display: block;
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #57e0d8);
}
.world-scroll {
  position: absolute;
  right: 0;
  bottom: 4%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 246, 251, 0.36);
  writing-mode: vertical-rl;
}
.world-scroll::after {
  content: "";
  width: 1px;
  height: 54px;
  background: linear-gradient(#57e0d8, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(0.4);
    transform-origin: top;
    opacity: 0.35;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes worldIntro {
  from {
    opacity: 0;
    transform: translateY(70px) scale(0.68);
    filter: blur(14px) saturate(0.6);
  }
  to {
    opacity: 1;
  }
}
@keyframes hudIntro {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.dev {
  position: absolute;
  border-radius: 16px;
  background: #0e1119;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  overflow: hidden;
  will-change: transform;
  transform: translate(-50%, -50%)
    translate(
      calc(var(--tx, 0px) * var(--p, 0)),
      calc(var(--ty, 0px) * var(--p, 0))
    )
    rotate(calc(var(--rz, 0deg) * var(--p, 0)))
    scale(calc(1 - 0.1 + 0.1 * var(--p, 0)));
  transition: box-shadow 0.4s;
}
.dev-lbl {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 246, 251, 0.5);
  opacity: var(--p, 0);
  transition: opacity 0.3s;
}
.hero-conn {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--p, 0);
}
/* generic mock */
.mbar {
  height: 26px;
  background: #161a24;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.murl {
  margin-left: 8px;
  height: 12px;
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  max-width: 60%;
}
.mbody {
  padding: 12px;
}
.mrow {
  height: 9px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.09);
  margin-bottom: 8px;
}
.mchip {
  height: 20px;
  border-radius: 6px;
  background: rgba(91, 124, 250, 0.22);
  border: 1px solid rgba(91, 124, 250, 0.3);
}
.acc {
  color: #57e0d8;
}
/* section theming */
.light {
  background: #f1f2f6;
  color: #0a0b10;
}
.light .lead {
  color: rgba(10, 11, 16, 0.62);
}
.light .muted {
  color: rgba(10, 11, 16, 0.6);
}
.light .eyebrow {
  color: #3455e6;
}
.light .eyebrow::before {
  background: #3455e6;
}
.light a:hover {
  color: #3455e6;
}
.light .grad {
  background: linear-gradient(100deg, #3455e6, #4a6cf7 50%, #12a89f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.light .lnk {
  color: #3455e6;
}
.sec-head {
  max-width: 760px;
  margin-bottom: 60px;
}
.sec-head .h2 {
  margin-top: 16px;
}
.sec-head .lead {
  margin-top: 18px;
}
/* bento */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  grid-auto-rows: minmax(200px, auto);
}
.card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.4s,
    background 0.4s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 149, 255, 0.4);
  background: linear-gradient(
    180deg,
    rgba(124, 149, 255, 0.09),
    rgba(255, 255, 255, 0.02)
  );
}
.card-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(91, 124, 250, 0.35),
    transparent 70%
  );
  top: -80px;
  right: -60px;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.card:hover .card-glow {
  opacity: 1;
}
.c-span3 {
  grid-column: span 3;
}
.c-span2 {
  grid-column: span 2;
}
.c-span4 {
  grid-column: span 4;
}
.c-span6 {
  grid-column: span 6;
}
.card .ci {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card h3 {
  margin-bottom: 10px;
}
.card .clnk {
  margin-top: auto;
  padding-top: 18px;
}
.mini-ui {
  margin-top: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0e15;
  overflow: hidden;
  flex: 1;
  min-height: 120px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9db2ff;
  background: rgba(91, 124, 250, 0.12);
  border: 1px solid rgba(91, 124, 250, 0.22);
  padding: 5px 11px;
  border-radius: 100px;
}
/* world -> services device story */
.device-story {
  height: 330vh;
  position: relative;
  margin-top: -1px;
  background:
    radial-gradient(
      ellipse 70% 45% at 50% 46%,
      rgba(32, 48, 78, 0.12),
      transparent 72%
    ),
    linear-gradient(180deg, #06070a 0%, #080a0f 55%, #06070a 100%);
}
.device-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.device-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.device-title {
  position: absolute;
  top: 6vh;
  left: 50%;
  transform: translate(-50%, 24px);
  width: min(820px, calc(100% - 48px));
  text-align: center;
  opacity: 0;
  z-index: 3;
}
.device-title .eyebrow {
  justify-content: center;
}
.device-title h2 {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 68px);
  letter-spacing: -0.045em;
}
.mac-scene {
  position: relative;
  width: min(1180px, 94vw);
  height: min(760px, 80vh);
  perspective: 1900px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transform: translateY(72px) scale(0.78);
  will-change: transform, opacity;
}
.macbook {
  position: relative;
  width: 100%;
  padding-bottom: 5.2%;
  transform-style: preserve-3d;
}
.mac-lid {
  position: relative;
  width: 89%;
  margin-inline: auto;
  aspect-ratio: 16/10;
  transform-origin: 50% 100%;
  transform: rotateX(-82deg);
  transform-style: preserve-3d;
  will-change: transform;
}
.mac-lid::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: -5px;
  height: 8px;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(180deg, #25272b, #08090b);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}
.mac-frame {
  position: absolute;
  inset: 0;
  border-radius: 17px 17px 8px 8px;
  padding: 12px;
  background: linear-gradient(
    145deg,
    #b6b8bc 0%,
    #73767c 2%,
    #25272b 5%,
    #090a0d 12% 88%,
    #4e5156 96%,
    #a7a9ad 100%
  );
  box-shadow:
    0 55px 110px -38px rgba(0, 0, 0, 0.98),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 -1px 0 rgba(255, 255, 255, 0.18) inset;
}
.mac-camera {
  position: absolute;
  z-index: 3;
  top: 5px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 40% 35%, #23415c, #020308 65%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 0 5px rgba(38, 110, 170, 0.25);
}
.mac-screen {
  height: 100%;
  border-radius: 8px 8px 3px 3px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(
      circle at 68% 12%,
      rgba(91, 124, 250, 0.23),
      transparent 38%
    ),
    linear-gradient(145deg, #111a29, #06080d 62%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 28px rgba(66, 105, 185, 0.12) inset;
  opacity: 0.15;
}
.mac-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.07),
    transparent 22% 78%,
    rgba(87, 224, 216, 0.04)
  );
  pointer-events: none;
}
.mac-screen::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 80%;
  right: -24%;
  top: -34%;
  border-radius: 50%;
  background: conic-gradient(
    from 20deg,
    rgba(91, 124, 250, 0.25),
    rgba(87, 224, 216, 0.08),
    transparent 45%,
    rgba(124, 149, 255, 0.18)
  );
  filter: blur(38px);
  opacity: 0.42;
  animation: screenAura 9s linear infinite;
  pointer-events: none;
}
.mac-toolbar {
  height: 36px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(244, 246, 251, 0.42);
  position: relative;
  z-index: 2;
}
.mac-toolbar-dots {
  display: flex;
  gap: 5px;
}
.mac-toolbar-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.mac-content {
  position: relative;
  z-index: 2;
  padding: clamp(18px, 2.5vw, 30px);
  height: calc(100% - 36px);
  display: flex;
  flex-direction: column;
}
.mac-kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #57e0d8;
  margin-bottom: 10px;
}
.mac-content h3 {
  font-size: clamp(21px, 2.4vw, 34px);
  letter-spacing: -0.04em;
  margin-bottom: clamp(14px, 2vw, 24px);
}
.mac-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
}
.mac-service {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: clamp(9px, 1.2vw, 14px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.018)
  );
  box-shadow:
    0 10px 24px -18px rgba(0, 0, 0, 0.8),
    0 1px 0 rgba(255, 255, 255, 0.025) inset;
  opacity: 0;
  transform: translateY(16px);
  will-change: opacity, transform;
  position: relative;
  overflow: hidden;
}
.mac-service::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 149, 255, 0.48),
    transparent
  );
  opacity: 0.45;
}
.mac-service i {
  width: 25px;
  height: 25px;
  flex: none;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-style: normal;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: #071014;
  background: linear-gradient(135deg, #9db2ff, #57e0d8);
}
.mac-service:nth-child(2n) i {
  background: linear-gradient(135deg, #f0c980, #9db2ff);
}
.mac-service:nth-child(3n) i {
  background: linear-gradient(135deg, #57e0d8, #72a8ff);
}
.mac-service strong {
  display: block;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
}
.mac-service span {
  display: block;
  margin-top: 2px;
  font-size: clamp(8px, 0.75vw, 10px);
  color: rgba(244, 246, 251, 0.43);
}
.mac-base {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4%;
  height: 8.2%;
  clip-path: polygon(4% 0, 96% 0, 100% 70%, 98% 100%, 2% 100%, 0 70%);
  border-radius: 4px 4px 18px 18px;
  background: linear-gradient(
    180deg,
    #5f6268 0%,
    #c4c6ca 9%,
    #8c8f94 28%,
    #3d3f44 66%,
    #151619 100%
  );
  box-shadow:
    0 28px 48px -16px rgba(0, 0, 0, 0.92),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transform: perspective(800px) rotateX(66deg);
  transform-origin: top;
}
.mac-base::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 38%;
  width: 24%;
  height: 36%;
  border: 1px solid rgba(40, 42, 46, 0.22);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.025);
}
.mac-base::after {
  content: "";
  position: absolute;
  top: 0;
  left: 43%;
  width: 14%;
  height: 4px;
  border-radius: 0 0 7px 7px;
  background: rgba(24, 25, 28, 0.58);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.device-hint {
  position: absolute;
  bottom: 4vh;
  left: 50%;
  transform: translateX(-50%);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 246, 251, 0.3);
  white-space: nowrap;
}
@keyframes screenAura {
  to {
    transform: rotate(360deg);
  }
}
/* services horizontal showcase */
.service-showcase {
  height: 620vh;
  position: relative;
  background: linear-gradient(180deg, #06070a, #111217 45%, #090a0e);
}
.service-showcase-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.service-showcase-head {
  position: absolute;
  z-index: 3;
  left: 6vw;
  top: 7vh;
  width: min(720px, 88vw);
}
.service-showcase-head h2 {
  font-size: clamp(34px, 4.6vw, 64px);
  margin-top: 12px;
  letter-spacing: -0.045em;
}
.service-showcase-head p {
  margin-top: 12px;
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(244, 246, 251, 0.56);
  max-width: 58ch;
}
.service-viewport {
  position: absolute;
  left: 0;
  right: 0;
  top: 25vh;
  bottom: 7vh;
  overflow: visible;
}
.service-track {
  height: 100%;
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 6vw;
  will-change: transform;
}
.service-slide {
  width: min(74vw, 1080px);
  height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #090b10;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  opacity: 0.48;
  transform: scale(0.975);
  transition:
    opacity 0.35s,
    transform 0.35s,
    border-color 0.35s;
  box-shadow: 0 45px 90px -48px rgba(0, 0, 0, 0.95);
}
.service-slide.on {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(157, 178, 255, 0.3);
}
.service-slide-copy {
  padding: clamp(22px, 2.8vw, 36px) clamp(22px, 3.2vw, 42px) 18px;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 42%);
  gap: 24px;
  align-items: end;
}
.service-slide-copy .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #57e0d8;
  text-transform: uppercase;
}
.service-slide-copy h3 {
  font-size: clamp(28px, 3.2vw, 48px);
  margin-top: 8px;
  letter-spacing: -0.045em;
}
.service-slide-copy p {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.6;
  color: rgba(244, 246, 251, 0.58);
}
.service-art {
  position: relative;
  min-height: 0;
  margin: 0 clamp(12px, 1.4vw, 20px) clamp(12px, 1.4vw, 20px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      circle at 70% 15%,
      rgba(91, 124, 250, 0.22),
      transparent 38%
    ),
    linear-gradient(145deg, #121722, #06080d);
  box-shadow: 0 26px 60px -38px rgba(0, 0, 0, 0.9) inset;
}
.service-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.055),
    transparent 24% 72%,
    rgba(87, 224, 216, 0.035)
  );
  pointer-events: none;
}
.art-top {
  height: 34px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.art-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.art-top span {
  width: 34%;
  height: 8px;
  margin-left: 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.07);
}
.art-body {
  position: absolute;
  inset: 34px 0 0;
  padding: clamp(18px, 2.5vw, 34px);
}
.art-web .art-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}
.art-hero-lines b {
  display: block;
  height: clamp(12px, 2vw, 26px);
  width: 88%;
  border-radius: 8px;
  background: linear-gradient(90deg, #9db2ff, #57e0d8);
  margin-bottom: 10px;
  opacity: 0.78;
}
.art-hero-lines i {
  display: block;
  height: 9px;
  width: 76%;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  margin: 8px 0;
}
.art-hero-lines em {
  display: block;
  width: 110px;
  height: 34px;
  border-radius: 100px;
  background: #5b7cfa;
  margin-top: 22px;
}
.art-device {
  height: 82%;
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(124, 149, 255, 0.24),
    rgba(87, 224, 216, 0.08)
  );
  border: 1px solid rgba(157, 178, 255, 0.25);
  transform: rotate(3deg);
  box-shadow: 0 30px 50px -28px #000;
}
.art-dashboard .art-body {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 18px;
}
.art-side {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.art-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.art-chart i {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(#57e0d8, #5b7cfa);
  height: var(--h);
}
.art-code .art-body {
  display: grid;
  place-items: center;
}
.art-orbit {
  position: relative;
  width: min(520px, 80%);
  aspect-ratio: 2/1;
  border: 1px solid rgba(124, 149, 255, 0.25);
  border-radius: 50%;
}
.art-orbit::before,
.art-orbit::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(87, 224, 216, 0.22);
  border-radius: 50%;
}
.art-orbit::after {
  inset: 36%;
  background: linear-gradient(135deg, #5b7cfa, #57e0d8);
  box-shadow: 0 0 40px rgba(91, 124, 250, 0.5);
}
.art-seo .art-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.art-score {
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(87, 224, 216, 0.06);
  border: 1px solid rgba(87, 224, 216, 0.16);
  font-size: clamp(50px, 8vw, 110px);
  font-weight: 700;
  color: #57e0d8;
}
.art-serp {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.art-serp i {
  height: 22%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.art-ai .art-body {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: center;
}
.art-ai-orb {
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 30%,
    #b6c5ff,
    #5b7cfa 28%,
    #173267 62%,
    transparent 70%
  );
  filter: drop-shadow(0 0 30px rgba(91, 124, 250, 0.5));
}
.art-answer {
  padding: 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.art-answer i {
  display: block;
  height: 9px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.13);
  margin: 10px 0;
}
.art-answer i:nth-child(2) {
  width: 88%;
}
.art-answer i:nth-child(3) {
  width: 64%;
}
.art-flow .art-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.art-node {
  width: clamp(72px, 10vw, 130px);
  aspect-ratio: 1;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(157, 178, 255, 0.22);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: #9db2ff;
}
.art-link {
  width: 9%;
  height: 1px;
  background: linear-gradient(90deg, #5b7cfa, #57e0d8);
  box-shadow: 0 0 10px #5b7cfa;
}
.service-progress {
  position: absolute;
  left: 6vw;
  bottom: 2.5vh;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-progress i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.service-progress i.on {
  width: 34px;
  border-radius: 100px;
  background: linear-gradient(90deg, #9db2ff, #57e0d8);
}
/* world-to-services energy transition */
.hero-charge {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  color: #f7f7fb;
  opacity: var(--charge-alpha);
  background: radial-gradient(
    circle at 50% 39%,
    rgba(73, 41, 180, 0.12),
    transparent 29%
  );
}
.hero-charge::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: calc(var(--charge-alpha) * 0.18);
  background-image: radial-gradient(
    circle,
    rgba(157, 178, 255, 0.7) 0 1px,
    transparent 1.4px
  );
  background-size: 52px 52px;
  mask-image: linear-gradient(
    transparent 4%,
    #000 32%,
    #000 72%,
    transparent 96%
  );
}
.charge-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(250px, 28vw, 390px);
  aspect-ratio: 1;
  opacity: var(--charge-alpha);
  transform: translate(-50%, -50%) translateY(var(--charge-y))
    scale(var(--charge-scale));
  transform-origin: 50% 50%;
  will-change: transform, opacity;
  z-index: 2;
}
.charge-halo {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    transparent 43%,
    rgba(137, 44, 255, 0.17) 50%,
    rgba(37, 112, 255, 0.08) 57%,
    transparent 70%
  );
  filter: blur(14px);
  animation: chargeBreathe 2.4s ease-in-out infinite;
}
.charge-ring {
  position: absolute;
  border-radius: 50%;
  inset: 5%;
  border: 1px solid rgba(114, 89, 255, 0.38);
  box-shadow:
    0 0 18px rgba(83, 74, 255, 0.32),
    inset 0 0 16px rgba(80, 53, 255, 0.2);
}
.charge-ring.r1 {
  inset: 0;
  background: conic-gradient(
    from 210deg,
    transparent 0 7%,
    #405dff 13%,
    #a23dff 32%,
    #5c2bff 54%,
    #20a4ff 76%,
    transparent 94%
  );
  padding: 2px;
  filter: drop-shadow(0 0 8px rgba(118, 61, 255, 0.9));
  animation: chargeSpin 8s linear infinite;
  -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;
  border: 0;
}
.charge-ring.r2 {
  inset: 4%;
  border-color: rgba(59, 123, 255, 0.65);
  box-shadow:
    0 0 12px rgba(47, 108, 255, 0.65),
    inset 0 0 18px rgba(147, 42, 255, 0.45);
  animation: chargeSpin 5.8s linear infinite reverse;
}
.charge-ring.r3 {
  inset: 9%;
  border: 5px solid rgba(111, 52, 255, 0.8);
  box-shadow:
    0 0 9px #723cff,
    0 0 23px rgba(132, 40, 255, 0.9),
    0 0 54px rgba(41, 104, 255, 0.65),
    inset 0 0 23px rgba(92, 40, 255, 0.85);
  animation: chargePulse 1.9s ease-in-out infinite;
}
.charge-ring.r3::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: inherit;
  background: conic-gradient(
    from 40deg,
    #5f46ff,
    #af37ff,
    #326eff,
    #7b42ff,
    #5f46ff
  );
  filter: blur(8px);
  opacity: 0.7;
  z-index: -1;
}
.charge-core {
  position: absolute;
  inset: 19%;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(31, 23, 61, 0.78),
    rgba(2, 2, 7, 0.96) 66%
  );
  box-shadow: inset 0 0 45px rgba(90, 51, 209, 0.17);
}
.hero-charge .charge-core {
  display: none;
}
.charge-count {
  font-size: clamp(62px, 7vw, 100px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-shadow: 0 0 25px rgba(158, 115, 255, 0.34);
}
.charge-count::after {
  content: "/06";
  font-family: "JetBrains Mono", monospace;
  font-size: 0.17em;
  letter-spacing: 0.02em;
  color: #8f9cff;
  margin-left: 8px;
}
.charge-core small {
  margin-top: 17px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(225, 222, 255, 0.62);
  text-transform: uppercase;
}
.charge-stem {
  position: absolute;
  left: 50%;
  top: 91%;
  width: 76px;
  height: var(--charge-stem);
  transform: translateX(-50%);
  overflow: hidden;
  filter: drop-shadow(0 0 8px rgba(75, 79, 255, 0.55));
  transition: height 0.08s linear;
  -webkit-mask-image: linear-gradient(#000 0 82%, transparent 100%);
  mask-image: linear-gradient(#000 0 82%, transparent 100%);
}
.charge-stem::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 7%,
    rgba(119, 61, 255, 0.72) 8% 9%,
    transparent 10% 29%,
    rgba(50, 111, 255, 0.6) 30% 31%,
    transparent 32% 48%,
    rgba(163, 59, 255, 0.74) 49% 51%,
    transparent 52% 70%,
    rgba(38, 140, 255, 0.62) 71% 72%,
    transparent 73% 91%,
    rgba(105, 69, 255, 0.65) 92% 93%,
    transparent 94%
  );
  opacity: 0.68;
}
.charge-stem i {
  position: absolute;
  top: -28%;
  width: 2px;
  height: 20%;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    #f4f6fb 24%,
    #b56aff 58%,
    transparent
  );
  box-shadow: 0 0 7px #8d4dff;
  animation: chargeDrop 2.15s linear infinite;
}
.charge-stem i:nth-child(1) {
  left: 8%;
  height: 14%;
  animation-duration: 1.72s;
  animation-delay: -0.35s;
}
.charge-stem i:nth-child(2) {
  left: 30%;
  height: 22%;
  animation-duration: 2.45s;
  animation-delay: -1.7s;
  background: linear-gradient(
    180deg,
    transparent,
    #9db2ff 30%,
    #5b7cfa 64%,
    transparent
  );
  box-shadow: 0 0 7px #5b7cfa;
}
.charge-stem i:nth-child(3) {
  left: 50%;
  height: 17%;
  animation-duration: 1.92s;
  animation-delay: -1.05s;
}
.charge-stem i:nth-child(4) {
  left: 71%;
  height: 27%;
  animation-duration: 2.72s;
  animation-delay: -2.2s;
  background: linear-gradient(
    180deg,
    transparent,
    #f4f6fb 20%,
    #35a4ff 62%,
    transparent
  );
  box-shadow: 0 0 7px #35a4ff;
}
.charge-stem i:nth-child(5) {
  left: 92%;
  height: 13%;
  animation-duration: 2.08s;
  animation-delay: -0.72s;
}
.charge-copy {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 7vh;
  width: min(900px, calc(100% - 40px));
  text-align: center;
  opacity: var(--charge-copy);
  transform: translate(-50%, var(--charge-copy-y));
  will-change: opacity, transform;
}
.charge-copy .eyebrow {
  display: block;
  margin-bottom: 15px;
  color: #8f9cff;
}
.charge-copy h2 {
  font-size: clamp(42px, 6.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.charge-copy p {
  max-width: 570px;
  margin: 20px auto 0;
  color: rgba(244, 246, 251, 0.58);
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.55;
}
@keyframes chargeSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes chargePulse {
  50% {
    opacity: 0.7;
    transform: scale(0.985);
    filter: saturate(1.35);
  }
}
@keyframes chargeBreathe {
  50% {
    opacity: 0.62;
    transform: scale(1.07);
  }
}
@keyframes chargeDrop {
  from {
    transform: translateY(-120%);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  82% {
    opacity: 0.9;
  }
  to {
    transform: translateY(680%);
    opacity: 0;
  }
}
/* Apple-inspired services inspector */
.service-inspect {
  position: relative;
  padding: 0 0 110px;
  background: #020205;
  color: #f5f5f7;
}
.service-inspect::before {
  display: none;
}
.inspect-wrap {
  width: min(1420px, calc(100% - 64px));
  margin-inline: auto;
}
.inspect-title {
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -0.05em;
  margin-bottom: 44px;
}
.inspect-bridge {
  position: relative;
  min-height: 86px;
  margin-bottom: 22px;
  padding: 18px 22px 18px 28px;
  border: 1px solid rgba(157, 178, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(
    110deg,
    rgba(91, 124, 250, 0.08),
    rgba(87, 224, 216, 0.025) 48%,
    rgba(255, 255, 255, 0.025)
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}
.inspect-bridge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 2px;
  background: linear-gradient(#a23dff, #5b7cfa, #57e0d8);
  box-shadow: 0 0 12px rgba(126, 76, 255, 0.8);
}
.inspect-bridge-main {
  display: flex;
  align-items: center;
  gap: 18px;
}
.inspect-receiver {
  position: relative;
  flex: none;
  width: 13px;
  height: 13px;
  border: 2px solid #9db2ff;
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(124, 149, 255, 0.08),
    0 0 18px rgba(162, 61, 255, 0.7);
}
.inspect-receiver::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #57e0d8;
  box-shadow: 0 0 9px #57e0d8;
  animation: chargePulse 1.9s ease-in-out infinite;
}
.inspect-bridge small {
  display: block;
  margin-bottom: 5px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8f9cff;
}
.inspect-bridge p {
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #f5f5f7;
}
.inspect-bridge-hint {
  flex: none;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 245, 247, 0.4);
}
.service-inspect .inspect-bridge,
.service-inspect .inspect-shell {
  display: none;
}
.service-box-flow {
  position: relative;
  padding: 16px 0 8px;
}
.service-flow-head {
  position: relative;
  z-index: 3;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 30px;
  padding: 12px 20px;
  border: 1px solid rgba(157, 178, 255, 0.16);
  border-radius: 100px;
  background: #08090e;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #9db2ff;
  box-shadow: 0 0 28px rgba(91, 124, 250, 0.12);
}
.service-flow-head::before,
.service-flow-head::after {
  display: none;
}
.service-flow-head span {
  position: relative;
  z-index: 2;
}
.service-flow-lines {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: calc(-50vh + 78px);
  bottom: 0;
  width: 76px;
  transform: translateX(-50%);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(#000 0, #000 94%, transparent);
  mask-image: linear-gradient(#000 0, #000 94%, transparent);
}
.service-flow-lines i {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    rgba(162, 61, 255, 0.62),
    rgba(91, 124, 250, 0.72),
    rgba(87, 224, 216, 0.34)
  );
  box-shadow: 0 0 6px rgba(108, 79, 255, 0.42);
}
.service-flow-lines i::after {
  content: "";
  position: absolute;
  left: -1px;
  top: -110px;
  width: 2px;
  height: 90px;
  border-radius: 2px;
  background: linear-gradient(
    transparent,
    #f4f6fb 28%,
    #a23dff 56%,
    #326eff 78%,
    transparent
  );
  box-shadow: 0 0 8px rgba(162, 61, 255, 0.85);
  animation: serviceEnergyDrop 3.1s linear infinite;
}
.service-flow-lines i:nth-child(1) {
  left: 8%;
}
.service-flow-lines i:nth-child(1)::after {
  animation-duration: 2.5s;
  animation-delay: -1.2s;
}
.service-flow-lines i:nth-child(2) {
  left: 30%;
}
.service-flow-lines i:nth-child(2)::after {
  animation-duration: 3.7s;
  animation-delay: -2.8s;
}
.service-flow-lines i:nth-child(3) {
  left: 50%;
}
.service-flow-lines i:nth-child(3)::after {
  animation-duration: 2.9s;
  animation-delay: -0.4s;
}
.service-flow-lines i:nth-child(4) {
  left: 71%;
}
.service-flow-lines i:nth-child(4)::after {
  animation-duration: 4.1s;
  animation-delay: -3.3s;
}
.service-flow-lines i:nth-child(5) {
  left: 92%;
}
.service-flow-lines i:nth-child(5)::after {
  animation-duration: 3.35s;
  animation-delay: -1.9s;
}
.service-flow-lines i:not(:nth-child(3)) {
  bottom: auto;
  height: calc(50vh - 33px);
  overflow: hidden;
}
.service-flow-lines i:nth-child(3) {
  width: 2px;
  background: linear-gradient(
    rgba(162, 61, 255, 0.72),
    rgba(91, 124, 250, 0.82) 40%,
    rgba(87, 224, 216, 0.32)
  );
  box-shadow: 0 0 8px rgba(108, 79, 255, 0.58);
}
.service-flow-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 28px;
}
.service-sec .service-flow-grid {
  column-gap: 150px;
  row-gap: 20px;
}
.service-flow-card {
  --card-accent: #57e0d8;
  --card-glow: rgba(87, 224, 216, 0.25);
  --card-bg-glow: rgba(87, 224, 216, 0.08);
  position: relative;
  min-height: 240px;
  padding: 32px 30px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 90% 10%,
      var(--card-bg-glow),
      transparent 45%
    ),
    linear-gradient(155deg, rgba(17, 20, 32, 0.94), rgba(7, 9, 15, 0.98));
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.85);
  overflow: visible;
  opacity: 1;
  transform: none;
  filter: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    opacity 0.65s cubic-bezier(0.2, 0.75, 0.2, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.55s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}
.service-sec .service-flow-card {
  opacity: 0;
  transform: translateY(76px) scale(0.975);
  filter: blur(7px);
}
#svc-web {
  --card-accent: #57e0d8;
  --card-glow: rgba(87, 224, 216, 0.35);
  --card-bg-glow: rgba(87, 224, 216, 0.1);
}
#svc-panel {
  --card-accent: #8a70ff;
  --card-glow: rgba(138, 112, 255, 0.35);
  --card-bg-glow: rgba(138, 112, 255, 0.1);
}
#svc-software {
  --card-accent: #3fe089;
  --card-glow: rgba(63, 224, 137, 0.35);
  --card-bg-glow: rgba(63, 224, 137, 0.1);
}
#svc-search {
  --card-accent: #ff6584;
  --card-glow: rgba(255, 101, 132, 0.35);
  --card-bg-glow: rgba(255, 101, 132, 0.1);
}
#svc-mobile {
  --card-accent: #ff9f43;
  --card-glow: rgba(255, 159, 67, 0.35);
  --card-bg-glow: rgba(255, 159, 67, 0.1);
}
#svc-ads {
  --card-accent: #00d2ff;
  --card-glow: rgba(0, 210, 255, 0.35);
  --card-bg-glow: rgba(0, 210, 255, 0.1);
}
.service-flow-card:hover,
.service-flow-card.flow-visible:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 30px 80px -25px var(--card-glow),
    0 0 0 1px var(--card-glow);
}
.service-flow-card.flow-visible {
  opacity: 1;
  transform: none;
  filter: none;
}
.service-flow-card.flow-visible:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 30px 80px -25px var(--card-glow),
    0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(
      circle at 90% 10%,
      var(--card-glow),
      transparent 55%
    ),
    linear-gradient(155deg, rgba(23, 28, 46, 0.96), rgba(9, 11, 19, 0.99));
}
.service-flow-card::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--card-accent));
  opacity: 0.65;
}
.service-flow-card:nth-child(odd)::before {
  left: 100%;
  background: linear-gradient(90deg, var(--card-accent), transparent);
}
.service-flow-card:nth-child(even)::before {
  right: 100%;
}
.service-flow-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--card-accent);
  box-shadow: 0 0 16px var(--card-accent);
}
.service-flow-card:nth-child(odd)::after {
  right: -79px;
}
.service-flow-card:nth-child(even)::after {
  left: -79px;
}
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.service-card-icon-wrap {
  position: relative;
}
.service-card-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  color: var(--card-accent);
  box-shadow: 0 10px 24px -8px var(--card-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.35s ease;
}
.service-flow-card:hover .service-card-icon {
  transform: scale(1.08) rotate(-2deg);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.04)
  );
  border-color: var(--card-accent);
  box-shadow: 0 14px 30px -6px var(--card-glow), 0 0 16px var(--card-glow);
}
.service-svg {
  width: 27px;
  height: 27px;
  transition: transform 0.3s ease;
}
.service-card-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(245, 245, 247, 0.4);
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}
.service-flow-card:hover .service-card-num {
  color: var(--card-accent);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}
.service-flow-card h3 {
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}
.service-flow-card h3 a,
.sect-card h3 a,
.process-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
.service-flow-card h3 a:hover,
.service-flow-card:hover h3 a,
.process-card h3 a:hover,
.process-card:hover h3 a {
  color: var(--card-accent, #57e0d8);
}
.sect-card h3 a:hover,
.sect-card:hover h3 a {
  color: var(--sector-accent, #4057c7);
}
.service-flow-card p {
  max-width: 48ch;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(244, 246, 251, 0.65);
}
.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
  margin-bottom: 24px;
}
.service-card-tags span {
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-family: "JetBrains Mono", monospace;
  font-size: 8.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 246, 251, 0.6);
  transition: all 0.2s ease;
}
.service-flow-card:hover .service-card-tags span {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(244, 246, 251, 0.9);
  background: rgba(255, 255, 255, 0.07);
}
.service-card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.service-card-cta .arrow {
  transition: transform 0.25s ease;
  color: var(--card-accent);
}
.service-card-quote:hover {
  background: var(--card-accent);
  border-color: var(--card-accent);
  color: #0d1117;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px var(--card-glow);
}
.service-card-sublinks {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
.service-sublink {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--card-accent, #57e0d8);
  text-decoration: none;
  transition: all 0.2s ease;
}
.service-sublink:hover {
  color: #fff;
  transform: translateX(3px);
}
.service-sublink span {
  font-size: 12px;
  transition: transform 0.2s ease;
}
.service-sublink:hover span {
  transform: translateX(3px);
}
.service-card-cta:hover {
  background: var(--card-accent);
  color: #080a10;
  border-color: var(--card-accent);
  box-shadow: 0 8px 24px -4px var(--card-glow);
  transform: translateX(2px);
}
.service-card-cta:hover .arrow {
  transform: translateX(4px);
  color: #080a10;
}
.service-card-quote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  border-radius: 100px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.service-card-quote:hover {
  background: rgba(37, 211, 102, 0.22);
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 6px 18px -4px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}
@keyframes serviceEnergyDrop {
  from {
    transform: translateY(-120px);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  84% {
    opacity: 0.9;
  }
  to {
    transform: translateY(1250px);
    opacity: 0;
  }
}
.inspect-shell {
  position: relative;
  height: min(760px, 78vh);
  min-height: 620px;
  border-radius: 30px;
  background: #000;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 45px 100px -55px #000;
}
.inspect-left {
  position: absolute;
  z-index: 4;
  left: 6.2%;
  top: 9%;
  bottom: 9%;
  width: min(390px, 30%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.inspect-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  width: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}
.inspect-menu::-webkit-scrollbar {
  display: none;
}
.inspect-item {
  flex: none;
  max-width: 100%;
}
.inspect-item.on {
  width: 100%;
}
.inspect-tab {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 56px;
  padding: 0 20px 0 14px;
  border: 0;
  border-radius: 100px;
  background: #202023;
  color: #f5f5f7;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s,
    opacity 0.2s;
}
.inspect-tab:hover {
  background: #2c2c2f;
  transform: translateX(3px);
}
.inspect-tab b {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 400;
}
.inspect-item.on .inspect-tab {
  display: none;
}
.inspect-desc {
  display: none;
  width: 100%;
  padding: 26px 28px;
  border-radius: 22px;
  background: #202023;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(245, 245, 247, 0.84);
  transform-origin: 0 50%;
}
.inspect-item.on .inspect-desc {
  display: block;
  animation: inspectMorph 0.48s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.inspect-desc strong {
  color: #fff;
}
.inspect-nav {
  position: absolute;
  left: -64px;
  bottom: 2px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.inspect-nav button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #242427;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.inspect-nav button:hover {
  background: #3a3a3e;
  transform: scale(1.06);
}
.inspect-stage {
  position: absolute;
  inset: 0 0 0 36%;
  overflow: hidden;
}
.inspect-visual {
  position: absolute;
  inset: 5% 3% 0 0;
  opacity: 0;
  transform: translateX(45px) scale(0.98);
  transition:
    opacity 0.55s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}
.inspect-visual.on {
  opacity: 1;
  transform: none;
}
.inspect-visual .service-art {
  height: 100%;
  margin: 0;
  border-radius: 24px 24px 0 0;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      circle at 68% 13%,
      rgba(91, 124, 250, 0.28),
      transparent 38%
    ),
    linear-gradient(145deg, #131b2b, #05070b 65%);
}
.inspect-index {
  position: absolute;
  right: 24px;
  top: 20px;
  z-index: 6;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
}
@keyframes inspectIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes inspectMorph {
  0% {
    opacity: 0;
    transform: scale(0.82, 0.55);
    filter: blur(5px);
  }
  55% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: scale(1);
  }
}
/* recognizable product UI previews */
.product-art {
  height: 100%;
  margin: 0 !important;
  background: #0c0f15 !important;
  color: #111827;
  font-family: "DM Sans", sans-serif;
}
.product-bar {
  height: 42px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #151820;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}
.product-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4b4f59;
}
.product-bar span {
  margin-left: 10px;
  padding: 6px 16px;
  border-radius: 7px;
  background: #222630;
  min-width: 32%;
  text-align: center;
}
.product-page {
  position: absolute;
  inset: 42px 0 0;
  overflow: hidden;
}
.web-preview {
  background: #f6f8fc;
}
.web-nav {
  height: 64px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  gap: 26px;
  color: #111827;
  font-size: 12px;
}
.web-logo {
  font-weight: 800;
  font-size: 17px;
  margin-right: auto;
}
.web-logo b {
  color: #4f6ef7;
}
.web-nav button {
  border: 0;
  border-radius: 100px;
  background: #111827;
  color: #fff;
  padding: 10px 17px;
  font-weight: 600;
}
.web-hero {
  height: calc(100% - 64px);
  padding: 6% 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
  align-items: center;
}
.web-hero h4 {
  font-size: clamp(27px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #0c1220;
}
.web-hero p {
  color: #667085;
  font-size: clamp(10px, 1vw, 15px);
  line-height: 1.55;
  margin-top: 15px;
  max-width: 38ch;
}
.web-cta {
  display: inline-flex;
  margin-top: 20px;
  padding: 11px 18px;
  border-radius: 100px;
  background: #526ff6;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.web-photo {
  height: 86%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 35% 30%, #c6d3ff 0 8%, transparent 9%),
    radial-gradient(circle at 62% 55%, #57e0d8 0 15%, transparent 16%),
    linear-gradient(145deg, #131e45, #5b7cfa 55%, #c5d0ff);
  box-shadow: 0 28px 50px -28px #25356f;
  position: relative;
  overflow: hidden;
}
.web-photo::after {
  content: "";
  position: absolute;
  width: 68%;
  height: 70%;
  right: -8%;
  bottom: -20%;
  border-radius: 46% 54% 0 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.16)
  );
  transform: rotate(-14deg);
}
.dashboard-ui {
  display: grid;
  grid-template-columns: 190px 1fr;
  background: #f5f7fb;
}
.dash-side {
  padding: 24px 16px;
  background: #111827;
  color: #d0d5dd;
}
.dash-brand {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
}
.dash-side span {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  margin: 6px 0;
  font-size: 12px;
}
.dash-side span.on {
  background: #526ff6;
  color: #fff;
}
.dash-main {
  padding: 26px;
  overflow: hidden;
}
.dash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.dash-head h4 {
  font-size: 24px;
}
.dash-head b {
  font-size: 11px;
  color: #12a89f;
  background: #dff8f5;
  padding: 8px 12px;
  border-radius: 100px;
}
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.dash-kpi {
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e7e9ee;
}
.dash-kpi small {
  display: block;
  color: #667085;
  font-size: 10px;
}
.dash-kpi strong {
  display: block;
  font-size: clamp(18px, 2.5vw, 30px);
  margin-top: 7px;
}
.dash-kpi em {
  font-size: 9px;
  color: #12a89f;
  font-style: normal;
}
.dash-chart {
  height: 48%;
  margin-top: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e7e9ee;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.dash-chart i {
  flex: 1;
  height: var(--h);
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(#7c95ff, #526ff6);
}
.board-ui {
  background: #eef1f6;
  padding: 25px;
}
.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.board-head h3 {
  font-size: 24px;
}
.board-head span {
  font-size: 11px;
  background: #526ff6;
  color: #fff;
  padding: 9px 13px;
  border-radius: 8px;
}
.board-cols {
  height: calc(100% - 50px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.board-col {
  padding: 13px;
  border-radius: 13px;
  background: #dde2ea;
}
.board-col h4 {
  font-size: 12px;
  margin-bottom: 12px;
  color: #475467;
}
.task {
  padding: 14px;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 9px;
  box-shadow: 0 6px 14px -12px #344054;
}
.task b {
  display: block;
  font-size: 12px;
}
.task small {
  display: block;
  color: #98a2b3;
  margin-top: 7px;
  font-size: 9px;
}
.task i {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 7px;
  border-radius: 100px;
  background: #e4eaff;
  color: #526ff6;
  font-size: 8px;
  font-style: normal;
}
.seo-ui {
  background: #f7f8fa;
  padding: 24px;
}
.seo-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.seo-head h4 {
  font-size: 23px;
}
.seo-date {
  font-size: 10px;
  color: #667085;
  border: 1px solid #d0d5dd;
  padding: 7px 10px;
  border-radius: 7px;
}
.seo-grid {
  height: calc(100% - 45px);
  margin-top: 16px;
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 13px;
}
.seo-score-card,
.seo-traffic {
  background: #fff;
  border: 1px solid #e7e9ee;
  border-radius: 14px;
  padding: 18px;
}
.seo-score-card small {
  color: #667085;
}
.seo-ring {
  width: min(150px, 70%);
  aspect-ratio: 1;
  margin: 14px auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(#12b76a 0 98%, #e7e9ee 98%);
  position: relative;
}
.seo-ring::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #fff;
}
.seo-ring b {
  position: relative;
  z-index: 1;
  font-size: 38px;
  color: #101828;
}
.seo-traffic strong {
  font-size: 28px;
}
.seo-traffic em {
  font-style: normal;
  color: #12a89f;
  font-size: 11px;
}
.seo-line {
  height: 55%;
  margin-top: 14px;
  background:
    linear-gradient(
      170deg,
      transparent 0 42%,
      rgba(82, 111, 246, 0.12) 43% 67%,
      transparent 68%
    ),
    repeating-linear-gradient(#fff 0 31px, #edf0f4 32px);
  border-radius: 8px;
  position: relative;
}
.seo-line::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 48%;
  height: 3px;
  background: linear-gradient(90deg, #526ff6, #57e0d8);
  transform: skewY(-8deg);
  box-shadow: 0 0 9px rgba(82, 111, 246, 0.35);
}
.ai-ui {
  background: #f7f8fc;
  display: grid;
  grid-template-columns: 210px 1fr;
}
.ai-history {
  padding: 20px 14px;
  background: #111827;
  color: #d0d5dd;
}
.ai-history h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}
.ai-history span {
  display: block;
  padding: 10px;
  border-radius: 8px;
  font-size: 10px;
  margin: 5px 0;
}
.ai-history span.on {
  background: #26324b;
}
.ai-chat {
  padding: 28px;
  overflow: hidden;
}
.ai-question {
  margin-left: auto;
  width: 72%;
  padding: 13px 16px;
  border-radius: 16px 16px 4px 16px;
  background: #526ff6;
  color: #fff;
  font-size: 12px;
}
.ai-response {
  margin-top: 18px;
  width: 88%;
  padding: 19px;
  border-radius: 4px 16px 16px 16px;
  background: #fff;
  border: 1px solid #e7e9ee;
  color: #344054;
  font-size: 12px;
  line-height: 1.55;
}
.ai-response b {
  display: block;
  color: #101828;
  margin-bottom: 8px;
}
.ai-sources {
  display: flex;
  gap: 7px;
  margin-top: 13px;
}
.ai-sources i {
  font-style: normal;
  font-size: 9px;
  padding: 5px 8px;
  border-radius: 100px;
  background: #e8edff;
  color: #526ff6;
}
.flow-ui {
  background: #f4f6f9;
  padding: 24px;
}
.flow-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flow-head h4 {
  font-size: 23px;
}
.flow-live {
  font-size: 10px;
  color: #079455;
  background: #dcfae6;
  padding: 7px 10px;
  border-radius: 100px;
}
.flow-canvas {
  height: 72%;
  margin-top: 18px;
  border-radius: 14px;
  background-color: #fff;
  background-image: radial-gradient(#d0d5dd 1px, transparent 1px);
  background-size: 18px 18px;
  border: 1px solid #e7e9ee;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.flow-app {
  width: clamp(68px, 9vw, 112px);
  aspect-ratio: 1;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d8dce5;
  box-shadow: 0 12px 25px -18px #344054;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #344054;
}
.flow-app b {
  display: block;
  font-size: 18px;
  color: #526ff6;
}
.flow-line {
  width: 8%;
  height: 2px;
  background: linear-gradient(90deg, #526ff6, #57e0d8);
  position: relative;
}
.flow-line::after {
  content: "›";
  position: absolute;
  right: -2px;
  top: -10px;
  color: #57e0d8;
  font-size: 17px;
}
/* story */
.story-sec {
  height: 560vh;
  position: relative;
  background: radial-gradient(
    ellipse at 70% 20%,
    rgba(91, 124, 250, 0.08),
    transparent 55%
  );
}
.story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.story-grid {
  width: min(1220px, 100% - 48px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.story-left {
  position: relative;
}
.story-rail {
  position: absolute;
  left: -30px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}
.story-rail-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: linear-gradient(180deg, #5b7cfa, #57e0d8);
  border-radius: 2px;
  height: 0;
}
.story-idx {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: #7c95ff;
  letter-spacing: 0.1em;
}
.stage-item {
  opacity: 0.28;
  transition: opacity 0.5s;
  padding: 14px 0;
}
.stage-item.on {
  opacity: 1;
}
.stage-item h3 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  margin: 8px 0 12px;
  letter-spacing: -0.03em;
}
.stage-item p {
  color: rgba(244, 246, 251, 0.62);
  font-size: 17px;
  max-width: 46ch;
}
.stage-item .stag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #57e0d8;
}
.story-stack {
  position: relative;
  height: 440px;
}
.story-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition:
    opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  border-radius: 20px;
  background: #0c0f17;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}
.story-screen.on {
  opacity: 1;
  transform: none;
  z-index: 2;
}
.ss-body {
  padding: 22px;
  height: 100%;
}
.stat-big {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.node {
  position: absolute;
  padding: 7px 12px;
  border-radius: 100px;
  background: rgba(87, 224, 216, 0.1);
  border: 1px solid rgba(87, 224, 216, 0.3);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: #8ff0ea;
}
/* converge */
.conv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.conv-col {
  border-radius: 22px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.conv-bad {
  background: linear-gradient(
    180deg,
    rgba(255, 120, 120, 0.05),
    rgba(255, 255, 255, 0.01)
  );
  border-color: rgba(255, 140, 140, 0.18);
}
.conv-good {
  background: linear-gradient(
    180deg,
    rgba(87, 224, 216, 0.08),
    rgba(91, 124, 250, 0.04)
  );
  border-color: rgba(87, 224, 216, 0.28);
}
.conv-col h3 {
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.conv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.conv-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15.5px;
  color: rgba(244, 246, 251, 0.82);
}
.conv-list li:last-child {
  border-bottom: none;
}
.ic {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex: none;
  display: grid;
  place-items: center;
  font-size: 13px;
  margin-top: 1px;
}
.ic-x {
  background: rgba(255, 120, 120, 0.14);
  color: #ff9d9d;
}
.ic-ok {
  background: rgba(87, 224, 216, 0.16);
  color: #57e0d8;
}
.conv-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 44px;
}
.conv-visual {
  position: relative;
  width: min(560px, 100%);
  height: 200px;
}
.cv-node {
  position: absolute;
  width: 64px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: rgba(244, 246, 251, 0.6);
  transition: none;
  transform: translate(
    calc(var(--sx) * (1 - var(--cp, 0))),
    calc(var(--sy) * (1 - var(--cp, 0)))
  );
}
.cv-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(91, 124, 250, 0.35),
    rgba(87, 224, 216, 0.28)
  );
  border: 1px solid rgba(124, 149, 255, 0.5);
  display: grid;
  place-items: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  box-shadow: 0 20px 50px -20px rgba(91, 124, 250, 0.7);
}
@media (max-width: 840px) {
  .conv-grid {
    grid-template-columns: 1fr;
  }
}
/* service detail */
.svc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid rgba(10, 11, 16, 0.1);
}
.svc:nth-child(even) .svc-visual {
  order: -1;
}
.svc-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: #3455e6;
  letter-spacing: 0.1em;
}
.svc h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin: 12px 0 14px;
}
.svc-desc {
  font-size: 17px;
  color: rgba(10, 11, 16, 0.66);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 52ch;
}
.svc-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pill {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(52, 85, 230, 0.08);
  border: 1px solid rgba(52, 85, 230, 0.18);
  color: #2c47c9;
}
.svc-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  margin-bottom: 24px;
}
.svc-feats div {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 14.5px;
  color: rgba(10, 11, 16, 0.78);
}
.svc-feats .ic-ok {
  background: rgba(52, 85, 230, 0.12);
  color: #3455e6;
}
.svc-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-dark {
  background: #0a0b10;
  color: #fff;
}
.btn-dark:hover {
  background: #1a1c26;
  color: #fff;
}
.svc-visual {
  border-radius: 20px;
  background: #0c0f17;
  border: 1px solid rgba(10, 11, 16, 0.12);
  box-shadow: 0 40px 80px -40px rgba(10, 20, 60, 0.4);
  overflow: hidden;
  min-height: 280px;
}
.svc-case {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(52, 85, 230, 0.05);
  border: 1px solid rgba(52, 85, 230, 0.14);
  font-size: 13.5px;
  color: rgba(10, 11, 16, 0.7);
}
.svc-case b {
  color: #0a0b10;
}
/* sectors */
#solutions {
  background: #f5f5f7;
  color: #111318;
  padding-top: clamp(90px, 10vw, 150px);
  padding-bottom: clamp(100px, 11vw, 170px);
}
#solutions .wrap {
  width: min(1320px, 100% - 48px);
}
.sector-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 82px);
}
.sector-head .eyebrow {
  color: #4057c7;
}
.sector-head .eyebrow::before {
  background: #5b7cfa;
}
.sector-head h2 {
  max-width: 850px;
  font-size: clamp(45px, 6.5vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.062em;
  color: #111318;
}
.sector-head h2 span {
  color: #526ff6;
}
.sector-intro {
  padding: 26px 0 4px;
  border-top: 1px solid #cfd4df;
  color: #596170;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.65;
}
.sector-intro strong {
  display: block;
  margin-bottom: 10px;
  color: #171a21;
  font-size: 15px;
}
.sect-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.sect-card {
  --sector-accent: #526ff6;
  position: relative;
  min-height: 360px;
  border-radius: 26px;
  border: 1px solid #dde1e9;
  background: #fff;
  padding: clamp(25px, 3vw, 38px);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.35s,
    box-shadow 0.45s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
.sect-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 320px;
  height: 320px;
  right: -130px;
  top: -150px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--sector-accent) 20%, transparent),
    transparent 68%
  );
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.sect-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--sector-accent) 38%, #dde1e9);
  box-shadow: 0 30px 70px -42px rgba(27, 38, 74, 0.38);
}
.sect-card:hover::before {
  transform: scale(1.18);
}
.sect-card:nth-child(3n + 2) {
  --sector-accent: #19a8a0;
}
.sect-card:nth-child(3n) {
  --sector-accent: #7b56d8;
}
.sect-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}
.sect-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--sector-accent);
  background: color-mix(in srgb, var(--sector-accent) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--sector-accent) 18%, #e3e6ed);
}
.sect-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sect-card h3 {
  max-width: 18ch;
  font-size: clamp(27px, 3vw, 41px);
  line-height: 1.02;
  letter-spacing: -0.048em;
  color: #151820;
  margin-bottom: 14px;
}
.sect-card .snum {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #8a92a1;
}
.sect-card p {
  max-width: 54ch;
  color: #626a78;
  font-size: 15px;
  line-height: 1.62;
}
.sect-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 24px;
}
.sect-tags span {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 100px;
  background: #f4f6f9;
  border: 1px solid #e3e6ec;
  color: #5f6775;
}
.sect-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #344fcf;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}
.sect-cta:hover {
  color: #122880;
}
.sect-cta span {
  transition: transform 0.25s;
}
.sect-card:hover .sect-cta span,
.sect-cta:hover span {
  transform: translateX(4px);
}
/* cases */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.4s;
}
.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 149, 255, 0.35);
}
.case-shot {
  height: 180px;
  background: #0c0f17;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  padding: 16px;
}
.case-body {
  padding: 24px;
}
.case-sector {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7c95ff;
}
.case-stats {
  display: flex;
  gap: 20px;
  margin: 18px 0;
}
.case-stat .n {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.04em;
  background: linear-gradient(100deg, #9db2ff, #57e0d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.case-stat .l {
  font-size: 12px;
  color: rgba(244, 246, 251, 0.55);
  margin-top: 2px;
}
.case-mods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.case-mods span {
  font-size: 11.5px;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 246, 251, 0.62);
}
.samplebadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffcf8a;
  background: rgba(255, 180, 80, 0.1);
  border: 1px solid rgba(255, 180, 80, 0.25);
  padding: 4px 9px;
  border-radius: 100px;
}
@media (max-width: 960px) {
  .svc {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0;
  }
  .svc:nth-child(even) .svc-visual {
    order: 0;
  }
  .sect-grid {
    grid-template-columns: 1fr;
  }
  .sector-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .svc-feats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .sect-grid {
    grid-template-columns: 1fr;
  }
  #solutions .wrap {
    width: calc(100% - 24px);
  }
  .sector-head {
    margin-bottom: 36px;
  }
  .sector-head h2 {
    font-size: clamp(39px, 12vw, 56px);
  }
  .sect-card {
    min-height: 330px;
    border-radius: 21px;
  }
  .sect-top {
    margin-bottom: 34px;
  }
}
/* process */
.proc-sec {
  height: 360vh;
  position: relative;
}
.proc-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.proc-head {
  width: min(1220px, 100% - 48px);
  margin: 0 auto 40px;
}
.proc-track {
  display: flex;
  gap: 22px;
  padding: 0 max(24px, calc((100vw - 1220px) / 2));
  will-change: transform;
}
.proc-step {
  flex: none;
  width: 380px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 30px;
}
.proc-step .pn {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #9db2ff, #57e0d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.proc-step h3 {
  font-size: 22px;
  margin: 14px 0 10px;
}
.proc-step p {
  color: rgba(244, 246, 251, 0.62);
  font-size: 15px;
  line-height: 1.55;
}
.proc-out {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.proc-out .lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #57e0d8;
  margin-bottom: 8px;
}
.proc-out ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.proc-out li {
  font-size: 13.5px;
  color: rgba(244, 246, 251, 0.72);
  display: flex;
  gap: 8px;
}
.proc-out li::before {
  content: "—";
  color: #7c95ff;
}
.proc-hint {
  width: min(1220px, 100% - 48px);
  margin: 36px auto 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(244, 246, 251, 0.4);
}
.proc-hint .bar {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  position: relative;
}
/* tech */
.tech-3d-stage {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  perspective: 2200px;
}
.tech-story {
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: rgba(157, 178, 255, 0.68);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.tech-story::before,
.tech-story::after {
  content: "";
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, transparent, rgba(157, 178, 255, 0.4));
}
.tech-story::after {
  transform: scaleX(-1);
}
.tech-beam {
  grid-column: 2;
  grid-row: 1 / -1;
  position: relative;
  width: 2px;
  justify-self: center;
  border-radius: 2px;
  background: rgba(157, 178, 255, 0.14);
  z-index: 0;
}
.tech-beam::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(var(--tech-p, 0) * 100%);
  border-radius: 2px;
  background: linear-gradient(180deg, #5b7cfa, #57e0d8 50%, #f0c980);
  box-shadow: 0 0 14px 1px rgba(91, 124, 250, 0.5);
}
.tech-beam::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(var(--tech-p, 0) * 100%);
  width: 11px;
  height: 11px;
  margin-left: -5.5px;
  margin-top: -5.5px;
  border-radius: 50%;
  background: #9db2ff;
  box-shadow: 0 0 18px 4px rgba(157, 178, 255, 0.85);
  opacity: clamp(0, var(--tech-p, 0) * 40, 1);
}
.tnode {
  --card-accent: #9db2ff;
  --i: 0;
  grid-column: 2;
  grid-row: calc(var(--i) + 1);
  z-index: 2;
  justify-self: center;
  align-self: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(
    145deg,
    rgba(19, 22, 33, 0.95),
    rgba(8, 9, 14, 0.95)
  );
  border: 1px solid
    color-mix(in srgb, var(--card-accent) 45%, rgba(157, 178, 255, 0.35));
  box-shadow:
    0 0 0 5px #06070a,
    0 0 20px -4px var(--card-accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--card-accent);
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tnode.tech-visible {
  opacity: 1;
  transform: scale(1);
}
.tech-layers {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  grid-template-rows: repeat(6, auto);
  column-gap: 28px;
  row-gap: 16px;
  position: relative;
  z-index: 1;
}
.layer {
  --card-accent: #5b7cfa;
  --i: 0;
  grid-column: 1;
  grid-row: calc(var(--i) + 1);
  opacity: 0;
  transform: translateY(28px);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px 26px;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(91, 124, 250, 0.1),
      transparent 60%
    ),
    linear-gradient(145deg, rgba(19, 22, 33, 0.9), rgba(8, 9, 14, 0.94));
  border: 1px solid rgba(157, 178, 255, 0.12);
  position: relative;
  box-shadow: 0 24px 50px -42px #000;
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.4s,
    box-shadow 0.5s;
}
.layer.tech-visible {
  opacity: 1;
  transform: translateY(0);
}
.layer::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -60px;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(157, 178, 255, 0.35), transparent);
}
.layer-r {
  grid-column: 3;
}
.layer-r::after {
  right: auto;
  left: -60px;
  background: linear-gradient(270deg, rgba(157, 178, 255, 0.35), transparent);
}
.layer:hover {
  transform: translateY(-4px);
  border-color: rgba(157, 178, 255, 0.4);
  box-shadow:
    0 30px 60px -30px rgba(0, 0, 0, 0.7),
    0 0 40px -10px var(--card-accent);
  z-index: 5;
}
.layer-icon {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(157, 178, 255, 0.18);
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--card-accent) 22%, transparent),
    transparent 70%
  );
  box-shadow: inset 0 0 20px
    color-mix(in srgb, var(--card-accent) 12%, transparent);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--card-accent);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.layer:hover .layer-icon {
  transform: rotateY(360deg);
}
.layer-body {
  min-width: 0;
}
.layer .lname {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.layer .ldesc {
  color: rgba(244, 246, 251, 0.58);
  font-size: 14px;
  margin-top: 3px;
}
.tech-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
  perspective: 1200px;
}
.tbenefit {
  --card-accent: #5b7cfa;
  text-align: left;
  padding: 26px 24px;
  border-radius: 18px;
  border: 1px solid rgba(157, 178, 255, 0.12);
  background: linear-gradient(
    160deg,
    rgba(19, 22, 33, 0.85),
    rgba(8, 9, 14, 0.92)
  );
  box-shadow: 0 24px 50px -46px #000;
  transform-style: preserve-3d;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.4s,
    box-shadow 0.5s;
}
.tbenefit:hover {
  transform: translateY(-8px) rotateX(6deg) scale(1.02);
  border-color: rgba(157, 178, 255, 0.32);
  box-shadow:
    0 34px 64px -34px rgba(25, 30, 60, 0.95),
    0 0 40px -14px var(--card-accent);
}
.tbenefit:nth-child(4n + 2) {
  --card-accent: #57e0d8;
}
.tbenefit:nth-child(4n + 3) {
  --card-accent: #f0c980;
}
.tbenefit:nth-child(4n + 4) {
  --card-accent: #9db2ff;
}
.tbenefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(157, 178, 255, 0.18);
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--card-accent) 22%, transparent),
    transparent 70%
  );
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--card-accent);
}
.tbenefit .n {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}
.tbenefit p {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(244, 246, 251, 0.58);
}
@media (max-width: 960px) {
  .proc-sec {
    height: auto;
  }
  .proc-sticky {
    position: static;
    height: auto;
    padding: 60px 0;
  }
  .proc-track {
    transform: none !important;
    overflow-x: auto;
    padding: 0 24px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .proc-step {
    width: 78vw;
    scroll-snap-align: center;
  }
  .proc-hint {
    display: none;
  }
  .tech-layers {
    grid-template-columns: 1fr;
  }
  .tech-beam {
    display: none;
  }
  .tnode {
    display: none;
  }
  .layer,
  .layer-r {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 16px 18px;
  }
  .layer::after,
  .layer-r::after {
    display: none;
  }
  .layer:hover {
    transform: translateX(4px);
  }
  .layer-icon {
    width: 44px;
    height: 44px;
    font-size: 10px;
  }
  .tech-benefits {
    grid-template-columns: 1fr 1fr;
  }
  .tbenefit:hover {
    transform: translateY(-5px);
  }
}
/* seo vs ai */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.vs-panel {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.vs-panel .vs-top {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.vs-panel .vs-top .lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vs-classic .vs-top .lbl {
  color: rgba(244, 246, 251, 0.55);
}
.vs-ai {
  border-color: rgba(87, 224, 216, 0.3);
  background: linear-gradient(
    180deg,
    rgba(87, 224, 216, 0.05),
    rgba(91, 124, 250, 0.03)
  );
}
.vs-ai .vs-top .lbl {
  color: #57e0d8;
}
.vs-body {
  padding: 24px;
}
.serp {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.serp-item .u {
  font-size: 12px;
  color: #6ee7df;
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 4px;
}
.serp-item .t {
  color: #9db2ff;
  font-size: 16px;
  margin-bottom: 4px;
}
.serp-item .d {
  color: rgba(244, 246, 251, 0.5);
  font-size: 13px;
  line-height: 1.5;
}
.ai-answer {
  display: flex;
  gap: 12px;
}
.ai-av {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #5b7cfa, #57e0d8);
}
.ai-text p {
  font-size: 14.5px;
  color: rgba(244, 246, 251, 0.82);
  line-height: 1.6;
}
.ai-src {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.ai-src span {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(87, 224, 216, 0.1);
  border: 1px solid rgba(87, 224, 216, 0.25);
  color: #8ff0ea;
  font-family: "JetBrains Mono", monospace;
}
.seo-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.seo-sub div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14.5px;
  color: rgba(244, 246, 251, 0.82);
}
.seo-sub .ic-ok {
  background: rgba(87, 224, 216, 0.14);
  color: #57e0d8;
}
.disc {
  margin-top: 28px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 180, 80, 0.22);
  background: rgba(255, 180, 80, 0.06);
  font-size: 14px;
  color: rgba(244, 246, 251, 0.7);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
/* trust */
.trust-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.trust-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.tfact {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.tfact .n {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.04em;
  color: #fff;
}
.tfact .l {
  font-size: 13px;
  color: rgba(244, 246, 251, 0.55);
  margin-top: 4px;
}
.trust-side {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
  padding: 28px;
}
.trust-side .item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14.5px;
  color: rgba(244, 246, 251, 0.82);
}
.trust-side .item:last-child {
  border-bottom: none;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.012)
  );
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.testi p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244, 246, 251, 0.9);
  margin-bottom: 20px;
}
.testi .who {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}
.testi .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b7cfa, #57e0d8);
  flex: none;
  display: grid;
  place-items: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  color: #06070a;
}
.testi .nm {
  font-weight: 600;
  font-size: 15px;
}
.testi .rl {
  font-size: 13px;
  color: rgba(244, 246, 251, 0.5);
}
@media (max-width: 960px) {
  .vs-grid {
    grid-template-columns: 1fr;
  }
  .seo-sub {
    grid-template-columns: 1fr;
  }
  .trust-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
/* resources */
.cats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 30px;
  padding: 10px;
  border: 1px solid rgba(10, 11, 16, 0.08);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 24px 60px -42px rgba(13, 24, 66, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}
.cat {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 66px;
  padding: 10px 12px;
  border-radius: 17px;
  border: 1px solid transparent;
  color: rgba(10, 11, 16, 0.73);
  background: rgba(245, 245, 247, 0.88);
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  transition:
    transform 0.3s cubic-bezier(0.2, 0.75, 0.2, 1),
    background 0.3s,
    color 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.cat::before {
  content: "•";
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(76, 94, 170, 0.1);
  border-radius: 12px;
  color: #405ccf;
  background: #fff;
  box-shadow: 0 8px 20px -15px rgba(31, 50, 130, 0.65);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: -0.04em;
  transition: inherit;
}
.cat[data-cat="web"]::before {
  content: "WEB";
}
.cat[data-cat="panel"]::before {
  content: "UI";
}
.cat[data-cat="software"]::before {
  content: "{ }";
}
.cat[data-cat="search"]::before {
  content: "SEO";
}
.cat[data-cat="mobile"]::before {
  content: "APP";
}
.cat[data-cat="ads"]::before {
  content: "AD";
}
.cat-label {
  min-width: 0;
}
.cat:hover {
  transform: translateY(-2px);
  border-color: rgba(52, 85, 230, 0.18);
  color: #263fae;
  background: #fff;
  box-shadow: 0 16px 32px -25px rgba(32, 54, 151, 0.42);
}
.cat.on {
  transform: none;
  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(107, 132, 255, 0.24),
      transparent 35%
    ),
    linear-gradient(135deg, #11131b 0%, #171c2c 100%);
  color: #fff;
  border-color: rgba(111, 139, 255, 0.28);
  box-shadow:
    0 18px 35px -22px rgba(26, 42, 117, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.cat.on::before {
  color: #fff;
  border-color: rgba(136, 159, 255, 0.32);
  background: linear-gradient(145deg, #627cf5, #7d55ef 58%, #43c8ca);
  box-shadow: 0 10px 24px -10px rgba(90, 110, 255, 0.8);
}
.cat-count {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 24px;
  margin-left: 0;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(10, 11, 16, 0.07);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
}
.cat.on .cat-count {
  background: rgba(255, 255, 255, 0.16);
}
.resource-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin: -8px 4px 24px;
  color: rgba(10, 11, 16, 0.56);
  font-size: 13px;
}
.resource-summary strong {
  color: #0a0b10;
  font-size: 15px;
}
@media (max-width: 1050px) {
  .cats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .cats {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 20px;
  }
  .cat {
    min-height: 60px;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    padding: 9px 11px;
    border-radius: 14px;
  }
  .cat::before {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .resource-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.post {
  border-radius: 20px;
  border: 1px solid rgba(10, 11, 16, 0.1);
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}
.post:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -30px rgba(10, 20, 60, 0.28);
}
.post-img {
  height: 150px;
  background: #0c0f17;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.post-img::before,
.post-img::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.post-img::before {
  width: 190px;
  height: 190px;
  right: -58px;
  top: -96px;
  border: 1px solid rgba(121, 151, 255, 0.28);
  box-shadow: 0 0 70px rgba(76, 104, 255, 0.15);
}
.post-img::after {
  width: 7px;
  height: 7px;
  left: 22px;
  bottom: 24px;
  background: #77e4df;
  box-shadow:
    18px -13px 0 rgba(125, 145, 255, 0.72),
    38px 3px 0 rgba(158, 87, 255, 0.55);
}
.post-topic {
  position: absolute;
  top: 18px;
  left: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "JetBrains Mono", monospace;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -0.06em;
}
.post-img .ph {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  text-align: right;
}
.post-img.g1 {
  background: linear-gradient(135deg, #111a33, #0c0f17);
}
.post-img.g2 {
  background: linear-gradient(135deg, #0d2320, #0c0f17);
}
.post-img.g3 {
  background: linear-gradient(135deg, #1a1430, #0c0f17);
}
.post-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post .kc {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3455e6;
  margin-bottom: 10px;
}
.post h3 {
  font-size: 19px;
  color: #0a0b10;
  margin-bottom: 8px;
  line-height: 1.2;
}
.post .ex {
  font-size: 14px;
  color: rgba(10, 11, 16, 0.6);
  line-height: 1.55;
  margin-bottom: 16px;
}
.post-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 11, 16, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 12px;
  color: rgba(10, 11, 16, 0.5);
}
.post-meta b {
  color: rgba(10, 11, 16, 0.72);
  font-weight: 600;
}
/* faq */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
details.faq {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  scroll-margin-top: 100px;
}
details.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 44px 24px 0;
  position: relative;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 1.8vw, 20px);
  color: #f4f6fb;
  transition: color 0.2s;
}
details.faq summary::-webkit-details-marker {
  display: none;
}
details.faq summary:hover {
  color: #9db2ff;
}
details.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 400;
  color: #7c95ff;
  transition: transform 0.3s;
  font-family: "DM Sans", sans-serif;
}
details.faq[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-ans {
  padding: 0 44px 26px 0;
}
.faq-sum {
  font-size: 16px;
  color: #f4f6fb;
  font-weight: 600;
  margin-bottom: 10px;
}
.faq-ans p {
  font-size: 15.5px;
  color: rgba(244, 246, 251, 0.66);
  line-height: 1.65;
}
.faq-ans .lnk {
  margin-top: 12px;
  font-size: 14px;
}
.faq-hub {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(133, 153, 255, 0.13);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0 0, rgba(76, 103, 230, 0.12), transparent 30%),
    rgba(8, 9, 14, 0.72);
  box-shadow: 0 36px 90px -58px #000;
}
.faq-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.035);
}
.faq-tab {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: 15px;
  color: rgba(244, 246, 251, 0.58);
  background: transparent;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  transition: 0.3s ease;
}
.faq-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}
.faq-tab.on {
  color: #fff;
  border-color: rgba(125, 150, 255, 0.22);
  background: linear-gradient(
    135deg,
    rgba(84, 108, 231, 0.22),
    rgba(115, 67, 209, 0.13)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.faq-tab-code {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #98aaff;
  background: rgba(117, 139, 255, 0.09);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
}
.faq-tab.on .faq-tab-code {
  color: #fff;
  background: linear-gradient(145deg, #6079ed, #7652dc);
  box-shadow: 0 8px 18px -10px #637cff;
}
.faq-tab-count {
  display: grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
}
.faq-stage {
  min-width: 0;
  padding: 6px;
}
.faq-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 6px 4px 18px;
}
.faq-panel-head span {
  color: #8196fa;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.faq-panel-head h3 {
  margin-top: 7px;
  color: #fff;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.08;
}
.faq-panel-head small {
  color: rgba(244, 246, 251, 0.42);
  font-size: 12px;
  white-space: nowrap;
}
.faq-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.faq-card {
  align-self: start;
  border: 1px solid rgba(137, 157, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.032);
  overflow: hidden;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
}
.faq-card:hover {
  transform: translateY(-2px);
  border-color: rgba(137, 157, 255, 0.23);
  background: rgba(255, 255, 255, 0.052);
}
.faq-card[open] {
  border-color: rgba(113, 139, 255, 0.3);
  background: linear-gradient(
    145deg,
    rgba(77, 97, 190, 0.14),
    rgba(255, 255, 255, 0.035)
  );
}
.faq-card summary {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding: 13px 14px;
  color: rgba(244, 246, 251, 0.86);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
}
.faq-card summary::-webkit-details-marker {
  display: none;
}
.faq-card summary::before {
  content: attr(data-no);
  color: #7189f1;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
}
.faq-card summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: #a8b5f5;
  background: rgba(255, 255, 255, 0.06);
  font-size: 19px;
  font-weight: 400;
  transition:
    transform 0.3s,
    background 0.3s;
}
.faq-card[open] summary::after {
  transform: rotate(45deg);
  background: rgba(113, 137, 241, 0.17);
}
.faq-card-answer {
  padding: 0 52px 18px;
  color: rgba(244, 246, 251, 0.62);
  font-size: 14px;
  line-height: 1.65;
}
.faq-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(135, 155, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}
.faq-help p {
  color: rgba(244, 246, 251, 0.62);
  font-size: 14px;
}
@media (max-width: 980px) {
  .faq-hub {
    grid-template-columns: 1fr;
  }
  .faq-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .faq-hub {
    padding: 8px;
    border-radius: 22px;
  }
  .faq-nav {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .faq-nav::-webkit-scrollbar {
    display: none;
  }
  .faq-tab {
    min-width: 220px;
    scroll-snap-align: start;
  }
  .faq-panel {
    grid-template-columns: 1fr;
  }
  .faq-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .faq-card-answer {
    padding: 0 20px 18px 52px;
  }
  .faq-help {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* compare */
.cmp {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14.5px;
}
.cmp th,
.cmp td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cmp thead th {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  position: sticky;
  top: 74px;
  background: #06070a;
  z-index: 2;
}
.cmp thead th.hi {
  color: #57e0d8;
}
.cmp td:first-child,
.cmp th:first-child {
  color: rgba(244, 246, 251, 0.6);
  font-weight: 500;
}
.cmp tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
.cmp .yes {
  color: #57e0d8;
  font-weight: 600;
}
.cmp .no {
  color: rgba(244, 246, 251, 0.3);
}
.cmp .mid {
  color: #9db2ff;
}
.cmp .colhi {
  background: rgba(87, 224, 216, 0.05);
}
.cmp-cards {
  display: none;
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .cmp-wrap {
    display: none;
  }
  .cmp-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ccard {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    padding: 22px;
  }
  .ccard h3 {
    font-size: 19px;
    margin-bottom: 14px;
  }
  .ccard .crow {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
  }
  .ccard .crow span:first-child {
    color: rgba(244, 246, 251, 0.55);
  }
}
/* cta + form */
.cta-wrap {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1330, #0a1a28);
  border: 1px solid rgba(124, 149, 255, 0.25);
  position: relative;
}
.cta-glow {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 124, 250, 0.3), transparent 65%);
  pointer-events: none;
}
.cta-in {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 56px;
}
.cta-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.cta-opt {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px 13px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  font-size: 14.5px;
  font-weight: 600;
  color: #f4f6fb;
  transition:
    transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.cta-opt-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cta-opt-ico svg {
  width: 14px;
  height: 14px;
}
.cta-opt:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(124, 149, 255, 0.5);
}
.cta-opt-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #5b7cfa, #57e0d8);
  color: #06070a;
  box-shadow: 0 10px 30px -10px rgba(91, 124, 250, 0.6);
}
.cta-opt-primary .cta-opt-ico {
  background: rgba(6, 7, 10, 0.14);
}
.cta-opt-primary:hover {
  background: linear-gradient(135deg, #6d8bff, #6ce8e0);
  border-color: transparent;
  box-shadow: 0 14px 34px -8px rgba(91, 124, 250, 0.75);
}
.cta-opt-whatsapp {
  border-color: rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.08);
}
.cta-opt-whatsapp .cta-opt-ico {
  background: rgba(37, 211, 102, 0.18);
  color: #3fe089;
}
.cta-opt-whatsapp:hover {
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.6);
}
.cta-opt-phone .cta-opt-ico {
  background: rgba(124, 149, 255, 0.16);
  color: #9db2ff;
}
.form {
  background: rgba(6, 7, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.field label {
  display: block;
  font-size: 12.5px;
  color: rgba(244, 246, 251, 0.6);
  margin-bottom: 6px;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  padding: 13px 15px;
  color: #f4f6fb;
  font-family: "DM Sans", sans-serif;
  font-size: 14.5px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #7c95ff;
  background: rgba(124, 149, 255, 0.06);
}
.field textarea {
  resize: vertical;
  min-height: 80px;
}
.service-select {
  position: relative;
  z-index: 12;
}
.service-select-trigger {
  width: 100%;
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background:
    linear-gradient(135deg, rgba(124, 149, 255, 0.07), transparent 48%),
    rgba(255, 255, 255, 0.04);
  color: #f4f6fb;
  font-family: "DM Sans", sans-serif;
  font-size: 14.5px;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.service-select-trigger:hover {
  border-color: rgba(124, 149, 255, 0.48);
  background:
    linear-gradient(135deg, rgba(124, 149, 255, 0.11), transparent 52%),
    rgba(255, 255, 255, 0.055);
}
.service-select-trigger:focus-visible,
.service-select.open .service-select-trigger {
  outline: none;
  border-color: #7c95ff;
  box-shadow:
    0 0 0 3px rgba(124, 149, 255, 0.12),
    0 16px 38px rgba(0, 0, 0, 0.24);
}
.service-select-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #9db2ff;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-select.open .service-select-icon {
  transform: rotate(180deg);
}
.service-select-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: min(292px, calc(100vh - 24px));
  overflow-y: auto;
  padding: 7px;
  border: 1px solid rgba(124, 149, 255, 0.28);
  border-radius: 14px;
  background: rgba(8, 10, 17, 0.97);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(22px) saturate(1.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.985);
  transform-origin: 50% 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 149, 255, 0.5) transparent;
}
.service-select.open .service-select-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
.service-select-option {
  width: 100%;
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 6px 9px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgba(244, 246, 251, 0.72);
  font-family: "DM Sans", sans-serif;
  font-size: 13.5px;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}
.service-select-option:hover,
.service-select-option:focus-visible {
  outline: none;
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(124, 149, 255, 0.18),
    rgba(87, 224, 216, 0.055)
  );
  transform: translateX(2px);
}
.service-option-no {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(124, 149, 255, 0.2);
  border-radius: 8px;
  background: rgba(124, 149, 255, 0.08);
  color: #9db2ff;
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.04em;
}
@media (max-width: 560px) {
  .service-select-menu {
    max-height: min(292px, calc(100vh - 20px));
  }
  .service-select-option {
    min-height: 38px;
    padding: 6px 9px;
    font-size: 13px;
  }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
/* footer */
.foot {
  position: relative;
  overflow: hidden;
  border-top: 1px solid transparent;
  padding: 96px 0 32px;
  background:
    radial-gradient(
      ellipse 900px 460px at 50% -12%,
      rgba(91, 124, 250, 0.16),
      transparent 68%
    ),
    radial-gradient(
      ellipse 500px 300px at 88% 8%,
      rgba(87, 224, 216, 0.08),
      transparent 70%
    ),
    #050609;
}
.foot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(91, 124, 250, 0.55),
    rgba(87, 224, 216, 0.55),
    transparent
  );
  z-index: 0;
}
.foot::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.4px 1.4px at 6% 22%, #fff, transparent 60%),
    radial-gradient(1px 1px at 14% 68%, #fff, transparent 60%),
    radial-gradient(1.6px 1.6px at 23% 14%, #fff, transparent 60%),
    radial-gradient(1px 1px at 31% 84%, #fff, transparent 60%),
    radial-gradient(1.4px 1.4px at 39% 40%, #fff, transparent 60%),
    radial-gradient(1px 1px at 47% 66%, #fff, transparent 60%),
    radial-gradient(1.6px 1.6px at 55% 20%, #fff, transparent 60%),
    radial-gradient(1px 1px at 63% 52%, #fff, transparent 60%),
    radial-gradient(1.4px 1.4px at 71% 12%, #fff, transparent 60%),
    radial-gradient(1px 1px at 79% 74%, #fff, transparent 60%),
    radial-gradient(1.6px 1.6px at 87% 36%, #fff, transparent 60%),
    radial-gradient(1px 1px at 94% 60%, #fff, transparent 60%),
    radial-gradient(1.4px 1.4px at 91% 88%, #fff, transparent 60%),
    radial-gradient(1px 1px at 4% 92%, #fff, transparent 60%);
  opacity: 0.55;
  animation: footTwinkle 6s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes footTwinkle {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.65;
  }
}
.foot .wrap {
  position: relative;
  z-index: 1;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.foot h3,
.foot h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(244, 246, 251, 0.45);
  font-weight: 500;
  margin-bottom: 18px;
}
.foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.foot ul a {
  font-size: 14px;
  color: rgba(244, 246, 251, 0.66);
  transition: color 0.2s;
}
.foot ul a:hover {
  color: #9db2ff;
}
.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.foot-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(244, 246, 251, 0.75);
  transition:
    transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    box-shadow 0.25s;
}
.foot-social a svg {
  width: 16px;
  height: 16px;
}
.foot-social a:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #5b7cfa, #57e0d8);
  border-color: transparent;
  color: #06070a;
  box-shadow: 0 10px 24px -8px rgba(91, 124, 250, 0.7);
}
.foot-bot {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-wrap: wrap;
  gap: 16px;
}
.foot-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(244, 246, 251, 0.5);
}
.foot-legal a {
  transition: color 0.2s;
}
.foot-legal a:hover {
  color: #9db2ff;
}
@media (max-width: 900px) {
  .cta-in {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 960px) {
  .story-sec {
    height: auto;
    background: none;
  }
  .story-sticky {
    position: static;
    height: auto;
    padding: 60px 0;
    display: block;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-rail {
    display: none;
  }
  .stage-item {
    opacity: 1;
    border-left: 2px solid rgba(124, 149, 255, 0.4);
    padding-left: 20px;
    margin-bottom: 20px;
  }
  .story-stack {
    height: 300px;
    margin-top: 10px;
  }
  .story-screen {
    opacity: 1;
    transform: none;
    position: relative;
    margin-bottom: 16px;
  }
  .story-screen {
    display: none;
  }
  .story-screen:first-child {
    display: block;
  }
}
@media (max-width: 1180px) {
  .nav,
  .hdr-cta .btn {
    display: none;
  }
  .burger {
    display: flex;
  }
  .sec {
    padding: 84px 0;
  }
  .bento {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .c-span3,
  .c-span2,
  .c-span4 {
    grid-column: span 1;
  }
  .c-span6 {
    grid-column: span 2;
  }
  .hero {
    height: 455vh;
  }
  .hero-stage-wrap {
    height: 100vh;
    min-height: 560px;
  }
  .world-chapter {
    left: 6vw;
    width: min(520px, 48vw);
  }
  .world-chapter.right {
    right: 6vw;
  }
}
@media (max-width: 640px) {
  .bento {
    grid-template-columns: 1fr;
  }
  .c-span6 {
    grid-column: span 1;
  }
  .tech-benefits {
    grid-template-columns: 1fr;
  }
  .btn {
    white-space: normal;
    max-width: 100%;
  }
  .hero {
    height: 430vh;
    padding-top: 0;
  }
  .hero-in {
    padding: 104px 22px 0;
    height: 100vh;
  }
  .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }
  .hero-stage-wrap {
    height: 100vh;
    min-height: 520px;
    margin-top: 0;
  }
  .world-canvas {
    inset: -4% -28%;
    width: 156%;
    height: 108%;
  }
  .world-chapter,
  .world-chapter.right {
    left: 24px;
    right: 24px;
    top: auto;
    bottom: 12vh;
    width: auto;
    text-align: left;
  }
  .world-chapter.center {
    left: 50%;
    right: auto;
    bottom: 11vh;
    width: calc(100% - 48px);
    text-align: center;
  }
  .world-chapter h2 {
    font-size: clamp(34px, 10vw, 48px);
  }
  .world-chapter p {
    font-size: 14px;
    line-height: 1.55;
    margin-top: 12px;
  }
  .world-kicker {
    margin-bottom: 10px;
  }
  .world-status {
    bottom: 1%;
    font-size: 8px;
    gap: 10px;
  }
  .world-status i {
    width: 24px;
  }
  .world-scroll {
    display: none;
  }
  .device-story {
    height: 310vh;
  }
  .device-sticky {
    min-height: 560px;
  }
  .device-title {
    top: 5vh;
  }
  .device-title h2 {
    font-size: clamp(31px, 9vw, 44px);
  }
  .mac-scene {
    width: 104vw;
    height: 70vh;
  }
  .macbook {
    padding-bottom: 6%;
  }
  .mac-lid {
    width: 96%;
  }
  .mac-frame {
    padding: 7px;
    border-radius: 13px 13px 7px 7px;
  }
  .mac-screen {
    border-radius: 8px 8px 3px 3px;
  }
  .mac-toolbar {
    height: 30px;
    padding: 0 10px;
    font-size: 8px;
  }
  .mac-content {
    padding: 13px 12px 14px;
    height: calc(100% - 30px);
  }
  .mac-kicker {
    font-size: 8px;
    margin-bottom: 7px;
  }
  .mac-content h3 {
    font-size: 22px;
    line-height: 1.04;
    margin-bottom: 12px;
  }
  .mac-services {
    gap: 6px;
    grid-template-rows: repeat(3, minmax(42px, 1fr));
  }
  .mac-service {
    padding: 8px;
    gap: 8px;
    border-radius: 8px;
  }
  .mac-service i {
    width: 23px;
    height: 23px;
    border-radius: 6px;
    font-size: 8px;
  }
  .mac-service strong {
    font-size: 11px;
    line-height: 1.12;
  }
  .mac-service span {
    display: none;
  }
  .service-showcase {
    height: 560vh;
  }
  .service-showcase-sticky {
    min-height: 560px;
  }
  .service-showcase-head {
    left: 24px;
    top: 6vh;
    width: calc(100% - 48px);
  }
  .service-showcase-head h2 {
    font-size: 34px;
  }
  .service-showcase-head p {
    font-size: 14px;
    margin-top: 8px;
  }
  .service-viewport {
    top: 25vh;
    bottom: 8vh;
  }
  .service-track {
    gap: 12px;
    padding: 0 24px;
  }
  .service-slide {
    width: 86vw;
    border-radius: 18px;
  }
  .service-slide-copy {
    padding: 18px 18px 12px;
    display: block;
  }
  .service-slide-copy h3 {
    font-size: 25px;
    margin-top: 5px;
  }
  .service-slide-copy p {
    font-size: 13px;
    line-height: 1.45;
    margin-top: 7px;
  }
  .service-art {
    margin: 0 8px 8px;
    border-radius: 12px;
  }
  .art-body {
    padding: 14px;
  }
  .service-progress {
    left: 24px;
  }
  .service-inspect {
    padding: 0 0 70px;
  }
  .inspect-wrap {
    width: calc(100% - 28px);
  }
  .inspect-title {
    font-size: 38px;
    margin-bottom: 26px;
  }
  .inspect-bridge {
    min-height: 82px;
    padding: 15px 14px 15px 18px;
    margin-bottom: 14px;
    border-radius: 15px;
    gap: 10px;
  }
  .inspect-bridge-main {
    gap: 12px;
  }
  .inspect-bridge small {
    font-size: 8px;
  }
  .inspect-bridge p {
    font-size: 15px;
    line-height: 1.25;
  }
  .inspect-bridge-hint {
    display: none;
  }
  .inspect-receiver {
    width: 11px;
    height: 11px;
  }
  .inspect-shell {
    height: 760px;
    min-height: 0;
    border-radius: 22px;
  }
  .inspect-left {
    left: 14px;
    right: 14px;
    top: 18px;
    bottom: auto;
    width: auto;
    display: block;
  }
  .inspect-menu {
    flex-direction: row;
    align-items: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .inspect-menu::-webkit-scrollbar {
    display: none;
  }
  .inspect-item {
    flex: none;
  }
  .inspect-item.on {
    width: calc(100vw - 58px);
  }
  .inspect-tab {
    flex: none;
    min-height: 44px;
    padding: 0 15px 0 10px;
    font-size: 13px;
    gap: 8px;
  }
  .inspect-tab b {
    width: 21px;
    height: 21px;
    font-size: 13px;
  }
  .inspect-desc {
    padding: 17px 18px;
    border-radius: 15px;
    font-size: 14px;
    min-height: 112px;
  }
  .inspect-nav {
    display: none;
  }
  .inspect-stage {
    inset: 330px 10px 10px;
  }
  .inspect-visual {
    inset: 0;
  }
  .inspect-visual .service-art {
    border-radius: 16px;
    height: 100%;
  }
  .inspect-index {
    top: auto;
    bottom: 18px;
    right: 20px;
  }
  .service-box-flow {
    padding-top: 12px;
  }
  .service-flow-head {
    margin-bottom: 24px;
    font-size: 8px;
    padding: 10px 14px;
  }
  .service-flow-lines {
    left: 50%;
    width: 54px;
    top: calc(-50vh + 22px);
  }
  .service-flow-lines i:not(:nth-child(3)) {
    height: calc(50vh + 17px);
  }
  .service-flow-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 0;
  }
  .service-flow-card {
    min-height: 0;
    padding: 22px 20px;
    border-radius: 18px;
  }
  .service-flow-card::before,
  .service-flow-card:nth-child(odd)::before,
  .service-flow-card:nth-child(even)::before,
  .service-flow-card::after,
  .service-flow-card:nth-child(odd)::after,
  .service-flow-card:nth-child(even)::after {
    display: none;
  }
  .service-card-top {
    margin-bottom: 22px;
  }
  .service-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }
  .service-flow-card h3 {
    font-size: 25px;
  }
  .service-flow-card p {
    font-size: 14px;
  }
  .service-card-tags {
    margin-top: 17px;
    margin-bottom: 18px;
  }
  .service-card-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 14px;
  }
  .service-card-cta,
  .service-card-quote {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    text-align: center;
  }
  .service-card-sublinks {
    gap: 10px 14px;
    margin-top: 12px;
    padding-top: 10px;
  }
  .service-sublink {
    font-size: 12.5px;
  }
  .product-bar {
    height: 32px;
    padding: 0 10px;
    font-size: 8px;
  }
  .product-bar i {
    width: 6px;
    height: 6px;
  }
  .product-page {
    inset: 32px 0 0;
  }
  .web-nav {
    height: 48px;
    padding: 0 12px;
    gap: 10px;
  }
  .web-nav span {
    display: none;
  }
  .web-nav button {
    padding: 7px 10px;
    font-size: 9px;
  }
  .web-logo {
    font-size: 14px;
  }
  .web-hero {
    height: calc(100% - 48px);
    padding: 16px;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 10px;
  }
  .web-hero h4 {
    font-size: 24px;
  }
  .web-hero p {
    font-size: 10px;
    margin-top: 8px;
  }
  .web-cta {
    margin-top: 11px;
    padding: 8px 11px;
    font-size: 9px;
  }
  .web-photo {
    height: 72%;
    border-radius: 14px;
  }
  .dashboard-ui {
    grid-template-columns: 92px 1fr;
  }
  .dash-side {
    padding: 12px 7px;
  }
  .dash-brand {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .dash-side span {
    font-size: 8px;
    padding: 7px 6px;
    margin: 3px 0;
  }
  .dash-main {
    padding: 12px;
  }
  .dash-head {
    margin-bottom: 10px;
  }
  .dash-head h4 {
    font-size: 16px;
  }
  .dash-head b {
    font-size: 7px;
    padding: 5px;
  }
  .dash-kpis {
    gap: 5px;
  }
  .dash-kpi {
    padding: 8px;
  }
  .dash-kpi small {
    font-size: 7px;
  }
  .dash-kpi strong {
    font-size: 15px;
  }
  .dash-chart {
    margin-top: 7px;
    padding: 9px;
    gap: 4px;
  }
  .board-ui {
    padding: 12px;
  }
  .board-head {
    margin-bottom: 9px;
  }
  .board-head h3 {
    font-size: 17px;
  }
  .board-head span {
    font-size: 8px;
    padding: 6px;
  }
  .board-cols {
    gap: 5px;
  }
  .board-col {
    padding: 7px;
  }
  .board-col h4 {
    font-size: 8px;
    margin-bottom: 6px;
  }
  .task {
    padding: 7px;
    margin-bottom: 5px;
  }
  .task b {
    font-size: 8px;
  }
  .task small {
    font-size: 6px;
    margin-top: 4px;
  }
  .task i {
    font-size: 6px;
    margin-top: 5px;
    padding: 3px;
  }
  .seo-ui {
    padding: 12px;
  }
  .seo-head h4 {
    font-size: 17px;
  }
  .seo-grid {
    gap: 6px;
    margin-top: 8px;
  }
  .seo-score-card,
  .seo-traffic {
    padding: 9px;
  }
  .seo-ring {
    margin: 8px auto;
  }
  .seo-ring b {
    font-size: 24px;
  }
  .seo-traffic strong {
    font-size: 18px;
  }
  .ai-ui {
    grid-template-columns: 92px 1fr;
  }
  .ai-history {
    padding: 12px 7px;
  }
  .ai-history h4 {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .ai-history span {
    font-size: 7px;
    padding: 6px;
  }
  .ai-chat {
    padding: 12px;
  }
  .ai-question {
    font-size: 9px;
    padding: 9px;
  }
  .ai-response {
    font-size: 9px;
    padding: 11px;
    margin-top: 9px;
  }
  .ai-sources i {
    font-size: 6px;
  }
  .flow-ui {
    padding: 12px;
  }
  .flow-head h4 {
    font-size: 17px;
  }
  .flow-live {
    font-size: 7px;
    padding: 5px;
  }
  .flow-canvas {
    gap: 4px;
    margin-top: 9px;
  }
  .flow-app {
    width: 60px;
    border-radius: 11px;
    font-size: 8px;
  }
  .flow-app b {
    font-size: 13px;
  }
  .hero-charge .charge-orb {
    width: min(76vw, 320px);
  }
  .charge-stem {
    width: 54px;
  }
  .charge-copy {
    bottom: 7vh;
    width: calc(100% - 28px);
  }
  .charge-copy .eyebrow {
    font-size: 9px;
    margin-bottom: 11px;
  }
  .charge-copy h2 {
    font-size: clamp(36px, 11vw, 49px);
  }
  .charge-copy p {
    font-size: 13px;
    max-width: 38ch;
    margin-top: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero {
    height: auto;
    min-height: 100vh;
    padding-bottom: 40px;
  }
  .hero-in {
    position: relative;
    height: auto;
    min-height: 520px;
  }
  .world-wrap {
    height: auto;
    margin-top: 0;
  }
  .hero-stage-wrap {
    position: relative;
    height: 72vh;
  }
  .world-chapter {
    display: none;
  }
  .hero-charge {
    display: none;
  }
  .charge-halo,
  .charge-ring,
  .charge-stem i,
  .service-flow-lines i::after {
    animation: none !important;
  }
  .service-flow-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .device-story {
    height: auto;
    padding: 90px 0;
  }
  .device-sticky {
    position: relative;
    height: 700px;
  }
  .device-title {
    opacity: 1;
    transform: translateX(-50%);
  }
  .mac-scene {
    opacity: 1;
    transform: none;
  }
  .mac-lid {
    transform: none;
  }
  .mac-screen {
    opacity: 1;
  }
  .mac-service {
    opacity: 1;
    transform: none;
  }
  .service-showcase {
    height: auto;
    padding: 90px 0;
  }
  .service-showcase-sticky {
    position: relative;
    height: auto;
    min-height: 0;
  }
  .service-showcase-head {
    position: relative;
    left: auto;
    top: auto;
    margin: 0 24px 32px;
  }
  .service-viewport {
    position: relative;
    top: auto;
    bottom: auto;
    overflow-x: auto;
  }
  .service-track {
    transform: none !important;
  }
  .service-slide {
    height: 620px;
    opacity: 1;
    transform: none;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .dev {
    transform: translate(-50%, -50%)
      translate(calc(var(--tx, 0px) * 0.7), calc(var(--ty, 0px) * 0.7)) scale(1) !important;
  }
  .dev-lbl,
  .hero-conn {
    opacity: 1 !important;
  }
}

@media (max-width: 991px) {
  .service-flow-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
