:root {
  --white: #ffffff;
  --ink: #061932;
  --navy: #0a2446;
  --muted: #64748b;
  --line: #e6edf5;
  --soft: #f6f9fc;
  --soft-blue: #eef7ff;
  --blue: #1269ff;
  --blue-2: #5ee7ff;
  --blue-3: #0b4ecb;
  --shadow: 0 22px 70px rgba(6, 25, 50, 0.1);
  --shadow-soft: 0 14px 44px rgba(6, 25, 50, 0.08);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(16px, 0.14vw + 15.8px, 17.4px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1rem;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 0;
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(6, 25, 50, 0.045);
  background: rgba(255, 255, 255, 0.9);
}

.nav-shell {
  width: min(calc(100% - 40px), 1280px);
  margin-inline: auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 56px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 0;
  transform: translateY(1px);
  transition: transform 360ms var(--ease-premium);
}

.brand > span:last-child {
  display: inline-flex;
  align-items: center;
}

.brand-mark svg,
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 50%;
  filter: none;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: translateY(1px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 18px);
  color: #40516a;
  font-size: 0.98rem;
  font-weight: 650;
}

.nav-links > a,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  padding: 0 12px;
  cursor: pointer;
  font: inherit;
  transition: color 180ms ease, background 180ms ease, transform 220ms var(--ease-premium), box-shadow 220ms var(--ease-premium);
}

.nav-links > a:not(.nav-cta)::after,
.nav-dropdown-toggle::after {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links > a:not(.nav-cta):hover,
.nav-links > a:not(.nav-cta):focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--ink);
  background: rgba(18, 105, 255, 0.045);
}

.nav-links > a:not(.nav-cta):hover::after,
.nav-links > a:not(.nav-cta):focus-visible::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::before {
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 18px;
  content: "";
}

.nav-dropdown-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms var(--ease-premium);
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg,
.nav-dropdown.is-open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -14px;
  z-index: 20;
  display: grid;
  width: min(292px, calc(100vw - 36px));
  gap: 4px;
  border: 1px solid rgba(218, 229, 242, 0.82);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.88)),
    radial-gradient(circle at 18% 0%, rgba(94, 231, 255, 0.16), transparent 38%);
  box-shadow:
    0 24px 70px rgba(6, 25, 50, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.98);
  transform-origin: top left;
  transition: opacity 220ms var(--ease-premium), transform 220ms var(--ease-premium);
  backdrop-filter: blur(18px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  border-radius: 10px;
  color: #40516a;
  padding: 10px 12px;
  font-size: 0.96rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 220ms var(--ease-premium);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--ink);
  background: rgba(18, 105, 255, 0.065);
  transform: translateX(2px);
}

.nav-links > .nav-cta {
  min-height: 44px;
  border: 1px solid rgba(94, 231, 255, 0.24);
  background: linear-gradient(135deg, #1269ff, #008dff 56%, #35d0ff);
  color: var(--white);
  padding-inline: 17px;
  font-weight: 800;
  box-shadow:
    0 14px 32px rgba(18, 105, 255, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.22) inset;
}

.nav-links > .nav-cta,
.nav-links > .nav-cta:visited,
.nav-links > .nav-cta:hover,
.nav-links > .nav-cta:focus-visible {
  color: var(--white);
}

.nav-links > .nav-cta:hover,
.nav-links > .nav-cta:focus-visible {
  background: linear-gradient(135deg, #0a63ff, #008dff 54%, #47d8ff);
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(18, 105, 255, 0.28),
    0 0 34px rgba(18, 105, 255, 0.16);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 0;
  min-height: calc(100svh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 86% 16%, rgba(94, 231, 255, 0.24), transparent 30%),
    radial-gradient(circle at 64% 55%, rgba(18, 105, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  background-size: 120% 120%, 120% 120%, 100% 100%;
  animation: heroLight 16s ease-in-out infinite alternate;
}

.hero::before {
  display: none;
}

.hero::after {
  position: absolute;
  inset: 72px 0 0;
  content: "";
  background-image:
    linear-gradient(rgba(18, 105, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 105, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image:
    linear-gradient(180deg, transparent 0, #000 18%, #000 74%, transparent 100%),
    linear-gradient(90deg, transparent, #000 44%, transparent 88%);
  opacity: 0.34;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  animation: gridDrift 18s linear infinite;
}

.hero-video-section {
  isolation: isolate;
  background: #061932;
  color: #ffffff;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02) brightness(0.92);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(18, 105, 255, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(3, 14, 31, 0.74) 0%, rgba(6, 25, 50, 0.5) 40%, rgba(6, 25, 50, 0.14) 72%, rgba(6, 25, 50, 0.34) 100%),
    linear-gradient(180deg, rgba(4, 14, 30, 0.32) 0%, rgba(4, 14, 30, 0.06) 46%, rgba(4, 14, 30, 0.68) 100%);
}

.hero-video-section::after {
  z-index: 1;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(94, 231, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 231, 255, 0.07) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 78%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.58fr);
  align-items: center;
  gap: 32px;
  flex: 1 1 auto;
  width: 100%;
  align-content: start;
  padding-block: clamp(10px, 2.8svh, 28px) clamp(34px, 5svh, 54px);
}

.hero-video-section .hero-grid {
  grid-template-columns: minmax(0, 820px);
  align-items: center;
  justify-content: start;
  gap: 0;
  min-height: min(720px, calc(100svh - 142px));
}

.hero-video-section .hero-copy {
  position: relative;
  max-width: 820px;
}

.hero .container {
  width: min(calc(100% - 28px), 1280px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-3);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(3rem, 4.7vw, 4.45rem);
  font-weight: 820;
}

.hero-video-section .eyebrow {
  color: #86e8ff;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
}

.hero-video-section h1 {
  color: #ffffff;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.44);
}

.hero h1 > span {
  display: inline;
}

.hero-subline {
  max-width: 650px;
  margin: 22px 0 0;
  color: #4a5c75;
  font-size: clamp(1.14rem, 1.55vw, 1.34rem);
}

.hero-video-section .hero-subline {
  color: rgba(236, 246, 255, 0.88);
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
  line-height: 1.62;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.92rem 1.24rem;
  font-size: clamp(0.98rem, 0.35vw + 0.9rem, 1.06rem);
  font-weight: 760;
  line-height: 1.1;
  transition: transform 520ms var(--ease-premium), box-shadow 520ms var(--ease-premium), background 520ms var(--ease-premium), border-color 520ms var(--ease-premium);
}

.btn::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.34) 45%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 960ms var(--ease-premium);
  pointer-events: none;
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(130%);
}

.btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 520ms var(--ease-premium);
}

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

.btn:hover svg,
.btn:focus-visible svg {
  transform: translateX(3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-3));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(18, 105, 255, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(18, 105, 255, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(6, 25, 50, 0.04);
}

.hero-video-section .btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.hero-video-section .btn-secondary:hover,
.hero-video-section .btn-secondary:focus-visible {
  border-color: rgba(94, 231, 255, 0.45);
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(2, 12, 30, 0.18);
}

.hero-visual {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  transform: translateY(24px);
}

.digital-visual {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1.05;
  --visual-tilt-x: 3deg;
  --visual-tilt-y: -4deg;
  --visual-shift-x: 0px;
  --visual-shift-y: 0px;
  transform: perspective(1050px) rotateX(var(--visual-tilt-x)) rotateY(var(--visual-tilt-y)) translate3d(var(--visual-shift-x), var(--visual-shift-y), 0);
  transform-style: preserve-3d;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 520ms var(--ease-premium);
}

.digital-visual::before {
  position: absolute;
  inset: 12% 5% 8%;
  content: "";
  border: 1px solid rgba(18, 105, 255, 0.13);
  border-radius: 42% 58% 52% 48%;
  background:
    radial-gradient(circle at 46% 44%, rgba(255, 255, 255, 0.9), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(94, 231, 255, 0.16), transparent 42%);
  box-shadow: inset 0 0 70px rgba(18, 105, 255, 0.06);
  transform: translateZ(-18px) rotate(-8deg);
  animation: softMorph 11s ease-in-out infinite alternate;
}

.digital-visual::after {
  position: absolute;
  inset: 22% 18%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 231, 255, 0.24), rgba(18, 105, 255, 0.08) 38%, transparent 68%);
  filter: blur(18px);
  transform: translateZ(-12px);
  animation: centerGlow 6.5s ease-in-out infinite alternate;
}

.glow-field,
.geo-shape,
.glass-panel,
.digital-core {
  position: absolute;
}

.glow-field {
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.72;
  pointer-events: none;
}

.glow-field-one {
  top: 7%;
  right: 10%;
  width: 210px;
  height: 210px;
  background: rgba(94, 231, 255, 0.28);
  animation: floatGlow 8s ease-in-out infinite;
}

.glow-field-two {
  left: 2%;
  bottom: 8%;
  width: 250px;
  height: 250px;
  background: rgba(18, 105, 255, 0.16);
  animation: floatGlow 9.5s ease-in-out infinite reverse;
}

.digital-core {
  left: 50%;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 156px;
  height: 156px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(239, 248, 255, 0.56)),
    radial-gradient(circle at 28% 20%, rgba(94, 231, 255, 0.38), transparent 34%);
  box-shadow:
    0 32px 80px rgba(6, 25, 50, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px);
  transform: translate(-50%, -50%) translateZ(52px);
  animation: coreFloat 6.8s ease-in-out infinite;
}

.core-ring {
  position: absolute;
  border-radius: 34px;
  border: 1px solid rgba(18, 105, 255, 0.22);
  pointer-events: none;
}

.core-ring-one {
  inset: -22px;
  transform: rotate(12deg);
  animation: ringRotate 16s linear infinite;
}

.core-ring-two {
  inset: -42px;
  border-color: rgba(94, 231, 255, 0.22);
  transform: rotate(-16deg);
  animation: ringRotate 22s linear infinite reverse;
}

.core-mark {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue-2), var(--blue) 58%, var(--blue-3));
  box-shadow: 0 18px 36px rgba(18, 105, 255, 0.28);
}

.core-mark span {
  position: absolute;
  left: 17px;
  right: 17px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  transform: rotate(-18deg);
}

.core-mark span:first-child {
  top: 22px;
}

.core-mark span:last-child {
  bottom: 22px;
  opacity: 0.66;
}

