    :root {
      --brand-dark: #002031;
      --brand-light: #F4F4F4;
      --hero-cover-overlap: 100svh;
      --font-arwan: "Aquire", "aquire", "Sora", "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      --ink-rgb: 0, 32, 49;
      --paper-rgb: 244, 244, 244;
      --bg: #F4F4F4;
      --bg-soft: rgba(var(--ink-rgb), 0.06);
      --panel: rgba(var(--paper-rgb), 0.92);
      --panel-border: rgba(var(--ink-rgb), 0.18);
      --text: var(--brand-dark);
      --muted: rgba(var(--ink-rgb), 0.66);
      --brand: var(--brand-dark);
      --brand-2: rgba(var(--ink-rgb), 0.82);
      --ok: rgba(var(--ink-rgb), 0.82);
      --warn: rgba(var(--ink-rgb), 0.82);
      --shadow: 0 16px 36px rgba(var(--ink-rgb), 0.12);
      --radius-sm: 14px;
      --radius-md: 18px;
      --radius-lg: 22px;
      --surface-border: rgba(var(--ink-rgb), .14);
      --surface-shadow: 0 12px 28px rgba(var(--ink-rgb), .09);
      --surface-shadow-hover: 0 18px 36px rgba(var(--ink-rgb), .12);
      --surface-soft: linear-gradient(160deg, rgba(var(--paper-rgb), .98), rgba(var(--paper-rgb), .92));
    }

    * { box-sizing: border-box; }

    html, body { height: 100%; }

body {
  margin: 0;
      background: #F4F4F4;
      color: var(--text);
      font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-top: 74px;
}

    a { color: inherit; }

    .page-noise {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
      opacity: .26;
      mix-blend-mode: soft-light;
    }

    .page-grid {
      display: none;
    }

    .shell {
      width: min(1200px, calc(100% - 40px));
      margin: 0 auto;
    }

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: #f4f4f4;
  border-bottom: 0;
  transition: padding .24s ease, transform .24s ease;
}

body.nav-hidden .topbar {
  transform: translateY(-100%);
}

main {
  --afterHeroY: 0px;
}

.hero-stage + .section {
  transform: none;
  will-change: auto;
}

.topbar-inner {
  height: 74px;
  display: flex;
      align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  background: #f4f4f4;
  border-bottom: 0;
  transition: border-radius .24s ease, border .24s ease, box-shadow .24s ease, background .24s ease;
}

body.nav-mega-open .topbar-inner {
  border-bottom-color: transparent;
  box-shadow: none;
}

body.nav-mega-open .topbar-inner,
body.nav-mega-open .services-mega {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
}

body.nav-floating .topbar {
  padding: 0;
  background: #f4f4f4;
  border-bottom-color: transparent;
}

body.nav-floating.nav-mega-open .topbar {
  padding-bottom: 0;
}

body.nav-floating .topbar-inner {
  height: 74px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #f4f4f4;
}

body.nav-floating.nav-mega-open .topbar-inner {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
      gap: 20px;
      color: var(--muted);
      font-size: 14px;
    }

.nav a {
  text-decoration: none;
  transition: color .16s ease;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-link-btn {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0;
}

.services-mega {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  max-height: 0;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  transition: opacity .2s ease, transform .2s ease, max-height .25s ease, visibility .2s ease;
  background: rgba(var(--paper-rgb), .95);
  border-radius: 0 0 20px 20px;
  border: 1px solid transparent;
  border-top: 0;
}

.services-mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: min(78vh, 680px);
  border-color: rgba(var(--ink-rgb), .14);
  box-shadow: 0 20px 34px rgba(var(--ink-rgb), .12);
}

.services-mega-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 14px;
  max-width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 24px 18px;
  align-items: center;
}

.mega-column {
  display: grid;
  gap: 4px;
}

.mega-column-title {
  margin: 4px 10px 8px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), .56);
  font-weight: 700;
}

.services-mega-item {
  display: grid;
  gap: 4px;
  padding: 12px 10px;
  border-radius: 10px;
  text-decoration: none;
}

.services-mega-item strong {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  line-height: 1.12;
  color: rgba(var(--ink-rgb), .94);
}

.services-mega-item span {
  font-size: 13px;
  color: rgba(var(--ink-rgb), .64);
}

.mega-lottie {
  display: grid;
  place-items: center;
  min-height: 280px;
}

.mega-lottie dotlottie-wc {
  width: min(300px, 100%);
  height: min(300px, 100%);
}

.services-mega-item:hover {
  background: rgba(var(--ink-rgb), .06);
}

.nav a:hover { color: var(--text); }

.nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 900;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(var(--ink-rgb), .24);
  background: rgba(var(--paper-rgb), .92);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  background: rgba(var(--ink-rgb), .88);
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s ease;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 68px 0 0;
  background: #f4f4f4;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
  z-index: 108;
}

.mobile-menu-panel {
  position: fixed;
  top: 68px;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 109;
  background: #f4f4f4;
  border: 1px solid rgba(var(--ink-rgb), .12);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 18px 36px rgba(var(--ink-rgb), .14);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease, visibility .22s ease;
  overflow-y: auto;
}

.mobile-menu-nav {
  padding: 16px 16px 24px;
  display: grid;
  gap: 10px;
}

.mobile-menu-link {
  text-decoration: none;
  color: rgba(var(--ink-rgb), .9);
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(var(--ink-rgb), .14);
  border-radius: 12px;
  padding: 12px 14px;
  background: #f4f4f4;
}

.mobile-submenu {
  border: 1px solid rgba(var(--ink-rgb), .14);
  border-radius: 14px;
  background: #f4f4f4;
  padding: 6px 10px 10px;
}

.mobile-submenu summary {
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--ink-rgb), .92);
  padding: 8px 4px;
}

.mobile-submenu summary::-webkit-details-marker {
  display: none;
}

.mobile-submenu a {
  display: block;
  text-decoration: none;
  color: rgba(var(--ink-rgb), .72);
  font-size: 14px;
  padding: 8px 4px;
  border-top: 1px solid rgba(var(--ink-rgb), .08);
}

.mobile-menu-cta {
  background: linear-gradient(135deg, rgba(var(--ink-rgb), .94), rgba(var(--ink-rgb), .78));
  border-color: rgba(var(--ink-rgb), .2);
  color: #f4f4f4;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open .mobile-menu-backdrop {
  opacity: 1;
  visibility: visible;
}

