:root {
  --black: #050505;
  --black-2: #0a0a0a;
  --white: #ffffff;
  --paper: #f2f2f2;
  --paper-2: #ededed;
  --gray: #afafaf;
  --ink: #171717;
  --gold: #e6c200;
  --gold-2: #f0c400;
  --cyan: #00b7ff;
  --line: rgba(230, 194, 0, 0.36);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: .8rem 1rem;
  background: var(--gold);
  color: #000;
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.page-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}
.section-dark {
  background:
    radial-gradient(circle at 72% 10%, rgba(230, 194, 0, .12), transparent 32%),
    linear-gradient(135deg, #050505 0%, #101010 55%, #050505 100%);
  color: var(--white);
}
.section-light {
  background:
    linear-gradient(90deg, rgba(230, 194, 0, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, .045) 1px, transparent 1px),
    var(--paper);
  background-size: 84px 84px;
}
section[id] { scroll-margin-top: 96px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 5, 5, .84);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 50px rgba(0, 0, 0, .28);
  padding-block: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-logo {
  display: block;
  width: clamp(168px, 18vw, 250px);
  max-height: 58px;
  object-fit: contain;
}
.brand-logo-white {
  width: clamp(180px, 20vw, 280px);
  max-height: 72px;
}
.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  background: #090909;
  box-shadow: inset 0 0 0 3px rgba(230, 194, 0, .16), 0 12px 30px rgba(0, 0, 0, .25);
  border-radius: 50%;
}
.brand-mark span {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid var(--gold);
  margin-left: 4px;
  filter: drop-shadow(0 0 12px rgba(230, 194, 0, .85));
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font: 900 1.35rem Sora, sans-serif; letter-spacing: .08em; }
.brand-copy small { color: var(--gray); font-size: .68rem; text-transform: uppercase; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  color: rgba(255, 255, 255, .82);
  font-size: .86rem;
  font-weight: 700;
  text-transform: uppercase;
}
.nav a { position: relative; padding: 10px 0; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  background: var(--gold);
  transition: right .28s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle, .menu-toggle {
  border: 1px solid rgba(255, 255, 255, .24);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
  min-width: 46px;
  height: 42px;
  font-weight: 800;
  cursor: pointer;
}
.menu-toggle { display: none; width: 46px; padding: 0; }
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 116px 0 64px;
}
.particle-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .64; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 70% 45%, #000 0 46%, transparent 75%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  align-items: center;
  gap: clamp(34px, 5.4vw, 76px);
}
.hero-copy {
  position: relative;
  z-index: 3;
}
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before, .kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--gold);
}
h1, h2, h3 { margin: 0; font-family: Montserrat, system-ui, sans-serif; letter-spacing: 0; }
.hero-title {
  max-width: 690px;
  margin: 22px 0;
  font-size: clamp(3.1rem, 4.72vw, 6.55rem);
  line-height: .92;
  font-weight: 900;
  text-transform: uppercase;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}
.split-word { display: inline-block; white-space: nowrap; }
.split-char { display: inline-block; transform-origin: 50% 70%; }
.hero-lead {
  max-width: 680px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.55;
}
.hero-sub {
  max-width: 620px;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}
