:root {
  --canvas: #f5f5f7;
  --paper: #ffffff;
  --ink: #08090b;
  --ink-soft: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(8, 9, 11, 0.09);
  --night: #000000;
  --night-card: #151517;
  --night-muted: #a1a1a6;
  --violet: #6254e7;
  --sky: #68b6e8;
  --peach: #efa985;
  --rose: #d993bc;
  --aurora: linear-gradient(105deg, #6254e7 0%, #75b8e8 48%, #e5a0c3 100%);
  --glass: rgba(255, 255, 255, 0.68);
  --glass-line: rgba(255, 255, 255, 0.82);
  --glass-shadow: 0 32px 100px rgba(38, 48, 68, 0.14);
  --shell: min(1280px, calc(100% - 64px));
  --font: Inter, ui-sans-serif, system-ui, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button {
  border: 0;
}

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

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

h1,
h2,
h3 {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.siteCanvas {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.headerLayer {
  position: relative;
  z-index: 80;
  width: 100%;
  padding-top: calc(env(safe-area-inset-top) + 14px);
  background: var(--canvas);
  pointer-events: auto;
}

.siteHeader {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  min-height: 78px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(8, 9, 11, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: auto;
}

.siteHeader::after {
  position: absolute;
  right: auto;
  bottom: -1px;
  left: 0;
  width: 72px;
  height: 2px;
  background: var(--aurora);
  content: "";
}

.brandHome {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 2px;
  width: fit-content;
  border-radius: 10px;
}

.brandLockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.foldMark {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  background: var(--ink);
}

.foldMark i {
  position: absolute;
  top: 8px;
  display: block;
  width: 5px;
  height: 15px;
  border-radius: 5px;
  background: var(--paper);
  transform: skewY(-34deg);
}

.foldMark i:first-child {
  left: 9px;
}

.foldMark i:last-child {
  right: 9px;
  transform: skewY(34deg);
}

.brandLockup > span:last-child {
  display: flex;
  align-items: baseline;
  gap: 4px;
  min-width: 0;
  white-space: nowrap;
}

.brandLockup b {
  font-size: 12px;
  font-weight: 670;
  letter-spacing: -0.015em;
}

.brandLockup small {
  color: var(--muted);
  font-size: 12px;
}

.desktopNav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktopNav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0;
  border-radius: 0;
  color: #55555a;
  font-size: 12px;
  font-weight: 560;
  transition: color 180ms ease;
}

.desktopNav a::after {
  position: absolute;
  right: 100%;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: right 220ms ease;
}

.desktopNav a:hover {
  color: var(--ink);
  background: transparent;
}

.desktopNav a:hover::after {
  right: 0;
}

.headerActions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 7px;
}

.languageTrigger,
.menuTrigger {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.languageTrigger {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.languageTrigger i {
  display: none;
}

.portalButton,
.primaryButton,
.menuPortal,
.formSubmit button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: var(--ink);
  font-weight: 600;
}

.portalButton {
  min-height: 46px;
  padding: 0 15px 0 18px;
  border-radius: 6px;
  font-size: 12px;
  transition: transform 180ms ease, background 180ms ease;
}

.portalButton:hover,
.primaryButton:hover {
  background: #2a2a2d;
  transform: translateY(-1px);
}

.lineArrow {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}

.lineArrow::before,
.lineArrow::after {
  position: absolute;
  content: "";
}

.lineArrow::before {
  top: 6px;
  left: 1px;
  width: 11px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
}

.lineArrow::after {
  top: 3px;
  right: 1px;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.lineArrow.down {
  transform: rotate(90deg);
}

.lineArrow.up {
  transform: rotate(-90deg);
}

.menuTrigger {
  display: none;
  border: 1px solid rgba(8, 9, 11, 0.14);
  background: transparent;
}

.menuTrigger i,
.menuClose i,
.sheetHead > button i {
  position: absolute;
  left: 50%;
  display: block;
  width: 16px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transform: translateX(-50%);
}

.menuTrigger i:first-child { top: 20px; }
.menuTrigger i:last-child { top: 26px; }

.languageOverlay,
.mobileMenu {
  position: fixed;
  z-index: 120;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.languageOverlay.visible,
.mobileMenu.visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.overlayBackdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(8, 9, 11, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.languageSheet {
  position: absolute;
  right: max(20px, env(safe-area-inset-right), calc((100vw - 1280px) / 2));
  bottom: max(20px, env(safe-area-inset-bottom));
  width: min(560px, calc(100% - 40px));
  max-height: min(620px, 82svh);
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 100px rgba(8, 9, 11, 0.22);
  transform: translateY(22px) scale(0.98);
  transition: transform 240ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.languageOverlay.visible .languageSheet {
  transform: translateY(0) scale(1);
}

.sheetHead {
  position: sticky;
  z-index: 3;
  top: -1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 10px;
  background: rgba(255, 255, 255, 0.96);
}

.sheetHead h2 {
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.sheetHead > button,
.menuClose {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(8, 9, 11, 0.06);
  cursor: pointer;
}

.sheetHead > button i:first-child,
.menuClose i:first-child {
  transform: translateX(-50%) rotate(45deg);
}

.sheetHead > button i:last-child,
.menuClose i:last-child {
  transform: translateX(-50%) rotate(-45deg);
}

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

.languageGrid button {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 58px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(245, 245, 247, 0.7);
  text-align: left;
  cursor: pointer;
}

.languageGrid button.selected {
  border-color: rgba(0, 113, 227, 0.35);
  background: rgba(0, 113, 227, 0.08);
}

.languageGrid button span {
  min-width: 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
}

.languageGrid button b {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.languageGrid button i {
  display: none;
  position: absolute;
  right: 9px;
  bottom: 4px;
  color: #0069d2;
  font-size: 8px;
  font-style: normal;
}

.languageGrid button.selected i {
  display: block;
}

.mobileMenu {
  display: none;
  min-height: 100svh;
  height: 100dvh;
  overflow: auto;
  padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  background: var(--canvas);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 220ms ease;
}

.mobileMenu.visible {
  transform: translateY(0);
}

.mobileMenuInner {
  display: flex;
  flex-direction: column;
  width: min(100%, 680px);
  min-height: calc(100dvh - max(20px, env(safe-area-inset-top)) - max(20px, env(safe-area-inset-bottom)));
  margin-inline: auto;
}

.menuTop {
  position: sticky;
  z-index: 3;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  background: linear-gradient(180deg, rgba(245, 245, 247, 0.98) 80%, transparent);
}

.mobileMenu nav {
  display: grid;
  margin-top: clamp(28px, 8vh, 70px);
  border-top: 1px solid var(--line);
}

.mobileMenu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.045em;
}

.mobileMenu nav .lineArrow {
  color: var(--muted);
}

.menuBottom {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 30px;
}

.menuPortal,
.menuBottom > button {
  min-height: 56px;
  padding: 0 17px;
  border-radius: 16px;
}

.menuPortal {
  font-size: 14px;
}

.menuBottom > button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  background: rgba(8, 9, 11, 0.05);
  text-align: left;
}

.menuBottom > button span {
  color: var(--muted);
  font-size: 11px;
}

.menuBottom > button b {
  font-size: 13px;
}

.menuBottom > button i {
  color: #0069d2;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.luminousHero {
  position: relative;
  min-height: 1100px;
  overflow: hidden;
  padding: 72px 0 40px;
  background: radial-gradient(circle at 50% 78%, rgba(104, 182, 232, 0.1), transparent 34%), var(--canvas);
}

.heroCopy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.eyebrow,
.sectionLabel,
.darkIntro > p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.01em;
}

.heroCopy h1 {
  max-width: 1160px;
  margin-top: 28px;
  hyphens: none;
  overflow-wrap: normal;
  font-size: clamp(68px, 8.8vw, 132px);
  font-weight: 680;
  line-height: 0.91;
  letter-spacing: -0.072em;
  text-wrap: balance;
}

.heroCopy h1 em {
  display: inline;
  color: transparent;
  background: var(--aurora);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.heroBody {
  max-width: 650px;
  margin-top: 34px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.46;
  letter-spacing: -0.025em;
}

.primaryButton {
  min-width: 190px;
  min-height: 56px;
  margin-top: 34px;
  padding: 0 20px 0 24px;
  border-radius: 17px;
  font-size: 14px;
  transition: transform 180ms ease, background 180ms ease;
}

.coreStage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 1040px);
  height: 580px;
  margin: 30px auto 0;
  perspective: 1400px;
  isolation: isolate;
}

.coreAurora {
  position: absolute;
  bottom: 18%;
  left: 50%;
  width: min(830px, 82vw);
  height: 230px;
  border-radius: 50%;
  background: var(--aurora);
  filter: blur(75px);
  opacity: 0.31;
  transform: translateX(-50%);
}

.coreShadow {
  position: absolute;
  bottom: 14%;
  left: 50%;
  width: 560px;
  height: 130px;
  border-radius: 50%;
  background: rgba(30, 39, 58, 0.16);
  filter: blur(36px);
  transform: translateX(-50%);
}

.coreStack {
  position: relative;
  width: min(680px, 78vw);
  aspect-ratio: 1.38;
  transform: rotateX(57deg) rotateZ(-21deg);
  transform-style: preserve-3d;
  animation: coreFloat 9s ease-in-out infinite;
}

.coreLayer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: clamp(26px, 4vw, 52px);
  background: radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.96), transparent 32%), linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(211, 220, 239, 0.32));
  box-shadow: var(--glass-shadow), inset 0 0 50px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  transform-style: preserve-3d;
}

.coreLayerBack {
  opacity: 0.5;
  transform: translate3d(30px, 38px, -90px);
}

.coreLayerMiddle {
  opacity: 0.72;
  transform: translate3d(15px, 20px, -46px);
}

.coreLayerTop {
  background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.98), transparent 36%), linear-gradient(140deg, rgba(255, 255, 255, 0.86), rgba(225, 230, 241, 0.5));
}

