:root {
  --bg: #070c13;
  --bg-soft: #0b121b;
  --surface: #101822;
  --surface-2: #15212d;
  --surface-3: #1a2835;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #eef5f7;
  --muted: #99a8b1;
  --muted-2: #667781;
  --teal: #2bafaa;
  --teal-bright: #45e2d6;
  --teal-deep: #15736f;
  --danger: #ff735c;
  --max: 1180px;
  --radius: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--teal);
  color: #041311;
}

:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 4px;
}

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

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  box-shadow: 0 0 18px rgba(69, 226, 214, 0.7);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  border-bottom: 1px solid transparent;
  background: rgba(7, 12, 19, 0.54);
  backdrop-filter: blur(18px);
  transition: background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--border);
  background: rgba(7, 12, 19, 0.9);
}

.nav-shell {
  width: min(100%, var(--max));
  height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 750;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

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

.nav-item {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
}

.nav-links > a,
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  transition: color 180ms ease;
}

.nav-links > a::after,
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--teal-bright);
  transition: transform 220ms var(--ease);
}

.nav-links > a:hover,
.nav-link:hover,
.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link {
  color: var(--text);
}

.nav-links > a:hover::after,
.nav-link:hover::after,
.nav-item:hover .nav-link::after,
.nav-item:focus-within .nav-link::after {
  transform: scaleX(1);
}

.language-switch {
  position: relative;
  flex: 0 0 auto;
}

.language-toggle {
  min-width: 78px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.language-toggle:hover,
.language-switch.is-open .language-toggle {
  border-color: rgba(69, 226, 214, 0.36);
  background: rgba(69, 226, 214, 0.1);
  color: var(--teal-bright);
}

.language-toggle svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--ease);
}

.language-switch.is-open .language-toggle svg,
.mobile-language-switch.is-open .language-toggle svg {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  min-width: 184px;
  padding: 8px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: rgba(9, 15, 23, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms var(--ease), visibility 180ms ease;
}

.language-switch.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.language-menu a,
.language-menu > span {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
}

.language-menu a:hover,
.language-menu .is-active {
  color: var(--teal-bright);
  background: rgba(69, 226, 214, 0.1);
}

.language-menu > span[aria-disabled="true"] {
  opacity: 0.56;
  cursor: not-allowed;
}

.language-menu small {
  margin-left: auto;
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.language-flag {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
  font-size: 15px;
  line-height: 1;
}

.mega-menu {
  position: absolute;
  top: 76px;
  left: 50%;
  width: min(880px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 0.88fr 1.35fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 18%, rgba(69, 226, 214, 0.14), transparent 34%),
    rgba(9, 15, 23, 0.98);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 220ms var(--ease), visibility 180ms ease;
}

.mega-industries {
  width: min(700px, calc(100vw - 48px));
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.mega-intro {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(43, 175, 170, 0.16), transparent 52%),
    rgba(255, 255, 255, 0.035);
}

.mega-intro span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--teal-bright);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.mega-intro strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  line-height: 1.1;
}

.mega-intro p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

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

.mega-list-compact {
  align-content: start;
}

