:root {
  --ink: #07101d;
  --ink-soft: #101c2b;
  --paper: #f3f0e9;
  --white: #f8fbff;
  --muted: #a8b0ba;
  --line: rgba(255, 255, 255, 0.16);
  --cyan: #55d9e6;
  --lime: #c6e94d;
  --coral: #ff6b49;
  --pink: #e4439f;
  --yellow: #ffd553;
  --header-h: 92px;
  --page-x: 5vw;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0;
}

body.is-loading,
body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--page-x);
  background: #050b14;
  transition: transform 1s var(--ease);
}

.preloader.is-done {
  transform: translateY(-105%);
}

.preloader__mark {
  width: 86px;
  height: 86px;
  margin-bottom: 44px;
  animation: markPulse 1.6s ease-in-out infinite;
}

.preloader__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preloader__meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 13px;
  color: #d5dce5;
  font-size: 11px;
  letter-spacing: 0;
}

.preloader__value {
  font-size: 20px;
  font-weight: 700;
}

.preloader__line {
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.14);
}

.preloader__line i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--yellow), var(--pink));
  transition: width .2s linear;
}

@keyframes markPulse {
  50% { transform: scale(.94); opacity: .74; }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 42px;
  height: 42px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s, border-color .2s;
  mix-blend-mode: difference;
}

.cursor span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.cursor.is-hover {
  width: 66px;
  height: 66px;
  border-color: transparent;
  background: rgba(255,255,255,.16);
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.05);
}

.page-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--coral), var(--pink));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding: 0 var(--page-x);
  transition: background .4s, height .4s, border-color .4s;
}

.site-header.is-scrolled {
  height: 70px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(5,11,20,.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition: transform .5s var(--ease);
}

.brand:hover img {
  transform: rotate(-12deg) scale(1.06);
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand b {
  font-size: 15px;
  font-weight: 700;
}

.brand small {
  margin-top: 5px;
  color: rgba(255,255,255,.58);
  font-size: 8px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
  color: rgba(255,255,255,.76);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}

.header-contact i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--lime);
  font-style: normal;
  border: 1px solid rgba(198,233,77,.55);
  border-radius: 3px;
  background: rgba(5,11,20,.28);
  backdrop-filter: blur(10px);
  transition: color .3s, background .3s, border-color .3s, transform .3s;
}

.header-contact:hover i {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
  transform: translate(2px, -2px);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 12px 9px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: #fff;
  transition: transform .3s, margin .3s;
}

.menu-open .menu-toggle span:first-child {
  margin: 0;
  transform: translateY(1px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  margin: 0;
  transform: rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 130px var(--page-x) 34px;
  visibility: hidden;
  background: #07101d;
  opacity: 0;
  transition: opacity .4s, visibility .4s;
}

.menu-open .menu-panel {
  visibility: visible;
  opacity: 1;
}

.menu-panel nav {
  display: flex;
  flex-direction: column;
}

.menu-panel nav a {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 10px 0;
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  border-bottom: 1px solid var(--line);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .4s, transform .4s;
}

.menu-open .menu-panel nav a {
  opacity: 1;
  transform: translateY(0);
}

.menu-panel nav a span {
  color: var(--lime);
  font-size: 11px;
}

.menu-panel__foot {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  color: var(--muted);
  font-size: 11px;
}

.mobile-quick,
.mobile-dock {
  display: none;
}

.hero {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #08121f;
}

.hero__image,
.hero__shade,
.hero__grid,
.hero__scan,
#lightCanvas {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("./assets/site-hero-tech-v3.webp");
  background-position: center;
  background-size: cover;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) scale(1.045);
  animation: heroEnter 2.2s var(--ease) forwards;
  will-change: transform;
}

@keyframes heroEnter {
  from {
    transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) scale(1.08);
    filter: saturate(.82) brightness(.78);
  }
  to {
    transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) scale(1.045);
    filter: saturate(1) brightness(1);
  }
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2,8,15,.34) 0%, rgba(2,8,15,.03) 38%, rgba(2,8,15,.91) 100%),
    linear-gradient(90deg, rgba(4,11,19,.8), rgba(4,11,19,.2) 55%, rgba(4,11,19,.04) 78%, rgba(4,11,19,.22));
}

.hero__grid {
  z-index: 1;
  top: auto;
  right: -12%;
  bottom: -43%;
  left: auto;
  width: 76%;
  height: 78%;
  opacity: .22;
  background-image:
    linear-gradient(rgba(85,217,230,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85,217,230,.22) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at center, #000 5%, rgba(0,0,0,.82) 38%, transparent 72%);
  transform: perspective(520px) rotateX(63deg) rotateZ(-8deg);
  transform-origin: center;
  animation: gridTravel 12s linear infinite;
  pointer-events: none;
}

@keyframes gridTravel {
  to { background-position: 0 52px, 52px 0; }
}

.hero__scan {
  z-index: 2;
  inset: -35%;
  opacity: .8;
  background: linear-gradient(
    108deg,
    transparent 43%,
    rgba(85,217,230,.01) 47%,
    rgba(85,217,230,.2) 49.8%,
    rgba(198,233,77,.08) 50.3%,
    transparent 54%
  );
  transform: translate3d(-32%, 0, 0);
  animation: spatialScan 8.5s 2.2s var(--ease) infinite;
  pointer-events: none;
}

@keyframes spatialScan {
  0%, 18% { transform: translate3d(-34%, 0, 0); opacity: 0; }
  28% { opacity: .8; }
  62% { opacity: .55; }
  76%, 100% { transform: translate3d(34%, 0, 0); opacity: 0; }
}

#lightCanvas {
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: .82;
  pointer-events: none;
}

.hero__signals {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero__signal {
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(198,233,77,.85);
}

.hero__signal::before,
.hero__signal::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  border: 1px solid rgba(85,217,230,.42);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: signalPulse 3.2s ease-out infinite;
}

.hero__signal::before {
  width: 24px;
  height: 24px;
}

.hero__signal::after {
  width: 44px;
  height: 44px;
  animation-delay: .7s;
}

.hero__signal--one {
  top: 39%;
  right: 29%;
}

.hero__signal--two {
  top: 56%;
  right: 12%;
}

.hero__signal--three {
  top: 66%;
  right: 43%;
}

@keyframes signalPulse {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.35); }
  18% { opacity: .8; }
  78%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

.hero__system {
  position: absolute;
  top: 124px;
  left: var(--page-x);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.58);
  font-size: 8px;
  font-weight: 700;
}

.hero__system > i {
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.2);
}

.hero__system > i::after {
  display: block;
  width: 55%;
  height: 100%;
  content: "";
  background: var(--cyan);
  animation: systemSignal 2.4s ease-in-out infinite;
}

.hero__system b {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.82);
  font-size: inherit;
}

.hero__system b::before {
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 9px rgba(198,233,77,.75);
}

@keyframes systemSignal {
  0%, 100% { transform: translateX(-105%); }
  50% { transform: translateX(185%); }
}

.hero__coordinates {
  position: absolute;
  top: 50%;
  right: var(--page-x);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  color: rgba(255,255,255,.55);
  font-size: 9px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}

.hero__coordinates i {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.35);
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding: 150px var(--page-x) 118px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--lime);
}

.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: 112px;
  font-weight: 900;
  line-height: .88;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line i {
  display: block;
  font-style: normal;
  transform: translateY(110%);
  animation: titleRise 1.2s .75s var(--ease) forwards;
}