.hero-actions, .contact-card .btn + .btn {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn-primary {
  background: var(--gold);
  color: #050505;
  box-shadow: 0 18px 50px rgba(230, 194, 0, .24);
}
.btn-secondary {
  border-color: rgba(255, 255, 255, .3);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.hero-tags span, .service-card::after {
  border: 1px solid rgba(230, 194, 0, .34);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--gold);
  background: rgba(230, 194, 0, .08);
  font-size: .74rem;
  font-weight: 900;
}
.hero-visual {
  position: relative;
  isolation: isolate;
  transform-style: preserve-3d;
  perspective: 1100px;
  z-index: 1;
  justify-self: end;
  width: min(500px, 100%);
  opacity: 1;
}
.hero-visual picture { display: block; }
.hero-visual img {
  width: 100%;
  height: clamp(310px, 34vw, 430px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .55);
  animation: floatSoft 8s ease-in-out infinite;
  transform: translateZ(22px);
}
.orbit {
  position: absolute;
  inset: 8% 5%;
  border: 1px solid rgba(230, 194, 0, .34);
  border-radius: 50%;
  transform: rotate(-18deg);
  pointer-events: none;
}
.orbit-b { inset: 20% 14%; border-color: rgba(0, 183, 255, .22); transform: rotate(28deg); }
.pulse-node {
  position: absolute;
  right: 18%;
  top: 18%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(230, 194, 0, .55);
  animation: pulse 2s infinite;
}
.holo-stack {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform-style: preserve-3d;
  z-index: 3;
}
.holo-card {
  position: absolute;
  min-width: 82px;
  padding: 12px 14px;
  border: 1px solid rgba(230, 194, 0, .45);
  border-radius: 8px;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 55px rgba(0,0,0,.35), inset 0 0 28px rgba(230,194,0,.08);
  font-size: .78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transform-style: preserve-3d;
  z-index: 4;
}
.holo-card:nth-child(1) { left: 6%; top: 18%; transform: translateZ(90px) rotateY(-16deg); }
.holo-card:nth-child(2) { right: 4%; top: 18%; transform: translateZ(130px) rotateY(18deg); }
.holo-card:nth-child(3) { left: 14%; bottom: 12%; transform: translateZ(115px) rotateX(12deg); }
.holo-card:nth-child(4) { right: 12%; bottom: 16%; transform: translateZ(80px) rotateY(-12deg); }

.history, .services, .research { padding: 110px 0; }
.history {
  position: relative;
  overflow: hidden;
}
.history::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(230,194,0,.16), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(0,183,255,.08), transparent 28%);
  pointer-events: none;
}
.history .page-shell {
  position: relative;
  z-index: 1;
}
.history-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: stretch;
  margin-bottom: 52px;
}
.history-intro {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  box-shadow: 0 22px 70px rgba(0,0,0,.1);
  backdrop-filter: blur(14px);
}
.history-intro h2 {
  margin-top: 14px;
  font-size: clamp(2.6rem, 5.8vw, 6rem);
  line-height: .92;
  text-transform: uppercase;
}
.history-intro p {
  max-width: 680px;
  color: #575757;
  font-size: 1.05rem;
  line-height: 1.75;
}
.history-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}
.history-metrics span {
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(230,194,0,.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(230,194,0,.11), rgba(255,255,255,.76));
  color: #555;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
}
.history-metrics strong {
  display: block;
  color: #090909;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}
.history-signal {
  position: relative;
  min-height: 330px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.09);
  background:
    linear-gradient(135deg, rgba(5,5,5,.94), rgba(26,26,26,.9)),
    radial-gradient(circle at 50% 50%, rgba(230,194,0,.2), transparent 40%);
  box-shadow: 0 26px 80px rgba(0,0,0,.18);
  overflow: hidden;
}
.history-signal::before,
.history-signal::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(230,194,0,.28);
  border-radius: 50%;
  transform: rotateX(62deg) rotateZ(-12deg);
}
.history-signal::after {
  inset: 24%;
  border-color: rgba(0,183,255,.22);
  transform: rotateX(62deg) rotateZ(28deg);
}
.history-signal b {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 1;
  text-shadow: 0 0 34px rgba(230,194,0,.34);
}
.history-signal span {
  position: absolute;
  z-index: 1;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.08);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.history-signal span:nth-child(1) { left: 8%; top: 18%; }