.glass-panel {
  z-index: 3;
  border: 1px solid rgba(220, 231, 244, 0.86);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(238, 247, 255, 0.58)),
    radial-gradient(circle at 18% 15%, rgba(94, 231, 255, 0.26), transparent 36%);
  box-shadow: 0 26px 70px rgba(6, 25, 50, 0.13);
  backdrop-filter: blur(18px);
}

.glass-panel-large {
  left: 2%;
  top: 18%;
  width: 230px;
  height: 154px;
  padding: 24px;
  transform: translateZ(28px) rotate(-5deg);
  animation: panelFloatOne 7.5s ease-in-out infinite;
}

.glass-panel-small {
  right: 3%;
  top: 13%;
  width: 188px;
  height: 124px;
  padding: 22px;
  transform: translateZ(38px) rotate(4deg);
  animation: panelFloatTwo 7s ease-in-out infinite reverse;
}

.glass-panel-micro {
  right: 10%;
  bottom: 13%;
  display: grid;
  width: 184px;
  height: 92px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px;
  transform: translateZ(34px) rotate(-2deg);
  animation: panelFloatOne 8.2s ease-in-out infinite reverse;
}

.glass-panel-micro span {
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(18, 105, 255, 0.17), rgba(94, 231, 255, 0.2));
  animation: signalLift 3.8s ease-in-out infinite;
}

.glass-panel-micro span:nth-child(2) {
  animation-delay: 220ms;
}

.glass-panel-micro span:nth-child(3) {
  animation-delay: 440ms;
}

.panel-line,
.panel-chip,
.panel-dot {
  display: block;
  border-radius: 999px;
}

.panel-line {
  width: 76%;
  height: 10px;
  margin-top: 14px;
  background: linear-gradient(90deg, rgba(18, 105, 255, 0.2), rgba(94, 231, 255, 0.24), rgba(215, 226, 239, 0.48));
}

.panel-line.wide {
  width: 100%;
  margin-top: 0;
}

.panel-line.short {
  width: 48%;
}

.panel-chip {
  width: 58px;
  height: 24px;
  margin-top: 22px;
  background: linear-gradient(135deg, rgba(18, 105, 255, 0.86), rgba(94, 231, 255, 0.78));
  box-shadow: 0 12px 22px rgba(18, 105, 255, 0.18);
}

.panel-dot {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 12px 24px rgba(18, 105, 255, 0.2);
}

.geo-shape {
  z-index: 2;
  border: 1px solid rgba(18, 105, 255, 0.16);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(238, 247, 255, 0.42));
  box-shadow: 0 18px 42px rgba(6, 25, 50, 0.08);
  backdrop-filter: blur(14px);
}

.geo-square {
  left: 16%;
  bottom: 17%;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  transform: rotate(14deg);
  animation: shapeFloat 6s ease-in-out infinite;
}

.geo-pill {
  right: 16%;
  top: 43%;
  width: 94px;
  height: 34px;
  border-radius: 999px;
  transform: rotate(-18deg);
  animation: shapeFloat 7.2s ease-in-out infinite reverse;
}

.geo-dot {
  left: 38%;
  top: 9%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  animation: dotPulse 3.8s ease-in-out infinite;
}

.trust-strip {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: auto;
  padding: 0 0 clamp(18px, 3svh, 28px);
  border-block: 0;
  background: transparent;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  color: rgba(241, 248, 255, 0.86);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.095em;
  text-align: center;
  text-transform: uppercase;
}

.trust-grid :is(a, span) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
  padding: 0 14px;
  white-space: nowrap;
  backdrop-filter: blur(18px);
  transition:
    transform 260ms var(--ease-premium),
    border-color 260ms var(--ease-premium),
    background 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium);
}

.trust-grid :is(a, span):hover {
  transform: translateY(-3px);
  border-color: rgba(94, 231, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.16),
    0 0 26px rgba(18, 105, 255, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.trust-grid i,
.trust-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 1px solid rgba(94, 231, 255, 0.26);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(94, 231, 255, 0.28), rgba(18, 105, 255, 0.32)),
    radial-gradient(circle at 68% 28%, rgba(255, 255, 255, 0.65), transparent 38%);
  box-shadow: 0 8px 18px rgba(18, 105, 255, 0.16);
}

.trust-icon {
  fill: none;
  stroke: #dff9ff;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  padding: 3px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading.compact {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2.3rem, 4.05vw, 4.35rem);
  font-weight: 810;
}

.text-accent {
  color: var(--blue);
}

.services-title {
  white-space: nowrap;
  text-wrap: nowrap;
}

.section-heading p:not(.eyebrow),
.cta-panel p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #58708e;
  font-size: clamp(1.08rem, 0.55vw + 0.95rem, 1.2rem);
}

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(94, 231, 255, 0.1), transparent 30%),
    linear-gradient(180deg, var(--white) 0%, #f7fbff 76%, #ffffff 100%);
  background-size: 100% 100%, 100% 100%;
}

.services.section-pad {
  padding-block: clamp(66px, 8vw, 92px) clamp(78px, 9vw, 112px);
}

.services::after {
  position: absolute;
  inset: auto 0 0;
  height: clamp(72px, 10vw, 130px);
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 86%);
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services .section-heading {
  max-width: 760px;
  margin-bottom: clamp(26px, 3.2vw, 36px);
}

.services .services-title {
  font-size: clamp(1.86rem, 4vw, 4.12rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(218, 229, 242, 0.86);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.9)),
    radial-gradient(circle at 10% 0%, rgba(94, 231, 255, 0.14), transparent 36%);
  box-shadow: 0 16px 44px rgba(6, 25, 50, 0.055);
  padding: clamp(24px, 2.7vw, 32px);
  transition:
    transform 460ms var(--ease-premium),
    box-shadow 460ms var(--ease-premium),
    border-color 460ms var(--ease-premium),
    background 460ms var(--ease-premium);
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  border-radius: inherit;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(18, 105, 255, 0.44), rgba(94, 231, 255, 0.34), transparent);
  opacity: 0.46;
  pointer-events: none;
}

.service-card::after {
  position: absolute;
  right: -18%;
  bottom: -42%;
  width: 210px;
  height: 210px;
  content: "";
  border-radius: 50%;
  background: rgba(94, 231, 255, 0.14);
  filter: blur(38px);
  opacity: 0;
  transition: opacity 520ms var(--ease-premium), transform 520ms var(--ease-premium);
  pointer-events: none;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(18, 105, 255, 0.34);
  box-shadow:
    0 24px 64px rgba(6, 25, 50, 0.09),
    0 0 0 1px rgba(18, 105, 255, 0.04),
    0 0 42px rgba(18, 105, 255, 0.1);
  outline: 0;
}

.service-card:hover::after,
.service-card:focus-visible::after {
  opacity: 1;
  transform: translate(-8px, -8px);
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(18, 105, 255, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 245, 255, 0.86)),
    radial-gradient(circle at 70% 18%, rgba(94, 231, 255, 0.5), transparent 38%);
  color: var(--blue);
  transition:
    transform 420ms var(--ease-premium),
    box-shadow 420ms var(--ease-premium),
    border-color 420ms var(--ease-premium);
}

.service-card:hover .icon-box,
.service-card:focus-visible .icon-box {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(18, 105, 255, 0.32);
  box-shadow: 0 14px 26px rgba(18, 105, 255, 0.12);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 20px 0 9px;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.35vw, 1.36rem);
  line-height: 1.28;
  letter-spacing: 0;
}

.service-card p {
  margin: 0;
  max-width: 54ch;
  color: #586a80;
  font-size: 1.02rem;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--blue-3);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
  transition: gap 360ms var(--ease-premium), color 360ms var(--ease-premium);
}

.service-card:hover .service-link,
.service-card:focus-visible .service-link {
  gap: 11px;
  color: var(--blue);
}

.service-page {
  background: var(--white);
}

.sub-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 102px) 0 clamp(54px, 7vw, 86px);
  background:
    radial-gradient(circle at 82% 16%, rgba(94, 231, 255, 0.2), transparent 30%),
    linear-gradient(rgba(18, 105, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 105, 255, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  background-size: 100% 100%, 92px 92px, 92px 92px, 100% 100%;
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.64fr);
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: #53677f;
  font-size: 0.98rem;
  font-weight: 760;
  transition: color 180ms ease, transform 180ms ease;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--blue);
  transform: translateX(-2px);
}

.sub-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.55rem, 4.35vw, 4.35rem);
  line-height: 1.04;
  font-weight: 830;
  letter-spacing: 0;
}

.sub-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: #58708e;
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  line-height: 1.68;
}

.sub-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.sub-visual {
  position: relative;
  min-height: clamp(300px, 32vw, 390px);
}

.sub-visual-card {
  position: absolute;
  inset: 14% 4% 10% 8%;
  border: 1px solid rgba(218, 229, 242, 0.86);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(238, 247, 255, 0.62)),
    radial-gradient(circle at 22% 18%, rgba(94, 231, 255, 0.26), transparent 34%);
  box-shadow: 0 30px 80px rgba(6, 25, 50, 0.12);
  backdrop-filter: blur(20px);
  animation: panelFloatOne 8s ease-in-out infinite;
}

.sub-visual-card::before,
.sub-visual-card::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(18, 105, 255, 0.16), rgba(94, 231, 255, 0.24));
}

.sub-visual-card::before {
  left: 28px;
  right: 34%;
  top: 34px;
  height: 12px;
}

.sub-visual-card::after {
  left: 28px;
  right: 18%;
  top: 62px;
  height: 8px;
  opacity: 0.7;
}

.sub-visual-orb {
  position: absolute;
  right: 8%;
  top: 10%;
  width: 116px;
  height: 116px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--blue-2), var(--blue) 62%, var(--blue-3));
  box-shadow: 0 24px 52px rgba(18, 105, 255, 0.24);
  animation: coreFloat 7s ease-in-out infinite;
}

.sub-visual-lines {
  position: absolute;
  left: 15%;
  right: 12%;
  bottom: 18%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sub-visual-lines span {
  height: 70px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(18, 105, 255, 0.14), rgba(94, 231, 255, 0.08));
  border: 1px solid rgba(18, 105, 255, 0.12);
}

.service-image-visual {
  min-height: clamp(330px, 36vw, 470px);
  perspective: 1000px;
}