.mega-link {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.mega-link:hover,
.mega-link:focus-visible {
  border-color: rgba(69, 226, 214, 0.3);
  background: rgba(69, 226, 214, 0.08);
  transform: translateY(-2px);
}

.mega-link span {
  color: #e8f3f5;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.mega-link small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  place-items: center;
  gap: 4px;
  padding: 10px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms var(--ease), opacity 180ms ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding: 8px 24px 24px;
  border-top: 1px solid var(--border);
  background: rgba(7, 12, 19, 0.98);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.mobile-group {
  border-bottom: 1px solid var(--border);
}

.mobile-group summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

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

.mobile-group summary::after {
  content: "+";
  color: var(--teal-bright);
  font-weight: 800;
}

.mobile-group[open] summary::after {
  content: "-";
}

.mobile-group a {
  min-height: 42px;
  padding-left: 14px;
  color: var(--muted);
  font-size: 14px;
}

.mobile-menu .btn {
  margin-top: 16px;
  justify-content: center;
  border-bottom: 0;
}

.mobile-language-switch {
  position: relative;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-language-switch .language-toggle {
  width: 100%;
  min-height: 46px;
  justify-content: space-between;
  border-radius: var(--radius-sm);
  padding: 0 14px;
}

.mobile-language-switch .language-toggle > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.mobile-language-switch .language-menu {
  position: static;
  display: none;
  min-width: 0;
  margin-top: 8px;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.mobile-language-switch.is-open .language-menu {
  display: grid;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 220ms ease;
}

.btn svg {
  width: 17px;
  height: 17px;
}

.btn svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.btn-primary {
  background: var(--teal);
  color: #041311;
  box-shadow: 0 0 0 rgba(43, 175, 170, 0);
}

.btn-primary:hover {
  box-shadow: 0 16px 38px -18px rgba(69, 226, 214, 0.92);
}

.btn-secondary {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(69, 226, 214, 0.55);
  color: var(--teal-bright);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 96px;
  perspective: 1200px;
}

.hero-canvas,
.hero-gradient {
  position: absolute;
  inset: 0;
}

.hero-canvas {
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-gradient {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 44%, rgba(69, 226, 214, 0.2), transparent 35%),
    linear-gradient(90deg, rgba(7, 12, 19, 0.97) 0%, rgba(7, 12, 19, 0.81) 43%, rgba(7, 12, 19, 0.24) 100%),
    linear-gradient(180deg, rgba(7, 12, 19, 0.35), var(--bg) 96%);
}

.hero-orbit {
  position: absolute;
  top: 50%;
  right: max(18px, calc((100vw - var(--max)) / 2 - 24px));
  z-index: 1;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  transform: translateY(-47%) rotateX(58deg) rotateZ(-16deg);
  transform-style: preserve-3d;
  pointer-events: none;
  opacity: 0.92;
}

.orbit-ring,
.orbit-core,
.orbit-node {
  position: absolute;
  transform-style: preserve-3d;
}

.orbit-ring {
  inset: 7%;
  border: 1px solid rgba(69, 226, 214, 0.32);
  border-radius: 50%;
  box-shadow: inset 0 0 32px rgba(69, 226, 214, 0.08), 0 0 44px rgba(43, 175, 170, 0.08);
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 24px rgba(69, 226, 214, 0.95);
}

.orbit-ring::before {
  top: 15%;
  left: 18%;
}

.orbit-ring::after {
  right: 9%;
  bottom: 24%;
}

.orbit-ring-one {
  animation: orbitSpin 18s linear infinite;
}

.orbit-ring-two {
  inset: 20%;
  transform: rotateZ(54deg) translateZ(34px);
  opacity: 0.72;
  animation: orbitSpinReverse 13s linear infinite;
}

.orbit-core {
  top: 50%;
  left: 50%;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(69, 226, 214, 0.34);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(69, 226, 214, 0.2), rgba(16, 24, 34, 0.76)),
    rgba(16, 24, 34, 0.8);
  box-shadow: 0 28px 70px -30px rgba(69, 226, 214, 0.8);
  transform: translate(-50%, -50%) rotateX(-58deg) rotateZ(16deg) translateZ(66px);
  animation: coreFloat 4.8s ease-in-out infinite;
}

.orbit-core img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(69, 226, 214, 0.56));
}

.orbit-node {
  min-width: 78px;
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(69, 226, 214, 0.28);
  border-radius: var(--radius);
  padding: 8px 11px;
  background: rgba(16, 24, 34, 0.75);
  color: #d8fbf8;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 18px 48px -28px rgba(69, 226, 214, 0.85);
  transform: rotateX(-58deg) rotateZ(16deg) translateZ(92px);
  animation: nodeFloat 5.4s ease-in-out infinite;
}

.orbit-node-one {
  top: 12%;
  right: 18%;
}

.orbit-node-two {
  left: 8%;
  bottom: 28%;
  animation-delay: -1.8s;
}

.orbit-node-three {
  right: 4%;
  bottom: 10%;
  animation-delay: -3.2s;
}

@keyframes orbitSpin {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes orbitSpinReverse {
  to {
    transform: rotateZ(-306deg) translateZ(34px);
  }
}

@keyframes coreFloat {
  0%, 100% {
    transform: translate(-50%, -50%) rotateX(-58deg) rotateZ(16deg) translateZ(66px) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) rotateX(-58deg) rotateZ(16deg) translateZ(86px) translateY(-10px);
  }
}

@keyframes nodeFloat {
  0%, 100% {
    transform: rotateX(-58deg) rotateZ(16deg) translateZ(92px) translateY(0);
  }

  50% {
    transform: rotateX(-58deg) rotateZ(16deg) translateZ(112px) translateY(-9px);
  }
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  align-items: center;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal-bright);
  box-shadow: 0 0 18px rgba(69, 226, 214, 0.9);
}