.history-signal span:nth-child(2) { right: 8%; top: 32%; color: var(--gold); }
.history-signal span:nth-child(3) { left: 18%; bottom: 14%; color: #8fe4ff; }
.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}
.section-heading h2, .bi-copy h2, .research h2, .all-in-one h2, .final-cta h2 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: .96;
  text-transform: uppercase;
}
.section-heading p, .bi-copy p, .all-in-one p, .final-cta p {
  color: #555;
  font-size: 1.08rem;
  line-height: 1.75;
}
.invert p { color: rgba(255, 255, 255, .72); }
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 44px;
  border-top: 1px solid rgba(230,194,0,.36);
  box-shadow: 0 0 18px rgba(230,194,0,.14);
}
.timeline-item {
  position: relative;
  padding: 88px 20px 24px;
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.82)),
    radial-gradient(circle at 18% 18%, rgba(230,194,0,.13), transparent 35%);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .09);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.timeline-item svg {
  position: absolute;
  left: 20px;
  top: 22px;
  width: 34px;
  height: 34px;
  color: var(--gold);
  stroke-width: 1.7;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 62px;
  top: 32px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(230, 194, 0, .14), 0 12px 30px rgba(0, 0, 0, .16);
}
.timeline-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: .58;
}
.timeline-item:hover {
  transform: translateY(-8px);
  border-color: rgba(230,194,0,.26);
  box-shadow: 0 26px 80px rgba(0,0,0,.15);
}
.year { color: var(--gold); font: 900 1.9rem Montserrat, sans-serif; }
.timeline h3 { margin: 10px 0; font-size: 1rem; text-transform: uppercase; }
.timeline p { color: #5f5f5f; line-height: 1.55; }

.agency { padding: 110px 0; overflow: hidden; }
.agency-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.agency-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
}
.panel-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.82)),
    radial-gradient(circle at 30% 30%, rgba(230, 194, 0, .34), transparent 36%),
    linear-gradient(135deg, #272727, #050505);
  transform: scale(1.02);
  transition: transform .45s ease, filter .45s ease;
}
.agency-bg { background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.86)), radial-gradient(circle at 68% 22%, rgba(230, 194, 0, .3), transparent 35%), linear-gradient(135deg, #141414, #323232); }
.tech-bg { background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.86)), radial-gradient(circle at 55% 40%, rgba(0, 183, 255, .16), transparent 34%), linear-gradient(135deg, #090909, #232323); }
.panel-content {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  z-index: 1;
}
.panel-content svg, .service-card svg, .research-block svg { color: var(--gold); width: 34px; height: 34px; stroke-width: 1.7; }
.panel-content h3 { margin: 16px 0 12px; font-size: clamp(1.5rem, 2.8vw, 2.3rem); }
.panel-content p { color: rgba(255, 255, 255, .72); line-height: 1.6; transform: translateY(16px); opacity: .82; transition: transform .35s ease, opacity .35s ease; }
.agency-panel:hover .panel-bg { transform: scale(1.09); filter: brightness(1.18); }
.agency-panel:hover p { transform: translateY(0); opacity: 1; }

.statement {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: #e9e9e9;
}
.statement picture,
.statement img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.statement img {
  object-fit: cover;
}
.statement::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(242,242,242,.92), rgba(242,242,242,.32), rgba(5,5,5,.2));
}
.statement-overlay {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}
.statement h2 {
  max-width: 760px;
  font-size: clamp(3rem, 9vw, 8.8rem);
  line-height: .9;
  text-transform: uppercase;
}
.line-runner {
  display: block;
  width: min(380px, 80vw);
  height: 5px;
  margin-bottom: 28px;
  background: var(--gold);
  transform-origin: left;
}