.title-line--accent i {
  color: transparent;
  background: linear-gradient(90deg, #fff 5%, var(--cyan) 32%, var(--lime) 50%, var(--yellow) 68%, #fff 96%);
  -webkit-background-clip: text;
  background-clip: text;
  animation-delay: .9s;
}

@keyframes titleRise {
  to { transform: translateY(0); }
}

.hero__copy {
  width: min(760px, 75%);
  margin-top: 42px;
}

.hero__copy p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
}

.round-link {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  width: 172px;
  height: 58px;
  padding: 7px 7px 7px 18px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 3px;
  background: rgba(4,11,19,.48);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 700;
  transition: color .35s, border-color .35s, background .35s, transform .35s, box-shadow .35s;
}

.round-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 48px);
  height: 2px;
  background: var(--lime);
  transform: scaleX(.32);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.round-link i {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  border-radius: 2px;
  background: var(--lime);
  font-size: 20px;
  font-style: normal;
  transition: background .35s, transform .35s;
}

.round-link:hover,
.round-link:focus-visible {
  color: var(--ink);
  border-color: rgba(198,233,77,.9);
  background: rgba(198,233,77,.92);
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
  transform: translateY(-3px);
}

.round-link:hover::before,
.round-link:focus-visible::before {
  transform: scaleX(1);
}

.round-link:hover i,
.round-link:focus-visible i {
  background: #fff;
  transform: translate(2px, -2px);
}

.hero__bottom {
  position: absolute;
  bottom: 28px;
  left: var(--page-x);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  width: calc(100% - var(--page-x) * 2);
  color: rgba(255,255,255,.55);
  font-size: 9px;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  transition: color .3s;
}

.hero__scroll:hover,
.hero__scroll:focus-visible {
  color: #fff;
}

.hero__scroll:focus-visible {
  outline: 1px solid rgba(255,255,255,.72);
  outline-offset: 8px;
}

.hero__scroll-arrow {
  font-size: 13px;
  font-style: normal;
  transition: transform .3s var(--ease);
}

.hero__scroll:hover .hero__scroll-arrow,
.hero__scroll:focus-visible .hero__scroll-arrow {
  transform: translateY(3px);
}

.hero__edition {
  margin-left: auto;
}

.scroll-line {
  width: 80px;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.25);
}

.scroll-line i {
  display: block;
  width: 35%;
  height: 100%;
  background: #fff;
  animation: scrollSignal 1.8s infinite;
}

@keyframes scrollSignal {
  from { transform: translateX(-110%); }
  to { transform: translateX(330%); }
}

.section-pad {
  padding: 150px var(--page-x);
}

main > section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--lime);
  font-size: 10px;
  font-weight: 800;
}

.section-label p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.manifesto {
  color: var(--ink);
  background: var(--paper);
}

.manifesto .section-label p,
.process .section-label p {
  color: #69727a;
}

.manifesto__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 9vw;
  align-items: end;
  margin-top: 100px;
}

.manifesto__lead {
  margin: 0;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.35;
}

.manifesto__lead span {
  position: relative;
  color: var(--pink);
}

.manifesto__lead span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--yellow), var(--pink));
}

.manifesto__aside p {
  margin: 0 0 34px;
  color: #4f5963;
  font-size: 14px;
}

.text-link {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid #abb0b4;
}

.text-link i {
  font-style: normal;
  transition: transform .3s;
}

.text-link:hover i {
  transform: translate(4px, -4px);
}

.text-link--secondary {
  color: #69727a;
  border-bottom-color: #d0d1cd;
  font-size: 12px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 130px;
  border-top: 1px solid #c8c9c5;
}

.stat {
  min-height: 190px;
  padding: 36px 30px;
  border-right: 1px solid #c8c9c5;
}

.stat:first-child {
  padding-left: 0;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
}

.stat sup {
  color: var(--pink);
  font-size: 20px;
  font-weight: 800;
}

.stat span {
  display: block;
  margin-top: 20px;
  color: #65707a;
  font-size: 12px;
}

.stat--text strong {
  font-size: 58px;
}

.day-night {
  position: relative;
  height: 82vh;
  min-height: 660px;
  overflow: hidden;
  background: #07101d;
}

.day-night__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
  will-change: transform;
}

.day-night__day,
.day-night__night {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
}

.day-night__day {
  left: 0;
}

.day-night__night {
  right: 0;
}

.day-night:hover .day-night__image {
  transform: scale(1.025);
}

.day-night__day::after,
.day-night__night::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(2,8,15,.62)),
    linear-gradient(90deg, transparent 70%, rgba(3,9,16,.18));
}

.day-night__night::after {
  background:
    linear-gradient(180deg, transparent 45%, rgba(2,8,15,.62)),
    linear-gradient(270deg, transparent 70%, rgba(3,9,16,.18));
}

.day-night__day > span,
.day-night__night > span {
  position: absolute;
  bottom: 35px;
  z-index: 2;
  color: rgba(255,255,255,.72);
  font-size: 10px;
}

.day-night__day > span {
  left: var(--page-x);
}

.day-night__night > span {
  right: var(--page-x);
}

.day-night__center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 440px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.day-night__center.reveal {
  transform: translate(-50%, calc(-50% + 28px));
}

.day-night__center.reveal.in-view {
  transform: translate(-50%, -50%);
}

.day-night__center small {
  display: block;
  margin-bottom: 20px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
}

.day-night__center strong {
  font-size: 38px;
  line-height: 1.35;
  text-shadow: 0 3px 24px rgba(0,0,0,.5);
}

.core-business {
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(85,217,230,.045), transparent 34%),
    #07101d;
}

.core-business .section-head {
  margin-bottom: 76px;
}

.core-scenes {
  border-top: 1px solid var(--line);
}

.core-scene {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(260px, .8fr) minmax(360px, 1.2fr);
  gap: clamp(30px, 5vw, 90px);
  align-items: center;
  min-height: 210px;
  padding: 34px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition: padding .45s var(--ease), background .45s var(--ease);
}

.core-scene::before {
  content: "";
  position: absolute;
  inset: 0 calc(var(--page-x) * -1);
  z-index: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.045), transparent 72%);
  opacity: 0;
  transition: opacity .45s var(--ease);
}

.core-scene > * {
  position: relative;
  z-index: 1;
}

.core-scene:hover {
  padding-right: 22px;
  padding-left: 22px;
}

.core-scene:hover::before {
  opacity: 1;
}

.core-scene--commerce::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--lime));
}

.core-scene__index {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

.core-scene__title small {
  display: block;
  margin-bottom: 13px;
  color: #748391;
  font-size: 9px;
  font-weight: 800;
}

.core-scene__title h3 {
  margin: 0;
  font-size: clamp(27px, 2.5vw, 42px);
  line-height: 1.15;
}

.core-scene__detail p {
  max-width: 620px;
  margin: 0;
  color: #aeb7c0;
  font-size: 14px;
}

.core-scene__detail > div {
  display: flex;
  gap: 9px 18px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.core-scene__detail span {
  position: relative;
  padding-left: 13px;
  color: rgba(255,255,255,.72);
  font-size: 10px;
}

.core-scene__detail span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  transform: translateY(-50%);
}

.core-scene--commerce .core-scene__detail span::before {
  background: var(--lime);
}

.micro-tourism {
  display: grid;
  grid-template-columns: minmax(420px, 1.04fr) minmax(500px, .96fr);
  min-height: 760px;
  margin: 130px calc(var(--page-x) * -1) 0;
  color: var(--ink);
  background: var(--paper);
}

.micro-tourism__media {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #101c2b;
}

.micro-tourism__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(3,8,15,.72)),
    linear-gradient(90deg, transparent 72%, rgba(3,8,15,.24));
}