.hero-title {
  margin: 0;
  max-width: 820px;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  color: #c4d0d6;
  font-size: 18px;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(69, 226, 214, 0.12), transparent 34%),
    rgba(16, 24, 34, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px -48px rgba(0, 0, 0, 0.9);
}

.panel-topline,
.signal-card,
.signal-grid > div,
.channel-stack span {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.panel-topline strong {
  color: var(--teal-bright);
}

.signal-card {
  margin-top: 12px;
  padding: 18px;
}

.signal-card span,
.signal-grid p {
  color: var(--muted);
  font-size: 13px;
}

.signal-card strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
  letter-spacing: 0;
}

.signal-card.is-active {
  position: relative;
  overflow: hidden;
}

.signal-card.is-active::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(69, 226, 214, 0.2), transparent);
  animation: scan 3.8s linear infinite;
}

@keyframes scan {
  to {
    transform: translateX(120%);
  }
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.signal-grid > div {
  padding: 16px;
}

.signal-grid span,
.signal-grid em {
  color: var(--teal-bright);
  font-size: 34px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0;
}

.signal-grid p {
  margin: 4px 0 0;
}

.channel-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.channel-stack span {
  padding: 8px 10px;
  color: #c8d6db;
  font-size: 12px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  width: 24px;
  height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 99px;
  background: var(--teal-bright);
  transform: translateX(-50%);
  animation: scrollCue 1.6s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  45% {
    opacity: 1;
  }

  80% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -42px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
}

.trust-item {
  padding: 26px;
  background: #081019;
}

.trust-item strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0;
}

.trust-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.platform-section {
  overflow: hidden;
  padding-top: 118px;
  background:
    radial-gradient(circle at 22% 22%, rgba(69, 226, 214, 0.12), transparent 30%),
    radial-gradient(circle at 78% 56%, rgba(43, 175, 170, 0.13), transparent 32%),
    var(--bg-soft);
}

.platform-heading {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.platform-stage {
  position: relative;
  width: min(100%, 980px);
  min-height: 540px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 54%),
    rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.platform-stage::before {
  content: "";
  position: absolute;
  inset: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(69, 226, 214, 0.18), transparent 22%),
    radial-gradient(circle, rgba(69, 226, 214, 0.07), transparent 54%);
  filter: blur(2px);
  animation: platformPulse 5.2s ease-in-out infinite;
}

.platform-orbit-line {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(69, 226, 214, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  pointer-events: none;
}

.platform-orbit-line-one {
  width: 72%;
  height: 56%;
  animation: platformRing 18s linear infinite;
}

.platform-orbit-line-two {
  width: 54%;
  height: 38%;
  border-color: rgba(255, 255, 255, 0.1);
  animation: platformRing 24s linear infinite reverse;
}

.platform-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 136px;
  height: 136px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(69, 226, 214, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(69, 226, 214, 0.2), rgba(7, 12, 19, 0.9)),
    var(--surface);
  box-shadow: 0 28px 70px -34px rgba(69, 226, 214, 0.9);
  transform: translate(-50%, -50%);
  animation: platformCoreFloat 4.8s ease-in-out infinite;
}