body.mobile-menu-open .mobile-menu-panel {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.mobile-menu-open .topbar-inner {
  border-bottom-color: transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: #f4f4f4;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-blur-overlay {
  position: fixed;
  inset: 0;
  background: rgba(var(--paper-rgb), .24);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 90;
  pointer-events: none;
}

body.nav-mega-open .page-blur-overlay {
  opacity: 1;
  visibility: visible;
}

    .btn {
      border: 1px solid rgba(var(--ink-rgb), .24);
      color: var(--text);
      background: rgba(var(--paper-rgb), .92);
      border-radius: 12px;
      min-height: 44px;
      padding: 0 18px;
      font-size: 14px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(var(--ink-rgb), .14);
      border-color: rgba(var(--ink-rgb), .38);
    }

    .btn-primary {
      background: linear-gradient(135deg, rgba(var(--ink-rgb), .94), rgba(var(--ink-rgb), .78));
      border-color: rgba(var(--ink-rgb), .28);
      color: var(--brand-light);
      font-weight: 700;
    }

    .btn-ghost {
      background: rgba(var(--paper-rgb), .72);
      border-color: rgba(var(--ink-rgb), .3);
      color: rgba(var(--ink-rgb), .88);
    }

    .hero-stage {
      position: relative;
      height: 230svh;
      z-index: 1;
      display: block;
      padding: 0;
      overflow: visible;
    }

    .hero {
      position: relative;
      position: sticky;
      top: 74px;
      min-height: calc(100svh - 74px);
      display: grid;
      align-items: center;
      overflow: visible;
      padding: 84px 0 72px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: -22% -10%;
      background:
        radial-gradient(45% 42% at 50% 40%, rgba(var(--ink-rgb), .14), transparent 78%),
        linear-gradient(112deg, rgba(var(--ink-rgb), .05), transparent 44%);
      opacity: .5;
      pointer-events: none;
      z-index: 1;
    }

    .hero-orb {
      position: absolute;
      width: min(700px, 78vw);
      height: min(700px, 78vw);
      border-radius: 999px;
      left: 50%;
      top: 36%;
      transform: translate3d(-50%, -50%, 0);
      background: radial-gradient(circle at 40% 35%, rgba(var(--ink-rgb), .18), rgba(var(--ink-rgb), .08) 42%, rgba(0,0,0,0) 75%);
      filter: blur(24px);
      opacity: .8;
      pointer-events: none;
      will-change: transform;
    }

    .hero-scan {
      position: absolute;
      inset: -40% -80%;
      background: linear-gradient(90deg, transparent, rgba(var(--ink-rgb), .22), transparent);
      transform: rotate(16deg) translateX(var(--scanX, -120%));
      opacity: .16;
      filter: blur(2px);
      mix-blend-mode: screen;
      pointer-events: none;
    }

    .hero-mountain {
      position: absolute;
      inset: -4% -6% -2%;
      width: auto;
      height: auto;
      opacity: .88;
      transform: none;
      pointer-events: none;
      will-change: transform;
      z-index: 2;
      mix-blend-mode: multiply;
      filter: contrast(118%);
    }

    .hero-mountain-canvas {
      width: 100%;
      height: 100%;
      display: block;
      -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 72%, rgba(0, 0, 0, .5) 86%, transparent 100%);
      mask-image: linear-gradient(to bottom, #000 0%, #000 72%, rgba(0, 0, 0, .5) 86%, transparent 100%);
    }

    .hero-brand { display: none; }

    .hero-brand-topline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 26px;
      border-radius: 999px;
      margin: 0 0 18px;
      border: 1px solid rgba(var(--ink-rgb), .12);
      background: rgba(var(--paper-rgb), .78);
      color: rgba(var(--ink-rgb), .70);
      font-size: clamp(11px, .95vw, 14px);
      letter-spacing: .22em;
      text-transform: uppercase;
      backdrop-filter: blur(7px);
      -webkit-backdrop-filter: blur(7px);
      box-shadow: 0 10px 24px rgba(var(--ink-rgb), .08);
    }

    .hero-brand-word {
      margin: 0;
      font-size: clamp(74px, 13.2vw, 190px);
      line-height: .88;
      letter-spacing: var(--brandTrack, .07em);
      position: relative;
      display: inline-block;
      filter: blur(var(--brandBlur, 0px));
      will-change: filter, letter-spacing;
    }

    .hero-brand-word-main,
    .hero-brand-word-pixel {
      font-family: var(--font-arwan);
      font-weight: 800;
      line-height: .88;
      letter-spacing: inherit;
      display: block;
      white-space: nowrap;
    }

.hero-brand-word-main {
  color: rgba(var(--ink-rgb), var(--brandO, .28));
  text-shadow: 0 0 26px rgba(var(--ink-rgb), .14);
  font-weight: 800;
}

.hero-brand-word-pixel {
      position: absolute;
      inset: 0;
      color: transparent;
      background:
        repeating-linear-gradient(0deg, rgba(var(--ink-rgb), .92) 0 5px, rgba(var(--ink-rgb), .62) 5px 10px),
        repeating-linear-gradient(90deg, rgba(var(--ink-rgb), .95) 0 6px, rgba(var(--ink-rgb), .68) 6px 12px);
      background-blend-mode: multiply;
      -webkit-background-clip: text;
      background-clip: text;
      opacity: var(--pixelO, 0);
      transform: translate3d(0, 0, 0) scale(1.006);
      filter: contrast(145%) saturate(120%);
      mix-blend-mode: multiply;
  will-change: opacity;
}

/* Safari rendering fallback for the ARWAN wordmark */
@supports (-webkit-touch-callout: none) or (font: -apple-system-body) {
  .hero-brand-word-main {
    text-shadow: 0 0 10px rgba(var(--ink-rgb), .12);
    filter: none;
  }

  .hero-brand-word-pixel {
    mix-blend-mode: normal;
    opacity: calc(var(--pixelO, 0) * .55);
  }
}

    .hero-brand-line {
      margin: 10px 0 0;
      font-size: clamp(13px, 1.15vw, 18px);
      letter-spacing: .03em;
      text-transform: none;
      color: rgba(var(--ink-rgb), var(--brandSLine, .44));
      font-weight: 600;
      max-width: min(760px, 90vw);
      margin-left: auto;
      margin-right: auto;
      text-wrap: balance;
    }

    .hero-grid {
      position: relative;
      z-index: 4;
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      align-items: center;
      justify-items: center;
      text-align: center;
      opacity: 1;
      transform: none;
      transition: none;
    }

    .hero-grid > .reveal {
      padding-left: 0;
      max-width: 900px;
      margin-top: -58px;
    }

    .hero.is-final .hero-grid { opacity: 1 !important; transform: none !important; pointer-events: auto; }

    .eyebrow {
      margin: 0 0 16px;
      font-size: 12px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 30px;
      margin: 0 0 18px;
      border-radius: 999px;
      border: 1px solid rgba(var(--ink-rgb), .1);
      background: rgba(255, 255, 255, .58);
      color: rgba(var(--ink-rgb), .54);
      letter-spacing: .24em;
      font-size: clamp(10px, .86vw, 15px);
      font-weight: 600;
      box-shadow: 0 12px 30px rgba(var(--ink-rgb), .08);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      white-space: nowrap;
      max-width: min(96vw, 900px);
    }