.service-image-frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(218, 229, 242, 0.86);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 10%, rgba(94, 231, 255, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 255, 0.78));
  box-shadow:
    0 34px 86px rgba(6, 25, 50, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  padding: clamp(10px, 1.7vw, 20px);
  transition:
    transform 620ms var(--ease-premium),
    border-color 620ms var(--ease-premium),
    box-shadow 620ms var(--ease-premium);
  will-change: transform;
}

.service-image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.36), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.32)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 22%);
  pointer-events: none;
}

.service-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(0.99);
  transition: transform 720ms var(--ease-premium), filter 720ms var(--ease-premium);
  will-change: transform;
}

.service-image-visual:hover .service-image-frame,
.service-image-visual:focus-within .service-image-frame {
  transform: translateY(-8px) rotateX(1.2deg) rotateY(-1deg);
  border-color: rgba(18, 105, 255, 0.28);
  box-shadow:
    0 42px 96px rgba(6, 25, 50, 0.16),
    0 0 42px rgba(18, 105, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-image-visual:hover .service-image-frame img,
.service-image-visual:focus-within .service-image-frame img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.015);
}

.sub-section {
  padding: clamp(62px, 8vw, 96px) 0;
}

.sub-section.soft {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.sub-heading {
  max-width: 660px;
  margin-bottom: 34px;
}

.sub-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.15rem, 3.65vw, 3.45rem);
  line-height: 1.08;
}

.sub-heading p {
  margin: 16px 0 0;
  color: #58708e;
  font-size: 1.12rem;
}

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

.benefit-card,
.sub-process-step {
  border: 1px solid rgba(218, 229, 242, 0.86);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(6, 25, 50, 0.052);
  padding: 22px;
}

.benefit-card span,
.sub-process-step span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: #edf8ff;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 850;
}

.benefit-card h3,
.sub-process-step h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 1.16rem;
}

.benefit-card p,
.sub-process-step p {
  margin: 0;
  color: #5a6e86;
  font-size: 1.02rem;
  line-height: 1.6;
}

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

.sub-cta {
  padding: 34px 0 88px;
}

.process {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  background:
    radial-gradient(circle at 18% 18%, rgba(18, 137, 255, 0.28), transparent 32%),
    radial-gradient(circle at 82% 70%, rgba(94, 231, 255, 0.13), transparent 30%),
    linear-gradient(135deg, #061225 0%, #071b38 48%, #031022 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
}

.process.section-pad {
  padding-block: clamp(96px, 10vw, 142px);
}

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

.process::before {
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(94, 231, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 231, 255, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}

.process::after {
  left: 8%;
  bottom: 8%;
  width: min(520px, 54vw);
  height: min(520px, 54vw);
  border-radius: 50%;
  background: rgba(18, 105, 255, 0.18);
  filter: blur(82px);
}

.process .container {
  position: relative;
  z-index: 1;
}

.process .section-heading {
  margin-bottom: 0;
}

.process .eyebrow {
  color: #65dfff;
}

.process .section-heading h2 {
  color: #ffffff;
}

.process .section-heading p:not(.eyebrow) {
  color: rgba(215, 231, 247, 0.76);
}

.process-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3.5vw, 40px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
}

.process-copy .section-heading.compact {
  max-width: none;
  margin: 0;
  text-align: left;
}

.process-copy h2 {
  font-size: clamp(2.35rem, 3.65vw, 4.05rem);
  letter-spacing: -0.025em;
}

.process-copy-body {
  position: relative;
  display: grid;
  max-width: 940px;
  margin: 0;
  padding-left: clamp(22px, 3vw, 36px);
  border-left: 1px solid rgba(94, 231, 255, 0.26);
  text-align: left;
}

.process-copy-body::before {
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 44%;
  content: "";
  background: linear-gradient(180deg, rgba(94, 231, 255, 0.95), rgba(18, 105, 255, 0.08));
  box-shadow: 0 0 28px rgba(94, 231, 255, 0.34);
}

.process-copy-body p {
  margin: 0;
  color: rgba(223, 237, 251, 0.78);
  font-size: clamp(1.08rem, 0.55vw + 0.96rem, 1.24rem);
  line-height: 1.72;
}

.process-copy-body p:first-child {
  color: rgba(223, 237, 251, 0.78);
  font-size: clamp(1.08rem, 0.55vw + 0.96rem, 1.24rem);
  line-height: 1.72;
  font-weight: 400;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  max-width: 1180px;
  margin: clamp(48px, 5.8vw, 74px) auto 0;
}

.process-track::before {
  position: absolute;
  left: 24px;
  top: 26px;
  bottom: 26px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(94, 231, 255, 0.12), rgba(94, 231, 255, 0.68), rgba(18, 105, 255, 0.16));
  box-shadow: 0 0 24px rgba(94, 231, 255, 0.22);
  transform-origin: top;
  transition: transform 1150ms var(--ease-premium) 160ms, opacity 800ms var(--ease-premium) 160ms;
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  column-gap: 20px;
  align-items: start;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0 0 clamp(34px, 7vw, 48px);
  transition:
    transform 460ms var(--ease-premium),
    filter 460ms var(--ease-premium);
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 20px 34px rgba(94, 231, 255, 0.16));
}

.process-step-top {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  justify-items: center;
  grid-row: 1 / span 2;
}

.step-number {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(94, 231, 255, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(94, 231, 255, 0.08)) padding-box,
    linear-gradient(135deg, rgba(94, 231, 255, 0.92), rgba(18, 105, 255, 0.54)) border-box;
  color: #8cecff;
  font-size: 0.86rem;
  font-weight: 860;
  box-shadow:
    0 0 0 9px rgba(5, 18, 37, 0.86),
    0 0 34px rgba(94, 231, 255, 0.16),
    inset 0 0 0 5px rgba(94, 231, 255, 0.055);
}

.process-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(94, 231, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.075);
  color: #69dfff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.18);
  transition: transform 420ms var(--ease-premium), color 420ms var(--ease-premium), border-color 420ms var(--ease-premium), box-shadow 420ms var(--ease-premium);
}

.process-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step:hover .process-icon {
  transform: translateY(-2px);
  border-color: rgba(94, 231, 255, 0.34);
  color: #a8f5ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 20px 52px rgba(94, 231, 255, 0.16);
}

.process-step h3 {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  margin: 2px 0 10px;
  color: #ffffff;
  font-size: clamp(1.42rem, 2vw, 2rem);
  line-height: 1.18;
  font-weight: 850;
}

.process-step p {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: rgba(215, 231, 247, 0.76);
  font-size: clamp(1.04rem, 1.1vw, 1.16rem);
  line-height: 1.56;
  max-width: 32ch;
}

.case-studies {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 2%, rgba(94, 231, 255, 0.16), transparent 27%),
    radial-gradient(circle at 90% 18%, rgba(18, 105, 255, 0.12), transparent 24%),
    radial-gradient(circle at 42% 86%, rgba(94, 231, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 48%, #ffffff 100%);
  background-size: 100% 100%;
  color: var(--ink);
}

.case-studies.section-pad {
  padding-block: clamp(92px, 11vw, 144px);
}

.case-studies::before,
.case-studies::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.case-studies::before {
  inset: 0;
  opacity: 0;
}

.case-studies::after {
  right: -12%;
  bottom: -16%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(18, 105, 255, 0.095);
  filter: blur(88px);
}

.case-studies .container {
  position: relative;
  z-index: 1;
}

.case-studies .section-heading.on-dark h2 {
  color: var(--ink);
}

.case-studies .section-heading.on-dark p:not(.eyebrow) {
  color: #5f7188;
}

.case-studies .section-heading.on-dark .eyebrow {
  color: var(--blue);
}

.case-studies .section-heading {
  max-width: 880px;
  margin-bottom: clamp(46px, 6vw, 78px);
}

.section-heading.on-dark h2,
.section-heading.on-dark p {
  color: var(--white);
}

.section-heading.on-dark p:not(.eyebrow) {
  color: #bed0e6;
}

.section-heading.on-dark .eyebrow {
  color: #7ae8ff;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(26px, 3.8vw, 46px);
}

.case-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 224, 239, 0.68);
  border-radius: 24px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.78), rgba(250, 253, 255, 0.54)),
    radial-gradient(circle at 14% 0%, rgba(94, 231, 255, 0.12), transparent 36%);
  box-shadow:
    0 18px 54px rgba(8, 23, 54, 0.075),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
  padding: clamp(14px, 1.7vw, 18px) clamp(14px, 1.7vw, 18px) clamp(24px, 2.5vw, 30px);
  backdrop-filter: blur(14px);
  transition:
    transform 640ms var(--ease-premium),
    border-color 640ms var(--ease-premium),
    background 640ms var(--ease-premium),
    box-shadow 640ms var(--ease-premium);
}

.case-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 78% 10%, rgba(18, 105, 255, 0.12), transparent 30%);
  opacity: 0;
  transition: opacity 520ms var(--ease-premium);
  pointer-events: none;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 105, 255, 0.24);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.9), rgba(246, 251, 255, 0.68)),
    radial-gradient(circle at 16% 0%, rgba(94, 231, 255, 0.16), transparent 34%);
  box-shadow:
    0 36px 90px rgba(8, 23, 54, 0.13),
    0 0 58px rgba(18, 105, 255, 0.11);
}

.case-card:hover::before {
  opacity: 1;
}

.case-card p {
  position: relative;
  z-index: 1;
  margin: clamp(24px, 2.5vw, 30px) 0 10px;
  color: var(--blue);
  font-size: clamp(0.84rem, 0.2vw + 0.78rem, 0.94rem);
  font-weight: 840;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.24rem, 1.35vw, 1.52rem);
  line-height: 1.32;
  font-weight: 790;
  max-width: 31ch;
}

.mock-window {
  position: relative;
  z-index: 1;
  min-height: 286px;
  overflow: hidden;
  border: 1px solid rgba(210, 224, 240, 0.72);
  border-radius: 20px;
  background:
    radial-gradient(circle at 16% 0%, rgba(94, 231, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 255, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 20px 52px rgba(8, 23, 54, 0.085);
  transition: transform 640ms var(--ease-premium), border-color 640ms var(--ease-premium), box-shadow 640ms var(--ease-premium), filter 640ms var(--ease-premium);
}

.mock-window::after {
  position: absolute;
  inset: 34px 0 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(94, 231, 255, 0.07) 42%, transparent 74%);
  transform: translateX(-82%);
  animation: mockSweep 8s ease-in-out infinite;
  pointer-events: none;
}

.case-card:hover .mock-window {
  transform: translateY(-4px);
  border-color: rgba(18, 105, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 30px 78px rgba(8, 23, 54, 0.135);
}

.image-mockup {
  display: block;
  min-height: 0;
  aspect-ratio: 3 / 2;
  background: #f2f7ff;
}

.image-mockup img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.02) contrast(1.03);
  transition: transform 820ms var(--ease-premium), filter 820ms var(--ease-premium);
}

