:root {
  color-scheme: dark;
  --primary: #37B8F4;
  --secondary: #197AD4;
  --tertiary: #0F2D53;
  --accent: #002A2A;
  --base: #000000;
  --ink: #F5FBFF;
  --muted: #A8BCD0;
  --line: rgba(55, 184, 244, 0.22);
  --line-soft: rgba(255, 255, 255, 0.1);
  --glass: rgba(15, 45, 83, 0.46);
  --glass-strong: rgba(15, 45, 83, 0.68);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
  --header-height: 78px;
  --font: Inter, Sora, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="light"] {
  color-scheme: light;
  --base: #F6FBFF;
  --ink: #071C32;
  --muted: #526B83;
  --line: rgba(25, 122, 212, 0.2);
  --line-soft: rgba(15, 45, 83, 0.12);
  --glass: rgba(255, 255, 255, 0.7);
  --glass-strong: rgba(255, 255, 255, 0.86);
  --shadow: 0 24px 70px rgba(15, 45, 83, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(55, 184, 244, 0.24), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(25, 122, 212, 0.2), transparent 26rem),
    var(--base);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 14% 0%, rgba(55, 184, 244, 0.26), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(25, 122, 212, 0.14), transparent 27rem),
    linear-gradient(180deg, #F8FCFF 0%, #EEF8FF 46%, #F8FCFF 100%);
}

body.nav-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

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

::selection {
  color: #001018;
  background: var(--primary);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #001018;
  background: var(--primary);
  border-radius: var(--radius);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 54%, rgba(55, 184, 244, 0.24), rgba(25, 122, 212, 0.14) 17rem, transparent 31rem),
    radial-gradient(circle at 50% 20%, rgba(15, 45, 83, 0.72), transparent 28rem),
    linear-gradient(180deg, #030713, #000);
  opacity: 1;
  visibility: visible;
  transition: opacity 520ms ease, visibility 520ms ease;
  isolation: isolate;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader::before {
  position: absolute;
  inset: -24% -10% 24%;
  z-index: -2;
  background-image:
    linear-gradient(rgba(55, 184, 244, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 184, 244, 0.12) 1px, transparent 1px);
  background-size: 72px 42px;
  transform: perspective(640px) rotateX(58deg) scale(1.2);
  transform-origin: top center;
  mask-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.92) 54%, transparent 100%);
  animation: loaderGrid 5s linear infinite;
  content: "";
}

.site-loader::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(55, 184, 244, 0.12), transparent);
  transform: translateX(-100%);
  animation: loaderSweep 2.4s ease-in-out infinite;
  content: "";
}

.loader-core {
  position: relative;
  width: min(430px, calc(100vw - 40px));
  min-height: 280px;
  display: grid;
  place-items: center;
}

.loader-rings,
.loader-rings span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 210px;
  aspect-ratio: 1;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.loader-rings {
  border: 1px solid rgba(55, 184, 244, 0.24);
  box-shadow: 0 0 46px rgba(55, 184, 244, 0.24);
  animation: loaderSpin 6s linear infinite;
}

.loader-rings span {
  border: 1px solid rgba(55, 184, 244, 0.16);
}

.loader-rings span:nth-child(1) {
  width: 260px;
  transform: translate(-50%, -50%) rotate(22deg) scaleX(1.28);
}

.loader-rings span:nth-child(2) {
  width: 168px;
  transform: translate(-50%, -50%) rotate(-34deg) scaleX(1.42);
  border-color: rgba(133, 220, 255, 0.2);
  animation: loaderSpin 4.4s linear infinite reverse;
}

.loader-rings span:nth-child(3) {
  width: 12px;
  background: var(--primary);
  border: 0;
  box-shadow: 0 0 24px rgba(55, 184, 244, 0.9);
  transform: translate(88px, -50%);
}

.loader-logo-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(340px, calc(100vw - 64px));
  min-height: 88px;
  padding: 14px 20px;
  background: rgba(15, 45, 83, 0.42);
  border: 1px solid rgba(55, 184, 244, 0.18);
  border-radius: 9999px;
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.42), 0 0 54px rgba(55, 184, 244, 0.2);
  backdrop-filter: blur(20px);
}

.loader-logo {
  width: min(220px, 58vw);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.loader-bar {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: min(260px, 66vw);
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  transform: translateX(-50%);
}

.loader-bar span {
  display: block;
  width: 46%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--primary), #85dcff);
  border-radius: inherit;
  animation: loaderBar 1.2s ease-in-out infinite;
}

@keyframes loaderGrid {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 72px 42px, 72px 42px;
  }
}