.platform-core img {
  width: 58px;
  height: 58px;
}

.platform-core span {
  margin-top: -16px;
  color: var(--teal-bright);
  font-size: 12px;
  font-weight: 850;
}

.platform-logo-cloud {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.platform-badge {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  width: var(--w, 148px);
  min-height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 13px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 248, 0.94));
  color: #081019;
  box-shadow: 0 30px 78px -48px rgba(0, 0, 0, 0.92);
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease;
  animation: platformFloat 6.8s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.platform-badge::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(69, 226, 214, 0.08), transparent 52%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.platform-badge:hover {
  border-color: rgba(69, 226, 214, 0.46);
  box-shadow: 0 32px 86px -36px rgba(69, 226, 214, 0.62);
  transform: translate(-50%, -50%) translateY(-8px) scale(1.04);
}

.platform-badge:hover::before {
  opacity: 1;
}

.platform-logo-frame {
  position: relative;
  z-index: 1;
  width: 104px;
  height: 42px;
  display: grid;
  place-items: center;
}

.platform-badge.is-icon .platform-logo-frame {
  width: 58px;
  height: 58px;
}

.platform-badge.is-wide {
  width: 168px;
}

.platform-badge.is-dark {
  background:
    linear-gradient(180deg, rgba(16, 23, 35, 0.98), rgba(8, 14, 22, 0.96));
  color: var(--text);
}

.platform-logo-frame img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

.platform-badge.is-icon .platform-logo-frame img {
  width: 58px;
  height: 58px;
}

.platform-name {
  position: relative;
  z-index: 1;
  color: #536069;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.platform-badge.is-dark .platform-name {
  color: rgba(238, 247, 250, 0.72);
}

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

@keyframes platformPulse {
  0%, 100% {
    opacity: 0.64;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes platformCoreFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

@keyframes platformFloat {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -14px;
  }
}

.certificate-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 44%),
    var(--bg);
}

.certificate-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 64px;
  align-items: center;
}

.certificate-copy {
  margin-bottom: 0;
}

.certificate-stage {
  position: relative;
  min-height: 520px;
  perspective: 1400px;
}

.certificate-stage::before {
  content: "";
  position: absolute;
  inset: 60px 10% 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 226, 214, 0.18), transparent 62%);
  filter: blur(12px);
  animation: certificateGlow 5.8s ease-in-out infinite;
}

.cert-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px 10px 54px 10px;
  padding: 30px;
  box-shadow: 0 34px 90px -48px rgba(0, 0, 0, 0.9);
  transform-style: preserve-3d;
  animation: certificateFloat 6.4s ease-in-out infinite;
}

.cert-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.24) 46%, transparent 56% 100%);
  transform: translateX(-120%);
  animation: certificateShine 5.6s ease-in-out infinite;
  pointer-events: none;
}

.cert-card-blue {
  z-index: 2;
  background: linear-gradient(155deg, #2e81ff, #1465ec);
  color: white;
  transform: translate(-96%, -48%) rotateY(18deg) rotateZ(-2deg);
  animation-delay: -1.3s;
}

.cert-card-white {
  z-index: 4;
  width: 340px;
  min-height: 430px;
  border-color: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: #f7f8fb;
  color: #10131a;
  transform: translate(-50%, -52%) translateZ(58px);
  box-shadow: 0 46px 110px -52px rgba(69, 226, 214, 0.72);
  animation-delay: -0.2s;
}

.cert-card-purple {
  z-index: 1;
  background: linear-gradient(155deg, #4330a8, #30228d);
  color: white;
  transform: translate(-2%, -48%) rotateY(-18deg) rotateZ(2deg);
  animation-delay: -2.6s;
}

.cert-mark {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 8px solid currentColor;
  border-radius: 50%;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.cert-label {
  margin: 34px 0 0;
  color: currentColor;
  font-size: 13px;
  font-weight: 800;
  opacity: 0.72;
  text-transform: uppercase;
}

.cert-card h3 {
  margin: 10px 0 0;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: 0;
}

.cert-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.2);
}

.cert-strip span {
  font-size: 13px;
  font-weight: 750;
}

.cert-strip strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.cert-strip strong::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #41f298;
  box-shadow: 0 0 14px rgba(65, 242, 152, 0.9);
}