.case-card:hover .image-mockup img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.055);
}

.window-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
}

.window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.mock-dashboard {
  position: relative;
  min-height: 250px;
  padding: clamp(16px, 2.2vw, 22px);
}

.site-mock-nav,
.automation-toolbar,
.crm-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-mock-nav span,
.automation-toolbar span,
.crm-topline span {
  color: #f7fbff;
  font-size: 0.88rem;
  font-weight: 820;
}

.site-mock-nav i {
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: rgba(215, 231, 247, 0.34);
}

.site-mock-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 18px;
  align-items: stretch;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background:
    radial-gradient(circle at 86% 0%, rgba(94, 231, 255, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.055);
}

.site-mock-hero b {
  display: block;
  max-width: 18rem;
  color: #ffffff;
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.16;
  font-weight: 820;
}

.site-mock-hero p {
  margin: 10px 0 16px;
  color: #a9bfd8;
  font-size: 0.84rem;
  line-height: 1.45;
}

.site-mock-hero span {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-3));
  color: #ffffff;
  padding: 0 12px;
  font-size: 0.74rem;
  font-weight: 820;
  box-shadow: 0 12px 24px rgba(18, 105, 255, 0.22);
}

.site-mock-panel {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 4px;
  border: 1px solid rgba(94, 231, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  padding: 16px;
}

.site-mock-panel em {
  color: #7ae8ff;
  font-style: normal;
  font-size: 1.48rem;
  font-weight: 840;
}

.site-mock-panel small {
  color: #98aec9;
  font-size: 0.73rem;
}

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

.site-mock-services span {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.055);
  color: #d7e7f7;
  font-size: 0.78rem;
  font-weight: 760;
  padding: 12px;
}

.site-mock-projects {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.site-mock-projects i {
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.11), rgba(94, 231, 255, 0.12));
}

.automation-board {
  display: grid;
  align-content: space-between;
  gap: 14px;
}

.automation-toolbar i {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(94, 231, 255, 0.12);
  color: #7ae8ff;
  padding: 5px 10px;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 820;
}

.flow-canvas {
  position: relative;
  min-height: 154px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: 28px 28px, 28px 28px, 100% 100%;
}

.flow-node {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 96px;
  border: 1px solid rgba(94, 231, 255, 0.16);
  border-radius: 13px;
  background: rgba(6, 25, 50, 0.72);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  padding: 12px;
}

.flow-node small {
  color: #7ae8ff;
  font-size: 0.68rem;
  font-weight: 820;
  text-transform: uppercase;
}

.flow-node b {
  color: #ffffff;
  font-size: 0.9rem;
}

.node-input {
  left: 7%;
  top: 32%;
}

.node-logic {
  left: 39%;
  top: 12%;
}

.node-output {
  right: 7%;
  bottom: 18%;
}

.flow-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 231, 255, 0.74), transparent);
  transform-origin: left;
  animation: systemSignal 4.4s ease-in-out infinite;
}

.line-one {
  left: 28%;
  top: 46%;
  width: 24%;
  transform: rotate(-18deg);
}

.line-two {
  right: 27%;
  top: 52%;
  width: 23%;
  transform: rotate(23deg);
  animation-delay: 600ms;
}

.pulse-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ae8ff;
  box-shadow: 0 0 18px rgba(94, 231, 255, 0.88);
  animation: dotPulse 2.2s ease-in-out infinite;
}

.dot-one {
  left: 34%;
  top: 39%;
}

.dot-two {
  right: 29%;
  top: 58%;
  animation-delay: 700ms;
}

.automation-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #d7e7f7;
  font-size: 0.82rem;
  font-weight: 760;
}

.automation-status span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.automation-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ae8ff;
  box-shadow: 0 0 16px rgba(94, 231, 255, 0.72);
}

.why {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(94, 231, 255, 0.08), transparent 25%),
    radial-gradient(circle at 86% 18%, rgba(18, 105, 255, 0.055), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f9fcff 52%, #ffffff 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
}

.why.section-pad {
  padding-block: clamp(94px, 11vw, 142px) clamp(90px, 10vw, 132px);
}

.why::before,
.why::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.why::before {
  left: 50%;
  top: clamp(130px, 16vw, 220px);
  width: min(720px, 72vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 105, 255, 0.16), transparent);
  transform: translateX(-50%);
}

.why::after {
  right: -9%;
  bottom: 10%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(94, 231, 255, 0.065);
  filter: blur(68px);
}

.why .container {
  position: relative;
  z-index: 1;
}

.why-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
  max-width: 1080px;
  margin-bottom: clamp(58px, 7vw, 88px);
}

.why-heading {
  text-align: left;
}

.why-heading h2 {
  max-width: none;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.028em;
  font-weight: 850;
}

.why-lead {
  max-width: 920px;
  margin: 0;
  color: #344760;
  font-size: clamp(1.08rem, 0.52vw + 0.98rem, 1.22rem);
  line-height: 1.72;
  letter-spacing: -0.006em;
  text-align: left;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 3.2vw, 44px);
  margin-top: 0;
  padding-top: clamp(34px, 4.8vw, 58px);
  border-top: 1px solid rgba(190, 207, 226, 0.62);
}

.why-item {
  position: relative;
  padding-top: 22px;
  transition: transform 460ms var(--ease-premium);
}

.why-item:hover {
  transform: translateY(-4px);
}

.why-marker {
  position: absolute;
  left: 0;
  top: -5px;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-3));
  box-shadow: 0 0 22px rgba(18, 105, 255, 0.28);
}

.why-item h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.45vw, 1.42rem);
  line-height: 1.22;
  font-weight: 820;
}

.why-item p {
  max-width: 32ch;
  margin: 0;
  color: #58708e;
  font-size: clamp(1rem, 0.35vw + 0.94rem, 1.08rem);
  line-height: 1.68;
}

.final-cta {
  padding: clamp(40px, 5.5vw, 62px) 0 clamp(68px, 7vw, 84px);
  background: var(--white);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 292px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 14%, rgba(94, 231, 255, 0.42), transparent 31%),
    radial-gradient(circle at 7% 96%, rgba(18, 105, 255, 0.38), transparent 34%),
    linear-gradient(135deg, #073a85, #061932 54%, #0a4fa7);
  color: var(--white);
  padding: clamp(24px, 4vw, 46px);
  box-shadow: 0 30px 90px rgba(6, 25, 50, 0.24);
  background-size: 115% 115%, 120% 120%, 100% 100%;
  animation: ctaBackground 13s ease-in-out infinite alternate;
}

.cta-panel::after {
  position: absolute;
  inset: auto -20% -70% 22%;
  height: 220px;
  content: "";
  border-radius: 50%;
  background: rgba(94, 231, 255, 0.2);
  filter: blur(54px);
  animation: ctaGlow 7s ease-in-out infinite alternate;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel .btn {
  flex: 0 0 auto;
  min-width: 204px;
  white-space: nowrap;
}

.cta-panel .eyebrow {
  color: #7ae8ff;
}

.cta-panel h2,
.cta-panel p {
  color: var(--white);
}

.cta-panel p:not(.eyebrow) {
  max-width: 550px;
  color: #d7e7f7;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: center;
  min-height: clamp(326px, 27vw, 400px);
}

.contact-copy {
  max-width: 760px;
}

.contact-copy h2 {
  max-width: 14ch;
  margin-bottom: clamp(14px, 2vw, 20px);
  letter-spacing: -0.036em;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 640px;
  font-size: clamp(1.12rem, 0.8vw + 0.98rem, 1.36rem);
  line-height: 1.62;
}

.contact-copy .btn {
  margin-top: clamp(20px, 2.3vw, 28px);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.contact-visual {
  position: relative;
  min-height: 278px;
}

.contact-person-visual {
  display: grid;
  grid-template-rows: auto auto;
  gap: 14px;
  width: min(100%, 340px);
  min-height: 0;
  justify-self: end;
  align-self: center;
}

.contact-visual-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 10%, rgba(94, 231, 255, 0.28), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 28px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.contact-person-frame {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(180deg, rgba(232, 242, 255, 0.12), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 20% 10%, rgba(94, 231, 255, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  isolation: isolate;
}

.contact-person-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 50% 22%, transparent 0%, rgba(3, 16, 34, 0.05) 52%, rgba(3, 16, 34, 0.22) 100%),
    linear-gradient(180deg, transparent 48%, rgba(3, 16, 34, 0.36));
  pointer-events: none;
}

.contact-person-frame::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.contact-person-frame img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.06) brightness(0.97);
  transform: scale(1.01);
  transition: transform 900ms var(--ease-premium), filter 900ms var(--ease-premium);
}

.contact-person-frame:hover img {
  filter: saturate(0.98) contrast(1.06) brightness(0.98);
  transform: scale(1.025);
}