.micro-tourism__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}

.micro-tourism:hover .micro-tourism__media img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.micro-tourism__media > span {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  z-index: 2;
  color: rgba(255,255,255,.72);
  font-size: 9px;
  font-weight: 800;
}

.micro-tourism__content {
  display: flex;
  padding: clamp(70px, 7vw, 118px) clamp(42px, 6vw, 105px);
  flex-direction: column;
  justify-content: center;
}

.micro-tourism__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #c8c9c5;
}

.micro-tourism__eyebrow span {
  color: #68737b;
  font-size: 9px;
  font-weight: 800;
}

.micro-tourism__eyebrow b {
  color: var(--pink);
  font-size: 12px;
}

.micro-tourism__content > h3 {
  max-width: 660px;
  margin: 50px 0 28px;
  font-size: clamp(42px, 4.3vw, 68px);
  line-height: 1.12;
}

.micro-tourism__lead {
  max-width: 680px;
  margin: 0;
  color: #4f5963;
  font-size: 14px;
  line-height: 1.95;
}

.micro-tourism__pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid #c8c9c5;
}

.micro-tourism__pillars > div {
  min-height: 150px;
  padding: 24px 24px 22px 0;
  border-bottom: 1px solid #c8c9c5;
}

.micro-tourism__pillars > div:nth-child(odd) {
  border-right: 1px solid #c8c9c5;
}

.micro-tourism__pillars > div:nth-child(even) {
  padding-left: 24px;
}

.micro-tourism__pillars span {
  display: block;
  margin-bottom: 20px;
  color: var(--pink);
  font-size: 9px;
  font-weight: 800;
}

.micro-tourism__pillars strong {
  display: block;
  font-size: 18px;
}

.micro-tourism__pillars p {
  margin: 8px 0 0;
  color: #6b747b;
  font-size: 11px;
}

.micro-tourism__practice {
  display: grid;
  grid-template-columns: 150px 110px 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #c8c9c5;
}

.micro-tourism__practice span {
  color: #69727a;
  font-size: 8px;
  font-weight: 800;
}

.micro-tourism__practice strong {
  font-size: 18px;
}

.micro-tourism__practice p {
  margin: 0;
  color: #646e76;
  font-size: 11px;
}

.micro-tourism__flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  color: #303b45;
  font-size: 11px;
  font-weight: 800;
}

.micro-tourism__flow i {
  color: var(--pink);
  font-size: 14px;
  font-style: normal;
}

.services {
  position: relative;
  overflow: visible;
  background: #07101d;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.25fr .7fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 100px;
}

.section-head h2 {
  margin: 0;
  font-size: 64px;
  line-height: 1.1;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(330px, .72fr) minmax(620px, 1.28fr);
  gap: clamp(52px, 6vw, 112px);
  align-items: start;
}

.service-list {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr 1fr 54px;
  gap: 28px;
  align-items: center;
  min-height: 98px;
  border-top: 1px solid var(--line);
  cursor: pointer;
  outline: none;
  transition: padding .35s var(--ease), color .35s, border-color .35s;
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255,255,255,.045);
  transform: scaleY(0);
  transition: transform .35s var(--ease);
}

.service-row:hover,
.service-row.is-active,
.service-row:focus-visible {
  padding: 0 22px;
}

.service-row:hover::before,
.service-row.is-active::before,
.service-row:focus-visible::before {
  transform: scaleY(1);
}

.service-row.is-active {
  border-top-color: rgba(192, 231, 47, .62);
}

.service-row.is-active::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 2px;
  background: var(--lime);
}

.service-row__index {
  color: var(--lime);
  font-size: 10px;
}

.service-row h3 {
  margin: 0;
  font-size: 25px;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.service-row__arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 18px;
  transition: color .3s, border-color .3s, background .3s, transform .3s;
}

.service-row:hover .service-row__arrow,
.service-row.is-active .service-row__arrow,
.service-row:focus-visible .service-row__arrow {
  color: #07101d;
  border-color: var(--lime);
  background: var(--lime);
  transform: translate(3px, -3px);
}

.service-preview {
  position: sticky;
  top: calc(var(--header-h) + 32px);
  width: 100%;
  height: clamp(500px, 64vh, 680px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  background: #0c1725;
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}

.service-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,11,20,.03) 28%, rgba(5,11,20,.88) 100%),
    linear-gradient(90deg, rgba(192,231,47,.08), transparent 42%);
}

.service-preview::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255,255,255,.08);
}

.service-preview__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.service-preview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: opacity .32s var(--ease), transform .8s var(--ease), filter .32s;
}

.service-preview.is-switching .service-preview__media img {
  opacity: 0;
  filter: blur(6px);
  transform: scale(1.04);
}

.service-preview figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 44px 38px 38px;
}

.service-preview__index {
  display: block;
  margin-bottom: 14px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.service-preview__title {
  display: block;
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1.08;
}

.service-preview__copy {
  max-width: 390px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 13px;
}

.projects {
  color: var(--ink);
  background: var(--paper);
}

.projects__top {
  display: grid;
  grid-template-columns: 1fr 1.25fr .7fr;
  gap: 8vw;
  align-items: end;
  padding-bottom: 95px;
}

.projects__top .section-label p {
  color: #69727a;
}

.projects__top h2 {
  margin: 0;
  font-size: 64px;
  line-height: 1.1;
}

.projects__top .section-intro {
  color: #5d676f;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  background: #bbbdb8;
}

.experience-card {
  position: relative;
  min-height: 520px;
  padding: 38px;
  overflow: hidden;
  color: #fff;
  background: #07101d;
}

.experience-card--wide {
  grid-column: 1 / -1;
  min-height: 610px;
}

.experience-card img,
.experience-card::after {
  position: absolute;
  inset: 0;
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .8s var(--ease);
}

.experience-card::after {
  content: "";
  background: linear-gradient(180deg, rgba(3,8,15,.05) 30%, rgba(3,8,15,.9) 100%);
}

.experience-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.experience-card > span,
.experience-card h3,
.experience-card p {
  position: relative;
  z-index: 2;
}

.experience-card > span {
  display: block;
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
}

.experience-card h3 {
  margin: 330px 0 12px;
  font-size: 32px;
  line-height: 1.2;
}

.experience-card--wide h3 {
  margin-top: 405px;
  font-size: 46px;
}

.experience-card p {
  width: min(560px, 100%);
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.insights {
  background: #0b1623;
}

.section-head--insights {
  margin-bottom: 65px;
}

.content-streams {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 1px;
}

.content-stream {
  display: flex;
  min-width: 0;
  min-height: 0;
  padding: 34px;
  flex-direction: column;
  background: #0b1623;
}

.content-stream--company {
  background: #0e1a27;
}

.content-stream__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.content-stream__header span,
.content-stream__header > b {
  color: #778592;
  font-size: 9px;
  font-weight: 700;
}

.content-stream__header h3 {
  margin: 8px 0 0;
  font-size: 21px;
  line-height: 1.35;
}

.content-stream__header > b {
  padding-top: 3px;
  color: var(--lime);
  white-space: nowrap;
}

.content-stream--company .content-stream__header > b {
  color: var(--cyan);
}

.article-stream-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.article-stream-empty {
  display: grid;
  min-height: 370px;
  padding: 42px 0;
  align-content: center;
  border-bottom: 1px solid var(--line);
}

.article-stream-empty span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.content-stream--company .article-stream-empty span {
  color: var(--cyan);
}

.article-stream-empty p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.featured-article {
  display: flex;
  min-height: 370px;
  padding: 32px 0 34px;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}

.featured-article__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #788592;
  font-size: 10px;
}

.featured-article__tags {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-article__category {
  color: var(--lime);
  font-weight: 800;
}

.content-stream--company .featured-article__category {
  color: var(--cyan);
}

.pinned-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e7edf2;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
}

.pinned-badge i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(198,233,77,.7);
}