.cert-name {
  margin: 72px 0 0;
  font-size: 31px;
  line-height: 0.98;
}

.cert-card-white .cert-label {
  margin-top: 0;
  color: #69727c;
}

.cert-card-white h3 {
  max-width: 250px;
  font-size: 42px;
}

.cert-card-white p:not(.cert-label) {
  max-width: 235px;
  margin: 168px 0 0;
  color: #5d6874;
  font-size: 13px;
  line-height: 1.45;
}

.cert-y {
  position: absolute;
  right: 42px;
  top: 132px;
  color: #f11818;
  font-size: 156px;
  font-weight: 400;
  line-height: 1;
}

.cert-foot {
  position: absolute;
  left: 30px;
  bottom: 30px;
  color: #11151d;
  font-size: 18px;
  font-weight: 800;
}

@keyframes certificateFloat {
  0%, 100% {
    margin-top: 0;
  }

  50% {
    margin-top: -18px;
  }
}

@keyframes certificateShine {
  0%, 46% {
    transform: translateX(-120%);
  }

  68%, 100% {
    transform: translateX(120%);
  }
}

@keyframes certificateGlow {
  0%, 100% {
    opacity: 0.58;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.section {
  padding: 110px 0;
  position: relative;
}

.inner-page {
  padding-top: 76px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 86px;
  background:
    radial-gradient(circle at 78% 16%, rgba(69, 226, 214, 0.15), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 58%),
    var(--bg);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(69, 226, 214, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 226, 214, 0.08) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 78%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  max-width: 860px;
}

.page-hero h1 {
  margin: 18px 0 0;
  max-width: 900px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

.page-hero p.lead {
  max-width: 710px;
  margin: 22px 0 0;
  color: #bdd0d5;
  font-size: 19px;
}

.breadcrumb {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li + li::before {
  content: "/";
  color: var(--muted-2);
}

.breadcrumb a {
  color: #d8e6e9;
  transition: color 180ms ease;
}

.breadcrumb a:hover {
  color: var(--teal-bright);
}

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

.page-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(43, 175, 170, 0.1), transparent 38%),
    var(--surface);
  transition: transform 200ms var(--ease), border-color 200ms ease, background 200ms ease;
}

.page-card:hover {
  transform: translateY(-4px);
  border-color: rgba(69, 226, 214, 0.34);
  background:
    linear-gradient(145deg, rgba(43, 175, 170, 0.16), transparent 42%),
    var(--surface-2);
}

.page-card h2,
.page-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0;
}

.page-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.page-card span {
  margin-top: 24px;
  color: var(--teal-bright);
  font-size: 13px;
  font-weight: 850;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.content-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.035);
}

.content-panel h2,
.content-panel h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.12;
}

.content-panel p {
  margin: 0;
  color: var(--muted);
}

.content-panel p + p {
  margin-top: 14px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: #cbd7dc;
  background: rgba(255, 255, 255, 0.035);
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 40%),
    var(--bg-soft);
}

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