.coreLayerBack > i,
.coreLayerMiddle > i {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(98, 84, 231, 0.16);
  filter: blur(22px);
}

.coreLayerBack i:first-child { top: 14%; left: 17%; width: 33%; height: 33%; }
.coreLayerBack i:last-child { right: 12%; bottom: 8%; width: 40%; height: 38%; background: rgba(239, 169, 133, 0.18); }
.coreLayerMiddle i { top: 22%; right: 18%; width: 38%; height: 38%; background: rgba(104, 182, 232, 0.2); }

.coreSurface {
  position: absolute;
  inset: 7%;
  overflow: hidden;
  border: 1px solid rgba(8, 9, 11, 0.08);
  border-radius: clamp(20px, 3vw, 40px);
  background: rgba(255, 255, 255, 0.38);
}

.coreBrand {
  position: absolute;
  top: 8%;
  left: 6%;
  display: flex;
  align-items: center;
  gap: 11px;
}

.coreBrand .foldMark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}

.coreBrand .foldMark i { top: 10px; height: 18px; }
.coreBrand .foldMark i:first-child { left: 11px; }
.coreBrand .foldMark i:last-child { right: 11px; }

.coreBrand b {
  font-size: 16px;
  letter-spacing: -0.04em;
}

.coreFlow {
  position: absolute;
  right: -8%;
  bottom: -14%;
  width: 84%;
  height: 72%;
  border-radius: 48% 54% 0 0;
  background: linear-gradient(120deg, rgba(98, 84, 231, 0.75), rgba(104, 182, 232, 0.55) 46%, rgba(217, 147, 188, 0.55));
  filter: saturate(110%);
  transform: rotate(-8deg);
}