.integration-bridge {
  position: relative;
  padding: 96px 0 108px;
  overflow: hidden;
}
.integration-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 82% 38%, rgba(0,183,255,.12), transparent 30%);
  background-size: 76px 76px, 76px 76px, auto;
  opacity: .9;
}
.bridge-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.bridge-copy h2 {
  margin-top: 16px;
  font-size: clamp(2.1rem, 4.2vw, 4.7rem);
  line-height: .98;
  text-transform: uppercase;
}
.bridge-copy p {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 1.04rem;
  line-height: 1.75;
}
.bridge-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.bridge-flow::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230,194,0,.72), rgba(0,183,255,.32), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(.2,.8,.2,1);
}
.bridge-flow.is-drawn::before { transform: scaleX(1); }
.bridge-flow article {
  position: relative;
  min-height: 196px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.bridge-flow article::after {
  content: "";
  position: absolute;
  inset: auto -20% -42% 18%;
  height: 110px;
  background: radial-gradient(circle, rgba(230,194,0,.2), transparent 64%);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
}
.bridge-flow article:hover::after { opacity: 1; transform: translateY(-14px); }
.bridge-flow span {
  color: rgba(255,255,255,.38);
  font-weight: 900;
  font-size: .78rem;
}
.bridge-flow svg {
  display: block;
  width: 32px;
  height: 32px;
  margin: 16px 0;
  color: var(--gold);
}
.bridge-flow h3 {
  font-size: 1.04rem;
  text-transform: uppercase;
}
.bridge-flow p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.66);
  line-height: 1.58;
  font-size: .92rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  perspective: 1400px;
  overflow: visible;
  padding: 22px;
  margin: -22px;
}
.service-card {
  position: relative;
  min-height: 270px;
  padding: 26px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .08);
  overflow: hidden;
  transform-style: flat;
  will-change: transform, box-shadow;
  transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease;
  z-index: 0;
}
.service-card:hover,
.research-block:hover {
  z-index: 6;
  transform: translateY(-9px) scale(1.012);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .16);
  border-color: rgba(230, 194, 0, .28);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(230,194,0,.72), transparent 38%, rgba(0,183,255,.16)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.service-card > * {
  position: relative;
  z-index: 2;
}
.service-card::after {
  content: attr(data-badge);
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
}
.service-card h3 { margin: 22px 0 12px; font-size: 1.14rem; line-height: 1.22; }
.service-card p { color: #595959; line-height: 1.62; margin: 0; }
.service-card:hover::before { opacity: 1; }
.service-card .icon-burst,
.research-block .icon-burst {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,194,0,.2), transparent 64%);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(.5);
  pointer-events: none;
  z-index: 1;
}

.motion-lab {
  position: relative;
  min-height: auto;
  padding: 92px 0 96px;
  overflow: hidden;
}
.motion-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 44%, rgba(0,183,255,.13), transparent 30%),
    radial-gradient(circle at 58% 72%, rgba(230,194,0,.08), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 68px 68px, 68px 68px;
}
.motion-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(310px, .72fr) minmax(420px, 1.28fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  min-height: auto;
  padding-top: 0;
}
.motion-copy h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  line-height: .98;
  text-transform: uppercase;
}
.motion-copy p {
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  font-size: 1.08rem;
}
.stand-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}
.stand-steps span {
  padding: 9px 12px;
  border: 1px solid rgba(230,194,0,.34);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(230,194,0,.08);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}
.cube-stage {
  position: relative;
  min-height: clamp(500px, 67svh, 680px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 52% 45%, rgba(255,255,255,.16), transparent 28%),
    radial-gradient(circle at 72% 26%, rgba(0,183,255,.1), transparent 24%),
    radial-gradient(circle at 26% 82%, rgba(230,194,0,.04), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
  contain: layout paint;
  cursor: grab;
}
.cube-stage:active { cursor: grabbing; }
.cube-stage::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-12deg);
  opacity: .55;
}
.cube-stage::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 10%;
  height: 30%;
  background: radial-gradient(ellipse at center, rgba(0,183,255,.14), rgba(230,194,0,.08) 32%, transparent 66%);
  filter: blur(18px);
  opacity: .7;
  pointer-events: none;
}
#stand-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: block;
}
.stand-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  padding: 10px 14px;
  border: 1px solid rgba(230,194,0,.3);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(5,5,5,.72);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.stand-loader.is-hidden { display: none; }