h1 {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: .95;
  letter-spacing: -.03em;
  max-width: 19ch;
  text-wrap: balance;
}

.hero-wordmark {
  margin: 0 0 10px;
  font-family: var(--font-arwan);
  font-weight: 500;
  font-size: clamp(70px, 16vw, 220px);
  line-height: .84;
  letter-spacing: .08em;
  color: rgba(var(--ink-rgb), .92);
  text-shadow: 0 6px 18px rgba(var(--ink-rgb), .08);
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(22px) scale(.88);
  filter: blur(8px);
  will-change: opacity, transform, filter;
}

.hero-wordmark::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background:
    linear-gradient(90deg, rgba(var(--ink-rgb), .06), rgba(var(--ink-rgb), .46), rgba(var(--ink-rgb), .06));
  -webkit-background-clip: text;
  background-clip: text;
  clip-path: polygon(0 52%, 100% 42%, 100% 58%, 0 68%);
  animation: heroWordmarkSlice 4.6s ease-in-out infinite;
  pointer-events: none;
}

.hero-subtitle {
  margin: 6px 0 0;
  font-size: clamp(16px, 1.35vw, 24px);
  line-height: 1.25;
  color: rgba(var(--ink-rgb), .74);
  letter-spacing: .03em;
  font-weight: 600;
  opacity: 0;
  transform: translateY(16px);
  will-change: opacity, transform;
}

.hero-grid > .reveal.is-in .hero-wordmark {
  animation: heroWordmarkIntro 1.9s cubic-bezier(.18, .88, .22, 1) .12s forwards;
}

.hero-grid > .reveal.is-in .hero-subtitle {
  animation: heroSubtitleIntro 1.05s cubic-bezier(.2, .9, .2, 1) 2.45s forwards;
}

.hero-title-line {
  display: block;
  white-space: normal;
}

.hero-copy {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.55;
  margin-left: auto;
  margin-right: auto;
}

.hero-interactive {
  width: min(860px, 96vw);
  margin: 22px auto 0;
  padding: 0;
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(260px, 36vw, 420px);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(var(--ink-rgb), .15);
  background:
    linear-gradient(145deg, rgba(var(--paper-rgb), .74), rgba(var(--paper-rgb), .42)),
    radial-gradient(120% 120% at 12% 10%, rgba(var(--ink-rgb), .07), transparent 55%);
  box-shadow: 0 18px 44px rgba(var(--ink-rgb), .14);
  --spot-x: 50%;
  --spot-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

.hero-kinetic {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-kinetic-track {
  position: absolute;
  left: -6%;
  width: 112%;
  display: flex;
  gap: 26px;
  white-space: nowrap;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(var(--ink-rgb), .2);
}

.hero-kinetic-track span {
  display: inline-block;
  font-size: clamp(16px, 1.9vw, 26px);
}

.track-a {
  top: 22%;
  animation: heroTrackLeft 18s linear infinite;
}

.track-b {
  bottom: 26%;
  animation: heroTrackRight 16s linear infinite;
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(var(--paper-rgb), .52), rgba(var(--paper-rgb), 0) 38%);
  mix-blend-mode: screen;
}

.hero-focus-card {
  position: relative;
  z-index: 2;
  width: min(440px, 88vw);
  border-radius: 16px;
  border: 1px solid rgba(var(--ink-rgb), .17);
  background: rgba(var(--paper-rgb), .78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 22px 44px rgba(var(--ink-rgb), .12);
  padding: 20px 22px;
  text-align: left;
  transform: perspective(920px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform .16s ease-out;
}

.hero-focus-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), .52);
  font-weight: 700;
}

.hero-focus-line {
  margin: 8px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.06;
  color: rgba(var(--ink-rgb), .9);
  letter-spacing: -.015em;
}

#heroMorphWord {
  display: inline-block;
  min-width: 9.2ch;
  color: rgba(var(--ink-rgb), .96);
}

#heroMorphWord.is-changing {
  opacity: .2;
  transform: translateY(2px);
}

.hero-enter {
  position: absolute;
  right: 16px;
  bottom: 14px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(var(--ink-rgb), .66);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(var(--ink-rgb), .34);
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.hero-enter:hover {
  color: rgba(var(--ink-rgb), .95);
  border-color: rgba(var(--ink-rgb), .72);
  transform: translateY(-2px);
}

    .hero-actions {
      margin-top: 26px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
    }

    .hero-panel { display: none; }

    .abstract-module {
      border-radius: 0;
      overflow: visible;
      border: 0;
      background: transparent;
      padding: 0;
    }

    .abstract-stage {
      position: relative;
      height: 320px;
      border-radius: 0;
      border: 0;
      background: transparent;
      overflow: visible;
      --mx: 0px;
      --my: 0px;
      --ax: 0deg;
      --ay: 0deg;
    }

    .abstract-stage::before {
      content: none;
    }

    .abstract-stage::after {
      content: none;
    }

    .abstract-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      pointer-events: none;
    }

    .lottie-wrap {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      transform: none;
      transition: none;
      will-change: transform;
      pointer-events: none;
    }

    .lottie-deploy {
      width: min(120%, 780px);
      height: min(118%, 460px);
      opacity: 1;
      filter: saturate(1.14) contrast(1.1) brightness(1.03);
      mask-image: none;
      -webkit-mask-image: none;
      transform-origin: center center;
      will-change: transform;
      transition: filter .28s ease;
    }

    .abstract-halo {
      display: none;
    }

    @keyframes haloPulse {
      0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .65; }
      50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
    }

    @keyframes stageSpin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .section {
      padding: 84px 0;
    }