@keyframes loaderSweep {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  35%,
  65% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes loaderSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderBar {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(260%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 86px;
  padding: 12px 0 8px;
  background: transparent;
}

.nav-shell {
  width: min(100% - 48px, 1288px);
  min-height: 64px;
  margin: 0 auto;
  padding: 8px 12px 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    linear-gradient(180deg, rgba(15, 45, 83, 0.56), rgba(0, 42, 42, 0.46));
  border: 0;
  border-radius: 9999px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-globe {
  width: clamp(38px, 3.4vw, 46px);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-wordmark {
  width: clamp(110px, 8.6vw, 142px);
  height: clamp(24px, 1.9vw, 31px);
  display: block;
  flex: 0 0 auto;
  background: #fff;
  -webkit-mask: url("../images/nexate-wordmark.png") center / contain no-repeat;
  mask: url("../images/nexate-wordmark.png") center / contain no-repeat;
}

.brand-loader {
  gap: 12px;
}

.brand-loader .brand-globe {
  width: clamp(52px, 12vw, 64px);
}

.brand-loader .brand-wordmark {
  width: clamp(160px, 42vw, 190px);
  height: clamp(34px, 9vw, 41px);
}

html[data-theme="light"] .brand-wordmark {
  background: var(--tertiary);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.35vw, 38px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
  font-weight: 520;
  letter-spacing: 0.01em;
  flex: 1 1 auto;
}

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  border-radius: 0;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  text-shadow: 0 0 18px rgba(55, 184, 244, 0.28);
}

.nav-links a:first-child {
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(55, 184, 244, 0.22);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 24px rgba(55, 184, 244, 0.08);
  backdrop-filter: blur(18px);
  flex: 0 0 auto;
}

.language-switcher button {
  min-width: 38px;
  min-height: 34px;
  padding: 7px 10px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  color: #fff;
  box-shadow: 0 0 18px rgba(55, 184, 244, 0.18);
}

.language-switcher button.is-active {
  color: #001018;
  background: linear-gradient(135deg, var(--primary), #85DCFF);
  box-shadow: 0 0 18px rgba(55, 184, 244, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.theme-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(55, 184, 244, 0.22);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 24px rgba(55, 184, 244, 0.08);
  backdrop-filter: blur(18px);
  flex: 0 0 auto;
}

.theme-switcher button {
  min-width: 54px;
  min-height: 34px;
  padding: 7px 10px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.03em;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.theme-switcher button:hover,
.theme-switcher button:focus-visible {
  color: #fff;
  box-shadow: 0 0 18px rgba(55, 184, 244, 0.18);
}

.theme-switcher button.is-active {
  color: #001018;
  background: linear-gradient(135deg, var(--primary), #85DCFF);
  box-shadow: 0 0 18px rgba(55, 184, 244, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.switch-short {
  display: none;
}

.nav-icon-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 999px;
  transition: background 160ms ease, transform 160ms ease;
}

.nav-icon-link:hover,
.nav-icon-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-icon-link svg {
  width: 22px;
  height: 22px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

body.nav-open .nav-toggle span {
  background: transparent;
}

body.nav-open .nav-toggle span::before {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: visible;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  box-shadow: 0 0 0 rgba(55, 184, 244, 0);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.btn::before {
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 42%, rgba(133, 220, 255, 0.52) 50%, transparent 64%);
  background-size: 260% 100%;
  background-position: 140% 0;
  opacity: 0;
  pointer-events: none;
  animation: buttonSheen 4.2s ease-in-out infinite;
  content: "";
}

.btn::after {
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(55, 184, 244, 0.42), rgba(25, 122, 212, 0.14) 45%, transparent 72%);
  opacity: 0.38;
  filter: blur(12px);
  pointer-events: none;
  animation: buttonAura 3.2s ease-in-out infinite;
  content: "";
}

.btn svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

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

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
}

.btn-primary {
  color: #001018;
  background: linear-gradient(135deg, var(--primary), #85dcff);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 38px rgba(55, 184, 244, 0.38), 0 0 34px rgba(55, 184, 244, 0.24);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 38px rgba(25, 122, 212, 0.32), 0 0 30px rgba(55, 184, 244, 0.2);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(55, 184, 244, 0.05);
  border-color: rgba(55, 184, 244, 0.28);
  box-shadow: 0 0 26px rgba(55, 184, 244, 0.12);
}

.btn-small {
  min-height: 52px;
  padding: 14px 30px;
  font-size: 0.95rem;
  border-radius: 999px;
}

.nav-cta .btn-primary {
  color: #020607;
  background: #fff;
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(255, 255, 255, 0.1), 0 0 28px rgba(55, 184, 244, 0.12);
}

.nav-cta .btn-primary:hover,
.nav-cta .btn-primary:focus-visible {
  color: #001018;
  background: linear-gradient(135deg, #fff, #DFF6FF);
  box-shadow: 0 16px 38px rgba(255, 255, 255, 0.14), 0 0 36px rgba(55, 184, 244, 0.26);
}

.btn-consultation {
  color: #EAF8FF;
  background: rgba(55, 184, 244, 0.06);
  border: 1px solid rgba(55, 184, 244, 0.42);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 38px rgba(55, 184, 244, 0.22),
    0 0 38px rgba(55, 184, 244, 0.18);
  animation: consultationPulse 2.8s ease-in-out infinite;
}

.btn-primary.btn-consultation {
  color: #EAF8FF;
  background: rgba(55, 184, 244, 0.06);
}

.btn-consultation::before {
  opacity: 0.58;
  background: linear-gradient(110deg, transparent 0%, rgba(55, 184, 244, 0.12) 38%, rgba(133, 220, 255, 0.42) 50%, rgba(55, 184, 244, 0.12) 62%, transparent 100%);
}

.btn-consultation::after {
  inset: -24px;
  opacity: 0.42;
  background: radial-gradient(circle, rgba(133, 220, 255, 0.32), rgba(55, 184, 244, 0.16) 38%, rgba(25, 122, 212, 0.08) 58%, transparent 76%);
  filter: blur(13px);
}

.btn-consultation:hover,
.btn-consultation:focus-visible {
  color: #fff;
  background: rgba(55, 184, 244, 0.12);
  border-color: rgba(133, 220, 255, 0.64);
  transform: translateY(-4px) scale(1.025);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 46px rgba(55, 184, 244, 0.34),
    0 0 54px rgba(55, 184, 244, 0.3);
}

@keyframes buttonSheen {
  0%,
  38% {
    opacity: 0;
    background-position: 150% 0;
  }
  48% {
    opacity: 0.85;
  }
  66% {
    opacity: 0.32;
  }
  100% {
    opacity: 0;
    background-position: -85% 0;
  }
}

@keyframes buttonAura {
  0%,
  100% {
    opacity: 0.26;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.62;
    transform: scale(1.08);
  }
}

@keyframes consultationPulse {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.28);
  }
}

.section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(15, 45, 83, 0.62), rgba(0, 0, 0, 0.92)),
    var(--tertiary);
}

.section-accent {
  background:
    radial-gradient(circle at 78% 0%, rgba(55, 184, 244, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(0, 42, 42, 0.96), rgba(0, 0, 0, 0.96));
}

.section-grid {
  background-image:
    linear-gradient(rgba(55, 184, 244, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 184, 244, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, black 15%, black 85%, transparent);
}

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

.narrow {
  width: min(100% - 40px, 820px);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.hero-title {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2,
.section-title {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.lead {
  color: #D3E7F8;
  font-size: 1.16rem;
  line-height: 1.75;
}

.muted {
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 28px 0 0;
  display: grid;
  align-items: start;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 58%, rgba(55, 184, 244, 0.42), rgba(25, 122, 212, 0.24) 15rem, transparent 30rem),
    radial-gradient(circle at 50% 34%, rgba(55, 184, 244, 0.1), transparent 28rem),
    linear-gradient(180deg, rgba(5, 5, 20, 0.76), rgba(6, 5, 18, 0.74) 58%, rgba(3, 3, 13, 0.96) 100%);
  content: "";
}

.hero::after {
  position: absolute;
  inset: -22% -8% 38%;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 78px 42px;
  opacity: 0.7;
  transform: perspective(620px) rotateX(58deg) scale(1.2);
  transform-origin: top center;
  mask-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.92) 48%, transparent 100%);
  content: "";
}

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

.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 58px;
  text-align: center;
}

.hero-copy {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
}

.hero-copy::before {
  position: absolute;
  inset: -90px -140px -70px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 34%, rgba(133, 220, 255, 0.18), rgba(55, 184, 244, 0.08) 32%, transparent 68%),
    linear-gradient(90deg, transparent, rgba(55, 184, 244, 0.12), transparent);
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  filter: blur(2px);
  content: "";
}

body.is-ready .hero-copy::before {
  animation: heroLightBloom 1500ms cubic-bezier(0.16, 1, 0.3, 1) 120ms forwards;
}

.hero-copy .hero-title,
.hero-copy > .lead,
.hero-copy .hero-actions {
  opacity: 0;
  transform: translateY(84px) scale(0.92);
  filter: blur(3px);
  clip-path: inset(0 0 100% 0);
}

.hero-copy .hero-title {
  --hero-enter-delay: 120ms;
}

.hero-copy > .lead {
  --hero-enter-delay: 380ms;
}

.hero-copy .hero-actions {
  --hero-enter-delay: 640ms;
}

body.is-ready .hero-copy .hero-title,
body.is-ready .hero-copy > .lead,
body.is-ready .hero-copy .hero-actions {
  animation: heroGrandIn 1320ms cubic-bezier(0.16, 1, 0.3, 1) var(--hero-enter-delay, 0ms) forwards;
}

.hero-copy .lead {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(245, 251, 255, 0.76);
  font-size: 1.17rem;
  font-weight: 720;
  line-height: 1.72;
}

.hero .hero-title {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(3.45rem, 6.5vw, 5.1rem);
  line-height: 1.12;
  font-weight: 560;
  text-wrap: balance;
  text-shadow: 0 0 0 rgba(55, 184, 244, 0);
}

.hero-copy .hero-title,
.nav-page-hero h1 {
  position: relative;
}

.hero-copy .hero-title::after,
.nav-page-hero h1::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 8%, rgba(133, 220, 255, 0.85) 48%, transparent 72%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  content: attr(data-hero-text);
}

body.is-ready .hero-copy .hero-title::after,
body.is-ready .nav-page-hero h1::after {
  animation: heroTextSheen 1550ms ease-out 920ms forwards;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}

.hero-actions {
  justify-content: center;
  margin-top: 28px;
  position: relative;
}

.hero-actions::before {
  position: absolute;
  inset: -52px -120px -58px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(55, 184, 244, 0.58), rgba(25, 122, 212, 0.22) 38%, transparent 72%);
  filter: blur(10px);
  content: "";
}

.hero-actions .btn-primary {
  min-height: 56px;
  padding: 15px 34px;
  color: #020607;
  background: #fff;
  border: 8px solid rgba(255, 255, 255, 0.16);
  background-clip: padding-box;
  box-shadow: 0 22px 64px rgba(55, 184, 244, 0.28);
}

.hero-actions .btn-consultation {
  color: #EAF8FF;
  background: rgba(55, 184, 244, 0.06);
  border: 1px solid rgba(55, 184, 244, 0.46);
  background-clip: border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 20px 54px rgba(55, 184, 244, 0.3),
    0 0 66px rgba(55, 184, 244, 0.24);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.metric {
  padding: 18px;
  background: rgba(15, 45, 83, 0.5);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.metric strong {
  display: block;
  color: #fff;
  font-size: 1.42rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.86rem;
}

.platform-visual {
  position: relative;
  width: min(100%, 980px);
  min-height: 300px;
  margin: 0 auto -150px;
}

.platform-orbit {
  position: absolute;
  inset: 10% 0 0 8%;
  border: 1px solid rgba(55, 184, 244, 0.18);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.platform-image {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto;
  border-radius: 24px;
  filter: drop-shadow(0 36px 90px rgba(0, 0, 0, 0.62));
}

.signal-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  color: #E9F8FF;
  background: rgba(0, 42, 42, 0.72);
  border: 1px solid rgba(55, 184, 244, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 760;
}

.signal-chip svg {
  width: 17px;
  height: 17px;
  color: var(--primary);
}

.signal-chip.one {
  top: 8%;
  right: 0;
}

.signal-chip.two {
  left: 0;
  bottom: 20%;
}

.signal-chip.three {
  right: 12%;
  bottom: 2%;
}

.trust-band {
  padding: 26px 0;
  background: rgba(0, 0, 0, 0.72);
  border-block: 1px solid var(--line-soft);
}

.trust-inner {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 28px;
  align-items: center;
}

.trust-inner p {
  margin: 0;
  color: #E2F3FF;
  font-weight: 760;
}

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

.logo-cloud span {
  min-height: 54px;
  display: grid;
  place-items: center;
  color: rgba(245, 251, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 800;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading-glow {
  position: relative;
  padding: 26px;
  background: rgba(15, 45, 83, 0.16);
  border: 1px solid rgba(55, 184, 244, 0.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 0 34px rgba(55, 184, 244, 0.07);
  animation: headingGlowPulse 6.8s ease-in-out infinite;
}

.section-heading-glow::before {
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--glow-x, 18%) 50%, rgba(55, 184, 244, 0.2), transparent 24rem),
    linear-gradient(105deg, transparent 0%, rgba(55, 184, 244, 0.1) 42%, rgba(133, 220, 255, 0.2) 50%, transparent 64%);
  background-size: 100% 100%, 240% 100%;
  background-position: center, 155% 0;
  opacity: 0.78;
  mix-blend-mode: screen;
  animation: headingGlowSweep 8.5s cubic-bezier(0.45, 0, 0.25, 1) infinite;
  content: "";
}

.section-heading-glow::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 28px rgba(55, 184, 244, 0.08), 0 0 24px rgba(55, 184, 244, 0.07);
  content: "";
}

.section-heading-glow > * {
  position: relative;
  z-index: 1;
}

.section-heading-glow .section-title {
  text-shadow: 0 0 24px rgba(55, 184, 244, 0.12);
}

@keyframes headingGlowPulse {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(55, 184, 244, 0.07);
    border-color: rgba(55, 184, 244, 0.12);
  }
  50% {
    box-shadow: 0 0 48px rgba(55, 184, 244, 0.14);
    border-color: rgba(55, 184, 244, 0.22);
  }
}

@keyframes headingGlowSweep {
  0% {
    background-position: center, 155% 0;
    --glow-x: 12%;
  }
  50% {
    background-position: center, 35% 0;
    --glow-x: 54%;
  }
  100% {
    background-position: center, -75% 0;
    --glow-x: 88%;
  }
}

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

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

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

.glass-card {
  position: relative;
  padding: 28px;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(15, 45, 83, 0.62), rgba(0, 42, 42, 0.28));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.glass-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(55, 184, 244, 0.16), transparent 42%);
  opacity: 0.68;
  content: "";
}

.glass-card > * {
  position: relative;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: #001018;
  background: linear-gradient(135deg, var(--primary), #A8E7FF);
  border-radius: var(--radius);
  box-shadow: 0 0 28px rgba(55, 184, 244, 0.24);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.glass-card p {
  color: var(--muted);
}

.card-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 800;
  text-shadow: 0 0 12px rgba(55, 184, 244, 0.22);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.card-link::after {
  width: 22px;
  height: 22px;
  margin-left: -24px;
  border-radius: 999px;
  background: rgba(55, 184, 244, 0.22);
  filter: blur(8px);
  opacity: 0.75;
  animation: arrowHaloPulse 1.9s ease-in-out infinite;
  content: "";
}

.card-link:hover,
.card-link:focus-visible {
  color: #85dcff;
  text-shadow: 0 0 14px rgba(55, 184, 244, 0.5), 0 0 30px rgba(55, 184, 244, 0.28);
}

.card-link:hover::after,
.card-link:focus-visible::after {
  opacity: 1;
  background: rgba(133, 220, 255, 0.34);
  filter: blur(10px);
}

.card-link svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  filter: drop-shadow(0 0 10px rgba(55, 184, 244, 0.72)) drop-shadow(0 0 18px rgba(55, 184, 244, 0.28));
  transform-origin: center;
  animation: arrowDriftGlow 1.9s ease-in-out infinite;
  transition: color 180ms ease, filter 180ms ease, transform 180ms ease;
}

.card-link:hover svg,
.card-link:focus-visible svg {
  color: #85dcff;
  filter: drop-shadow(0 0 14px rgba(55, 184, 244, 0.9));
  transform: translate(4px, -4px) scale(1.08);
}

@keyframes arrowDriftGlow {
  0%,
  100% {
    transform: translate(0, 0);
    filter: drop-shadow(0 0 9px rgba(55, 184, 244, 0.56)) drop-shadow(0 0 16px rgba(55, 184, 244, 0.22));
  }
  50% {
    transform: translate(3px, -3px);
    filter: drop-shadow(0 0 16px rgba(55, 184, 244, 0.95)) drop-shadow(0 0 28px rgba(133, 220, 255, 0.34));
  }
}

@keyframes arrowHaloPulse {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.48;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.92;
  }
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.68fr);
  gap: 54px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.feature-item svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.feature-item p {
  margin: 0;
  color: var(--muted);
}

.system-map {
  padding: 28px;
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-node {
  padding: 16px;
  margin: 14px 0;
  color: #EAF8FF;
  background: rgba(15, 45, 83, 0.72);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.map-node.primary-node {
  background: linear-gradient(135deg, rgba(55, 184, 244, 0.24), rgba(25, 122, 212, 0.18));
  border-color: rgba(55, 184, 244, 0.42);
}

.map-line {
  width: 1px;
  height: 28px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--primary), transparent);
}

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

.industry-tile {
  min-height: 160px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(15, 45, 83, 0.5);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.industry-tile svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.industry-tile p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.case-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: rgba(15, 45, 83, 0.55);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.case-visual {
  min-height: 188px;
  padding: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(55, 184, 244, 0.26), transparent 12rem),
    linear-gradient(135deg, rgba(15, 45, 83, 0.95), rgba(0, 42, 42, 0.9));
}

.case-visual img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.case-body {
  padding: 26px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  color: var(--primary);
  background: rgba(55, 184, 244, 0.08);
  border: 1px solid rgba(55, 184, 244, 0.18);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.result {
  padding: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.result strong {
  display: block;
  color: #fff;
  font-size: 1.18rem;
}

.result span {
  color: var(--muted);
  font-size: 0.78rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}

.step {
  counter-increment: step;
  padding: 28px;
  background: rgba(15, 45, 83, 0.46);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.step::before {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: #001018;
  background: var(--primary);
  border-radius: 999px;
  font-weight: 900;
  content: counter(step);
}

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

.quote-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.quote-card blockquote {
  margin: 0 0 24px;
  color: #E9F8FF;
  font-size: 1.02rem;
}

.quote-card cite {
  color: var(--muted);
  font-style: normal;
}

.cta-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(55, 184, 244, 0.22), transparent 26rem),
    linear-gradient(135deg, rgba(15, 45, 83, 0.96), rgba(0, 42, 42, 0.96));
  border-block: 1px solid var(--line);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.44fr);
  gap: 30px;
  align-items: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.7fr);
  gap: 46px;
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--muted);
}

.contact-point svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex: 0 0 auto;
  margin-top: 4px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--glass-strong);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.field {
  display: grid;
  gap: 7px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field label {
  color: #E9F8FF;
  font-size: 0.88rem;
  font-weight: 760;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  outline: none;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(55, 184, 244, 0.15);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--primary);
  font-weight: 750;
}