.coreFlow i {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.coreFlow i:first-child { inset: 12% 16%; }
.coreFlow i:nth-child(2) { inset: 25% 5%; }
.coreFlow i:last-child { inset: 2% 31%; }

.coreDot {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #1d1d1f;
  box-shadow: 0 3px 13px rgba(8, 9, 11, 0.25);
}

.dotOne { top: 31%; left: 28%; }
.dotTwo { top: 49%; right: 22%; }
.dotThree { bottom: 14%; left: 43%; }

.flowDeck {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 64px));
  min-height: 570px;
  margin: 58px auto 80px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 48px;
  color: #fff;
  background: radial-gradient(circle at 77% 12%, rgba(104, 182, 232, 0.18), transparent 25%), radial-gradient(circle at 58% 82%, rgba(98, 84, 231, 0.18), transparent 31%), #070708;
  box-shadow: 0 70px 150px rgba(15, 20, 34, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  isolation: isolate;
}

.flowDeck::before {
  position: absolute;
  z-index: 5;
  content: "";
  inset: 1px;
  border-radius: 47px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 22% 74%, rgba(255, 255, 255, 0.05));
  pointer-events: none;
}

.deckTop {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 78px;
  padding: 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.deckIdentity,
.deckStatus {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #a1a1a6;
  font-size: 12px;
}

.deckIdentity b {
  overflow: hidden;
  font-weight: 560;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deckIdentity .foldMark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fff;
}

.deckIdentity .foldMark i {
  top: 7px;
  width: 4px;
  height: 14px;
  background: #08090b;
}

.deckIdentity .foldMark i:first-child { left: 8px; }
.deckIdentity .foldMark i:last-child { right: 8px; }

.deckStatus { flex: 0 0 auto; }

.deckStatus i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #70d58a;
  box-shadow: 0 0 0 5px rgba(112, 213, 138, 0.1), 0 0 24px rgba(112, 213, 138, 0.42);
}

.deckBody {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  min-height: 390px;
}