.content-stream--company .pinned-badge i {
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(85,217,230,.7);
}

.featured-article h4 {
  max-width: 620px;
  margin: 34px 0 18px;
  font-size: 28px;
  line-height: 1.35;
}

.featured-article > p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.featured-article__actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 28px;
}

.featured-article__actions button,
.featured-article__actions a {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 11px 0;
  color: var(--lime);
  border: 0;
  border-bottom: 1px solid rgba(198,233,77,.38);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
}

.content-stream--company .featured-article__actions button,
.content-stream--company .featured-article__actions a {
  color: var(--cyan);
  border-bottom-color: rgba(85,217,230,.38);
}

.featured-article__actions i {
  font-style: normal;
  transition: transform .25s var(--ease);
}

.featured-article__actions button:hover i,
.featured-article__actions a:hover i {
  transform: translate(3px, -3px);
}

.article-list {
  display: flex;
  flex-direction: column;
}

.article-list__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 16px 0 13px;
  color: #82909c;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 800;
}

.article-list__header span {
  color: var(--lime);
}

.content-stream--company .article-list__header span {
  color: var(--cyan);
}

.article-list__header small {
  color: #5f6e7a;
  font-size: 8px;
  letter-spacing: .08em;
}

.article-list-empty {
  min-height: 148px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.article-list-empty span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.article-list-empty p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.article-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 88px;
  padding: 11px 0 10px;
  border-bottom: 1px solid var(--line);
}

.article-row:last-child {
  border-bottom: 0;
}

.article-row__main {
  min-width: 0;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.article-row__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  color: #748391;
  font-size: 9px;
}

.article-row__meta span {
  color: var(--lime);
  font-weight: 800;
}

.content-stream--company .article-row__meta span {
  color: var(--cyan);
}

.article-row__meta time::before,
.article-row__meta small::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  margin: 0 9px 3px 0;
  background: #40505e;
}

.article-row h4 {
  max-width: 520px;
  margin: 0;
  font-size: 16px;
  line-height: 1.34;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.article-row__main:hover h4,
.article-row__main:focus-visible h4 {
  color: var(--lime);
  transform: translateX(4px);
}

.content-stream--company .article-row__main:hover h4,
.content-stream--company .article-row__main:focus-visible h4 {
  color: var(--cyan);
}

.article-row__source {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 7px 0;
  color: #7e8d9a;
  border-bottom: 1px solid rgba(126,141,154,.3);
  font-size: 9px;
  white-space: nowrap;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.article-row__source:hover {
  color: var(--lime);
  border-bottom-color: rgba(198,233,77,.5);
}

.content-stream--company .article-row__source:hover {
  color: var(--cyan);
  border-bottom-color: rgba(85,217,230,.5);
}

.article-dialog__source[hidden] {
  display: none;
}

.project-stage {
  position: relative;
  height: 92vh;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  background: #02070e;
}

.project-stage__media,
.project-image,
.project-stage__scrim {
  position: absolute;
  inset: 0;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.project-image--current {
  z-index: 1;
}

.project-image--next {
  z-index: 0;
  opacity: 0;
}

.project-image.is-entering {
  z-index: 2;
  animation: projectIn .9s var(--ease) forwards;
}

.project-image.is-leaving {
  animation: projectOut .9s var(--ease) forwards;
}

@keyframes projectIn {
  from { opacity: 0; transform: scale(1.1); clip-path: inset(0 0 100% 0); }
  to { opacity: 1; transform: scale(1.03); clip-path: inset(0 0 0 0); }
}

@keyframes projectOut {
  to { opacity: 0; transform: scale(.98); }
}

.project-stage__scrim {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(3,8,15,.78) 0%, rgba(3,8,15,.2) 60%, rgba(3,8,15,.42) 100%),
    linear-gradient(180deg, transparent 48%, rgba(3,8,15,.78) 100%);
}

.project-stage__content {
  position: absolute;
  top: 50%;
  left: var(--page-x);
  z-index: 4;
  width: min(640px, 52vw);
  transform: translateY(-50%);
}

.project-meta {
  display: flex;
  gap: 22px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.72);
  font-size: 10px;
}

.project-meta span:first-child {
  color: var(--lime);
}

.project-title {
  margin: 0;
  font-size: 76px;
  line-height: 1.06;
}

.project-desc {
  width: min(450px, 100%);
  margin: 32px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.project-stage__controls {
  position: absolute;
  right: var(--page-x);
  bottom: 92px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.project-stage__controls button {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: rgba(5,11,20,.12);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: color .3s, background .3s, border-color .3s;
}

.project-stage__controls button:hover {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
}

.project-stage__rail {
  position: absolute;
  bottom: 0;
  left: var(--page-x);
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: calc(100% - var(--page-x) * 2 - 160px);
  border-top: 1px solid rgba(255,255,255,.24);
}

.project-tab {
  position: relative;
  height: 65px;
  padding: 0 12px;
  color: rgba(255,255,255,.54);
  text-align: left;
  border: 0;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.project-tab::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.project-tab.is-active {
  color: #fff;
}

.project-tab.is-active::before {
  transform: scaleX(1);
}

.process {
  color: var(--ink);
  background: #dfe7e5;
}

.section-head--process {
  margin-bottom: 130px;
}

.process-line {
  position: relative;
  height: 1px;
  background: #aeb8b6;
}

.process-line__progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--yellow), var(--coral));
  transition: width 1.5s var(--ease);
}

.process-line.in-view .process-line__progress {
  width: 100%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.process-item {
  position: relative;
  min-height: 260px;
  padding: 32px 22px 20px 0;
}

.process-item::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ink);
}

.process-item span {
  color: #6b7777;
  font-size: 10px;
}

.process-item h3 {
  margin: 40px 0 14px;
  font-size: 26px;
}

.process-item p {
  margin: 0;
  color: #62706e;
  font-size: 12px;
}

.vision {
  position: relative;
  display: grid;
  min-height: 82vh;
  place-items: center;
  overflow: hidden;
}

.vision__image,
.vision__overlay {
  position: absolute;
  inset: 0;
}

.vision__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.vision__overlay {
  background:
    linear-gradient(90deg, rgba(3,10,18,.52) 0%, rgba(3,10,18,.2) 50%, rgba(3,10,18,.24) 100%),
    linear-gradient(180deg, rgba(4,11,19,.12), rgba(4,11,19,.48));
}

.vision__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.vision__content p {
  margin: 0 0 22px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
}

.vision__content h2 {
  margin: 0;
  font-size: 70px;
  line-height: 1.2;
  text-shadow: 0 4px 30px rgba(0,0,0,.25);
}

.vision__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 560px;
  height: 560px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin 28s linear infinite;
}

.vision__orbit::before,
.vision__orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
}

.vision__orbit::before {
  top: -5px;
}

.vision__orbit::after {
  bottom: -5px;
  background: var(--pink);
}

.vision__orbit span {
  position: absolute;
  top: 8px;
  font-size: 9px;
}

@keyframes orbitSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.contact {
  padding-bottom: 35px;
  background: #050b14;
}