.section h2 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 2.7vw, 36px);
  line-height: 1.04;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.section-lead {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.section-lead + .section-lead {
  margin-top: 6px;
}

.section-head {
  margin-bottom: 24px;
}

:is(.service-step, .solution-card, .partner-card, .value-card, .cta-box, .about-story-card, .about-block, .about-cta-box, .service-plan-card, .service-feature-card, .service-compare-card) {
  border-color: var(--surface-border);
  box-shadow: var(--surface-shadow);
}

:is(.service-step, .solution-card, .partner-card, .value-card, .about-block, .service-plan-card, .service-feature-card, .service-compare-card) {
  transition: box-shadow .24s ease, border-color .24s ease, transform .24s ease;
}

:is(.service-step, .solution-card, .partner-card, .value-card, .about-block, .service-plan-card, .service-feature-card, .service-compare-card):hover {
  border-color: rgba(var(--ink-rgb), .22);
  box-shadow: var(--surface-shadow-hover);
  transform: translateY(-2px);
}

.services-scroll {
  --services-top: 108px;
  --services-card-h: 280px;
  display: grid;
  grid-template-columns: minmax(340px, 0.56fr) minmax(0, 0.92fr);
  gap: 20px;
  align-items: start;
  min-height: auto;
}

.services-copy {
  position: sticky;
  top: 150px;
  padding: 4px 0 0;
}

.services-copy .eco-link {
  display: inline-flex;
  margin-top: 16px;
}

.services-flow {
  position: relative;
  top: auto;
  display: block;
  height: auto;
  width: 100%;
}

.services-steps {
  position: relative;
  height: auto;
  overflow: visible;
  display: grid;
  gap: 16px;
}

.service-step {
  position: sticky;
  top: var(--services-top);
  height: var(--services-card-h);
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  border: 1px solid rgba(var(--ink-rgb), .14);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  box-shadow: var(--surface-shadow);
  padding: 10px;
  opacity: 1;
  transform: none !important;
  transition: box-shadow .2s ease, border-color .2s ease;
  pointer-events: auto;
  overflow: hidden;
}

@media (min-width: 981px) {
  .services-flow {
    max-width: 560px;
    justify-self: end;
  }
}

.service-step:hover {
  border-color: rgba(var(--ink-rgb), .24);
  box-shadow: var(--surface-shadow-hover);
  transform: none !important;
}

.services-steps .service-step:nth-child(1) { z-index: 1; }
.services-steps .service-step:nth-child(2) { z-index: 2; }
.services-steps .service-step:nth-child(3) { z-index: 3; }
.services-steps .service-step:nth-child(4) { z-index: 4; }
.services-steps .service-step:nth-child(5) { z-index: 5; }
.services-steps .service-step:nth-child(6) { z-index: 6; }

.service-step h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.03;
  letter-spacing: -.02em;
}

.service-step p {
  margin: 0;
  color: rgba(var(--ink-rgb), .68);
  line-height: 1.48;
  font-size: 13px;
}

.service-step-media {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(var(--ink-rgb), .16);
  margin-bottom: 6px;
}


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

.eco-card {
  border-radius: 16px;
  border: 1px solid rgba(var(--ink-rgb), .14);
  background: linear-gradient(160deg, rgba(var(--paper-rgb), .97), rgba(var(--paper-rgb), .91));
  box-shadow: 0 10px 26px rgba(var(--ink-rgb), .07);
  padding: 18px;
  min-height: 174px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eco-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.eco-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.eco-list {
  margin: 4px 0 0;
  padding-left: 18px;
  color: rgba(var(--ink-rgb), .76);
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.eco-link {
  margin-top: auto;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  color: rgba(var(--ink-rgb), .9);
}

.eco-link::after {
  content: "  +";
}

.solutions-showcase {
  --solutions-gutter: clamp(16px, 3vw, 56px);
  margin-top: 20px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
  border-radius: 0;
  padding: 22px 0;
  background: linear-gradient(180deg, #00192a 0%, #002031 100%);
  border: 1px solid rgba(127, 227, 255, .20);
  box-shadow: 0 18px 36px rgba(0, 32, 49, .25);
  display: grid;
  gap: 16px;
}

.solutions-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  transform: translate3d(0, var(--solutions-parallax, 0px), 0);
  transition: transform 80ms linear;
}

.solutions-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.flow {
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 8 14;
  opacity: .34;
  animation: flowStroke 12s linear infinite;
}

.flow-1 { stroke: rgba(127, 227, 255, .70); }
.flow-2 {
  stroke: rgba(106, 200, 255, .58);
  animation-duration: 16s;
}
.flow-3 {
  stroke: rgba(176, 230, 255, .45);
  animation-duration: 20s;
}

@keyframes flowStroke {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -220; }
}

.solutions-head {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 8px;
  padding: 0;
  position: relative;
  z-index: 2;
}

.solutions-head .eyebrow {
  color: rgba(244, 248, 251, .70);
}

.solutions-status {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(127, 227, 255, .40);
  background: rgba(0, 44, 67, .40);
  color: rgba(244, 248, 251, .88);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.solutions-status.is-paused {
  background: rgba(7, 30, 46, .62);
  border-color: rgba(176, 230, 255, .62);
}

.solutions-head h2 {
  margin: 0 0 12px;
  color: #f4f8fb;
  max-width: 28ch;
  font-size: clamp(30px, 3.1vw, 48px);
  line-height: 1.04;
}

.solutions-head .section-lead {
  color: rgba(244, 248, 251, .78);
  max-width: 62ch;
}

.solutions-carousel {
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-inline: var(--solutions-gutter);
}

.solutions-track {
  display: flex;
  width: max-content;
  animation: solutionsMarquee var(--solutions-duration, 38s) linear infinite;
  will-change: transform;
}

.solutions-track-reverse {
  animation-direction: reverse;
  animation-duration: var(--solutions-duration-reverse, 44s);
}

.solutions-seq {
  --solutions-gap: 14px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 360px);
  gap: var(--solutions-gap);
  padding-right: calc(var(--solutions-gap) + var(--solutions-gutter));
}

.solutions-carousel:hover .solutions-track,
.solutions-carousel:focus-within .solutions-track {
  animation-play-state: paused;
}

@keyframes solutionsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.solution-card {
  position: relative;
  min-height: 190px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(127, 227, 255, .24);
  background: var(--surface-soft);
  box-shadow: var(--surface-shadow);
  padding: 18px 18px 42px;
  overflow: hidden;
}

.solution-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-family: "Sora", sans-serif;
  line-height: 1.15;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 30ch;
}

.solution-num {
  position: absolute;
  right: 14px;
  bottom: 8px;
  font-family: "Sora", sans-serif;
  font-size: 44px;
  letter-spacing: -.02em;
  color: rgba(var(--ink-rgb), .12);
  font-weight: 700;
}

.card-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(var(--ink-rgb), .72);
  margin-bottom: 10px;
}

.partners-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.partner-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--ink-rgb), .16);
  background: var(--surface-soft);
  box-shadow: var(--surface-shadow);
  padding: 22px 18px;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.partner-logo {
  width: clamp(128px, 12vw, 190px);
  height: 42px;
  object-fit: contain;
  object-position: left center;
  display: block;
  filter: saturate(1.03) contrast(1.03);
}