.stand-controls {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stand-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 8;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}
.stand-caption span {
  color: rgba(255,255,255,.48);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.stand-caption strong {
  max-width: 270px;
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}
.stand-controls button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(5,5,5,.52);
  font: 800 .72rem Montserrat, system-ui, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform .22s ease, border-color .22s ease, color .22s ease, background .22s ease;
}
.stand-controls button:hover,
.stand-controls button.is-active {
  color: #050505;
  border-color: rgba(255,255,255,.66);
  background: rgba(255,255,255,.86);
  transform: translateY(-1px);
}
.lab-paths {
  position: absolute;
  inset: 6% 0 0;
  width: 100%;
  height: 86%;
  overflow: visible;
  z-index: 1;
  opacity: .28;
}
.lab-paths path {
  fill: none;
  stroke: rgba(255,255,255,.42);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 12 14;
}
.depth-pill {
  position: absolute;
  z-index: 5;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.045);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 10px 32px rgba(0,0,0,.18);
  pointer-events: none;
}
.pill-a { left: 7%; top: 72%; bottom: auto; }
.pill-b { right: 9%; top: 16%; color: rgba(143,228,255,.78); }
.pill-c { right: 9%; top: 76%; bottom: auto; color: rgba(230,194,0,.72); }
.stand-hotspots {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
}
.stand-hotspot {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px 0 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(5,5,5,.42);
  font: 900 .68rem Montserrat, system-ui, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 42px rgba(0,0,0,.22);
}
.stand-hotspot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(230,194,0,.12), 0 0 20px rgba(230,194,0,.5);
}
.stand-hotspot::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(230,194,0,.72), transparent);
  transform: translate(-100%, -50%);
  opacity: .5;
  pointer-events: none;
}
.stand-hotspot:hover,
.stand-hotspot:focus-visible {
  color: #050505;
  background: rgba(255,255,255,.9);
  outline: none;
}
.hot-design { left: 8%; top: 51%; }
.hot-content { right: 6%; top: 47%; }
.hot-vr { right: 7%; bottom: 25%; }
.hot-production { left: 28%; bottom: 15%; }
.hot-activation { left: 44%; top: 58%; }

.bi { padding: 110px 0; overflow: hidden; }
.bi-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}
.bi-copy p, .all-in-one p { color: rgba(255, 255, 255, .72); }
.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}
.metric-row div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}
.metric-row strong { display: block; color: var(--gold); font: 900 2.7rem Sora, sans-serif; }
.metric-row span { color: rgba(255, 255, 255, .72); }
.dashboard {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}
.dashboard picture,
.dashboard img {
  display: block;
  width: 100%;
  height: 100%;
}
.dashboard img {
  min-height: 420px;
  object-fit: cover;
}
.dash-card {
  position: absolute;
  display: grid;
  gap: 5px;
  min-width: 176px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(5,5,5,.7);
  backdrop-filter: blur(12px);
}
.dash-card span { color: rgba(255,255,255,.72); font-size: .8rem; }
.dash-card b { color: var(--gold); font-size: 1.5rem; }
.dash-a { left: 6%; top: 9%; }
.dash-b { right: 6%; bottom: 10%; }
.chart-line {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 18%;
  width: 60%;
  overflow: visible;
}
.chart-line path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(230,194,0,.5));
}