.page-hero {
  padding: 98px 0 72px;
  background:
    radial-gradient(circle at 18% 0%, rgba(55, 184, 244, 0.25), transparent 24rem),
    linear-gradient(180deg, rgba(15, 45, 83, 0.72), rgba(0, 0, 0, 0.96));
  border-bottom: 1px solid var(--line-soft);
}

.nav-page-hero {
  position: relative;
  min-height: 720px;
  padding: 38px 0 0;
  display: grid;
  align-items: start;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 58%, rgba(55, 184, 244, 0.5), rgba(25, 122, 212, 0.28) 15rem, transparent 29rem),
    radial-gradient(circle at 50% 34%, rgba(55, 184, 244, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(5, 5, 20, 0.98), rgba(6, 5, 18, 0.96) 58%, #03030d 100%);
  border-bottom: 0;
}

.nav-page-hero::after {
  position: absolute;
  inset: -22% -8% 38%;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 78px 42px;
  opacity: 0.68;
  transform: perspective(620px) rotateX(58deg) scale(1.2);
  transform-origin: top center;
  mask-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.92) 48%, transparent 100%);
  content: "";
}

.nav-page-hero .page-hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 54px;
  text-align: center;
}

.nav-page-hero .page-hero-grid > .reveal:first-child {
  position: relative;
  max-width: 990px;
}