.partner-sub {
  margin: 2px 0 0;
  color: rgba(var(--ink-rgb), .62);
  font-size: 14px;
  line-height: 1.5;
  max-width: 32ch;
}

.process {
  position: relative;
  z-index: 20;
  margin-top: 0;
  transform: none;
  will-change: transform;
  border-radius: 0;
  box-shadow: none;
  border-top: 0;
  background: #002031;
  color: #dfe8ee;
  overflow: hidden;
}

.process::before,
.process::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.process::before {
  width: min(52vw, 760px);
  aspect-ratio: 1 / 1;
  left: -20%;
  top: 12%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(127, 227, 255, .18) 0%, rgba(127, 227, 255, 0) 72%);
}

.process::after {
  width: min(44vw, 620px);
  aspect-ratio: 1 / 1;
  right: -14%;
  bottom: -22%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(67, 152, 221, .20) 0%, rgba(67, 152, 221, 0) 72%);
}

.hero-cover {
  width: 100%;
  margin: calc(-1 * var(--hero-cover-overlap)) 0 0;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(40px, 7vw, 86px) 0;
  background:
    radial-gradient(120% 90% at 50% 12%, rgba(255, 255, 255, .24), rgba(255, 255, 255, .12) 58%, rgba(255, 255, 255, .18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .26), rgba(255, 255, 255, .2));
  backdrop-filter: blur(22px) saturate(118%);
  -webkit-backdrop-filter: blur(22px) saturate(118%);
  border-top: 1px solid rgba(255, 255, 255, .26);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  position: relative;
  z-index: 30;
}

.hero-cover-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-cover h2 {
  margin: 0 0 16px;
  color: rgba(0, 32, 49, .92);
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: .94;
}

.hero-cover .section-lead {
  margin: 0 auto;
  max-width: 70ch;
  color: rgba(0, 32, 49, .78);
  font-size: clamp(15px, 1.35vw, 20px);
}

.hero-cover-note {
  margin: 16px 0 0;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0, 32, 49, .54);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: start;
  position: relative;
  z-index: 2;
}

.process-copy.reveal {
  max-width: 760px;
}

.process-grid-chat {
  grid-template-columns: 1fr;
}

.process-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: 6px;
  justify-items: center;
}

.process-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 244, 244, .56);
}

.process h2 {
  color: #f4f8fb;
  max-width: 22ch;
  text-wrap: balance;
  line-height: 1.02;
}

.process-lead {
  margin: 0;
  color: rgba(244, 244, 244, .68);
  max-width: 54ch;
  line-height: 1.72;
  font-size: clamp(15px, 1.4vw, 19px);
}

.process-highlights {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.process-highlights li {
  border: 1px solid rgba(127, 227, 255, .28);
  background: rgba(2, 36, 57, .62);
  color: rgba(240, 248, 252, .92);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: .03em;
  box-shadow: inset 0 1px 0 rgba(244, 244, 244, .08);
}

.process-number {
  margin: 20px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(98px, 16vw, 220px);
  line-height: .88;
  letter-spacing: -.04em;
  color: rgba(244, 244, 244, .10);
}

.process-lottie {
  display: grid;
  place-items: center;
  min-height: 410px;
  width: min(600px, 100%);
  justify-self: end;
  align-self: center;
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(127, 227, 255, .04) 55%, rgba(255, 255, 255, .02));
  border: 1px solid rgba(244, 244, 244, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 22px 48px rgba(0, 10, 24, .34);
  overflow: hidden;
}

.process-lottie::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 22%, rgba(127, 227, 255, .14) 0%, rgba(127, 227, 255, 0) 44%),
    linear-gradient(120deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.process-lottie dotlottie-wc {
  width: min(430px, 92%);
  height: min(420px, 66vh);
  display: block;
  transform: translateY(4px);
}

.process-item {
  width: 100%;
  text-align: left;
  border: 0;
  border-left: 2px solid rgba(244, 244, 244, .14);
  background: transparent;
  color: rgba(244, 244, 244, .74);
  padding: 14px 0 14px 16px;
  cursor: pointer;
}

.process-item:focus-visible {
  outline: 2px solid rgba(244, 244, 244, .5);
  outline-offset: 2px;
}

.process-subtitle {
  display: block;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 244, 244, .45);
  margin-bottom: 6px;
}

.process-title {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: .98;
  letter-spacing: -.02em;
}

.process-panel {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  color: rgba(244, 244, 244, .74);
  font-size: 16px;
  line-height: 1.5;
  transition: max-height .28s ease, opacity .24s ease, margin .24s ease;
}

.process-item.is-active {
  color: rgba(244, 244, 244, .98);
  border-left-color: rgba(244, 244, 244, .82);
}

.process-item.is-active .process-subtitle {
  color: rgba(244, 244, 244, .66);
}

.process-item.is-active .process-panel {
  max-height: 140px;
  opacity: 1;
  margin-top: 12px;
}

.values-title {
  margin: 0;
  text-align: center;
  font-size: clamp(24px, 2.7vw, 36px);
  letter-spacing: .02em;
}

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

.value-card {
  border-radius: 16px;
  border: 1px solid rgba(var(--ink-rgb), .15);
  background: linear-gradient(160deg, rgba(var(--paper-rgb), .98), rgba(var(--paper-rgb), .92));
  padding: 22px 18px;
}

.value-card h3 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1;
}