.contact-person-caption {
  display: grid;
  gap: 6px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  padding: 17px 18px;
  box-shadow:
    0 18px 48px rgba(2, 12, 26, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.contact-person-caption strong {
  color: #ffffff;
  font-size: clamp(1rem, 1vw, 1.14rem);
  font-weight: 820;
}

.contact-person-caption small {
  color: rgba(190, 222, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 650;
}

.contact-person-caption p {
  max-width: 30ch;
  margin: 5px 0 0;
  color: rgba(232, 242, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.52;
}

.contact-glow {
  position: absolute;
  right: -18%;
  bottom: -24%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(94, 231, 255, 0.22);
  filter: blur(46px);
  animation: ctaGlow 7s ease-in-out infinite alternate;
}

.contact-window {
  position: absolute;
  inset: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(6, 25, 50, 0.32);
  background-size: 30px 30px, 30px 30px, 100% 100%;
}

.contact-window-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-window-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.contact-system {
  position: relative;
  min-height: 226px;
}

.contact-node {
  position: absolute;
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(94, 231, 255, 0.24);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(94, 231, 255, 0.1));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.contact-node.primary {
  left: 38px;
  top: 48px;
  background: linear-gradient(135deg, var(--blue-2), var(--blue) 62%, var(--blue-3));
}

.contact-node:not(.primary):nth-of-type(2) {
  right: 44px;
  top: 32px;
}

.contact-node:not(.primary):nth-of-type(3) {
  right: 92px;
  bottom: 42px;
}

.contact-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 231, 255, 0.78), transparent);
  animation: systemSignal 4.6s ease-in-out infinite;
}

.contact-line.line-a {
  left: 96px;
  right: 98px;
  top: 78px;
  transform: rotate(-5deg);
}

.contact-line.line-b {
  left: 108px;
  right: 132px;
  bottom: 86px;
  transform: rotate(18deg);
  animation-delay: 480ms;
}

.contact-panel-card {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 26px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
}

.contact-panel-card b {
  color: #ffffff;
  font-size: 1.02rem;
}

.contact-panel-card small {
  color: #bcd0e7;
  font-size: 0.82rem;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 28px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease-premium);
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 16%, rgba(18, 105, 255, 0.34), transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(94, 231, 255, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(2, 8, 19, 0.82), rgba(5, 18, 37, 0.74));
  backdrop-filter: blur(24px) saturate(1.08);
}

.contact-modal-dialog {
  position: relative;
  width: min(100%, 680px);
  max-height: min(88svh, 760px);
  overflow: auto;
  border: 1px solid rgba(204, 220, 239, 0.76);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(94, 231, 255, 0.16), transparent 32%),
    radial-gradient(circle at 100% 0%, rgba(18, 105, 255, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.93));
  box-shadow:
    0 42px 110px rgba(0, 8, 24, 0.42),
    0 1px 0 rgba(255, 255, 255, 0.78) inset;
  padding: clamp(22px, 3.3vw, 34px);
  transform: translateY(16px) scale(0.98);
  transition: transform 280ms var(--ease-premium);
}

.contact-modal.is-open .contact-modal-dialog {
  transform: translateY(0) scale(1);
}

.contact-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(192, 210, 232, 0.58);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
  cursor: pointer;
  transition:
    transform 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium),
    background 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium);
  backdrop-filter: blur(12px);
}

.contact-modal-close:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 105, 255, 0.32);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 30px rgba(18, 105, 255, 0.14);
}

.contact-modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: #516782;
}

.contact-modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.contact-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-modal-copy {
  max-width: 560px;
  margin-bottom: clamp(18px, 2.8vw, 24px);
  padding-right: 42px;
}

.contact-modal-brand,
.contact-form-brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 820;
  letter-spacing: 0;
}

.contact-modal-brand .brand-mark,
.contact-form-brand .brand-mark {
  width: 36px;
  height: 36px;
  min-width: 36px;
}

.contact-modal-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.92rem, 3.3vw, 2.88rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-modal-copy p:not(.eyebrow) {
  max-width: 52ch;
  margin: 10px 0 0;
  color: #5b7089;
  font-size: clamp(0.94rem, 0.8vw, 1.02rem);
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 13px;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: #253850;
  font-size: 0.84rem;
  font-weight: 780;
  letter-spacing: 0.015em;
}

.contact-form label small {
  color: #7a8da5;
  font: inherit;
  font-weight: 650;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(179, 199, 224, 0.72);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(245, 249, 255, 0.72)),
    rgba(239, 246, 255, 0.56);
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  outline: none;
  padding: 13px 15px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -10px 24px rgba(8, 23, 54, 0.018);
  transition:
    border-color 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    background 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8ca0b8;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(18, 105, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 251, 255, 0.78)),
    rgba(239, 246, 255, 0.62);
}