.section-heading h2,
.content-block h2,
.contact-copy h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:last-child,
.content-block p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(43, 175, 170, 0.1), transparent 36%),
    var(--surface);
  transform-style: preserve-3d;
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(69, 226, 214, 0.18), transparent 28%),
    linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.04));
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal-bright), transparent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 220ms ease, transform 260ms var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(69, 226, 214, 0.38);
  background:
    linear-gradient(145deg, rgba(43, 175, 170, 0.16), transparent 40%),
    var(--surface-2);
  box-shadow: 0 34px 70px -48px rgba(69, 226, 214, 0.72);
}

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

.service-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.service-index {
  position: relative;
  z-index: 2;
  color: var(--teal-bright);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.service-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(69, 226, 214, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(69, 226, 214, 0.2), rgba(16, 24, 34, 0.76)),
    var(--surface-2);
  box-shadow: 0 22px 46px -26px rgba(69, 226, 214, 0.8);
  transform: rotateX(12deg) rotateY(-16deg) translateZ(0);
  transition: transform 260ms var(--ease), box-shadow 260ms ease, border-color 260ms ease;
}

.service-icon::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 12px;
  background: rgba(69, 226, 214, 0.08);
  transform: translateZ(-12px);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--teal-bright);
  filter: drop-shadow(0 0 12px rgba(69, 226, 214, 0.45));
}

.service-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .service-icon {
  border-color: rgba(69, 226, 214, 0.52);
  box-shadow: 0 28px 58px -28px rgba(69, 226, 214, 0.95);
  transform: rotateX(0deg) rotateY(0deg) translateY(-4px) scale(1.04);
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin: 42px 0 12px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0;
}

.service-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.media-frame {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 28px 80px -54px rgba(0, 0, 0, 0.95);
}

.media-frame img,
.industry-board img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.content-block {
  max-width: 570px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #c6d3d8;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(69, 226, 214, 0.14);
  border: 1px solid rgba(69, 226, 214, 0.45);
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 5px;
  width: 5px;
  height: 8px;
  border-right: 2px solid var(--teal-bright);
  border-bottom: 2px solid var(--teal-bright);
  transform: rotate(42deg);
}

.industry-board {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.industry-list {
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}

.industry-list article {
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  color: #cbd7dc;
  background: rgba(255, 255, 255, 0.035);
}

.industry-list article h3 {
  margin: 0 0 7px;
  font-size: 16px;
  letter-spacing: 0;
}

.industry-list article p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.035);
}

.process-step span {
  color: var(--teal-bright);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.process-step h3 {
  margin: 34px 0 8px;
  font-size: 20px;
  letter-spacing: 0;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--teal-bright);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 36px;
  height: 1px;
  align-self: center;
  margin-left: 12px;
  background: currentColor;
  transition: width 200ms var(--ease);
}

.text-link:hover::after {
  width: 56px;
}

.contact-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(69, 226, 214, 0.14), transparent 32%),
    var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-points {
  margin-top: 24px;
}

.contact-cards a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: #d4e0e4;
  background: rgba(255, 255, 255, 0.035);
}

.lead-form {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(150deg, rgba(43, 175, 170, 0.12), transparent 42%),
    var(--surface);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row {
  margin-bottom: 14px;
}

.form-row label {
  display: block;
  margin-bottom: 7px;
  color: #c9d6da;
  font-size: 13px;
  font-weight: 750;
}

.form-row label span {
  color: var(--teal-bright);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(43, 175, 170, 0.14);
  background: rgba(0, 0, 0, 0.3);
}

.form-row small {
  display: none;
  margin-top: 6px;
  color: var(--danger);
  font-size: 12px;
}

.form-row.is-error input,
.form-row.is-error textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(255, 115, 92, 0.12);
}

.form-row.is-error small {
  display: block;
}

.lead-form .btn {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--teal-bright);
  font-size: 13px;
}

.final-cta {
  padding-top: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 58px 40px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(69, 226, 214, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(43, 175, 170, 0.18), rgba(255, 255, 255, 0.035) 46%, rgba(11, 16, 25, 0.92));
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(69, 226, 214, 0.12);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}