.nav-page-hero .page-hero-grid > .reveal:first-child::before {
  position: absolute;
  inset: -54px -86px -48px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 18%, rgba(55, 184, 244, 0.16), rgba(25, 122, 212, 0.08) 36%, transparent 72%);
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  filter: blur(2px);
  content: "";
}

body.is-ready .nav-page-hero .page-hero-grid > .reveal:first-child::before {
  animation: sectionHeroBloom 1250ms cubic-bezier(0.16, 1, 0.3, 1) 80ms forwards;
}

.nav-page-hero .eyebrow,
.nav-page-hero h1,
.nav-page-hero .lead,
.nav-page-hero .cta-row {
  opacity: 0;
  transform: translateY(46px) scale(0.96);
  filter: blur(2px);
  clip-path: inset(0 0 100% 0);
}

body.is-ready .nav-page-hero .eyebrow,
body.is-ready .nav-page-hero h1,
body.is-ready .nav-page-hero .lead,
body.is-ready .nav-page-hero .cta-row {
  animation: sectionHeroIn 1050ms cubic-bezier(0.2, 0.9, 0.2, 1) var(--hero-enter-delay, 0ms) forwards;
}

.nav-page-hero .eyebrow {
  --hero-enter-delay: 0ms;
}

.nav-page-hero h1 {
  --hero-enter-delay: 180ms;
}