.value-card p {
  margin: 0;
  color: rgba(var(--ink-rgb), .66);
  line-height: 1.55;
  font-size: 15px;
}

    .cta {
      padding-bottom: 96px;
    }

    .cta-box {
      border-radius: 22px;
      padding: clamp(24px, 4vw, 42px);
      border: 1px solid rgba(var(--ink-rgb), .18);
      background:
        radial-gradient(120% 160% at 100% 0%, rgba(var(--ink-rgb), .10), rgba(var(--paper-rgb), .84) 42%),
        linear-gradient(160deg, rgba(var(--paper-rgb), .96), rgba(var(--paper-rgb), .92));
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 20px;
      align-items: center;
    }

    .cta-box h3 {
      margin: 0 0 10px;
      font-family: "Sora", sans-serif;
      font-size: clamp(28px, 3.4vw, 44px);
      line-height: .98;
      letter-spacing: -.02em;
      max-width: 18ch;
    }

    .cta-box p {
      margin: 0;
      color: rgba(var(--ink-rgb), .66);
      max-width: 52ch;
      line-height: 1.6;
    }

    .hero-scroll-cue {
      position: absolute;
      left: 50%;
      bottom: 22px;
      transform: translateX(-50%);
      z-index: 6;
      display: inline-grid;
      justify-items: center;
      gap: 8px;
      text-decoration: none;
      color: rgba(var(--ink-rgb), .74);
      transition: opacity .24s ease, transform .24s ease;
    }

    .hero-scroll-cue.is-hidden {
      opacity: 0;
      transform: translate(-50%, 10px);
      pointer-events: none;
    }

    .hero-scroll-text {
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .hero-scroll-mouse {
      width: 26px;
      height: 42px;
      border-radius: 20px;
      border: 1.5px solid rgba(var(--ink-rgb), .48);
      display: grid;
      place-items: start center;
      padding-top: 7px;
      background: rgba(var(--paper-rgb), .45);
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
    }

    .hero-scroll-mouse > span {
      width: 4px;
      height: 8px;
      border-radius: 99px;
      background: rgba(var(--ink-rgb), .72);
      animation: heroScrollWheel 1.35s ease-in-out infinite;
    }

    .hero-scroll-arrow {
      width: 9px;
      height: 9px;
      border-right: 2px solid rgba(var(--ink-rgb), .62);
      border-bottom: 2px solid rgba(var(--ink-rgb), .62);
      transform: rotate(45deg);
      animation: heroScrollArrow 1.35s ease-in-out infinite;
    }

    @keyframes heroScrollWheel {
      0% { transform: translateY(0); opacity: .95; }
      75% { transform: translateY(10px); opacity: .2; }
      100% { transform: translateY(0); opacity: .95; }
    }

    @keyframes heroScrollArrow {
      0% { transform: rotate(45deg) translateY(0); opacity: .95; }
      70% { transform: rotate(45deg) translateY(4px); opacity: .36; }
      100% { transform: rotate(45deg) translateY(0); opacity: .95; }
    }

    @keyframes heroWordmarkSlice {
      0%, 100% { transform: translateY(0); opacity: .18; }
      50% { transform: translateY(-2px); opacity: .5; }
    }

    @keyframes heroTrackLeft {
      from { transform: translateX(0); }
      to { transform: translateX(-24%); }
    }

    @keyframes heroTrackRight {
      from { transform: translateX(-24%); }
      to { transform: translateX(0); }
    }

    @keyframes heroWordmarkIntro {
      0% {
        opacity: 0;
        transform: translateY(34px) scale(.78);
        filter: blur(16px);
      }
      55% {
        opacity: 1;
        transform: translateY(-10px) scale(1.08);
        filter: blur(0);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
      }
    }

    @keyframes heroSubtitleIntro {
      from {
        opacity: 0;
        transform: translateY(12px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-wordmark,
      .hero-subtitle {
        opacity: 1;
        transform: none;
        filter: none;
        animation: none !important;
      }
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 12px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity .65s ease, transform .65s ease;
    }

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  border-top: 1px solid rgba(var(--ink-rgb), .16);
  background:
    radial-gradient(130% 180% at 0% 0%, rgba(var(--ink-rgb), .08), transparent 45%),
    linear-gradient(180deg, rgba(var(--paper-rgb), .95), rgba(var(--paper-rgb), .98));
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-brand p {
  margin: 14px 0 0;
  max-width: 40ch;
  color: rgba(var(--ink-rgb), .68);
  line-height: 1.55;
  font-size: 14px;
}

.footer-logo {
  width: min(290px, 90%);
  height: auto;
  display: block;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  letter-spacing: .01em;
  color: rgba(var(--ink-rgb), .92);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-col a {
  text-decoration: none;
  color: rgba(var(--ink-rgb), .68);
  font-size: 14px;
  transition: color .16s ease;
}

.footer-col a:hover {
  color: rgba(var(--ink-rgb), .94);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(var(--ink-rgb), .12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(var(--ink-rgb), .62);
  font-size: 13px;
}

.footer-bottom a {
  text-decoration: none;
  color: rgba(var(--ink-rgb), .82);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  :root {
    --hero-cover-overlap: 96svh;
  }
  .hero-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-grid > .reveal {
    padding-left: 0;
    margin-top: -40px;
  }

  .hero-pill {
    white-space: normal;
    text-wrap: balance;
    padding: 10px 18px;
    line-height: 1.35;
  }

  .hero-interactive {
    margin-top: 18px;
    width: min(760px, 94vw);
  }

  .hero-title-line {
    white-space: normal;
  }

      .hero-stage {
        height: 215svh;
        padding-bottom: 0;
      }

      .hero {
        top: 74px;
        min-height: calc(100svh - 74px);
        padding-top: 78px;
      }

      .hero-mountain {
        opacity: .74;
      }

      .hero-brand { display: none; }

  .lottie-deploy {
    width: min(108%, 640px);
    height: min(106%, 380px);
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .services-scroll {
    --services-top: 86px;
    --services-card-h: 292px;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
  }

  .services-copy {
    position: sticky;
    top: var(--services-top);
    min-height: 0;
    padding: 0 0 12px;
    background: #f4f4f4;
    box-shadow: none;
    border: 0;
    z-index: 20;
  }

  .services-flow {
    position: relative;
    top: auto;
    height: auto;
  }

  .services-steps {
    display: block;
    position: relative;
    height: auto;
    min-height: auto;
  }

  .service-step {
    position: sticky;
    top: calc(var(--services-top) + var(--services-copy-h, 360px) + 12px);
    height: auto;
    min-height: var(--services-card-h);
    margin: 0;
    padding: 10px;
    overflow: hidden;
    pointer-events: auto;
  }

  .services-steps .service-step:nth-child(1) { z-index: 1; }
  .services-steps .service-step:nth-child(2) { z-index: 2; }
  .services-steps .service-step:nth-child(3) { z-index: 3; }
  .services-steps .service-step:nth-child(4) { z-index: 4; }
  .services-steps .service-step:nth-child(5) { z-index: 5; }
  .services-steps .service-step:nth-child(6) { z-index: 6; }

  .service-step h4 {
    line-height: 1.03;
  }

  .service-step-media {
    height: 158px;
  }

  .solutions-showcase {
    padding: 16px 0;
  }

  .solutions-seq {
    grid-auto-columns: minmax(280px, 340px);
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-highlights {
    margin-top: 16px;
    gap: 8px;
  }

  .process-highlights li {
    font-size: 11px;
  }

  .process-number {
    font-size: clamp(84px, 22vw, 160px);
    margin-top: 8px;
  }

  .process-title {
    font-size: clamp(28px, 6.2vw, 42px);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .services-mega-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mega-lottie {
    display: none;
  }

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

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

      .abstract-stage { height: 248px; }
    }

@media (max-width: 760px) {
  :root {
    --hero-cover-overlap: 92svh;
  }
  body { padding-top: 68px; }
  .topbar-inner { height: 68px; }
  .topbar-inner { padding-left: 14px; padding-right: 10px; }
  .nav { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
  .topbar-actions .btn-primary {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }
  .shell { width: min(1200px, calc(100% - 28px)); }
  .mobile-menu-panel { left: 14px; right: 14px; top: 68px; bottom: 10px; }
      .hero-stage { height: 190svh; padding: 0; }
      .hero {
        top: 68px;
        padding-top: 58px;
        min-height: calc(100svh - 68px);
        overflow: visible;
      }
      .hero-mountain {
        inset: 6% -6% -2%;
        opacity: .64;
      }
      .hero-grid > .reveal {
        margin-top: -26px;
      }
      .hero-pill {
        letter-spacing: .14em;
        font-size: clamp(9px, 2.9vw, 12px);
        padding: 8px 14px;
      }
      .hero-interactive {
        width: min(560px, 96vw);
        margin-top: 12px;
      }
      .hero-interactive {
        min-height: clamp(220px, 58vw, 320px);
      }
      .hero-kinetic-track span {
        font-size: clamp(12px, 4.3vw, 18px);
      }
      .hero-focus-card {
        width: min(320px, 88vw);
        padding: 14px 14px;
      }
      .hero-focus-line {
        font-size: clamp(17px, 5vw, 22px);
      }
      .hero-enter {
        font-size: 10px;
        right: 10px;
        bottom: 10px;
      }
      .hero-brand-word { letter-spacing: .05em; }
      .hero-brand-line { max-width: 92vw; margin-left: auto; margin-right: auto; }
  .hero-actions .btn { width: 100%; }
  .hero-cover {
    min-height: 88svh;
    padding: 28px 0;
  }
  .hero-cover h2 {
    font-size: clamp(30px, 9.4vw, 46px);
  }
  .section { padding: 72px 0; }
  .services-scroll {
    --services-top: 74px;
    --services-card-h: 252px;
  }
  .service-step {
    top: calc(var(--services-top) + var(--services-copy-h, 420px) + 12px);
    min-height: var(--services-card-h);
  }
  .services-copy {
    position: sticky;
    top: var(--services-top);
    z-index: 20;
  }
  .abstract-stage { height: 210px; }
  .lottie-deploy {
    width: min(104%, 520px);
    height: min(104%, 290px);
  }

  .solutions-showcase {
    padding: 14px 0;
  }

  .solutions-head {
    width: min(1200px, calc(100% - 28px));
  }

  .solutions-bg {
    --solutions-parallax: 0px;
  }

  .solutions-carousel {
    overflow-x: auto;
    scrollbar-width: thin;
    padding-inline: 14px;
  }

  .solutions-seq {
    grid-auto-columns: minmax(250px, 82vw);
    padding-right: 14px;
  }

  .solutions-status {
    font-size: 11px;
    letter-spacing: .1em;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .solution-card {
    min-height: 160px;
  }

  .process-panel {
    font-size: 16px;
  }

  .process-lottie {
    min-height: 300px;
    width: min(560px, 100%);
    border-radius: 18px;
    justify-self: stretch;
  }

  .process-lottie dotlottie-wc {
    width: min(320px, 82%);
    height: min(300px, 44vh);
  }

  .process {
    margin-top: 0;
    transform: none;
    border-radius: 0;
  }

}

.about-page main {
  display: grid;
  gap: 0;
}

.about-hero {
  padding: 72px 0 78px;
  background: linear-gradient(180deg, #002031 0%, #003049 100%);
  color: #f4f7fa;
}

.about-hero h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: .92;
  letter-spacing: -.03em;
  font-family: var(--font-arwan);
  font-weight: 700;
  color: #f4f7fa;
  text-wrap: balance;
}

.about-hero-line {
  width: 96px;
  height: 4px;
  margin: 20px 0 24px;
  border-radius: 99px;
  background: rgba(244, 247, 250, .9);
}

.about-hero-copy {
  margin: 0;
  max-width: 70ch;
  line-height: 1.72;
  color: rgba(244, 247, 250, .88);
}

.about-pillars {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-pillars li {
  border: 1px solid rgba(244, 247, 250, .24);
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 600;
  color: rgba(244, 247, 250, .94);
  background: rgba(244, 247, 250, .06);
}

.about-story {
  padding: 78px 0;
}

.about-story-card {
  border-radius: 20px;
  border: 1px solid rgba(var(--ink-rgb), .14);
  background: linear-gradient(160deg, rgba(var(--paper-rgb), .98), rgba(var(--paper-rgb), .92));
  box-shadow: 0 14px 28px rgba(var(--ink-rgb), .08);
  padding: clamp(22px, 4vw, 38px);
}

.about-story-logo {
  width: min(210px, 45vw);
  display: block;
  margin: 0 auto 18px;
}

.about-story-card p {
  margin: 0;
  text-align: center;
  line-height: 1.72;
  color: rgba(var(--ink-rgb), .8);
}

.about-story-card p + p {
  margin-top: 14px;
}

.about-purpose {
  padding: 10px 0 84px;
}

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

.about-block {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(var(--ink-rgb), .12);
  background: rgba(var(--paper-rgb), .88);
  box-shadow: 0 12px 26px rgba(var(--ink-rgb), .08);
  padding: 24px;
}

.about-block-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(var(--ink-rgb), .62);
}

.about-block--highlight {
  border-color: rgba(var(--ink-rgb), .18);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(var(--ink-rgb), .08), rgba(var(--paper-rgb), .9) 55%),
    linear-gradient(165deg, rgba(var(--paper-rgb), .98), rgba(var(--paper-rgb), .9));
  box-shadow: 0 18px 34px rgba(var(--ink-rgb), .11);
}

.about-block--highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(var(--ink-rgb), .92), rgba(var(--ink-rgb), .55));
}

.about-block--list {
  background: rgba(var(--paper-rgb), .82);
}

.about-block h2 {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: .98;
  max-width: 13ch;
  text-wrap: balance;
  font-family: var(--font-arwan);
  letter-spacing: .01em;
}

.about-block p {
  margin: 0;
  color: rgba(var(--ink-rgb), .72);
  line-height: 1.65;
}

.about-list {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.about-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(var(--ink-rgb), .76);
  line-height: 1.45;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(var(--ink-rgb), .9);
}

.about-focus {
  padding: 84px 0;
  background: linear-gradient(180deg, #001b2b 0%, #002031 100%);
  color: #f4f7fa;
}

.about-focus-head {
  text-align: center;
  margin-bottom: 28px;
}

.about-focus-head h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.6vw, 34px);
  color: #f4f7fa;
  text-wrap: balance;
}

.about-focus-head p {
  margin: 0;
  color: rgba(244, 247, 250, .78);
}

.about-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-focus-card {
  border-radius: 16px;
  border: 1px solid rgba(244, 247, 250, .18);
  background: linear-gradient(160deg, rgba(244, 247, 250, .08), rgba(244, 247, 250, .03));
  padding: 18px;
  min-height: 172px;
}

.about-focus-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-family: "Sora", sans-serif;
  line-height: 1.2;
}

.about-focus-card p {
  margin: 0;
  color: rgba(244, 247, 250, .82);
  line-height: 1.58;
}

.about-cta {
  padding: 72px 0 84px;
}

.about-cta-box {
  border-radius: 20px;
  border: 1px solid rgba(var(--ink-rgb), .14);
  background: linear-gradient(160deg, rgba(var(--paper-rgb), .98), rgba(var(--paper-rgb), .93));
  box-shadow: 0 14px 30px rgba(var(--ink-rgb), .08);
  padding: clamp(24px, 4vw, 38px);
  text-align: center;
}

.about-cta-box h2 {
  margin: 0 0 12px;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(24px, 2.6vw, 34px);
  text-wrap: balance;
}

.about-cta-box p {
  margin: 0 auto 20px;
  max-width: 70ch;
  color: rgba(var(--ink-rgb), .72);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-purpose-grid {
    grid-template-columns: 1fr;
  }

  .about-focus-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .about-hero {
    padding: 54px 0 62px;
  }

  .about-hero-line {
    margin-top: 16px;
    margin-bottom: 18px;
  }

  .about-story {
    padding: 58px 0;
  }

  .about-purpose {
    padding-bottom: 66px;
  }

  .about-focus {
    padding: 66px 0;
  }

  .about-focus-grid {
    grid-template-columns: 1fr;
  }

  .about-cta {
    padding: 60px 0 72px;
  }
}

.service-page main {
  display: grid;
  gap: 0;
}

.service-hero {
  padding: 82px 0 58px;
  background: linear-gradient(180deg, rgba(var(--paper-rgb), .98), rgba(var(--paper-rgb), .94));
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
  align-items: stretch;
}

.service-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .92;
  letter-spacing: -.03em;
  max-width: 16ch;
}

.service-hero-copy {
  margin: 0;
  color: rgba(var(--ink-rgb), .70);
  max-width: 64ch;
  line-height: 1.65;
}

.service-proof {
  margin: 14px 0 0;
  color: rgba(var(--ink-rgb), .58);
  font-size: 13px;
  letter-spacing: .02em;
}

.service-highlight {
  border-radius: 18px;
  border: 1px solid rgba(var(--ink-rgb), .14);
  background: linear-gradient(160deg, rgba(var(--paper-rgb), .98), rgba(var(--paper-rgb), .92));
  box-shadow: 0 12px 28px rgba(var(--ink-rgb), .08);
  padding: 20px;
}

.service-highlight h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.9vw, 34px);
}

.service-highlight ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(var(--ink-rgb), .78);
  line-height: 1.52;
}

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

.service-plan-card {
  border-radius: 16px;
  border: 1px solid rgba(var(--ink-rgb), .14);
  background: linear-gradient(160deg, rgba(var(--paper-rgb), .98), rgba(var(--paper-rgb), .92));
  box-shadow: 0 10px 26px rgba(var(--ink-rgb), .07);
  padding: 20px 18px;
  display: grid;
  gap: 10px;
}

.service-plan-card-featured {
  border-color: rgba(var(--ink-rgb), .30);
  box-shadow: 0 16px 34px rgba(var(--ink-rgb), .14);
  transform: translateY(-2px);
}

.service-plan-badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(var(--ink-rgb), .20);
  background: rgba(var(--ink-rgb), .06);
  color: rgba(var(--ink-rgb), .82);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}