.deckNarrative {
  position: relative;
  z-index: 3;
  align-self: end;
  min-width: 0;
  padding: 42px 20px 48px 42px;
  animation: deckNarrativeIn 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.deckNarrative > span {
  color: #77777d;
  font-size: 12px;
  font-weight: 650;
}

.deckNarrative h2 {
  max-width: 440px;
  margin-top: 16px;
  hyphens: none;
  font-size: clamp(40px, 4.6vw, 68px);
  font-weight: 640;
  line-height: 0.96;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.deckNarrative p {
  max-width: 400px;
  margin-top: 22px;
  color: #a1a1a6;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.018em;
}

.machineWindow {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.machineGlow {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: var(--aurora);
  filter: blur(90px);
  opacity: 0.24;
  transform: translate(-50%, -50%);
}

.machineTrack {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  width: 300%;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.flowDeck[data-step="0"] .machineTrack { transform: translate3d(0, 0, 0); }
.flowDeck[data-step="1"] .machineTrack { transform: translate3d(-33.3333%, 0, 0); }
.flowDeck[data-step="2"] .machineTrack { transform: translate3d(-66.6666%, 0, 0); }

.machineScene {
  position: relative;
  flex: 0 0 33.3333%;
  min-width: 0;
  overflow: hidden;
}

.signalScene {
  background: radial-gradient(circle at 50% 48%, rgba(104, 182, 232, 0.08), transparent 40%);
}

.signalLine {
  position: absolute;
  top: 53%;
  left: 10%;
  width: 82%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 84, 231, 0.9), rgba(117, 184, 232, 0.95), rgba(229, 160, 195, 0.9), transparent);
  box-shadow: 0 0 22px rgba(117, 184, 232, 0.45);
  transform: rotate(-16deg);
  animation: signalSweep 8s ease-in-out infinite;
}

.signalScene > i {
  position: absolute;
  display: block;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: #6254e7;
  box-shadow: 0 0 20px rgba(98, 84, 231, 0.64);
  animation: signalDrift 5.8s ease-in-out infinite alternate;
}

.signalScene > i:nth-of-type(1) { top: 22%; left: 17%; }
.signalScene > i:nth-of-type(2) { top: 37%; left: 35%; animation-delay: -1.1s; background: var(--sky); }
.signalScene > i:nth-of-type(3) { top: 20%; right: 24%; animation-delay: -2.4s; background: var(--rose); }
.signalScene > i:nth-of-type(4) { top: 48%; right: 12%; animation-delay: -0.7s; }
.signalScene > i:nth-of-type(5) { right: 28%; bottom: 21%; animation-delay: -3.2s; background: var(--peach); }
.signalScene > i:nth-of-type(6) { bottom: 14%; left: 39%; animation-delay: -1.8s; background: var(--sky); }
.signalScene > i:nth-of-type(7) { bottom: 30%; left: 14%; animation-delay: -4s; background: var(--rose); }
.signalScene > i:nth-of-type(8) { top: 12%; left: 51%; width: 7px; height: 7px; animation-delay: -2.8s; }
.signalScene > i:nth-of-type(9) { top: 62%; left: 55%; width: 8px; height: 8px; animation-delay: -0.3s; }
.signalScene > i:nth-of-type(10) { top: 38%; right: 38%; width: 7px; height: 7px; animation-delay: -3.7s; }
.signalScene > i:nth-of-type(11) { right: 8%; bottom: 10%; width: 8px; height: 8px; animation-delay: -2s; }

.buildScene > i,
.scaleField > i {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 20px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lightSpine {
  position: absolute;
  top: 9%;
  bottom: 9%;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, #75b8e8 22%, #6254e7 58%, #e5a0c3 82%, transparent);
  box-shadow: 0 0 34px rgba(117, 184, 232, 0.5);
}

.buildScene > i {
  position: absolute;
  display: block;
  width: clamp(82px, 10vw, 132px);
  aspect-ratio: 1.22;
}

.buildScene > i:nth-of-type(1) { top: 13%; left: 18%; transform: rotate(-7deg); }
.buildScene > i:nth-of-type(2) { top: 18%; right: 17%; transform: rotate(6deg); }
.buildScene > i:nth-of-type(3) { top: 46%; left: 32%; transform: translateX(-50%) rotate(4deg); }
.buildScene > i:nth-of-type(4) { top: 49%; right: 22%; transform: rotate(-5deg); }
.buildScene > i:nth-of-type(5) { bottom: 8%; left: 50%; background: linear-gradient(145deg, rgba(117, 184, 232, 0.24), rgba(98, 84, 231, 0.08)); transform: translateX(-50%); }

.scaleField {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(4, minmax(42px, 1fr));
  gap: clamp(9px, 1.2vw, 16px);
  width: min(72%, 520px);
  transform: translate(-50%, -50%) perspective(800px) rotateX(56deg) rotateZ(-12deg);
  transform-style: preserve-3d;
}

.scaleField > i {
  display: block;
  aspect-ratio: 1;
  border-radius: clamp(13px, 1.8vw, 22px);
}

.scaleField > i:nth-child(3n + 1) { background: linear-gradient(145deg, rgba(98, 84, 231, 0.25), rgba(255, 255, 255, 0.04)); }
.scaleField > i:nth-child(3n + 2) { background: linear-gradient(145deg, rgba(104, 182, 232, 0.23), rgba(255, 255, 255, 0.04)); }
.scaleField > i:nth-child(3n) { background: linear-gradient(145deg, rgba(217, 147, 188, 0.21), rgba(255, 255, 255, 0.04)); }

.scalePulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(117, 184, 232, 0.38);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(98, 84, 231, 0.2), inset 0 0 70px rgba(104, 182, 232, 0.08);
  transform: translate(-50%, -50%);
  animation: scaleBreath 5.2s ease-in-out infinite;
}

.deckTabs {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.deckTabs button {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  min-height: 82px;
  padding: 0 28px;
  color: #747479;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease;
}

.deckTabs button + button { border-left: 1px solid rgba(255, 255, 255, 0.1); }
.deckTabs button span { font-size: 11px; font-weight: 650; }

.deckTabs button b {
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 560;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deckTabs button > i {
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 28px;
  height: 2px;
  background: var(--aurora);
  transition: right 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.deckTabs button[aria-selected="true"] { color: #fff; background: rgba(255, 255, 255, 0.025); }
.deckTabs button[aria-selected="true"] > i { right: 28px; }

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

@keyframes signalDrift { to { transform: translate3d(8px, -10px, 0); } }

@keyframes signalSweep {
  0%, 100% { opacity: 0.55; filter: saturate(85%); }
  50% { opacity: 1; filter: saturate(135%); }
}

@keyframes scaleBreath {
  0%, 100% { opacity: 0.38; transform: translate(-50%, -50%) scale(0.93); }
  50% { opacity: 0.78; transform: translate(-50%, -50%) scale(1.04); }
}

.heroScroll {
  position: absolute;
  right: max(32px, calc((100vw - 1280px) / 2));
  bottom: 30px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.5);
}

.sectionSpace {
  padding-block: 150px;
}

#expertise,
#approach,
#company,
#contact {
  scroll-margin-top: 24px;
}

.capabilitiesSection {
  color: #fff;
  background: var(--night);
  border-radius: 42px 42px 0 0;
}

.darkIntro {
  display: grid;
  justify-items: center;
  margin-bottom: 80px;
  text-align: center;
}

.darkIntro > p {
  color: var(--night-muted);
}

.darkIntro h2,
.approachLead h2,
.companyCopy h2,
.contactLead h2 {
  max-width: 980px;
  margin-top: 22px;
  font-size: clamp(52px, 6.7vw, 92px);
  font-weight: 660;
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.darkIntro h2 em,
.approachLead h2 em,
.companyCopy h2 em,
.contactLead h2 em {
  color: var(--muted);
  font-style: normal;
}

.darkIntro h2 em {
  color: transparent;
  background: var(--aurora);
  background-clip: text;
  -webkit-background-clip: text;
}

.darkIntro > span {
  max-width: 650px;
  margin-top: 28px;
  color: var(--night-muted);
  font-size: 18px;
  line-height: 1.5;
}

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

.capabilityCard {
  position: relative;
  min-width: 0;
  min-height: 500px;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background: var(--night-card);
}

.capabilityCard.card1,
.capabilityCard.card4 {
  grid-column: span 2;
  min-height: 520px;
}

.cardCopy {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.cardCopy > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--night-muted);
  font-size: 10px;
}

.cardCopy h3 {
  margin-top: 34px;
  font-size: clamp(34px, 3.7vw, 54px);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.05em;
}

.cardCopy p {
  max-width: 480px;
  margin-top: 18px;
  color: var(--night-muted);
  font-size: 15px;
  line-height: 1.58;
}

.cardCopy b {
  display: block;
  margin-top: 28px;
  color: #7c7c82;
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.02em;
}

.capVisual {
  position: absolute;
  pointer-events: none;
}

.productVisual {
  right: 5%;
  bottom: 5%;
  width: min(48%, 540px);
  aspect-ratio: 1.35;
  transform: rotate(-7deg);
}

.productVisual i {
  position: absolute;
  inset: 0;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.13), rgba(98, 84, 231, 0.1));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.productVisual i:nth-child(2) { transform: translate(-28px, -28px); opacity: 0.65; }
.productVisual i:nth-child(3) { transform: translate(-56px, -56px); opacity: 0.34; }
.productVisual b { position: absolute; right: 18%; bottom: 17%; width: 36%; height: 36%; border-radius: 50%; background: var(--aurora); filter: blur(26px); opacity: 0.65; }

.intelligenceVisual {
  right: -10%;
  bottom: -10%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(117, 184, 232, 0.22);
  border-radius: 50%;
}

.intelligenceVisual i {
  position: absolute;
  inset: 15%;
  display: block;
  border: 1px solid rgba(117, 184, 232, 0.18);
  border-radius: 50%;
}

.intelligenceVisual i:nth-child(2) { inset: 31%; }
.intelligenceVisual i:nth-child(3) { inset: 46%; background: #75b8e8; box-shadow: 0 0 60px rgba(117, 184, 232, 0.7); }
.intelligenceVisual b { position: absolute; inset: 22%; border-radius: 50%; background: rgba(98, 84, 231, 0.14); filter: blur(26px); }

.platformVisual {
  right: -8%;
  bottom: 6%;
  width: 70%;
  height: 48%;
}

.platformVisual i {
  position: absolute;
  right: 0;
  left: 0;
  height: 56%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.1), rgba(217, 147, 188, 0.08));
  transform: skewX(-10deg);
}

.platformVisual i:first-child { top: 0; }
.platformVisual i:nth-child(2) { top: 23%; left: 9%; opacity: 0.7; }
.platformVisual i:last-child { top: 46%; left: 18%; opacity: 0.38; }

.strategyVisual {
  right: 4%;
  bottom: -14%;
  width: min(48%, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.strategyVisual i {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #6254e7;
  box-shadow: 0 0 30px rgba(98, 84, 231, 0.8);
}

.strategyVisual i:first-child { top: 18%; left: 28%; }
.strategyVisual i:nth-child(2) { top: 43%; right: 8%; background: #68b6e8; }
.strategyVisual i:nth-child(3) { bottom: 18%; left: 34%; background: #d993bc; }
.strategyVisual b { position: absolute; top: 49%; left: 8%; width: 84%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent); transform: rotate(18deg); }

.approachSection {
  background: var(--canvas);
}

.approachLayout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  gap: 9vw;
  align-items: center;
}

.approachLead > p:last-child,
.companyCopy > p:last-child,
.contactLead > p:nth-of-type(2) {
  max-width: 650px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.56;
  letter-spacing: -0.018em;
}

.approachSystem {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(104, 182, 232, 0.12), transparent 57%);
}

.systemHalo {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background: var(--aurora);
  filter: blur(48px);
  opacity: 0.22;
}

.systemCore {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--glass-shadow);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.systemCore .foldMark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.systemCore .foldMark i { top: 13px; height: 22px; width: 7px; }
.systemCore .foldMark i:first-child { left: 14px; }
.systemCore .foldMark i:last-child { right: 14px; }
.systemCore > i { position: absolute; inset: -24px; border: 1px dashed rgba(8,9,11,.14); border-radius: 42px; }

.systemOrbit {
  position: absolute;
  display: block;
  border: 1px solid rgba(8, 9, 11, 0.12);
  border-radius: 50%;
}

.orbitA { inset: 14% 34%; }
.orbitB { inset: 34% 14%; }

.systemPoint {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(8, 9, 11, 0.16);
}

.approachSystem .pointA { top: 17%; left: 35%; background: var(--violet); }
.approachSystem .pointB { top: 47%; right: 13%; background: var(--sky); }
.approachSystem .pointC { bottom: 16%; left: 31%; background: var(--rose); }

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

.processSteps article {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--paper);
}

.processSteps article > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #0069d2;
  background: rgba(0, 113, 227, 0.08);
  font-size: 10px;
  font-weight: 700;
}

.processSteps h3 {
  margin-top: 32px;
  font-size: 29px;
  font-weight: 630;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.processSteps p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.companySection {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #edf6ff, #f8f5fb 52%, #fff6f0);
  border-radius: 42px;
}

.companyAurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.companyAurora i {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
}

.companyAurora i:first-child { top: -20%; right: 4%; width: 500px; height: 500px; background: var(--sky); }
.companyAurora i:last-child { bottom: -35%; left: 12%; width: 540px; height: 540px; background: var(--peach); }

.companyLayout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.62fr);
  gap: 8vw;
  align-items: end;
}