.research-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}
.research-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.research-lead {
  max-width: 610px;
  margin: 18px 0 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
}
.research-chips span {
  padding: 8px 11px;
  border: 1px solid rgba(230,194,0,.32);
  border-radius: 999px;
  color: #5f5200;
  background: rgba(230,194,0,.09);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.research-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  counter-reset: research;
}
.research-block {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(230,194,0,.11);
  border-radius: var(--radius);
  box-shadow: 0 14px 45px rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
  transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease;
  z-index: 0;
  counter-increment: research;
}
.research-block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(var(--gold), rgba(0,183,255,.38));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .34s ease;
}
.research-block:hover::before { transform: scaleY(1); }
.research-block::after {
  content: "0" counter(research);
  position: absolute;
  right: 18px;
  top: 12px;
  z-index: 1;
  color: rgba(230,194,0,.13);
  font: 900 2.45rem/1 Montserrat, sans-serif;
  pointer-events: none;
}
.research-block > * { position: relative; z-index: 2; }
.research-block h3 { font-size: 1rem; margin: 0 0 6px; align-self: center; }
.research-block p { grid-column: 2; margin: 0; color: #5f5f5f; line-height: 1.55; }
.research-visual {
  position: relative;
  min-height: 640px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 34%, rgba(230,194,0,.2), transparent 26%),
    radial-gradient(circle at 84% 76%, rgba(0,183,255,.16), transparent 28%),
    linear-gradient(135deg, #090909, #242424);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.18);
  isolation: isolate;
}
.research-visual::before {
  content: "";
  position: absolute;
  inset: -38%;
  z-index: 1;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.1) 48%, rgba(230,194,0,.18) 51%, transparent 59%);
  opacity: 0;
  transform: translateX(-58%) rotate(8deg);
  pointer-events: none;
}
.research-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 5;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: inherit;
  pointer-events: none;
}
.research-visual.is-active::before { animation: researchSweep 7.2s ease-in-out infinite; }
.node-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle, rgba(230,194,0,.78) 0 3px, transparent 4px) 12% 20% / 90px 90px,
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 90px 90px, 58px 58px, 58px 58px;
  opacity: .5;
}
.research-orbit {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid rgba(230,194,0,.18);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(66deg) rotateZ(-18deg);
  z-index: 1;
}
.orbit-two {
  width: 58%;
  border-color: rgba(0,183,255,.18);
  transform: translate(-50%, -50%) rotateX(64deg) rotateZ(24deg);
}
.research-visual.is-active .orbit-one { animation: researchOrbitOne 13s linear infinite; }
.research-visual.is-active .orbit-two { animation: researchOrbitTwo 16s linear infinite reverse; }
.analysis-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: var(--white);
  backdrop-filter: blur(16px);
}
.main-analysis {
  left: 50%;
  top: 20%;
  width: min(68%, 340px);
  min-height: 300px;
  padding: 24px;
  transform: translateX(-50%);
}
.main-analysis span { color: var(--gold); font-weight: 900; text-transform: uppercase; }
.rings {
  width: 166px;
  height: 166px;
  margin: 26px auto 0;
  border-radius: 50%;
  background:
    conic-gradient(var(--gold) 0 68%, rgba(255,255,255,.16) 68% 100%);
  mask: radial-gradient(circle, transparent 0 48%, #000 49%);
}
.main-analysis strong {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 2.28rem;
  font-weight: 900;
}
.main-analysis small {
  display: block;
  margin-top: 18px;
  color: rgba(255,255,255,.62);
  text-align: center;
  text-transform: uppercase;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.small-a, .small-b {
  width: 148px;
  padding: 18px;
  display: grid;
  gap: 8px;
}
.small-a { left: 8%; bottom: 20%; }
.small-b { right: 7%; bottom: 21%; }
.ai-card {
  right: 7%;
  top: 7%;
  width: 150px;
  padding: 14px 16px;
  display: grid;
  gap: 6px;
}
.small-a span, .small-b span, .ai-card span { color: var(--gold); font: 900 2rem Montserrat, sans-serif; }
.ai-card small {
  color: rgba(255,255,255,.58);
  font-size: .68rem;
  text-transform: uppercase;
}
.research-pipeline {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 8%;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(5,5,5,.48);
  backdrop-filter: blur(12px);
}
.research-pipeline span {
  color: rgba(255,255,255,.86);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.research-pipeline i {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(0,183,255,.45));
  transform-origin: left;
}

.all-in-one { padding: 110px 0; overflow: hidden; }
.all-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
}
.ecosystem {
  position: relative;
  min-height: 560px;
}
.ecosystem::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(48vw, 330px);
  aspect-ratio: 1;
  border: 1px solid rgba(230,194,0,.38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,.22), transparent 20%),
    linear-gradient(135deg, rgba(230,194,0,.22), rgba(255,255,255,.06) 45%, rgba(0,0,0,.42));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 28px 90px rgba(230,194,0,.12);
  transform: translate(-50%, -50%) rotate(45deg);
}
.ecosystem.has-webgl::before { opacity: .18; }
#ecosystem-canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  display: block;
}
.ecosystem span {
  position: absolute;
  padding: 9px 13px;
  border: 1px solid rgba(230,194,0,.36);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  font-weight: 900;
  font-size: .78rem;
  z-index: 2;
}
.ecosystem span:nth-of-type(1) { left: 5%; top: 17%; }
.ecosystem span:nth-of-type(2) { left: 43%; top: 8%; }
.ecosystem span:nth-of-type(3) { right: 7%; top: 22%; }
.ecosystem span:nth-of-type(4) { left: 14%; top: 53%; }
.ecosystem span:nth-of-type(5) { right: 18%; top: 53%; }
.ecosystem span:nth-of-type(6) { left: 50%; bottom: 12%; }
.ecosystem span:nth-of-type(7) { left: 2%; bottom: 22%; }
.ecosystem span:nth-of-type(8) { right: 8%; bottom: 27%; }
.ecosystem span:nth-of-type(9) { left: 31%; top: 36%; }