.contact__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.contact__top > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact__headline {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 110px 0;
  color: inherit;
  text-align: left;
  border: 0;
  background: transparent;
  font-size: 88px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
}

.contact__headline span {
  display: block;
  width: max-content;
  transition: color .35s;
}

.contact__headline span:nth-child(2) {
  margin-left: 14vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.75);
}

.contact__headline:hover span {
  color: var(--lime);
  -webkit-text-stroke-color: var(--lime);
}

.contact__headline i {
  position: absolute;
  top: 50%;
  right: 3vw;
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  color: var(--lime);
  border: 1px solid rgba(198,233,77,.68);
  border-radius: 4px;
  background: rgba(198,233,77,.04);
  font-size: 32px;
  font-style: normal;
  transform: translateY(-50%);
  transition: color .35s, background .35s, border-color .35s, transform .35s;
}

.contact__headline:hover i,
.contact__headline:focus-visible i {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
  transform: translate(4px, calc(-50% - 4px));
}

.contact__details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact__details > div {
  min-height: 150px;
  padding: 30px 25px;
  border-right: 1px solid var(--line);
}

.contact__details > div:first-child {
  padding-left: 0;
}

.contact__details > div:last-child {
  border-right: 0;
}

.contact__details span {
  display: block;
  margin-bottom: 22px;
  color: #77818d;
  font-size: 9px;
  font-weight: 700;
}

.contact__details a,
.contact__details p {
  margin: 0;
  font-size: 13px;
}

.contact__details a:hover {
  color: var(--lime);
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  padding-top: 75px;
  color: #76808b;
  font-size: 9px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
}

.footer-brand img {
  width: 45px;
  height: 45px;
}

footer p {
  justify-self: center;
  margin: 0;
}

footer > a {
  justify-self: end;
}

.footer-links {
  display: flex;
  justify-self: end;
  gap: 24px;
}

.footer-links a:hover {
  color: var(--lime);
}

.dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
  background: rgba(1,5,10,.7);
  opacity: 0;
  transition: opacity .3s, visibility .3s;
}

.contact-dialog,
.article-dialog {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 301;
  width: min(620px, 100%);
  height: 100svh;
  padding: 90px 64px 50px;
  visibility: hidden;
  overflow-y: auto;
  color: var(--white);
  background: #0d1926;
  transform: translateX(105%);
  transition: transform .45s var(--ease), visibility .45s;
}

body.dialog-open {
  overflow: hidden;
}

body.dialog-open .dialog-backdrop {
  visibility: visible;
  opacity: 1;
}

.contact-dialog.is-open,
.article-dialog.is-open {
  visibility: visible;
  transform: translateX(0);
}

.dialog-close {
  position: absolute;
  top: 28px;
  right: 30px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 25px;
  cursor: pointer;
}

.contact-dialog > p,
.article-dialog__meta {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
}

.contact-dialog h2,
.article-dialog h2 {
  margin: 20px 0 70px;
  font-size: 52px;
  line-height: 1.16;
}

.dialog-contact-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  border-top: 1px solid var(--line);
}

.dialog-contact-row span {
  color: #7d8995;
  font-size: 10px;
}

.dialog-contact-row strong {
  font-size: 15px;
}

.dialog-contact-row button {
  padding: 9px 12px;
  color: var(--lime);
  border: 1px solid rgba(198,233,77,.35);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
}

.dialog-mail {
  display: inline-block;
  margin-top: 45px;
  padding-bottom: 8px;
  color: var(--lime);
  border-bottom: 1px solid var(--lime);
  font-size: 13px;
}

.article-dialog h2 {
  margin-bottom: 36px;
}

.article-dialog {
  width: min(760px, 100%);
  padding-right: 72px;
  padding-left: 72px;
}

.article-dialog h2 {
  max-width: 620px;
  font-size: 46px;
}

.article-dialog__body {
  color: #bec6ce;
  font-size: 16px;
  line-height: 1.95;
}

.article-dialog__body p {
  margin: 0 0 24px;
}

.article-dialog__body strong {
  color: #fff;
  font-weight: 750;
}

.article-dialog__body em {
  color: #dce4e9;
}

.article-dialog__body h3 {
  margin: 52px 0 22px;
  color: #fff;
  font-size: 25px;
  line-height: 1.45;
}

.article-dialog__body blockquote {
  margin: 0 0 34px;
  padding: 18px 22px;
  color: #e7edf1;
  border-left: 3px solid var(--lime);
  background: rgba(255,255,255,.045);
  font-size: 14px;
  line-height: 1.85;
}

.article-dialog__body figure {
  margin: 36px 0 42px;
}

.article-dialog__body figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  background: #07101a;
}

.article-dialog__body figcaption {
  margin-top: 10px;
  color: #778591;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.article-dialog__list-item {
  display: grid;
  grid-template-columns: 9px minmax(0,1fr);
  gap: 13px;
  margin-bottom: 13px;
}

.article-dialog__list-item > i {
  width: 5px;
  height: 5px;
  margin-top: 13px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(198,233,77,.45);
}

.article-dialog__list-item p {
  margin: 0;
}

.article-dialog__source {
  display: inline-flex;
  margin-top: 38px;
  padding-bottom: 8px;
  color: var(--lime);
  border-bottom: 1px solid rgba(198,233,77,.45);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.group-page {
  background: #06101b;
}

.group-hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  background: #06101b;
}

.group-hero > img,
.group-hero__scrim {
  position: absolute;
  inset: 0;
}

.group-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.group-hero__scrim {
  background:
    linear-gradient(90deg, rgba(2,8,15,.82) 0%, rgba(2,8,15,.42) 48%, rgba(2,8,15,.16) 100%),
    linear-gradient(180deg, rgba(2,8,15,.18), rgba(2,8,15,.62));
}

.group-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 92svh;
  padding: 160px var(--page-x) 100px;
  flex-direction: column;
  justify-content: flex-end;
}

.group-hero h1 {
  margin: 0;
  font-size: 96px;
  font-weight: 900;
  line-height: .95;
}

.group-hero h1 span {
  display: block;
}

.group-hero h1 span:last-child {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.82);
}

.group-hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: min(780px, 74%);
  margin-top: 42px;
}

.group-hero__bottom p {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 15px;
}

.group-hero__note {
  position: absolute;
  right: var(--page-x);
  bottom: 30px;
  z-index: 2;
  max-width: 390px;
  margin: 0;
  color: rgba(255,255,255,.5);
  text-align: right;
  font-size: 9px;
}

.group-overview {
  color: var(--ink);
  background: var(--paper);
}

.group-overview__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 9vw;
  align-items: end;
  margin-top: 90px;
}

.group-overview__intro h2,
.group-systems__head h2,
.group-members__intro h2,
.group-contact h2 {
  margin: 0;
  font-size: 64px;
  line-height: 1.15;
}

.group-overview__copy p {
  margin: 0 0 22px;
  color: #4f5963;
  font-size: 14px;
}

.group-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 110px;
  border-top: 1px solid #c8c9c5;
  border-bottom: 1px solid #c8c9c5;
}

.group-proof > div {
  min-height: 170px;
  padding: 34px 24px;
  border-right: 1px solid #c8c9c5;
}

.group-proof > div:first-child {
  padding-left: 0;
}

.group-proof > div:last-child {
  border-right: 0;
}

.group-proof strong {
  display: block;
  font-size: 46px;
  line-height: 1.1;
}

.group-proof span {
  display: block;
  margin-top: 24px;
  color: #65707a;
  font-size: 11px;
}