.companyFacts {
  display: grid;
  gap: 10px;
}

.companyFacts > div,
.companyFacts > a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-width: 0;
  min-height: 88px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 45px rgba(57, 71, 101, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.companyFacts span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 10px;
}

.companyFacts b {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 13px;
  font-weight: 600;
}

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

.contactSection {
  color: #fff;
  background: var(--night);
}

.contactLayout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 0.76fr);
  gap: 8vw;
  align-items: start;
}

.contactLead .sectionLabel {
  color: var(--night-muted);
}

.contactLead h2 em {
  color: transparent;
  background: var(--aurora);
  background-clip: text;
  -webkit-background-clip: text;
}

.contactLead > p:nth-of-type(2) {
  color: var(--night-muted);
}

.directContacts {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.directContacts a {
  display: grid;
  grid-template-columns: minmax(86px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.directContacts span {
  color: #7b7b80;
  font-size: 10px;
}

.directContacts b {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 13px;
  font-weight: 560;
}

.contactForm {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 30px;
  color: var(--ink);
  background: var(--paper);
}

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

.contactForm label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contactForm label > span {
  color: #55555a;
  font-size: 11px;
  font-weight: 600;
}

.contactForm input,
.contactForm textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(8, 9, 11, 0.12);
  border-radius: 14px;
  outline: none;
  color: var(--ink);
  background: var(--canvas);
  font-size: 16px;
  scroll-margin-bottom: 32dvh;
  transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contactForm input {
  min-height: 56px;
  padding: 0 15px;
}

.contactForm textarea {
  min-height: 142px;
  padding: 15px;
  resize: vertical;
}

.contactForm input::placeholder,
.contactForm textarea::placeholder {
  color: #929297;
}

.contactForm input:focus,
.contactForm textarea:focus {
  border-color: #0069d2;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 105, 210, 0.13);
}

.contactForm input:disabled {
  opacity: 0.52;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.captchaRow {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr);
}

.captchaRow label > span b {
  color: var(--ink);
  font-size: 12px;
}

.challengeStatus {
  margin-top: -4px;
  color: #8f3027;
  font-size: 12px;
  line-height: 1.5;
}

.formSubmit {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: end;
}

.formSubmit > p {
  max-width: 390px;
  color: #76767b;
  font-size: 10px;
  line-height: 1.55;
}

.formSubmit button {
  min-width: 190px;
  min-height: 56px;
  padding: 0 18px 0 21px;
  border-radius: 16px;
  font-size: 13px;
  cursor: pointer;
}

.formSubmit button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.submitSpinner {
  display: block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: rotate 800ms linear infinite;
}

.formStatus {
  padding: 13px 15px;
  border-radius: 12px;
  font-size: 13px;
  outline: none;
}

.formStatus.success {
  color: #125637;
  background: rgba(45, 161, 101, 0.12);
}

.formStatus.error {
  color: #8f3027;
  background: rgba(187, 65, 52, 0.1);
}

.siteFooter {
  padding: 70px 0 max(28px, env(safe-area-inset-bottom));
  background: var(--canvas);
}

.footerMain {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 86px;
  border-bottom: 1px solid var(--line);
}

.footerMain > p {
  color: var(--muted);
  font-size: 13px;
}

.footerMain > a {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 44px;
  min-height: 44px;
  color: var(--muted);
  font-size: 11px;
}

.footerLegal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: #8b8b90;
  font-size: 10px;
}

@keyframes coreFloat {
  0%, 100% { transform: rotateX(57deg) rotateZ(-21deg) translate3d(0, 0, 0); }
  50% { transform: rotateX(57deg) rotateZ(-21deg) translate3d(0, -8px, 0); }
}

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

@media (hover: hover) and (pointer: fine) {
  .capabilityCard {
    transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
  }
  .capabilityCard:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: #1a1a1d;
    transform: translateY(-5px);
  }
}

@media (max-width: 1080px) {
  :root { --shell: min(100% - 40px, 980px); }
  .shell {
    width: auto;
    max-width: 980px;
    margin-left: max(20px, env(safe-area-inset-left));
    margin-right: max(20px, env(safe-area-inset-right));
  }
  .flowDeck {
    width: auto;
    margin-left: max(20px, env(safe-area-inset-left));
    margin-right: max(20px, env(safe-area-inset-right));
  }
  .siteHeader { grid-template-columns: 1fr auto; min-height: 72px; }
  .desktopNav,
  .languageTrigger { display: none; }
  .portalButton { display: inline-flex; }
  .menuTrigger,
  .mobileMenu { display: block; }
  .luminousHero { padding-top: 64px; }
  .approachLayout,
  .companyLayout,
  .contactLayout { grid-template-columns: 1fr; gap: 70px; }
  .approachLead,
  .companyCopy,
  .contactLead { max-width: 760px; }
  .approachSystem { width: min(100%, 570px); justify-self: center; }
  .companyFacts,
  .contactForm { justify-self: center; width: min(100%, 760px); }
}

@media (max-width: 900px) {
  .sectionSpace { padding-block: 112px; }
  .capabilityBento,
  .processSteps { grid-template-columns: 1fr; }
  .capabilityCard,
  .capabilityCard.card1,
  .capabilityCard.card4 { grid-column: auto; min-height: 440px; padding: 30px; }
  .processSteps { margin-top: 64px; }
  .footerMain { grid-template-columns: 1fr auto; }
  .footerMain > p { display: none; }
  .footerMain > a span { display: none; }
  .footerLegal { flex-direction: column; }
}

@media (max-width: 860px) {
  .flowDeck { border-radius: 36px; }
  .flowDeck::before { border-radius: 35px; }
  .deckBody { grid-template-columns: 1fr; min-height: 540px; }
  .deckNarrative { align-self: auto; min-height: 230px; padding: 34px 34px 28px; }
  .deckNarrative h2 { max-width: 640px; font-size: clamp(40px, 7.4vw, 58px); }
  .deckNarrative p { max-width: 620px; }
  .machineWindow { min-height: 310px; border-top: 1px solid rgba(255, 255, 255, 0.08); border-left: 0; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 32px); }
  .shell {
    margin-left: max(16px, env(safe-area-inset-left));
    margin-right: max(16px, env(safe-area-inset-right));
  }
  .headerLayer { padding-top: calc(env(safe-area-inset-top) + 8px); }
  .siteHeader { min-height: 62px; padding: 0; border-radius: 0; }
  .portalButton,
  .languageTrigger { display: none; }
  .languageTrigger,
  .menuTrigger { width: 46px; height: 46px; }
  .luminousHero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 42px;
  }
  .heroCopy h1 { margin-top: 22px; font-size: clamp(50px, 13vw, 72px); line-height: 0.94; letter-spacing: -0.065em; }
  .heroBody { max-width: 36ch; margin-top: 24px; font-size: 17px; line-height: 1.5; }
  .primaryButton { width: min(100%, 360px); margin-top: 26px; }
  .flowDeck {
    min-height: 0;
    margin: 36px max(10px, env(safe-area-inset-right)) 24px max(10px, env(safe-area-inset-left));
    border-radius: 30px;
  }
  .flowDeck::before { border-radius: 29px; }
  .deckTop { min-height: 62px; padding: 0 18px; }
  .deckIdentity,
  .deckStatus { font-size: 11px; }
  .deckBody { min-height: 510px; }
  .deckNarrative { min-height: 220px; padding: 28px 20px 22px; }
  .deckNarrative h2 { margin-top: 10px; font-size: clamp(35px, 10.4vw, 46px); }
  .deckNarrative p { margin-top: 14px; font-size: 15px; }
  .machineWindow { min-height: 290px; }
  .machineGlow { filter: blur(58px); }
  .deckTabs button { min-height: 66px; padding: 0 16px; grid-template-columns: 24px minmax(0, 1fr); }
  .deckTabs button > i { left: 16px; }
  .deckTabs button[aria-selected="true"] > i { right: 16px; }
  .coreStage { width: 100%; height: 350px; margin-top: 18px; }
  .coreStack { width: min(560px, 88vw); }
  .coreAurora { width: 90vw; height: 150px; filter: blur(52px); opacity: 0.26; }
  .coreShadow { width: 72vw; height: 90px; }
  .heroScroll { display: none; }
  .sectionSpace { padding-block: 96px; }
  .capabilitiesSection { border-radius: 28px 28px 0 0; }
  .darkIntro { margin-bottom: 46px; }
  .darkIntro h2,
  .approachLead h2,
  .companyCopy h2,
  .contactLead h2 { font-size: clamp(43px, 11.7vw, 61px); line-height: 0.98; letter-spacing: -0.055em; }
  .darkIntro > span,
  .approachLead > p:last-child,
  .companyCopy > p:last-child,
  .contactLead > p:nth-of-type(2) { margin-top: 22px; font-size: 16px; }
  .capabilityBento { grid-template-columns: 1fr; gap: 11px; }
  .capabilityCard,
  .capabilityCard.card1,
  .capabilityCard.card4 { grid-column: auto; min-height: 440px; padding: 25px; border-radius: 25px; }
  .cardCopy h3 { margin-top: 26px; font-size: 36px; }
  .productVisual,
  .strategyVisual { width: 72%; }
  .intelligenceVisual,
  .platformVisual { width: 72%; }
  .processSteps { grid-template-columns: 1fr; gap: 10px; margin-top: 56px; }
  .processSteps article { padding: 24px; border-radius: 22px; }
  .processSteps h3 { margin-top: 26px; font-size: 29px; }
  .companySection { border-radius: 28px; }
  .companyLayout,
  .contactLayout { gap: 50px; }
  .companyFacts > div,
  .companyFacts > a { min-height: 82px; border-radius: 19px; }
  .directContacts { margin-top: 36px; }
  .contactForm { gap: 18px; padding: 20px; border-radius: 25px; }
  .fieldPair { grid-template-columns: 1fr; gap: 18px; }
  .captchaRow { grid-template-columns: 1fr; }
  .formSubmit { grid-template-columns: 1fr; gap: 18px; }
  .formSubmit button { width: 100%; }
  .footerMain { grid-template-columns: 1fr auto; }
  .footerMain > p { display: none; }
  .footerMain > a span { display: none; }
  .footerLegal { flex-direction: column; }
}