.nav-page-hero .lead {
  --hero-enter-delay: 440ms;
}

.nav-page-hero .cta-row {
  --hero-enter-delay: 700ms;
}

.nav-page-hero h1 {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(3.2rem, 6vw, 4.9rem);
  line-height: 1.12;
  font-weight: 560;
  text-wrap: balance;
}

.nav-page-hero .lead {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(245, 251, 255, 0.76);
  font-weight: 700;
}

.nav-page-hero .breadcrumb {
  justify-content: center;
}

.nav-page-hero .cta-row {
  justify-content: center;
}

.nav-page-hero .system-map {
  width: min(100%, 760px);
  margin: 0 auto;
}

.nav-page-hero .platform-image {
  width: min(100%, 900px);
  margin: 0 auto -150px;
  border-radius: 24px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr);
  gap: 46px;
  align-items: center;
}

html[data-theme="light"] .nav-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(238, 248, 255, 0.64));
  box-shadow: 0 20px 52px rgba(15, 45, 83, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .nav-links {
  color: rgba(7, 28, 50, 0.76);
}

html[data-theme="light"] .nav-links a:first-child {
  color: rgba(7, 28, 50, 0.86);
}

html[data-theme="light"] .nav-links a:hover,
html[data-theme="light"] .nav-links a:focus-visible {
  color: #071C32;
  text-shadow: 0 0 16px rgba(55, 184, 244, 0.24);
}

html[data-theme="light"] .language-switcher,
html[data-theme="light"] .theme-switcher {
  color: rgba(7, 28, 50, 0.78);
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(25, 122, 212, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 0 22px rgba(55, 184, 244, 0.08);
}

html[data-theme="light"] .nav-icon-link {
  color: #071C32;
}

html[data-theme="light"] .nav-icon-link:hover,
html[data-theme="light"] .nav-icon-link:focus-visible {
  background: rgba(25, 122, 212, 0.08);
}

html[data-theme="light"] .nav-toggle {
  color: #071C32;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 45, 83, 0.14);
}

html[data-theme="light"] .hero::before {
  background:
    radial-gradient(circle at 50% 58%, rgba(55, 184, 244, 0.28), rgba(25, 122, 212, 0.14) 15rem, transparent 30rem),
    radial-gradient(circle at 50% 34%, rgba(55, 184, 244, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(248, 252, 255, 0.92), rgba(238, 248, 255, 0.88) 58%, rgba(246, 251, 255, 0.98) 100%);
}

html[data-theme="light"] .hero .hero-title {
  color: rgba(7, 28, 50, 0.86);
  font-size: clamp(3.2rem, 6vw, 4.9rem);
  line-height: 1.12;
  font-weight: 560;
}

html[data-theme="light"] .hero::after,
html[data-theme="light"] .nav-page-hero::after {
  background-image:
    linear-gradient(rgba(15, 45, 83, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 45, 83, 0.08) 1px, transparent 1px);
  opacity: 0.62;
}

html[data-theme="light"] .lead {
  color: #31506C;
}

html[data-theme="light"] .trust-band {
  background:
    radial-gradient(circle at 18% 0%, rgba(55, 184, 244, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 248, 255, 0.78));
  border-block-color: rgba(15, 45, 83, 0.1);
}

html[data-theme="light"] .trust-inner p {
  color: #0B2A46;
}

html[data-theme="light"] .logo-cloud span {
  color: #0B2A46;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(239, 249, 255, 0.78)) padding-box,
    linear-gradient(135deg, var(--primary), var(--secondary), #85DCFF) border-box;
  border: 1.5px solid transparent;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(15, 45, 83, 0.08), 0 0 22px rgba(55, 184, 244, 0.12);
}

html[data-theme="light"] .section-dark {
  background:
    radial-gradient(circle at 16% 0%, rgba(55, 184, 244, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(246, 251, 255, 0.98), rgba(231, 244, 253, 0.9));
}

html[data-theme="light"] .section-accent {
  background:
    radial-gradient(circle at 78% 0%, rgba(55, 184, 244, 0.18), transparent 24rem),
    linear-gradient(180deg, #EAF7FF, #F8FCFF);
}

html[data-theme="light"] .section-grid {
  background-image:
    linear-gradient(rgba(15, 45, 83, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 45, 83, 0.06) 1px, transparent 1px);
}

html[data-theme="light"] .glass-card,
html[data-theme="light"] .metric,
html[data-theme="light"] .service-diagram,
html[data-theme="light"] .system-map,
html[data-theme="light"] .contact-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(235, 248, 255, 0.68));
  border-color: rgba(15, 45, 83, 0.12);
  box-shadow: var(--shadow);
}

html[data-theme="light"] .glass-card::before {
  background: linear-gradient(135deg, rgba(55, 184, 244, 0.18), transparent 48%);
  opacity: 0.82;
}

html[data-theme="light"] .map-node.primary-node {
  color: #0F2D53;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(220, 244, 255, 0.78));
  border-color: rgba(25, 122, 212, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 0 24px rgba(55, 184, 244, 0.12);
}

html[data-theme="light"] .btn-ghost,
html[data-theme="light"] .btn-consultation,
html[data-theme="light"] .btn-primary.btn-consultation {
  color: #073251;
  background: rgba(255, 255, 255, 0.54);
  border-color: rgba(25, 122, 212, 0.25);
  box-shadow: 0 14px 36px rgba(15, 45, 83, 0.12), 0 0 30px rgba(55, 184, 244, 0.14);
}

html[data-theme="light"] .btn-consultation:hover,
html[data-theme="light"] .btn-consultation:focus-visible {
  color: #001018;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(25, 122, 212, 0.36);
}

html[data-theme="light"] .cta-section a.btn-consultation,
html[data-theme="light"] .cta-section a.btn-primary.btn-consultation {
  color: #fff;
}

html[data-theme="light"] .cta-section a.btn-consultation:hover,
html[data-theme="light"] .cta-section a.btn-consultation:focus-visible {
  color: #fff;
}

html[data-theme="light"] .section-accent .step {
  background: linear-gradient(180deg, rgba(15, 45, 83, 0.92), rgba(0, 42, 42, 0.86));
  border-color: rgba(55, 184, 244, 0.24);
  box-shadow: 0 22px 54px rgba(15, 45, 83, 0.18);
}

html[data-theme="light"] .section-accent .step h3,
html[data-theme="light"] .section-accent .step .muted,
html[data-theme="light"] .section-accent .step p {
  color: #fff;
}

html[data-theme="light"] .quote-card {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(15, 45, 83, 0.12);
  box-shadow: 0 18px 44px rgba(15, 45, 83, 0.08);
}

html[data-theme="light"] .quote-card blockquote,
html[data-theme="light"] .quote-card cite {
  color: #071C32;
}

html[data-theme="light"] .insight-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(229, 246, 255, 0.78));
  border-color: rgba(15, 45, 83, 0.12);
  box-shadow: 0 18px 48px rgba(15, 45, 83, 0.1);
}

html[data-theme="light"] .insight-card h3 {
  color: #071C32;
}

html[data-theme="light"] .insight-card .muted,
html[data-theme="light"] .insight-card p {
  color: #263F58;
}

html[data-theme="light"] .insight-card .tag {
  color: #0F2D53;
  background: rgba(55, 184, 244, 0.13);
  border-color: rgba(25, 122, 212, 0.22);
}

html[data-theme="light"] .insight-thumb {
  color: #0F2D53;
  background:
    linear-gradient(rgba(25, 122, 212, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 122, 212, 0.1) 1px, transparent 1px),
    rgba(231, 247, 255, 0.86);
  border-color: rgba(25, 122, 212, 0.18);
}

html[data-theme="light"] .field label {
  color: #123A5C;
}

html[data-theme="light"] .field input,
html[data-theme="light"] .field select,
html[data-theme="light"] .field textarea {
  color: #071C32;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(15, 45, 83, 0.16);
}

html[data-theme="light"] .field input::placeholder,
html[data-theme="light"] .field textarea::placeholder {
  color: rgba(82, 107, 131, 0.82);
}

html[data-theme="light"] .cta-section .section-title,
html[data-theme="light"] .cta-section .lead,
html[data-theme="light"] .cta-section .contact-point {
  color: #fff;
}

html[data-theme="light"] .cta-section .contact-point svg {
  color: #85DCFF;
}

html[data-theme="light"] .page-hero {
  background:
    radial-gradient(circle at 18% 0%, rgba(55, 184, 244, 0.18), transparent 24rem),
    linear-gradient(180deg, #F8FCFF, #EAF7FF);
}

html[data-theme="light"] .nav-page-hero {
  background:
    radial-gradient(circle at 50% 58%, rgba(55, 184, 244, 0.32), rgba(25, 122, 212, 0.14) 15rem, transparent 29rem),
    radial-gradient(circle at 50% 34%, rgba(55, 184, 244, 0.1), transparent 28rem),
    linear-gradient(180deg, #F8FCFF, #EDF8FF 58%, #F8FCFF 100%);
}

html[data-theme="light"] .nav-page-hero h1 {
  color: rgba(7, 28, 50, 0.86);
}

html[data-theme="light"] .nav-page-hero .lead {
  color: rgba(49, 80, 108, 0.86);
}

html[data-theme="light"] .site-footer {
  background:
    radial-gradient(circle at 0% 0%, rgba(55, 184, 244, 0.16), transparent 24rem),
    linear-gradient(180deg, #F8FCFF, #E9F6FF);
  border-top-color: rgba(15, 45, 83, 0.12);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--primary);
}

.service-diagram {
  padding: 26px;
  background: rgba(0, 42, 42, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.diagram-row {
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  gap: 14px;
  align-items: center;
  margin: 16px 0;
}

.diagram-box {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  color: #E9F8FF;
  background: rgba(15, 45, 83, 0.74);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  font-weight: 800;
}

.diagram-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--primary);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.content-block {
  display: grid;
  gap: 22px;
}

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

.content-block li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.content-block li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--primary);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(55, 184, 244, 0.58);
  content: "";
}

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

.mini-card {
  padding: 22px;
  background: rgba(15, 45, 83, 0.48);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.mini-card svg {
  width: 26px;
  height: 26px;
  margin-bottom: 18px;
  color: var(--primary);
}

.mini-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.case-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.44fr);
  gap: 48px;
  align-items: start;
}

.impact-table {
  display: grid;
  gap: 12px;
}

.impact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.impact-row div {
  padding: 18px;
  background: rgba(15, 45, 83, 0.5);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.sidebar-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 24px;
  background: rgba(0, 42, 42, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.insight-list {
  display: grid;
  gap: 18px;
}

.insight-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 22px;
  background: rgba(15, 45, 83, 0.5);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.insight-thumb {
  min-height: 132px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background:
    linear-gradient(rgba(55, 184, 244, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 184, 244, 0.12) 1px, transparent 1px),
    rgba(0, 42, 42, 0.56);
  background-size: 22px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.site-footer {
  padding: 58px 0 32px;
  background: #020607;
  border-top: 1px solid var(--line-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, minmax(140px, 0.36fr));
  gap: 30px;
}

.footer-grid h3 {
  font-size: 0.95rem;
}

.footer-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding-top: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #001018;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(55, 184, 244, 0.35);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 460ms ease, transform 460ms ease;
}

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

@keyframes heroTextIn {
  0% {
    opacity: 0;
    transform: translateY(48px) scale(0.96);
    filter: blur(3px);
  }
  38% {
    opacity: 0.72;
    filter: blur(2px);
  }
  68% {
    opacity: 1;
    transform: translateY(-12px) scale(1.018);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroGrandIn {
  0% {
    opacity: 0;
    transform: translateY(84px) scale(0.92);
    filter: blur(3px);
    clip-path: inset(0 0 100% 0);
  }
  36% {
    opacity: 0.78;
    filter: blur(1.5px);
    clip-path: inset(0 0 18% 0);
  }
  68% {
    opacity: 1;
    transform: translateY(-14px) scale(1.018);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes sectionHeroIn {
  0% {
    opacity: 0;
    transform: translateY(46px) scale(0.96);
    filter: blur(2px);
    clip-path: inset(0 0 100% 0);
  }
  42% {
    opacity: 0.82;
    filter: blur(1px);
    clip-path: inset(0 0 16% 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes heroLightBloom {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.92);
  }
  55% {
    opacity: 1;
    transform: translateY(0) scale(1.04);
  }
  100% {
    opacity: 0.74;
    transform: translateY(0) scale(1);
  }
}

@keyframes sectionHeroBloom {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  100% {
    opacity: 0.78;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroTextSheen {
  0% {
    opacity: 0;
    background-position: 160% 50%;
  }
  24% {
    opacity: 0.7;
  }
  78% {
    opacity: 0.34;
  }
  100% {
    opacity: 0;
    background-position: -80% 50%;
  }
}

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

  .hero-copy .hero-title,
  .hero-copy > .lead,
  .hero-copy .hero-actions,
  .nav-page-hero .eyebrow,
  .nav-page-hero h1,
  .nav-page-hero .lead,
  .nav-page-hero .cta-row {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
}

@media (max-width: 1080px) {
  .hero-layout,
  .feature-split,
  .page-hero-grid,
  .contact-layout,
  .case-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .platform-image {
    margin: 0;
  }

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

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

  .section-heading,
  .cta-panel,
  .trust-inner {
    grid-template-columns: 1fr;
  }

  .logo-cloud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 76px;
    padding: 10px 0;
  }

  .nav-shell {
    min-height: 58px;
    padding-left: 18px;
  }

  .nav-shell {
    width: min(100% - 24px, var(--max));
    min-height: 58px;
    padding: 8px 8px 8px 18px;
    gap: 12px;
  }

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

  .language-switcher {
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    inset: 84px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 24px;
    background: rgba(16, 15, 28, 0.98);
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  html[data-theme="light"] .nav-links {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(15, 45, 83, 0.12);
  }

  .nav-links a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line-soft);
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 48px;
  }

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

  .section {
    padding: 72px 0;
  }

  .card-grid,
  .card-grid.two,
  .testimonial-grid,
  .steps,
  .benefit-grid,
  .industry-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .diagram-row {
    grid-template-columns: 1fr;
  }

  .diagram-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .impact-row,
  .insight-card {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow {
    width: min(100% - 28px, var(--max));
  }

  .nav-shell {
    padding: 7px 7px 7px 12px;
    gap: 6px;
  }

  .language-switcher,
  .theme-switcher {
    gap: 2px;
    padding: 3px;
  }

  .language-switcher button,
  .theme-switcher button {
    min-width: 34px;
    min-height: 30px;
    padding: 6px 8px;
    font-size: 0.72rem;
  }

  .theme-switcher button {
    min-width: 30px;
  }

  .switch-full {
    display: none;
  }

  .switch-short {
    display: inline;
  }

  h1,
  .hero-title {
    font-size: 3rem;
  }

  .section-title,
  h2 {
    font-size: 2.18rem;
  }

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

  .btn {
    width: 100%;
  }

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

  .brand {
    gap: 6px;
  }

  .brand-globe {
    width: 30px;
  }

  .brand-wordmark {
    width: 82px;
    height: 18px;
  }

  .signal-chip {
    position: static;
    margin-top: 10px;
  }

  .platform-orbit {
    display: none;
  }
}