.group-data-note {
  margin: 18px 0 0;
  color: #7a8288;
  font-size: 10px;
}

.group-systems {
  background: #06101b;
}

.group-systems__head {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 90px;
}

.system-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  min-height: 600px;
  border-top: 1px solid var(--line);
}

.system-band--reverse {
  grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr);
}

.system-band--reverse .system-band__media {
  order: 2;
}

.system-band__media {
  min-height: 600px;
  overflow: hidden;
}

.system-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.system-band:hover .system-band__media img {
  transform: scale(1.025);
}

.system-band__content {
  display: flex;
  padding: 70px var(--page-x);
  flex-direction: column;
  justify-content: center;
}

.system-band__content > span {
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
}

.system-band--reverse .system-band__content > span {
  color: var(--cyan);
}

.system-band__content h3 {
  margin: 38px 0 24px;
  font-size: 44px;
  line-height: 1.2;
}

.system-band__content p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.group-capabilities {
  color: var(--ink);
  background: #dfe7e5;
}

.group-capabilities .section-label p {
  color: #66716f;
}

.capability-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 100px;
  border-top: 1px solid #aeb9b6;
  border-left: 1px solid #aeb9b6;
}

.capability-item {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid #aeb9b6;
  border-bottom: 1px solid #aeb9b6;
}

.capability-item > span {
  color: #7a8582;
  font-size: 9px;
}

.capability-item h3 {
  margin: 68px 0 16px;
  font-size: 22px;
  line-height: 1.3;
}

.capability-item p {
  margin: 0;
  color: #5f6a68;
  font-size: 11px;
}

.group-members {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  gap: 8vw;
  background: #0b1623;
}