.contact-form textarea {
  min-height: 104px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(18, 105, 255, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.86)),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    0 0 0 4px rgba(18, 105, 255, 0.11),
    0 16px 34px rgba(18, 105, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-submit {
  justify-self: start;
  min-width: 246px;
  min-height: 56px;
  margin-top: 6px;
  box-shadow:
    0 18px 38px rgba(18, 105, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.contact-submit:hover,
.contact-submit:focus-visible {
  box-shadow:
    0 24px 48px rgba(18, 105, 255, 0.3),
    0 0 34px rgba(94, 231, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.contact-submit.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #58708e;
  font-size: 0.96rem;
  font-weight: 720;
  line-height: 1.5;
}

.form-status.is-success {
  color: #087a4a;
}

.form-status.is-error {
  color: #b42318;
}

body.modal-open {
  overflow: hidden;
}

.contact-page {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 76px);
  padding-top: clamp(84px, 10vw, 132px);
  background:
    radial-gradient(circle at 82% 18%, rgba(94, 231, 255, 0.2), transparent 32%),
    radial-gradient(circle at 8% 24%, rgba(18, 105, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.contact-page::before {
  display: none;
}

.contact-page-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.contact-page-copy h1,
.projects-hero h1,
.not-found h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.7rem, 6.2vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-page-copy > p:not(.eyebrow),
.projects-hero .section-heading > p:not(.eyebrow),
.not-found-panel > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: #58708e;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.64;
}

.contact-route-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-route-points span {
  border: 1px solid rgba(190, 207, 229, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #35506e;
  font-size: 0.92rem;
  font-weight: 760;
  padding: 10px 14px;
  box-shadow: 0 12px 28px rgba(6, 25, 50, 0.06);
}

.contact-page-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(204, 220, 239, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(94, 231, 255, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.94));
  box-shadow: 0 30px 80px rgba(6, 25, 50, 0.16);
  padding: clamp(24px, 4vw, 40px);
}

.contact-page-card::before {
  display: none;
}

.contact-page-card .contact-form {
  position: relative;
  z-index: 1;
}

.projects-hero {
  padding-bottom: clamp(38px, 6vw, 64px);
  background:
    radial-gradient(circle at 78% 16%, rgba(94, 231, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.projects-hero .section-heading {
  max-width: 940px;
  margin-inline: auto;
}

.projects-hero .section-heading h1,
.projects-hero .section-heading p {
  margin-inline: auto;
  text-align: center;
}

.projects-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(38px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.projects-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  letter-spacing: 0;
}

.not-found {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(32px, 6vw, 72px) 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(94, 231, 255, 0.18), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(18, 105, 255, 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.not-found-panel {
  max-width: 760px;
}

.not-found-panel .sub-hero-actions {
  margin-top: 30px;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 118px) 0 clamp(70px, 9vw, 112px);
  background:
    radial-gradient(circle at 82% 16%, rgba(94, 231, 255, 0.22), transparent 32%),
    radial-gradient(circle at 10% 22%, rgba(18, 105, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.about-hero::before,
.about-hero::after,
.about-vision::before,
.about-values::before {
  position: absolute;
  content: "";
  pointer-events: none;
}

.about-hero::before {
  inset: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(18, 105, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 105, 255, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 82%);
}

.about-hero::after {
  right: 8%;
  top: 24%;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(18, 105, 255, 0.09);
  filter: blur(54px);
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 78px);
}

.about-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: #526982;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.72;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.about-system-visual {
  position: relative;
  min-height: clamp(360px, 42vw, 520px);
}

.about-photo-visual {
  display: grid;
  align-items: center;
  min-height: clamp(360px, 42vw, 520px);
}

.about-photo-frame {
  position: relative;
  overflow: hidden;
  min-height: clamp(340px, 40vw, 500px);
  border: 1px solid rgba(218, 229, 242, 0.78);
  border-radius: 28px;
  background: #eef4fb;
  box-shadow: 0 30px 78px rgba(6, 25, 50, 0.12);
  isolation: isolate;
}

.about-photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.04) brightness(1.08);
  transform: scale(1.01);
  transition: transform 900ms var(--ease-premium), filter 900ms var(--ease-premium);
}

.about-photo-visual:hover .about-photo-frame img {
  filter: grayscale(0.82) contrast(1.06) brightness(1.1);
  transform: scale(1.045);
}

.about-orbit {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(218, 229, 242, 0.86);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(241, 247, 255, 0.72)),
    rgba(255, 255, 255, 0.74);
  box-shadow:
    0 34px 88px rgba(6, 25, 50, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.about-orbit::before {
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(18, 105, 255, 0.1);
  border-radius: 24px;
  content: "";
  background-image:
    linear-gradient(rgba(18, 105, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 105, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}

.about-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.78;
  animation: pulseGlow 6s ease-in-out infinite;
}

.about-glow-one {
  right: 12%;
  top: 14%;
  width: 150px;
  height: 150px;
  background: rgba(94, 231, 255, 0.26);
}

.about-glow-two {
  left: 10%;
  bottom: 12%;
  width: 180px;
  height: 180px;
  background: rgba(18, 105, 255, 0.16);
  animation-delay: 1.4s;
}

.about-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(18, 105, 255, 0.26);
  stroke-width: 1.4;
  stroke-dasharray: 10 12;
  animation: flowDash 14s linear infinite;
}

.about-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border: 1px solid rgba(18, 105, 255, 0.2);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(6, 25, 50, 0.94), rgba(12, 76, 190, 0.92));
  color: #ffffff;
  box-shadow:
    0 24px 54px rgba(18, 105, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%);
}

.about-hub span {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(94, 231, 255, 0.18);
  border-radius: 34px;
  animation: softFloat 5.8s ease-in-out infinite;
}

.about-hub strong {
  font-size: 3rem;
  letter-spacing: 0;
}

.about-node,
.about-metric {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(218, 229, 242, 0.78);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 38px rgba(6, 25, 50, 0.09);
  backdrop-filter: blur(14px);
}

.about-node {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 112px;
  border-radius: 18px;
  padding: 13px 15px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.about-node i {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 18px rgba(18, 105, 255, 0.35);
}

.node-a { left: 8%; top: 14%; }
.node-b { right: 8%; top: 12%; }
.node-c { left: 7%; bottom: 13%; }
.node-d { right: 8%; bottom: 12%; }

.about-metric {
  display: grid;
  gap: 8px;
  border-radius: 20px;
  padding: 16px 18px;
}

.about-metric span {
  width: 54px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
}

.about-metric p {
  margin: 0;
  color: #5b718a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-a { left: 14%; top: 50%; }
.metric-b { right: 12%; top: 48%; }

.about-vision {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(18, 105, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.about-vision::before {
  right: 12%;
  bottom: 8%;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(94, 231, 255, 0.12);
  filter: blur(48px);
}

.about-vision-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(218, 229, 242, 0.82);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.78)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 74px rgba(6, 25, 50, 0.08);
  padding: clamp(30px, 5vw, 62px);
}

.about-vision-card::after {
  position: absolute;
  right: -90px;
  top: -120px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  content: "";
  background: rgba(18, 105, 255, 0.1);
  filter: blur(42px);
}

.about-vision-card h2,
.about-services h2,
.about-values h2,
.about-final-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.about-vision-text {
  display: grid;
  max-width: 880px;
  gap: 18px;
  margin-top: 22px;
}

.about-vision-text p,
.about-final-panel p {
  margin: 0;
  color: #536a83;
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  line-height: 1.72;
}

.about-services {
  background:
    radial-gradient(circle at 84% 10%, rgba(94, 231, 255, 0.11), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.about-services-head {
  max-width: 880px;
}

.about-services-head h2 {
  max-width: 760px;
}

.about-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(30px, 4vw, 46px);
}

.about-feature-card,
.about-value-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(218, 229, 242, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(6, 25, 50, 0.055);
  transition:
    transform 520ms var(--ease-premium),
    border-color 520ms var(--ease-premium),
    box-shadow 520ms var(--ease-premium),
    background 520ms var(--ease-premium);
}

.about-feature-card {
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
}

.about-feature-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: inherit;
  content: "";
  background: linear-gradient(90deg, rgba(18, 105, 255, 0.78), rgba(94, 231, 255, 0.34), transparent);
  opacity: 0.42;
}

.about-feature-card::after,
.about-value-card::after {
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  content: "";
  background: rgba(18, 105, 255, 0.09);
  filter: blur(32px);
  opacity: 0;
  transition: opacity 520ms var(--ease-premium), transform 520ms var(--ease-premium);
}

.about-feature-card:hover,
.about-value-card:hover {
  transform: translateY(-7px);
  border-color: rgba(18, 105, 255, 0.28);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 28px 70px rgba(6, 25, 50, 0.09),
    0 0 34px rgba(18, 105, 255, 0.09);
}

.about-feature-card:hover::after,
.about-value-card:hover::after {
  opacity: 1;
  transform: translate(-12px, -10px);
}

.about-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.about-service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  border: 1px solid rgba(18, 105, 255, 0.16);
  border-radius: 999px;
  background: rgba(18, 105, 255, 0.055);
  color: #2b72dc;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.about-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(18, 105, 255, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(18, 105, 255, 0.08), rgba(94, 231, 255, 0.1));
  color: var(--blue);
  transition: transform 520ms var(--ease-premium), box-shadow 520ms var(--ease-premium);
}

.about-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-feature-card:hover .about-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 28px rgba(18, 105, 255, 0.13);
}

.about-feature-card h3,
.about-value-card h3 {
  position: relative;
  z-index: 1;
  margin: 26px 0 10px;
  color: var(--ink);
  font-size: clamp(1.14rem, 1.4vw, 1.34rem);
  line-height: 1.24;
  letter-spacing: 0;
}

.about-feature-card-large h3 {
  max-width: 12ch;
  font-size: clamp(1.42rem, 2vw, 1.84rem);
}

.about-feature-card p,
.about-value-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5b718a;
  font-size: 1.01rem;
  line-height: 1.66;
}

.about-values {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 16%, rgba(18, 105, 255, 0.09), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.about-values::before {
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(18, 105, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 105, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}

.about-values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  margin-top: 36px;
}

.about-value-card {
  padding: clamp(26px, 3vw, 36px);
}

.about-value-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 105, 255, 0.2);
  border-radius: 999px;
  background: rgba(18, 105, 255, 0.07);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.about-final {
  padding: clamp(62px, 8vw, 98px) 0;
  background: #ffffff;
}

.about-final-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  overflow: hidden;
  border: 1px solid rgba(94, 231, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 20%, rgba(94, 231, 255, 0.2), transparent 32%),
    linear-gradient(135deg, #071a34 0%, #0b3477 58%, #1269ff 100%);
  box-shadow: 0 34px 90px rgba(6, 25, 50, 0.18);
  padding: clamp(30px, 5vw, 62px);
}

.about-final-panel h2,
.about-final-panel .eyebrow,
.about-final-panel p {
  color: #ffffff;
}

.about-final-panel p {
  max-width: 760px;
  margin-top: 16px;
  color: #d8e7f7;
}

.about-final-panel .btn {
  flex: 0 0 auto;
  align-self: flex-end;
  white-space: nowrap;
}

@keyframes flowDash {
  to {
    stroke-dashoffset: -120;
  }
}

.site-footer {
  border-top: 1px solid rgba(190, 207, 229, 0.68);
  background:
    radial-gradient(circle at 12% 0%, rgba(94, 231, 255, 0.11), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(18, 105, 255, 0.09), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f2f6fb 100%);
  padding: clamp(58px, 8vw, 86px) 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
}

.footer-brand-block {
  max-width: 390px;
}

.footer-brand {
  gap: 12px;
  margin-bottom: 22px;
}

.footer-brand .brand-mark {
  width: 44px;
  height: 44px;
  transform: translateY(1px);
}

.footer-brand-text {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 0.85vw + 0.86rem, 1.18rem);
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand-text span {
  color: var(--blue);
}

.footer-support {
  margin: 14px 0 0;
  max-width: 34ch;
  color: #5d7087;
  font-size: clamp(1rem, 0.55vw + 0.88rem, 1.12rem);
  line-height: 1.65;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.footer-group h3,
.footer-contact h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-group a,
.footer-contact a,
.footer-contact span,
.footer-legal a {
  color: #5d7087;
  font-size: 1rem;
  font-weight: 650;
}

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

.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-group a,
.footer-contact a,
.footer-legal a {
  transition: color 220ms var(--ease-premium), transform 220ms var(--ease-premium);
}

.footer-group a:hover,
.footer-group a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--blue);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  margin-top: clamp(44px, 6vw, 68px);
  border-top: 1px solid rgba(190, 207, 229, 0.72);
  padding: 22px 0 28px;
}

.footer-bottom p {
  margin: 0;
  color: #74849a;
  font-size: 0.95rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-page .sub-hero {
  padding-bottom: clamp(34px, 5vw, 56px);
}

.legal-content {
  max-width: none;
}

.legal-content article {
  display: grid;
  gap: 28px;
  max-width: 900px;
}

.legal-block {
  border: 1px solid rgba(206, 220, 238, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(6, 25, 50, 0.055);
  padding: clamp(24px, 4vw, 38px);
}

.legal-block h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.35rem, 1.6vw, 1.72rem);
  line-height: 1.18;
}

.legal-block p {
  margin: 0;
  color: #5d7087;
  font-size: 1.05rem;
  line-height: 1.72;
}

.legal-block p + p {
  margin-top: 12px;
}

.legal-text-content {
  max-width: none;
}

.legal-text {
  max-width: 900px;
}

.legal-text h2,
.legal-text h3,
.legal-text p,
.legal-text ul {
  margin-inline: 0;
}

.legal-text h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.legal-text h3 {
  margin: 42px 0 14px;
  color: var(--ink);
  font-size: clamp(1.28rem, 1.5vw, 1.62rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.legal-text h2 + h3 {
  margin-top: 0;
}

.legal-text p,
.legal-text li {
  color: #5d7087;
  font-size: 1.06rem;
  line-height: 1.78;
}

.legal-text p {
  margin: 0 0 18px;
}

.legal-text ul {
  display: grid;
  gap: 6px;
  margin: 0 0 22px;
  padding-left: 22px;
}

@media (min-width: 640px) {
  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: minmax(260px, 1.1fr) minmax(360px, 1.25fr) minmax(180px, 0.65fr);
    align-items: start;
    gap: clamp(48px, 6vw, 88px);
  }

  .footer-contact {
    justify-items: start;
    text-align: left;
  }
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(26px);
  transition: opacity 780ms var(--ease-premium), transform 780ms var(--ease-premium), filter 780ms var(--ease-premium);
}

.js .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.js .hero-copy h1,
.js .hero-subline {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 820ms var(--ease-premium), transform 820ms var(--ease-premium);
}

.js .hero-copy.is-visible h1,
.js .hero-copy.is-visible .hero-subline {
  opacity: 1;
  transform: translateY(0);
}

.js .hero-copy.is-visible h1 {
  transition-delay: 90ms;
}

.js .hero-copy.is-visible .hero-subline {
  transition-delay: 180ms;
}

.js .process-track::before {
  transform: scaleY(0);
}

.js .process-track.is-visible::before {
  transform: scaleY(1);
}

.service-card:nth-child(2),
.case-card:nth-child(2),
.why-item:nth-child(2) {
  transition-delay: 90ms;
}

.service-card:nth-child(3),
.case-card:nth-child(3),
.why-item:nth-child(3) {
  transition-delay: 160ms;
}

.service-card:nth-child(4),
.case-card:nth-child(4),
.why-item:nth-child(4) {
  transition-delay: 230ms;
}

.why-item:nth-child(5) {
  transition-delay: 300ms;
}

.why-item:nth-child(6) {
  transition-delay: 370ms;
}

@keyframes softMorph {
  from {
    border-radius: 42% 58% 52% 48%;
    transform: translateZ(-18px) rotate(-8deg) scale(1);
  }
  to {
    border-radius: 54% 46% 44% 56%;
    transform: translateZ(-18px) rotate(-2deg) scale(1.03);
  }
}

@keyframes centerGlow {
  from {
    opacity: 0.62;
    transform: translateZ(-12px) scale(0.94);
  }
  to {
    opacity: 0.95;
    transform: translateZ(-12px) scale(1.06);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(8px, -12px, 0) scale(1.05);
  }
}

@keyframes coreFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateZ(52px) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateZ(52px) translateY(-9px);
  }
}

@keyframes ringRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes panelFloatOne {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes panelFloatTwo {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 10px 8px;
  }
}

@keyframes signalLift {
  0%,
  100% {
    opacity: 0.64;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-5px);
  }
}

@keyframes shapeFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.24);
  }
}

@keyframes heroLight {
  from {
    background-position: 0% 0%, 50% 50%, 0 0;
  }
  to {
    background-position: 12% 8%, 44% 56%, 0 0;
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 96px 48px, 96px 48px;
  }
}