@media (max-width: 520px) {
  :root { --shell: calc(100% - 28px); }
  .brandLockup small { display: none; }
  .brandLockup b { font-size: 11px; }
  .foldMark { width: 30px; height: 30px; }
  .languageSheet {
    right: max(8px, env(safe-area-inset-right));
    left: max(8px, env(safe-area-inset-left));
    bottom: max(8px, env(safe-area-inset-bottom));
    width: auto;
    max-height: min(620px, 82svh);
    padding: 17px;
    border-radius: 23px;
  }
  .languageGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .languageGrid button { min-height: 54px; }
  .mobileMenu nav { margin-top: 28px; }
  .mobileMenu nav a { min-height: 58px; font-size: clamp(27px, 8.4vw, 36px); }
  .menuBottom { padding-top: 24px; }
  .deckStatus { max-width: 42%; text-align: right; }
  .deckTabs button { grid-template-columns: 1fr; place-items: center; padding: 0; }
  .deckTabs button b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
  .deckTabs button > i { left: 12px; }
  .deckTabs button[aria-selected="true"] > i { right: 12px; }
  .eyebrow { max-width: 34ch; font-size: 10px; line-height: 1.45; }
  .heroCopy h1 { font-size: clamp(47px, 13.2vw, 62px); }
  main[data-locale="ru"] .heroCopy h1,
  main[data-locale="lv"] .heroCopy h1,
  main[data-locale="lt"] .heroCopy h1,
  main[data-locale="et"] .heroCopy h1,
  main[data-locale="de"] .heroCopy h1,
  main[data-locale="fr"] .heroCopy h1,
  main[data-locale="fi"] .heroCopy h1,
  main[data-locale="da"] .heroCopy h1 { font-size: clamp(42px, 11.6vw, 54px); }
  .coreStage { height: 300px; }
  .coreStack { width: min(500px, 92vw); }
  .coreBrand .foldMark { width: 30px; height: 30px; border-radius: 9px; }
  .coreBrand .foldMark i { top: 8px; height: 14px; width: 4px; }
  .coreBrand .foldMark i:first-child { left: 9px; }
  .coreBrand .foldMark i:last-child { right: 9px; }
  .coreBrand b { font-size: 13px; }
  .sectionSpace { padding-block: 78px; }
  .darkIntro h2,
  .approachLead h2,
  .companyCopy h2,
  .contactLead h2 { font-size: clamp(39px, 11vw, 50px); }
  main[data-locale="ru"] .darkIntro h2,
  main[data-locale="ru"] .approachLead h2,
  main[data-locale="ru"] .companyCopy h2,
  main[data-locale="ru"] .contactLead h2,
  main[data-locale="de"] .darkIntro h2,
  main[data-locale="de"] .approachLead h2,
  main[data-locale="de"] .companyCopy h2,
  main[data-locale="de"] .contactLead h2,
  main[data-locale="fi"] .darkIntro h2,
  main[data-locale="fi"] .approachLead h2,
  main[data-locale="fi"] .companyCopy h2,
  main[data-locale="fi"] .contactLead h2 { font-size: clamp(36px, 10.3vw, 46px); }
  .capabilityCard,
  .capabilityCard.card1,
  .capabilityCard.card4 { min-height: 405px; }
  .cardCopy h3 { font-size: 32px; }
  .approachSystem { width: min(100%, 390px); }
  .systemCore { width: 84px; height: 84px; border-radius: 23px; }
  .systemCore .foldMark { transform: scale(0.76); }
  .directContacts a { grid-template-columns: 72px minmax(0, 1fr); min-height: 68px; }
  .directContacts b { font-size: 12px; }
  .companyFacts b { font-size: 12px; }
}