.group-members__intro > p {
  max-width: 500px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.group-members__intro h2 {
  margin-top: 76px;
}

.member-list {
  border-top: 1px solid var(--line);
}

.member-list > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.member-list span {
  color: #6f7d8a;
  font-size: 9px;
}

.member-list strong {
  font-size: 17px;
  font-weight: 600;
}

.group-contact {
  padding-bottom: 35px;
  background: #050b14;
}

.group-contact > p {
  margin: 0 0 34px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
}

.group-contact__actions {
  display: flex;
  gap: 34px;
  margin-top: 70px;
}

.group-contact__actions a {
  display: inline-flex;
  gap: 26px;
  padding: 12px 0;
  color: var(--lime);
  border-bottom: 1px solid rgba(198,233,77,.42);
  font-size: 12px;
}

.group-contact__actions i {
  font-style: normal;
}

@media (max-width: 1120px) {
  .desktop-nav { gap: 22px; }
  .hero h1 { font-size: 88px; }
  .manifesto__lead,
  .section-head h2,
  .projects__top h2 { font-size: 52px; }
  .core-scene {
    grid-template-columns: 58px minmax(230px, .8fr) minmax(320px, 1.2fr);
    gap: 34px;
  }
  .micro-tourism {
    grid-template-columns: minmax(360px, .92fr) minmax(500px, 1.08fr);
  }
  .micro-tourism__content {
    padding-right: 48px;
    padding-left: 48px;
  }
  .project-title { font-size: 62px; }
  .contact__headline { font-size: 70px; }
  .service-showcase {
    grid-template-columns: minmax(290px, .65fr) minmax(560px, 1.35fr);
    gap: 42px;
  }
  .service-preview { height: 520px; }
  .group-hero h1 { font-size: 78px; }
  .group-overview__intro h2,
  .group-systems__head h2,
  .group-members__intro h2,
  .group-contact h2 { font-size: 52px; }
  .system-band__content h3 { font-size: 36px; }
  .capability-map { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .brand small { display: none; }
  .desktop-nav { gap: 18px; }
}

@media (max-width: 860px) {
  :root {
    --page-x: 24px;
    --header-h: 74px;
  }

  main > section:not(.hero) {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }

  .cursor,
  .desktop-nav,
  .header-contact {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .brand b { font-size: 13px; }
  .brand small { font-size: 7px; }
  .brand img { width: 38px; height: 38px; }

  .hero__content {
    padding-top: 120px;
    padding-bottom: 105px;
  }

  .hero h1 { font-size: 68px; }
  .hero__copy { width: 100%; }
  .hero__coordinates,
  .hero__system { display: none; }
  .hero__grid {
    right: -30%;
    bottom: -38%;
    width: 110%;
    opacity: .15;
  }
  .hero__signal--one { right: 22%; }
  .hero__signal--two { right: 8%; }
  .hero__signal--three { display: none; }
  .round-link { width: 164px; height: 56px; padding: 6px 6px 6px 17px; }
  .round-link i { width: 42px; height: 42px; }

  .section-pad { padding-top: 100px; padding-bottom: 100px; }

  .manifesto__body {
    grid-template-columns: 1fr;
    gap: 55px;
    margin-top: 65px;
  }

  .manifesto__lead { font-size: 46px; }
  .manifesto__aside { max-width: 520px; }
  .stats { grid-template-columns: repeat(2, 1fr); margin-top: 90px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid #c8c9c5; }
  .stat:nth-child(3) { padding-left: 0; }

  .day-night { height: 74vh; min-height: 580px; }
  .day-night__center { width: 360px; }
  .day-night__center strong { font-size: 30px; }

  .core-business .section-head {
    margin-bottom: 64px;
  }
  .core-scene {
    grid-template-columns: 52px 1fr;
    gap: 20px 30px;
    min-height: 0;
    padding: 36px 0;
  }
  .core-scene__detail {
    grid-column: 2;
  }
  .core-scene__detail p {
    max-width: 680px;
  }
  .micro-tourism {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 105px;
  }
  .micro-tourism__media {
    min-height: 560px;
  }
  .micro-tourism__media img {
    object-position: center 58%;
  }
  .micro-tourism__content {
    padding: 88px var(--page-x) 96px;
  }
  .micro-tourism__content > h3 {
    max-width: 720px;
  }
  .micro-tourism__lead {
    max-width: 760px;
  }

  .section-head,
  .projects__top {
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
  }

  .section-head h2,
  .projects__top h2 { font-size: 48px; }
  .section-intro,
  .projects__top .section-intro { grid-column: 2; }

  .service-showcase {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .service-list { width: 100%; }
  .service-preview {
    top: calc(var(--header-h) + 12px);
    z-index: 4;
    height: 330px;
  }
  .service-preview figcaption { padding: 52px 28px 26px; }
  .service-preview__title { font-size: 36px; }
  .service-row { grid-template-columns: 42px 1fr 1fr 48px; }

  .experience-card { min-height: 460px; }
  .experience-card--wide { min-height: 540px; }
  .experience-card h3 { margin-top: 285px; }
  .experience-card--wide h3 { margin-top: 340px; }

  .content-streams { grid-template-columns: 1fr; }
  .content-stream { min-height: 470px; }

  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-item { min-height: 220px; }
  .process-item:nth-child(-n+3) { border-bottom: 1px solid #b5bfbd; }
  .vision__content h2 { font-size: 54px; }
  .vision__orbit { width: 450px; height: 450px; }

  .contact__headline { font-size: 56px; }
  .contact__headline i { width: 80px; height: 80px; font-size: 26px; }
  .contact__details { grid-template-columns: repeat(2, 1fr); }
  .contact__details > div:nth-child(2) { border-right: 0; }
  .contact__details > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact__details > div:nth-child(3) { padding-left: 0; }

  .group-hero h1 { font-size: 66px; }
  .group-hero__bottom { width: 90%; }
  .group-hero__note { display: none; }
  .group-overview__intro,
  .group-members {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .group-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .group-proof > div:nth-child(2) { border-right: 0; }
  .group-proof > div:nth-child(-n+2) { border-bottom: 1px solid #c8c9c5; }
  .group-proof > div:nth-child(3) { padding-left: 0; }
  .group-systems__head { grid-template-columns: 1fr 1.4fr; }
  .system-band,
  .system-band--reverse {
    grid-template-columns: 1fr;
  }
  .system-band--reverse .system-band__media { order: 0; }
  .system-band__media { min-height: 480px; }
  .system-band__content { min-height: 390px; }
  .group-members__intro h2 { margin-top: 55px; }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: 66px;
  }

  main > section[id] {
    scroll-margin-top: 68px;
  }

  .preloader__mark { width: 68px; height: 68px; }
  .brand span { display: none; }
  .site-header {
    height: 68px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .site-header.is-scrolled {
    height: 62px;
    background: rgba(5,11,20,.88);
  }
  .brand img { width: 40px; height: 40px; }
  .menu-toggle { width: 34px; height: 34px; }
  .menu-panel {
    padding-right: 24px;
    padding-bottom: 92px;
    padding-left: 24px;
  }
  .menu-panel nav { gap: 5px; }
  .menu-panel nav a {
    padding: 7px 0;
    font-size: 31px;
  }
  .menu-panel__foot {
    margin-top: 22px;
  }

  .hero,
  .hero__content {
    min-height: 92svh;
  }
  .hero__image { background-position: 59% center; }
  .hero__shade {
    background:
      linear-gradient(180deg, rgba(2,8,15,.18) 0%, rgba(2,8,15,.02) 37%, rgba(2,8,15,.94) 100%),
      linear-gradient(90deg, rgba(4,11,19,.52), rgba(4,11,19,.04) 72%);
  }
  .hero__content {
    padding: 108px 22px 94px;
  }
  .hero h1 {
    max-width: 100%;
    font-size: 50px;
    line-height: .96;
  }
  .title-line i {
    animation-duration: .82s;
    animation-delay: .42s;
  }
  .title-line--accent i {
    animation-delay: .55s;
  }
  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }
  .eyebrow::before { width: 30px; }
  .hero__copy { align-items: flex-start; margin-top: 24px; }
  .hero__copy p { font-size: 13px; }
  .round-link {
    width: 146px;
    height: 50px;
    padding: 5px 5px 5px 14px;
    font-size: 10px;
  }
  .round-link::before { width: calc(100% - 42px); }
  .round-link i { width: 38px; height: 38px; font-size: 17px; }
  .hero__edition { display: none; }
  .hero__bottom {
    bottom: 20px;
    left: 22px;
    width: calc(100% - 44px);
  }
  .hero__scroll { gap: 9px; }
  .scroll-line { width: 48px; }
  .hero__scan { opacity: .55; }
  .hero__signal::after { display: none; }

  .mobile-quick {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 86px;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: #07101d;
  }
  .mobile-quick a {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 15px 12px 13px;
    border-right: 1px solid rgba(255,255,255,.12);
    flex-direction: column;
    justify-content: center;
  }
  .mobile-quick a:last-child { border-right: 0; }
  .mobile-quick b {
    color: var(--lime);
    font-size: 8px;
  }
  .mobile-quick span {
    margin-top: 3px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
  }
  .mobile-quick small {
    margin-top: 1px;
    overflow: hidden;
    color: #788695;
    font-size: 7px;
    text-overflow: ellipsis;
  }

  .section-pad { padding-top: 72px; padding-bottom: 72px; }
  .manifesto__body {
    gap: 38px;
    margin-top: 48px;
  }
  .manifesto__lead {
    font-size: 32px;
    line-height: 1.32;
  }
  .manifesto__aside p {
    margin-bottom: 24px;
    font-size: 13px;
  }
  .manifesto__lead span::after { height: 3px; }
  .stats { margin-top: 54px; }
  .stat { min-height: 126px; padding: 24px 14px; }
  .stat strong, .stat--text strong { font-size: 38px; }
  .stat sup { font-size: 15px; }
  .stat span { margin-top: 14px; font-size: 10px; }

  .day-night {
    height: 650px;
  }
  .day-night__image { display: none; }
  .day-night__day,
  .day-night__night {
    right: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: url("./assets/day-night-ai.webp");
    background-repeat: no-repeat;
    background-size: 200% 100%;
  }
  .day-night__day {
    top: 0;
    bottom: auto;
    background-position: left center;
  }
  .day-night__night {
    top: 50%;
    bottom: auto;
    background-position: right center;
  }
  .day-night__center {
    width: calc(100% - 44px);
    padding: 24px 18px;
    border-top: 1px solid rgba(255,255,255,.22);
    border-bottom: 1px solid rgba(255,255,255,.22);
    background: rgba(4,11,19,.28);
    backdrop-filter: blur(8px);
  }
  .day-night__center small { margin-bottom: 12px; }
  .day-night__center strong { font-size: 25px; }
  .day-night__day > span { bottom: auto; top: 22px; }
  .day-night__night > span { bottom: 22px; }

  .core-business {
    padding-bottom: 0;
  }
  .core-business .section-head {
    margin-bottom: 52px;
  }
  .core-scenes {
    display: flex;
    gap: 12px;
    margin-right: -24px;
    padding: 0 24px 14px 0;
    overflow-x: auto;
    border-top: 0;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .core-scenes::-webkit-scrollbar { display: none; }
  .core-scene {
    display: flex;
    flex: 0 0 82vw;
    align-items: flex-start;
    min-height: 365px;
    padding: 26px 24px;
    overflow: visible;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 4px;
    background:
      linear-gradient(145deg, rgba(85,217,230,.08), transparent 52%),
      rgba(255,255,255,.025);
    flex-direction: column;
    scroll-snap-align: start;
  }
  .core-scene::before { display: none; }
  .core-scene--commerce {
    background:
      linear-gradient(145deg, rgba(198,233,77,.1), transparent 54%),
      rgba(255,255,255,.025);
  }
  .core-scene:hover {
    padding: 26px 24px;
  }
  .core-scene__index { margin-bottom: 52px; }
  .core-scene__title { min-height: 84px; }
  .core-scene__title h3 {
    font-size: 25px;
  }
  .core-scene__detail {
    display: flex;
    margin-top: auto;
    padding-left: 0;
    flex-direction: column;
  }
  .core-scene__detail p {
    font-size: 13px;
  }
  .core-scene__detail > div {
    gap: 8px 13px;
    margin-top: 18px;
  }
  .micro-tourism {
    margin-top: 64px;
  }
  .micro-tourism__media {
    height: 340px;
    min-height: 340px;
  }
  .micro-tourism__media img {
    object-position: center;
  }
  .micro-tourism__media > span {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }
  .micro-tourism__content {
    padding: 56px 24px 64px;
  }
  .micro-tourism__content > h3 {
    margin-top: 34px;
    font-size: 32px;
  }
  .micro-tourism__lead {
    font-size: 13px;
  }
  .micro-tourism__pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
  }
  .micro-tourism__pillars > div,
  .micro-tourism__pillars > div:nth-child(even),
  .micro-tourism__pillars > div:nth-child(odd) {
    min-height: 134px;
    padding: 20px 14px 18px 0;
  }
  .micro-tourism__pillars > div:nth-child(odd) {
    border-right: 1px solid #c8c9c5;
  }
  .micro-tourism__pillars > div:nth-child(even) {
    padding-right: 0;
    padding-left: 14px;
  }
  .micro-tourism__pillars span {
    margin-bottom: 12px;
  }
  .micro-tourism__practice {
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
  }
  .micro-tourism__practice p {
    grid-column: 1 / -1;
  }
  .micro-tourism__flow {
    gap: 8px;
    font-size: 10px;
    flex-wrap: wrap;
  }

  .section-head,
  .projects__top {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 52px;
  }
  .section-head h2,
  .projects__top h2 { font-size: 37px; }
  .section-intro,
  .projects__top .section-intro { grid-column: auto; }

  .service-showcase { gap: 18px; }
  .service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: rgba(255,255,255,.14);
  }
  .service-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto 1fr;
    gap: 0 8px;
    align-content: start;
    min-width: 0;
    min-height: 154px;
    padding: 18px 14px;
    border: 0;
    background: #07101d;
  }
  .service-row::before,
  .service-row.is-active::after { display: none; }
  .service-row__index {
    grid-row: 1;
    grid-column: 1;
  }
  .service-row h3 {
    grid-row: 2;
    grid-column: 1 / -1;
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.25;
  }
  .service-row p {
    display: block;
    grid-row: 3;
    grid-column: 1 / -1;
    align-self: end;
    margin-top: 10px;
    color: #7f8b96;
    font-size: 9px;
    line-height: 1.55;
  }
  .service-row:hover,
  .service-row.is-active {
    padding: 18px 14px;
    background: #101c2b;
  }
  .service-row__arrow {
    grid-row: 1;
    grid-column: 2;
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .service-preview {
    position: relative;
    top: auto;
    height: 230px;
  }
  .service-preview figcaption { padding: 38px 20px 18px; }
  .service-preview__index { margin-bottom: 8px; }
  .service-preview__title { font-size: 27px; }
  .service-preview__copy {
    margin-top: 8px;
    font-size: 11px;
  }

  .projects__top { padding-bottom: 52px; }
  .experience-grid {
    display: flex;
    gap: 14px;
    padding: 0 24px 72px;
    overflow-x: auto;
    scroll-padding-left: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .experience-grid::-webkit-scrollbar { display: none; }
  .experience-card,
  .experience-card--wide {
    display: flex;
    flex: 0 0 82vw;
    min-height: 455px;
    padding: 26px 24px;
    flex-direction: column;
    justify-content: flex-end;
    scroll-snap-align: start;
  }
  .experience-card h3,
  .experience-card--wide h3 {
    margin-top: 12px;
    font-size: 27px;
  }
  .experience-card p { margin-top: 10px; }

  .section-head--process { margin-bottom: 62px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-item { min-height: 164px; padding: 22px 16px; }
  .process-item:nth-child(3) { border-bottom: 1px solid #b5bfbd; }
  .process-item:nth-child(4) { border-bottom: 1px solid #b5bfbd; }
  .process-item h3 { margin-top: 28px; }

  .vision { min-height: 560px; }
  .vision__image { object-position: 62% center; }
  .vision__content h2 { font-size: 39px; }
  .vision__orbit { width: 330px; height: 330px; }

  .content-stream {
    min-height: 0;
    padding: 26px 20px;
  }
  .content-stream__header {
    gap: 16px;
  }
  .content-stream__header h3 { font-size: 18px; }
  .content-stream__header > b { display: none; }
  .featured-article h4 {
    margin-top: 28px;
    font-size: 23px;
  }
  .featured-article__actions {
    gap: 20px;
    flex-wrap: wrap;
  }
  .article-row {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 0;
    padding: 13px 0 12px;
  }
  .article-row__source {
    justify-self: start;
  }

  .contact__top { align-items: flex-start; gap: 25px; flex-direction: column; }
  .contact {
    padding-bottom: 112px;
  }
  .contact__headline { margin: 64px 0; font-size: 40px; }
  .contact__headline span:nth-child(2) { margin: 8px 0 0; }
  .contact__headline i {
    position: static;
    width: 64px;
    height: 64px;
    margin-top: 34px;
    transform: none;
  }
  .contact__details { grid-template-columns: 1fr; }
  .contact__details > div {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .contact__details > div:nth-child(3) { padding-left: 0; }
  footer { grid-template-columns: 1fr auto; gap: 36px; }
  footer p { display: none; }
  .footer-links { gap: 16px; }

  .mobile-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 66px;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255,255,255,.14);
    background: rgba(5,11,20,.9);
    backdrop-filter: blur(18px);
  }
  .mobile-dock a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #7e8994;
    flex-direction: column;
  }
  .mobile-dock a::before {
    position: absolute;
    top: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--cyan), var(--lime));
    transform: translateX(-50%);
    transition: width .3s var(--ease);
  }
  .mobile-dock i {
    font-size: 7px;
    font-style: normal;
  }
  .mobile-dock span {
    font-size: 10px;
    font-weight: 700;
  }
  .mobile-dock a[aria-current="page"] {
    color: #fff;
  }
  .mobile-dock a[aria-current="page"]::before {
    width: 36px;
  }
  .menu-open .mobile-dock,
  .dialog-open .mobile-dock {
    transform: translateY(110%);
  }

  .contact-dialog,
  .article-dialog {
    padding: 82px 24px 36px;
  }
  .contact-dialog h2,
  .article-dialog h2 {
    margin-bottom: 48px;
    font-size: 38px;
  }
  .article-dialog {
    padding-right: 22px;
    padding-left: 22px;
  }
  .article-dialog h2 {
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 1.25;
  }
  .article-dialog__body {
    font-size: 15px;
    line-height: 1.9;
  }
  .article-dialog__body h3 {
    margin-top: 42px;
    font-size: 21px;
  }
  .article-dialog__body figure {
    margin: 30px -22px 36px;
  }
  .article-dialog__body figure img {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }
  .article-dialog__body figcaption {
    padding: 0 22px;
  }
  .dialog-contact-row {
    grid-template-columns: 54px 1fr;
  }
  .dialog-contact-row button {
    grid-column: 2;
    justify-self: start;
    margin-bottom: 18px;
  }

  .group-hero {
    min-height: 88svh;
  }
  .group-hero > img {
    object-position: 63% center;
  }
  .group-hero__content {
    min-height: 88svh;
    padding-top: 120px;
    padding-bottom: 72px;
  }
  .group-hero h1 { font-size: 50px; }
  .group-hero__bottom {
    align-items: flex-start;
    width: 100%;
    flex-direction: column;
  }
  .group-overview__intro {
    margin-top: 62px;
  }
  .group-overview__intro h2,
  .group-systems__head h2,
  .group-members__intro h2,
  .group-contact h2 {
    font-size: 39px;
  }
  .group-proof {
    margin-top: 72px;
  }
  .group-proof > div {
    min-height: 145px;
    padding: 28px 16px;
  }
  .group-proof strong { font-size: 33px; }
  .group-systems__head {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 62px;
  }
  .system-band__media { min-height: 330px; }
  .system-band__content {
    min-height: 360px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .system-band__content h3 { font-size: 31px; }
  .capability-map {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }
  .capability-item {
    min-height: 210px;
    padding: 24px;
  }
  .capability-item h3 { margin-top: 50px; }
  .group-members {
    gap: 60px;
  }
  .member-list > div {
    grid-template-columns: 40px 1fr;
    min-height: 82px;
  }
  .member-list strong { font-size: 14px; }
  .group-contact__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .hero__scan,
  .hero__grid,
  .hero__signals {
    display: none;
  }

  .hero__image {
    transform: scale(1.045);
  }
}