@keyframes mockSurface {
  from {
    background-position: 0% 40%;
  }
  to {
    background-position: 100% 60%;
  }
}

@keyframes chartTurn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes systemSignal {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

@keyframes mockSweep {
  0%,
  32% {
    transform: translateX(-82%);
    opacity: 0;
  }
  48% {
    opacity: 1;
  }
  72%,
  100% {
    transform: translateX(82%);
    opacity: 0;
  }
}

@keyframes barLift {
  0%,
  100% {
    filter: saturate(0.96);
    transform: scaleY(0.94);
  }
  50% {
    filter: saturate(1.15);
    transform: scaleY(1);
  }
}

@keyframes ctaGlow {
  from {
    transform: translateX(-4%) scale(1);
  }
  to {
    transform: translateX(5%) scale(1.08);
  }
}

@keyframes ctaBackground {
  from {
    background-position: 0% 0%, 15% 100%, 0 0;
  }
  to {
    background-position: 100% 12%, 0% 80%, 0 0;
  }
}

/* Mobile-first responsive system */
.container {
  width: min(calc(100% - 28px), var(--container));
}

.section-pad {
  padding: clamp(72px, 18vw, 92px) 0;
}

.nav-shell {
  width: min(calc(100% - 28px), 1280px);
  min-height: 68px;
}

.brand {
  font-size: 1.1rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
}

.nav-toggle {
  display: inline-block;
  flex: 0 0 auto;
}

.nav-links {
  position: fixed;
  inset: 68px 14px auto;
  display: grid;
  gap: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 74px rgba(8, 23, 54, 0.14);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 220ms var(--ease-premium), transform 220ms var(--ease-premium);
  backdrop-filter: blur(18px);
}

.nav-links.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-item {
  width: 100%;
}

.nav-links > a,
.nav-dropdown-toggle {
  width: 100%;
  min-height: 48px;
  justify-content: space-between;
  padding: 0 14px;
}

.nav-links > a:not(.nav-cta)::after,
.nav-dropdown-toggle::after {
  display: none;
}

.nav-dropdown-menu {
  position: static;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0 6px;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: max-height 260ms var(--ease-premium), padding 260ms var(--ease-premium);
  backdrop-filter: none;
}

.nav-dropdown::before {
  display: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  transform: none;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  max-height: 232px;
  padding: 6px;
}

.nav-dropdown-menu a {
  min-height: 42px;
  border-radius: 12px;
  background: rgba(245, 248, 252, 0.72);
  padding: 10px 12px;
}

  .nav-cta {
    min-height: 50px;
    justify-content: center;
    margin-top: 4px;
    background: linear-gradient(135deg, #1269ff, #008dff 56%, #35d0ff);
    color: var(--white);
  }

.hero {
  min-height: calc(100svh - 68px);
  padding-top: clamp(12px, 2.5svh, 22px);
  padding-bottom: 0;
}

.hero-grid,
.service-grid,
.process-copy,
.process-track,
.case-grid,
.why-grid,
.sub-hero-grid,
.contact-page-grid,
.benefit-grid,
.sub-process-grid,
.footer-grid {
  grid-template-columns: 1fr;
}

.hero-grid {
  gap: 12px;
  padding-block: clamp(8px, 2svh, 16px) clamp(10px, 2.4svh, 18px);
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(2.12rem, 8.2vw, 2.72rem);
  line-height: 1.04;
}

.hero-subline {
  font-size: clamp(1.03rem, 4vw, 1.2rem);
  margin-top: 16px;
}

.sub-hero-actions,
.cta-panel {
  align-items: stretch;
  flex-direction: column;
}

.projects-cta {
  align-items: stretch;
  flex-direction: column;
}

.btn {
  width: 100%;
  min-height: 48px;
}

.hero-visual {
  min-height: clamp(216px, 52vw, 258px);
  transform: translateY(14px);
}

.digital-visual {
  width: min(100%, 232px);
  aspect-ratio: 0.92;
  transform: none;
}

.digital-core {
  width: clamp(112px, 34vw, 124px);
  height: clamp(112px, 34vw, 124px);
  border-radius: 28px;
}

.core-mark {
  width: 58px;
  height: 58px;
  border-radius: 17px;
}

.core-mark span {
  left: 14px;
  right: 14px;
  height: 9px;
}

.core-mark span:first-child {
  top: 18px;
}

.core-mark span:last-child {
  bottom: 18px;
}

.glass-panel-large {
  left: 0;
  top: 17%;
  width: min(48vw, 172px);
  height: 124px;
  padding: 20px;
}

.glass-panel-small {
  right: 0;
  top: 10%;
  width: min(39vw, 142px);
  height: 104px;
  padding: 18px;
}

.glass-panel-micro {
  right: 6%;
  bottom: 12%;
  width: min(40vw, 142px);
  height: 78px;
  gap: 8px;
  padding: 16px;
}

.geo-pill {
  right: 8%;
}

.geo-square {
  left: 8%;
}

.glow-field-one {
  width: 160px;
  height: 160px;
}

.glow-field-two {
  width: 190px;
  height: 190px;
}

.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: left;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.trust-strip {
  padding: 0 0 14px;
}

.trust-grid {
  gap: 6px 8px;
}

.trust-grid :is(a, span) {
  justify-content: flex-start;
  min-height: 44px;
  border-radius: 14px;
  padding: 0 12px;
  white-space: normal;
}

.trust-grid i,
.trust-icon {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2.1rem, 9vw, 3.18rem);
}

.services .services-title {
  font-size: clamp(1.42rem, 6.2vw, 2.78rem);
}

.service-card,
.benefit-card,
.sub-process-step,
.case-card {
  padding: 24px;
}

.sub-hero {
  padding: clamp(46px, 11vw, 68px) 0 clamp(48px, 10vw, 66px);
}

.sub-hero-grid {
  gap: 24px;
}

.back-link {
  margin-bottom: 22px;
}

.sub-visual {
  min-height: clamp(224px, 54vw, 292px);
}

.sub-visual-card {
  inset: 12% 2% 12% 4%;
}

.service-image-visual {
  min-height: clamp(260px, 70vw, 360px);
}

.service-image-frame {
  inset: 0;
  border-radius: 22px;
  padding: 8px;
}

.sub-section {
  padding: clamp(54px, 14vw, 72px) 0;
}

.sub-heading {
  margin-bottom: 28px;
}

.benefit-grid,
.sub-process-grid {
  gap: 12px;
}

.sub-cta {
  padding: 20px 0 74px;
}

.process-track {
  margin-top: 34px;
}

.process-track::before {
  left: 25px;
  right: auto;
  top: 26px;
  bottom: 26px;
  width: 1px;
  height: auto;
  background: linear-gradient(180deg, rgba(94, 231, 255, 0.1), rgba(94, 231, 255, 0.66), rgba(18, 105, 255, 0.18));
  box-shadow: 0 0 24px rgba(94, 231, 255, 0.24);
  transform-origin: top;
}

.js .process-track::before {
  transform: scaleY(0);
}

.js .process-track.is-visible::before {
  transform: scaleY(1);
}

.process-step {
  min-height: 0;
  padding: 0 0 34px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.step-number {
  position: static;
  width: 50px;
  height: 50px;
  font-size: 0.8rem;
  box-shadow:
    0 0 0 8px rgba(5, 18, 37, 0.86),
    0 0 32px rgba(94, 231, 255, 0.16),
    inset 0 0 0 5px rgba(94, 231, 255, 0.055);
}

.process-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.process-step h3 {
  margin-top: 0;
}

.mock-dashboard,
.real-estate,
.systems {
  grid-template-columns: 1fr;
}

.mock-sidebar {
  display: none;
}

.mock-window {
  min-height: 286px;
}

.mock-dashboard {
  min-height: 250px;
}

.site-mock-hero {
  grid-template-columns: 1fr;
}

.site-mock-panel {
  display: none;
}

.automation-status {
  align-items: flex-start;
  flex-direction: column;
}

.node-input {
  left: 6%;
}

.node-logic {
  left: 35%;
}

.node-output {
  right: 5%;
}

.why-grid {
  gap: 24px;
  margin-top: 0;
}

.why-editorial {
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 46px;
}

.why-heading {
  position: relative;
  top: auto;
}

.why-item p {
  max-width: none;
}

.final-cta {
  padding: clamp(36px, 7vw, 50px) 0 66px;
}

.cta-panel {
  min-height: 0;
  border-radius: 20px;
}

.contact-panel {
  grid-template-columns: 1fr;
  gap: 22px;
  padding: clamp(24px, 6.5vw, 34px);
}

.contact-copy .btn {
  width: 100%;
}

.contact-copy h2 {
  max-width: 15ch;
}

.contact-visual {
  min-height: auto;
}

.contact-person-frame {
  min-height: 0;
}

.contact-person-visual {
  width: min(100%, 330px);
  justify-self: center;
}

.contact-window {
  inset: 18px;
}

.contact-modal {
  padding: 14px;
}

.contact-modal-dialog {
  border-radius: 22px;
  max-height: calc(100svh - 28px);
  padding: 22px;
}

.contact-modal-close {
  top: 14px;
  right: 14px;
}

.contact-modal-copy {
  margin-bottom: 18px;
  padding-right: 36px;
}

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

.contact-submit {
  width: 100%;
  justify-self: stretch;
}

.about-hero {
  padding: clamp(54px, 13vw, 78px) 0 clamp(58px, 12vw, 82px);
}

.about-hero-copy h1 {
  font-size: clamp(2.42rem, 12vw, 3.7rem);
}

.about-hero-actions,
.about-final-panel {
  align-items: stretch;
  flex-direction: column;
}

.about-hero-actions .btn,
.about-final-panel .btn {
  align-self: stretch;
  width: 100%;
}

.about-system-visual {
  min-height: clamp(300px, 86vw, 390px);
}

.about-photo-frame {
  min-height: clamp(300px, 86vw, 390px);
  border-radius: 22px;
}

.about-orbit {
  border-radius: 22px;
}

.about-orbit::before {
  inset: 18px;
}

.about-hub {
  width: 96px;
  height: 96px;
  border-radius: 22px;
}

.about-hub strong {
  font-size: 2.35rem;
}

.about-node {
  min-width: 92px;
  padding: 11px 12px;
  font-size: 0.78rem;
}

.node-a { left: 6%; top: 10%; }
.node-b { right: 6%; top: 10%; }
.node-c { left: 6%; bottom: 10%; }
.node-d { right: 6%; bottom: 10%; }

.about-metric {
  padding: 12px 14px;
}

.metric-a {
  left: 8%;
  top: 49%;
}

.metric-b {
  right: 8%;
  top: 49%;
}

.about-vision-card,
.about-feature-card,
.about-value-card,
.about-final-panel {
  border-radius: 18px;
}

.about-card-grid,
.about-values-grid {
  margin-top: 28px;
}

.about-feature-card-large h3 {
  max-width: none;
}

.footer-grid {
  justify-items: start;
  gap: 22px;
}

.footer-links {
  justify-content: flex-start;
}

.site-footer {
  padding: clamp(54px, 12vw, 72px) 0 0;
}

@media (min-width: 480px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .nav-shell,
  .hero .container {
    width: min(calc(100% - 36px), 1280px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.48rem, 7vw, 3.35rem);
  }

  .sub-hero-actions {
    align-items: flex-start;
    flex-direction: row;
  }

  .about-hero-actions {
    align-items: flex-start;
    flex-direction: row;
  }

  .about-hero-actions .btn {
    width: auto;
  }

  .btn {
    width: auto;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    font-size: 0.7rem;
    letter-spacing: 0.085em;
  }

  .trust-grid :is(a, span) {
    white-space: nowrap;
  }

  .digital-visual {
    width: min(100%, 268px);
    aspect-ratio: 1.02;
  }

  .footer-grid {
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-video-section .hero-grid {
    align-content: start;
    align-items: start;
    min-height: auto;
    padding-top: clamp(72px, 16svh, 112px);
    padding-bottom: clamp(28px, 8svh, 58px);
  }

  .hero-video-section .hero-copy {
    max-width: 100%;
  }

  .case-studies .case-grid {
    justify-items: center;
  }

  .case-studies .case-card {
    width: min(100%, 520px);
  }

  .case-studies .image-mockup img {
    object-position: center;
  }
}

@media (min-width: 768px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .nav-shell,
  .hero .container {
    width: min(calc(100% - 48px), 1280px);
  }

  .section-pad {
    padding: clamp(90px, 12vw, 112px) 0;
  }

  .nav-shell {
    min-height: 76px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.5vw, 18px);
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    padding: 0;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
  }

  .nav-item {
    width: auto;
  }

  .nav-links > a,
  .nav-dropdown-toggle {
    width: auto;
    min-height: 42px;
    justify-content: center;
    padding: 0 12px;
    border-bottom: 0;
  }

  .nav-links > a:not(.nav-cta)::after,
  .nav-dropdown-toggle::after {
    display: block;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: -14px;
    width: min(292px, calc(100vw - 36px));
    max-height: none;
    overflow: visible;
    border: 1px solid rgba(218, 229, 242, 0.82);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.88)),
      rgba(255, 255, 255, 0.86);
    box-shadow:
      0 24px 70px rgba(8, 23, 54, 0.13),
      0 1px 0 rgba(255, 255, 255, 0.82) inset;
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.98);
    transition: opacity 220ms var(--ease-premium), transform 220ms var(--ease-premium);
    backdrop-filter: blur(18px);
  }

  .nav-dropdown::before {
    display: block;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-dropdown-menu a {
    min-height: 44px;
    background: transparent;
    padding: 10px 12px;
  }

  .nav-cta {
    min-height: 44px;
    justify-content: center;
    margin-top: 0;
    padding-inline: 18px;
    background: linear-gradient(135deg, #1269ff, #008dff 56%, #35d0ff);
    color: var(--white);
  }

  .hero {
    min-height: calc(100svh - 76px);
    padding-top: clamp(14px, 3svh, 30px);
    padding-bottom: 0;
  }

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

  .hero h1 {
    max-width: 15ch;
    font-size: clamp(3.3rem, 5.8vw, 4.2rem);
  }

  .hero h1 > span {
    display: block;
  }

  .hero-subline {
    font-size: clamp(1.14rem, 2vw, 1.32rem);
  }

  .trust-grid {
    font-size: 0.7rem;
    letter-spacing: 0.095em;
  }

  .trust-grid i,
  .trust-icon {
    width: 16px;
    height: 16px;
    border-radius: 999px;
  }

  .hero-grid {
    padding-block: clamp(8px, 2svh, 22px) clamp(30px, 4.5svh, 48px);
  }

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

  .digital-visual {
    width: min(100%, 340px);
  }

  .service-grid,
  .case-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-editorial {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .sub-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(34px, 5.4vw, 76px);
    max-width: 1080px;
  }

  .process-track::before {
    left: 16.666%;
    right: 16.666%;
    top: 25px;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(94, 231, 255, 0.12), rgba(94, 231, 255, 0.7), rgba(18, 105, 255, 0.22));
    box-shadow: 0 0 28px rgba(94, 231, 255, 0.24);
    transform-origin: left;
  }

  .js .process-track::before {
    transform: scaleX(0);
  }

  .js .process-track.is-visible::before {
    transform: scaleX(1);
  }

  .process-step {
    display: block;
    padding: 0 8px;
  }

  .process-step-top {
    display: grid;
    justify-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .step-number {
    position: static;
    width: 50px;
    height: 50px;
    font-size: 0.8rem;
    box-shadow:
      0 0 0 8px rgba(5, 18, 37, 0.88),
      0 0 34px rgba(94, 231, 255, 0.18),
      inset 0 0 0 5px rgba(94, 231, 255, 0.055);
  }

  .process-icon {
    width: 38px;
    height: 38px;
  }

  .process-step h3 {
    margin-top: 0;
    text-align: center;
  }

  .process-step p {
    margin-inline: auto;
    text-align: center;
  }

  .mock-dashboard {
    min-height: 250px;
  }

  .site-mock-hero {
    grid-template-columns: minmax(0, 1fr) 112px;
  }

  .site-mock-panel {
    display: grid;
  }

  .automation-status {
    align-items: center;
    flex-direction: row;
  }

  .why-grid {
    gap: 18px;
  }

  .cta-panel {
    align-items: center;
    flex-direction: row;
  }

  .contact-copy .btn {
    width: auto;
  }

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

  .contact-submit {
    width: auto;
    justify-self: start;
  }

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

@media (min-width: 1024px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .nav-shell,
  .hero .container {
    width: min(calc(100% - 40px), 1280px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.26fr) minmax(410px, 0.74fr);
    align-items: start;
    gap: 24px;
    align-content: center;
  }

  .hero-video-section .hero-grid {
    grid-template-columns: minmax(0, 860px);
    align-items: center;
    gap: 0;
    min-height: min(720px, calc(100svh - 142px));
  }

  .sub-hero-grid {
    grid-template-columns: minmax(0, 1.24fr) minmax(280px, 0.62fr);
    gap: clamp(32px, 4.8vw, 58px);
  }

  .contact-page-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
    gap: clamp(36px, 6vw, 86px);
  }

  .process-copy {
    grid-template-columns: 1fr;
    gap: clamp(26px, 3.5vw, 42px);
  }

  .process-copy h2 {
    white-space: nowrap;
  }

  .about-hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.86fr);
  }

  .about-final-panel {
    align-items: center;
    flex-direction: row;
  }

  .about-final-panel .btn {
    align-self: flex-end;
    width: auto;
  }

  .about-card-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .about-feature-card {
    grid-column: span 4;
  }

  .about-feature-card-large {
    grid-column: span 6;
    min-height: 310px;
  }

  .about-feature-card-large h3 {
    max-width: 12ch;
  }

  .sub-hero {
    padding: clamp(68px, 7.5vw, 96px) 0 clamp(56px, 6.5vw, 82px);
  }

  .hero h1 {
    max-width: 900px;
    font-size: clamp(3.25rem, 4.1vw, 3.9rem);
    line-height: 1.02;
  }

  .hero-visual {
    min-height: 430px;
    transform: translateY(-34px);
  }

  .digital-visual {
    width: min(100%, 495px);
    aspect-ratio: 1.05;
    transform: perspective(1050px) rotateX(var(--visual-tilt-x)) rotateY(var(--visual-tilt-y)) translate3d(var(--visual-shift-x), calc(var(--visual-shift-y) - 66px), 0);
  }

  .digital-core {
    width: 156px;
    height: 156px;
    border-radius: 34px;
  }

  .core-mark {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }

  .core-mark span {
    left: 17px;
    right: 17px;
    height: 11px;
  }

  .core-mark span:first-child {
    top: 22px;
  }

  .core-mark span:last-child {
    bottom: 22px;
  }

  .glass-panel-large {
    left: 2%;
    top: 18%;
    width: 230px;
    height: 154px;
    padding: 24px;
  }

  .glass-panel-small {
    right: 3%;
    top: 13%;
    width: 188px;
    height: 124px;
    padding: 22px;
  }

  .glass-panel-micro {
    right: 10%;
    bottom: 13%;
    width: 184px;
    height: 92px;
    gap: 10px;
    padding: 18px;
  }

  .glow-field-one {
    width: 210px;
    height: 210px;
  }

  .glow-field-two {
    width: 250px;
    height: 250px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    text-align: center;
  }

  .trust-strip {
    padding: 18px 0;
  }

  .trust-grid :is(a, span) {
    justify-content: center;
  }

  .section-heading {
    margin-bottom: 54px;
  }

  .service-card,
  .case-card {
    padding: 30px;
  }

  .process-track {
    margin-top: 52px;
  }

  .process-step {
    padding: 0 8px;
  }

  .step-number {
    width: 52px;
    height: 52px;
    font-size: 0.82rem;
  }

  .why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 0;
  }

  .final-cta {
    padding: clamp(44px, 5.8vw, 62px) 0 84px;
  }

  .cta-panel {
    border-radius: 24px;
  }

  .contact-panel {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: clamp(38px, 5vw, 64px);
  }

  .contact-visual {
    min-height: 330px;
  }

  .footer-grid {
    grid-template-columns: auto 1fr auto;
    justify-items: stretch;
    text-align: left;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .case-studies .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(30px, 4.2vw, 54px);
  }

}

@media (min-width: 1200px) {
  .case-studies .case-card {
    padding: 18px 18px 34px;
  }

  .case-studies .case-card p,
  .case-studies .case-card h3 {
    margin-left: 6px;
    margin-right: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal,
  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .js .hero-copy h1,
  .js .hero-subline,
  .js .process-track::before,
  .digital-visual {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