@media (max-width: 350px) {
  :root { --shell: calc(100% - 24px); }
  .shell {
    margin-left: max(12px, env(safe-area-inset-left));
    margin-right: max(12px, env(safe-area-inset-right));
  }
  .siteHeader { min-height: 58px; padding-left: 0; }
  .brandLockup { gap: 7px; }
  .brandLockup b { font-size: 10px; }
  .languageTrigger,
  .menuTrigger { width: 44px; height: 44px; }
  .headerActions { gap: 3px; }
  .heroCopy h1 { font-size: 44px; }
  .luminousHero { padding-top: 38px; }
  main[data-locale="ru"] .heroCopy h1,
  main[data-locale="lv"] .heroCopy h1,
  main[data-locale="lt"] .heroCopy h1,
  main[data-locale="et"] .heroCopy h1,
  main[data-locale="de"] .heroCopy h1,
  main[data-locale="fr"] .heroCopy h1,
  main[data-locale="fi"] .heroCopy h1,
  main[data-locale="da"] .heroCopy h1 { font-size: 39px; }
  main[data-locale="fi"] .heroCopy h1 { font-size: 35px; letter-spacing: -0.055em; }
  .deckNarrative h2 { font-size: 34px; }
  .deckNarrative p { font-size: 14px; }
  .coreStage { height: 275px; }
  .capabilityCard,
  .capabilityCard.card1,
  .capabilityCard.card4 { min-height: 390px; padding: 22px; }
  .cardCopy h3 { font-size: 29px; }
  .directContacts a { grid-template-columns: 1fr; align-content: center; gap: 4px; }
}