.cta-band h2 {
  position: relative;
  max-width: 760px;
  margin: 0 auto 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.cta-band p {
  position: relative;
  max-width: 680px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 17px;
}

.cta-band .btn {
  position: relative;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
  background: #060a10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 42px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--teal-bright);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted-2);
  font-size: 13px;
}

.footer-credit {
  margin-top: 14px;
  text-align: center;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer .footer-credit a {
  display: inline-block;
  margin-top: 0;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1120px) {
  .nav-action {
    display: none;
  }

  .nav-links {
    gap: 14px;
  }
}

@media (max-width: 1040px) {
  .hero-title {
    font-size: 60px;
  }

  .section-heading h2,
  .content-block h2,
  .contact-copy h2,
  .cta-band h2 {
    font-size: 42px;
  }

  .hero-layout,
  .split-layout,
  .split-layout.reverse,
  .contact-grid,
  .content-grid,
  .certificate-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

  .hero-orbit {
    right: -150px;
    width: 560px;
    opacity: 0.42;
  }

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

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

  .platform-stage {
    min-height: 560px;
  }

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

  .certificate-stage {
    min-height: 470px;
  }

  .cert-card {
    width: 280px;
  }

  .cert-card-white {
    width: 320px;
  }

  .industry-board {
    grid-template-columns: 1fr;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .nav-shell {
    height: 68px;
    padding: 0 16px;
  }

  .nav-links,
  .nav-action,
  .language-switch {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 78px;
  }

  .hero-layout {
    gap: 38px;
  }

  .hero-title {
    font-size: 42px;
    letter-spacing: 0;
  }

  .section-heading h2,
  .content-block h2,
  .contact-copy h2,
  .cta-band h2 {
    font-size: 34px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 14px;
  }

  .hero-orbit {
    display: none;
  }

  .trust-strip {
    margin-top: 0;
  }

  .platform-section {
    padding-top: 74px;
  }

  .certificate-layout {
    gap: 36px;
  }

  .certificate-stage {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    perspective: none;
  }

  .certificate-stage::before {
    display: none;
  }

  .cert-card,
  .cert-card-blue,
  .cert-card-white,
  .cert-card-purple {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 300px;
    transform: none;
    animation: none;
  }

  .cert-card::after {
    display: none;
  }

  .cert-card-white p:not(.cert-label) {
    margin-top: 96px;
  }

  .cert-y {
    right: 26px;
    top: 98px;
    font-size: 118px;
  }

  .cert-name {
    margin-top: 48px;
  }

  .platform-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .platform-stage {
    min-height: auto;
    padding: 16px;
  }

  .platform-stage::before,
  .platform-orbit-line,
  .platform-core {
    display: none;
  }

  .platform-logo-cloud {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .platform-badge {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-height: 112px;
    border-radius: var(--radius);
    transform: none;
    animation: none;
  }

  .platform-badge:hover {
    transform: translateY(-4px);
  }

  .platform-badge.is-wide {
    width: auto;
  }

  .platform-logo-frame {
    width: 108px;
    height: 42px;
  }

  .trust-grid,
  .service-grid,
  .page-card-grid,
  .feature-list,
  .process-line,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 74px 0;
  }

  .inner-page {
    padding-top: 68px;
  }

  .page-hero {
    padding: 52px 0 62px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .page-hero p.lead {
    font-size: 16px;
  }

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

  .service-card {
    min-height: 220px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    top: 20px;
    right: 20px;
  }

  .service-icon svg {
    width: 25px;
    height: 25px;
  }

  .industry-list {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .lead-form {
    padding: 20px;
  }

  .cta-band {
    padding: 42px 22px;
  }

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

@media (max-width: 420px) {
  .hero-title {
    font-size: 36px;
  }

  .section-heading h2,
  .content-block h2,
  .contact-copy h2 {
    font-size: 30px;
  }

  .platform-stage {
    grid-template-columns: 1fr;
  }
}

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

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