.final-cta {
  padding: 105px 0;
  background:
    linear-gradient(135deg, rgba(230,194,0,.14), transparent 36%),
    var(--paper-2);
}
.final-cta h2 {
  max-width: 660px;
  font-size: clamp(1.85rem, 3.25vw, 3.45rem);
  line-height: 1.06;
}
.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
}
.contact-card {
  padding: 30px;
  border-radius: var(--radius);
  background: #050505;
  color: var(--white);
  box-shadow: var(--shadow);
}
.contact-card .btn { width: 100%; margin-bottom: 10px; }
.contact-card address {
  margin-top: 24px;
  color: rgba(255,255,255,.72);
  font-style: normal;
  line-height: 1.85;
}
.contact-card address a { color: var(--white); }
.footer {
  padding: 34px 0;
  background: #050505;
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255,255,255,.66);
}
.footer small { color: rgba(255,255,255,.5); }

.reveal, .reveal-card { opacity: 0; transform: translateY(24px); }
.hero-visual.reveal {
  opacity: 1 !important;
  transform: none;
}
body.motion-ready .hero-visual,
body.motion-ready .hero .reveal {
  opacity: 1 !important;
}
html.motion-ready .hero-visual,
html.motion-ready .hero .reveal {
  opacity: 1 !important;
}

@keyframes floatSoft {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(.2deg); }
  50% { transform: translate3d(0, -18px, 0) rotate(-.8deg); }
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 24px rgba(230, 194, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 194, 0, 0); }
}
@keyframes researchOrbitOne {
  from { transform: translate(-50%, -50%) rotateX(66deg) rotateZ(-18deg); }
  to { transform: translate(-50%, -50%) rotateX(66deg) rotateZ(342deg); }
}
@keyframes researchOrbitTwo {
  from { transform: translate(-50%, -50%) rotateX(64deg) rotateZ(24deg); }
  to { transform: translate(-50%, -50%) rotateX(64deg) rotateZ(384deg); }
}
@keyframes researchSweep {
  0%, 24% { opacity: 0; transform: translateX(-58%) rotate(8deg); }
  38%, 55% { opacity: .86; }
  76%, 100% { opacity: 0; transform: translateX(58%) rotate(8deg); }
}