.service-plan-tier {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(var(--ink-rgb), .64);
  font-weight: 700;
}

.service-plan-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 30px;
  line-height: .94;
  letter-spacing: -.03em;
  max-width: 14ch;
}

.service-plan-price {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: .92;
  letter-spacing: -.03em;
  color: rgba(var(--ink-rgb), .94);
}

.service-plan-price span {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 16px;
  letter-spacing: .02em;
  color: rgba(var(--ink-rgb), .62);
}

.service-plan-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(var(--ink-rgb), .80);
  display: grid;
  gap: 8px;
  line-height: 1.5;
}

.service-plan-card .btn {
  margin-top: 8px;
  justify-self: start;
}

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

.service-feature-card {
  border-radius: 16px;
  border: 1px solid rgba(var(--ink-rgb), .14);
  background: linear-gradient(160deg, rgba(var(--paper-rgb), .98), rgba(var(--paper-rgb), .92));
  box-shadow: 0 10px 24px rgba(var(--ink-rgb), .06);
  padding: 18px;
}

.service-feature-card h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: .96;
  letter-spacing: -.02em;
}

.service-feature-card p {
  margin: 0;
  color: rgba(var(--ink-rgb), .66);
  line-height: 1.55;
}

.service-compare {
  border-radius: 24px;
  border: 1px solid rgba(var(--ink-rgb), .15);
  background: linear-gradient(180deg, rgba(var(--paper-rgb), .97), rgba(var(--paper-rgb), .92));
  box-shadow: 0 14px 30px rgba(var(--ink-rgb), .08);
  padding: clamp(20px, 3vw, 32px);
  display: grid;
  gap: 18px;
}

.service-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-compare-card {
  border-radius: 14px;
  border: 1px solid rgba(var(--ink-rgb), .14);
  background: rgba(var(--paper-rgb), .66);
  padding: 16px;
}

.service-compare-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: .98;
}

.service-compare-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(var(--ink-rgb), .72);
  display: grid;
  gap: 8px;
  line-height: 1.52;
}

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

.service-faq details {
  border-radius: 14px;
  border: 1px solid rgba(var(--ink-rgb), .16);
  background: rgba(var(--paper-rgb), .88);
  padding: 14px 16px;
}

.service-faq summary {
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -.01em;
}

.service-faq p {
  margin: 10px 0 0;
  color: rgba(var(--ink-rgb), .68);
  line-height: 1.56;
}

@media (max-width: 980px) {
  .service-hero-grid,
  .service-plans-grid,
  .service-feature-grid,
  .service-compare-grid {
    grid-template-columns: 1fr;
  }

  .service-plan-card-featured {
    transform: none;
  }

  .service-hero {
    padding-top: 62px;
  }
}