@media (max-height: 480px) and (orientation: landscape) {
  .headerLayer { padding-top: calc(env(safe-area-inset-top) + 6px); }
  .siteHeader { min-height: 54px; }
  .mobileMenuInner { min-height: calc(100dvh - max(10px, env(safe-area-inset-top)) - max(10px, env(safe-area-inset-bottom))); }
  .mobileMenu nav { margin-top: 14px; }
  .mobileMenu nav a { min-height: 52px; font-size: 26px; }
  .menuBottom { grid-template-columns: 1fr 1fr; margin-top: 18px; padding-top: 0; }
  .luminousHero { min-height: auto; padding-top: 34px; padding-bottom: 30px; }
  .eyebrow { font-size: 10px; }
  .heroCopy h1 { margin-top: 12px; font-size: clamp(48px, 7.8vw, 64px); line-height: 0.9; }
  .heroBody { max-width: 50ch; margin-top: 14px; font-size: 15px; line-height: 1.35; }
  .primaryButton { min-height: 52px; margin-top: 14px; }
  .flowDeck { min-height: 0; margin-top: 28px; border-radius: 28px; }
  .flowDeck::before { border-radius: 27px; }
  .deckTop { min-height: 58px; }
  .deckBody { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); min-height: 300px; }
  .deckNarrative { align-self: end; min-height: 0; padding: 24px 16px 26px 26px; }
  .deckNarrative h2 { margin-top: 8px; font-size: clamp(32px, 5vw, 42px); }
  .deckNarrative p { margin-top: 12px; font-size: 13px; line-height: 1.42; }
  .machineWindow { min-height: 300px; border-top: 0; border-left: 1px solid rgba(255, 255, 255, 0.08); }
  .deckTabs button { min-height: 58px; }
  .coreStage { height: 300px; margin-top: 14px; }
}

@media (max-width: 760px), (prefers-reduced-motion: reduce) {
  .coreStack {
    animation: none;
  }
}

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

:focus-visible {
  outline: 2px solid #0069d2;
  outline-offset: 3px;
}