@media (max-width: 1040px) {
  .brand-logo { width: 176px; }
  .nav {
    position: fixed;
    inset: 76px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(5,5,5,.94);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
  }
  .nav.is-open { display: flex; }
  .menu-toggle { display: block; }
  .hero-grid, .bi-grid, .research-grid, .all-grid, .cta-shell, .bridge-grid { grid-template-columns: 1fr; }
  .motion-grid, .history-layout { grid-template-columns: 1fr; }
  .timeline, .agency-panels { grid-template-columns: 1fr; }
  .timeline::before {
    left: 31px;
    top: 0;
    bottom: 0;
    right: auto;
    border-top: 0;
    border-left: 2px dashed var(--line);
  }
  .timeline-item { padding-left: 76px; min-height: auto; }
  .timeline-item svg { left: 22px; top: 22px; }
  .timeline-item::before { left: 34px; top: 66px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 78px; }
  section[id] { scroll-margin-top: 78px; }
  .page-shell { width: min(calc(100% - 28px), var(--max)); }
  .brand-copy small { display: none; }
  .brand-logo { width: 138px; max-height: 42px; }
  .brand-logo-white { width: 180px; max-height: 54px; }
  .site-header { padding-inline: 14px; }
  .hero { min-height: auto; padding-top: 104px; }
  .hero-title { font-size: clamp(2.45rem, 11.7vw, 4.1rem); }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-visual {
    justify-self: center;
    width: 100%;
    max-width: 100%;
    transform: none !important;
  }
  .hero-visual img { height: clamp(280px, 76vw, 360px); min-height: 0; object-fit: cover; }
  .holo-card {
    min-width: 62px;
    padding: 8px 10px;
    font-size: .64rem;
  }
  .holo-card:nth-child(1) { left: 2%; top: 12%; }
  .holo-card:nth-child(2) { right: 1%; top: 18%; }
  .holo-card:nth-child(3) { left: 8%; bottom: 6%; }
  .holo-card:nth-child(4) { right: 7%; bottom: 10%; }
  .history, .services, .research, .agency, .bi, .all-in-one, .final-cta, .integration-bridge { padding: 76px 0; }
  .bridge-flow { grid-template-columns: 1fr; }
  .bridge-flow::before { display: none; }
  .bridge-flow article { min-height: auto; }
  .history-layout { margin-bottom: 28px; }
  .history-intro { padding: 22px; }
  .history-metrics { grid-template-columns: 1fr; }
  .history-signal { min-height: 260px; }
  .motion-lab { min-height: auto; padding: 70px 0; }
  .motion-grid { position: relative; top: auto; min-height: auto; }
  .cube-stage { min-height: 430px; }
  .stand-controls { left: 12px; right: 12px; top: 12px; }
  .stand-controls button { flex: 1; padding-inline: 8px; }
  .stand-caption {
    left: 12px;
    right: 12px;
    bottom: 10px;
    display: block;
  }
  .stand-caption strong { display: none; }
  .depth-pill { font-size: .68rem; padding: 8px 10px; }
  .stand-hotspot {
    min-height: 28px;
    padding-inline: 9px;
    font-size: .58rem;
  }
  .hot-design { left: 8%; top: 38%; }
  .hot-content { right: 5%; top: 43%; }
  .hot-vr { right: 7%; bottom: 24%; }
  .hot-production { left: 10%; bottom: 17%; }
  .hot-activation { display: none; }
  .service-grid, .metric-row, .footer-grid { grid-template-columns: 1fr; }
  .statement { min-height: 58svh; }
  .statement h2 { font-size: clamp(2.7rem, 16vw, 5rem); }
  .dashboard, .dashboard img { min-height: 350px; }
  .research-visual, .ecosystem, #ecosystem-canvas { min-height: 430px; height: 430px; }
  .research-visual { min-height: 520px; height: auto; }
  .main-analysis {
    top: 10%;
    width: 78%;
    min-height: 260px;
    padding: 18px;
  }
  .rings { width: 150px; height: 150px; margin-top: 24px; }
  .main-analysis strong { font-size: 2.05rem; }
  .ai-card { display: none; }
  .small-a { left: 7%; bottom: 26%; }
  .small-b { right: 7%; bottom: 28%; }
  .research-pipeline {
    grid-template-columns: 1fr;
    gap: 8px;
    bottom: 5%;
  }
  .research-pipeline i { display: none; }
  .footer nav { gap: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-card { opacity: 1; transform: none; }
}
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), #fff2a8, var(--cyan));
  box-shadow: 0 0 18px rgba(230, 194, 0, .55);
  pointer-events: none;
}
