:root {
  --bg: #03040b;
  --bg-2: #070815;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.072);
  --line: rgba(190, 203, 255, 0.12);
  --line-strong: rgba(213, 224, 255, 0.22);
  --text: #f4f6ff;
  --muted: #a6aec4;
  --soft: #6e778e;
  --blue: #94c9bc;
  --violet: #91b8ab;
  --pink: #9dbeb3;
  --cyan: #91f5d6;
  --green: #91f5d6;
  --surface: rgba(7, 13, 24, 0.68);
  --surface-strong: rgba(10, 18, 31, 0.82);
  --section-glow: radial-gradient(ellipse at 50% 0%, rgba(145, 245, 214, 0.07), transparent 34rem);
  --card-radius: 8px;
  --card-border: 1px solid rgba(181, 210, 235, 0.12);
  --card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)), var(--surface);
  --card-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  --shadow: 0 32px 120px rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans SC", "Space Grotesk", system-ui, sans-serif;
  line-height: 1.65;
  background: #050a0b;
  overflow-x: hidden;
}

body::before {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(145, 245, 214, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 245, 214, 0.035) 1px, transparent 1px),
    linear-gradient(116deg, transparent 48%, rgba(145, 245, 214, 0.035) 48.1%, transparent 48.3%);
  background-size: 96px 96px, 96px 96px, 220px 220px;
  mask-image: linear-gradient(180deg, transparent, black 16%, black 84%, transparent);
}

body::after {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: 0.14;
  pointer-events: none;
  background-image: linear-gradient(104deg, transparent 44%, rgba(145, 245, 214, 0.12) 44.05%, transparent 44.2%);
  background-size: 420px 420px;
  mask-image: linear-gradient(90deg, transparent, black 24%, black 76%, transparent);
}

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

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

.ambient-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 32px;
  max-width: none;
  margin: 0 auto;
  padding: 17px clamp(28px, 4vw, 62px);
  color: rgba(255, 255, 255, 0.88);
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(3, 6, 13, 0.72), transparent);
  box-shadow: none;
  backdrop-filter: none;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

body:has(.hero.direction-three-exact) .site-header {
  opacity: 1;
  pointer-events: auto;
}

main {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.site-header.is-scrolled {
  background: rgba(3, 6, 13, 0.82);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 18px;
}

.brand-cluster {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 18px;
}

.brand strong {
  color: rgba(255, 255, 255, 0.95);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
}

.brand span {
  position: relative;
  color: rgba(214, 222, 240, 0.76);
  font-family: "Noto Serif SC", serif;
  font-size: 21px;
  font-weight: 760;
  white-space: nowrap;
}

.brand span::before {
  display: inline-block;
  width: 1px;
  height: 24px;
  margin-right: 18px;
  background: rgba(213, 224, 255, 0.26);
  content: "";
  vertical-align: -5px;
}

.theater-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  color: rgba(255, 224, 139, 0.92);
  font-family: "Noto Serif SC", serif;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.theater-mark {
  display: block;
  width: 29px;
  height: 29px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 202, 72, 0.36);
}

.theater-mark img {
  width: 285%;
  max-width: none;
  transform: translate(-32%, -7%);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(22px, 2.8vw, 44px);
  color: rgba(231, 237, 248, 0.92);
  font-family: "Noto Sans SC", "Space Grotesk", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.nav a + a::before {
  content: none;
}

.nav a {
  -webkit-font-smoothing: auto;
  text-rendering: optimizeLegibility;
  transition:
    color 160ms ease,
    text-shadow 160ms ease;
}

.nav a:hover {
  color: var(--text);
  text-shadow: 0 0 20px rgba(145, 245, 214, 0.44);
}

.header-cta {
  justify-self: end;
  padding: 13px 30px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
  font-size: 18px;
  font-weight: 760;
}

.hero {
  --hero-bg-x: 0px;
  --hero-bg-y: 0px;
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  padding: 118px clamp(20px, 5vw, 72px) 54px;
  background:
    radial-gradient(ellipse at 50% 44%, rgba(145, 245, 214, 0.1), transparent 44rem),
    linear-gradient(90deg, rgba(2, 10, 10, 0.44), rgba(2, 10, 10, 0.12) 38%, rgba(2, 10, 10, 0.12) 62%, rgba(2, 10, 10, 0.44)),
    linear-gradient(180deg, rgba(2, 9, 10, 0.18), rgba(2, 9, 10, 0.7)),
    url("./assets/echojoy-hero-cinematic-stage.webp") center center / cover no-repeat,
    #050815;
  background-position:
    center center,
    center center,
    center center,
    calc(50% + var(--hero-bg-x)) calc(50% + var(--hero-bg-y)),
    center center;
  contain: layout paint;
}

.hero.direction-three-exact .hero-shell {
  opacity: 1;
  pointer-events: auto;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  z-index: 0;
  display: block;
  background:
    linear-gradient(180deg, rgba(6, 42, 36, 0.2), rgba(2, 10, 10, 0.26)),
    radial-gradient(circle at 50% 44%, rgba(191, 255, 232, 0.08) 0 1px, transparent 1.5px) 0 0 / 58px 58px,
    linear-gradient(90deg, rgba(3, 12, 12, 0.28), transparent 32%, transparent 68%, rgba(3, 12, 12, 0.28));
  opacity: 0.5;
}

.hero::after {
  display: none;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: 42%;
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent 16%, rgba(118, 211, 255, 0.34), rgba(230, 250, 255, 0.7), rgba(118, 211, 255, 0.26), transparent 84%) center 32% / 100% 1px no-repeat,
    radial-gradient(ellipse at 50% 32%, rgba(208, 243, 255, 0.46), rgba(73, 166, 255, 0.18) 18%, transparent 44%),
    linear-gradient(180deg, transparent 0%, rgba(5, 15, 31, 0.4) 42%, rgba(2, 5, 12, 0.92) 100%);
  filter: blur(0.2px);
  opacity: 0.76;
  transform: none;
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  will-change: transform;
  filter: hue-rotate(68deg) saturate(0.72);
}

.hero-flow {
  position: absolute;
  z-index: 1;
  right: -7%;
  bottom: -6%;
  left: -7%;
  width: 114%;
  height: 48%;
  overflow: visible;
  opacity: 0.18;
  pointer-events: none;
  filter: hue-rotate(68deg) saturate(0.72) drop-shadow(0 0 10px rgba(104, 224, 189, 0.16));
}

.flow-path {
  fill: none;
  stroke: rgba(163, 224, 255, 0.56);
  stroke-linecap: round;
  stroke-width: 1.05;
  stroke-dasharray: 520 820;
  animation: flowTrace 15s ease-in-out infinite alternate;
}

.flow-two,
.flow-four {
  opacity: 0.58;
  stroke: rgba(129, 181, 255, 0.44);
  stroke-dasharray: 420 980;
  animation-delay: -5s;
}

.flow-three {
  opacity: 0.7;
  stroke: rgba(202, 239, 255, 0.48);
  animation-delay: -9s;
}

.flow-five {
  opacity: 0.46;
  stroke: rgba(142, 203, 255, 0.42);
  stroke-dasharray: 600 900;
  animation-delay: -3s;
}

.motion-arc {
  position: absolute;
  display: block;
  border: 1px solid rgba(151, 215, 255, 0.15);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0.7;
}

.arc-left {
  top: 14%;
  left: -18%;
  width: min(68vw, 920px);
  height: min(74vw, 980px);
  transform: rotate(-23deg);
  animation: arcDriftLeft 19s ease-in-out infinite alternate;
}

.arc-right {
  right: -19%;
  bottom: -35%;
  width: min(76vw, 1040px);
  height: min(64vw, 860px);
  border-color: rgba(155, 126, 255, 0.11);
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(150deg);
  animation: arcDriftRight 22s ease-in-out infinite alternate;
}

.arc-center {
  top: 48%;
  left: 50%;
  width: min(38vw, 520px);
  height: min(24vw, 330px);
  border-color: rgba(166, 229, 255, 0.11);
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: translateX(-50%) rotate(13deg);
  animation: arcBreathe 14s ease-in-out infinite alternate;
}

.motion-star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(204, 241, 255, 0.8);
  box-shadow: 0 0 18px rgba(121, 214, 255, 0.42);
  animation: starPulse 4.6s ease-in-out infinite alternate;
}

.motion-panel {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(143, 216, 255, 0.14);
  background: linear-gradient(140deg, rgba(145, 220, 255, 0.06), transparent 60%);
  box-shadow: inset 0 1px 0 rgba(222, 248, 255, 0.1), 0 0 46px rgba(86, 165, 255, 0.08);
  opacity: 0.58;
  transform: perspective(800px) rotateY(-16deg) rotateX(3deg);
}

.motion-panel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -36%;
  width: 24%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(224, 249, 255, 0.2), transparent);
  opacity: 0;
  transform: skewX(-18deg);
  animation: panelGleam 12s ease-in-out infinite;
}

.panel-left {
  top: 22%;
  left: 7%;
  width: min(18vw, 270px);
  height: min(24vw, 340px);
  animation: panelFloatLeft 16s ease-in-out infinite alternate;
}

.panel-right {
  top: 14%;
  right: 6%;
  width: min(15vw, 230px);
  height: min(20vw, 300px);
  border-color: rgba(168, 139, 255, 0.13);
  background: linear-gradient(220deg, rgba(158, 132, 255, 0.07), transparent 64%);
  transform: perspective(800px) rotateY(17deg) rotateX(3deg);
  animation: panelFloatRight 19s ease-in-out infinite alternate;
}

.panel-low {
  right: 30%;
  bottom: 10%;
  width: min(20vw, 310px);
  height: min(8vw, 120px);
  opacity: 0.26;
  transform: perspective(800px) rotateX(55deg) rotateZ(-10deg);
  animation: panelFloatLow 13s ease-in-out infinite alternate;
}

.star-a {
  top: 26%;
  left: 18%;
}

.star-b {
  right: 22%;
  bottom: 28%;
  animation-delay: -2s;
}

.hero-shell {
  position: relative;
  z-index: 3;
  width: min(980px, 100%);
  min-height: 620px;
  height: calc(100svh - 172px);
  padding: 0;
  text-align: center;
}

.hero-copy-block {
  position: absolute;
  top: 40%;
  right: 0;
  left: 0;
  display: grid;
  justify-items: center;
  margin-bottom: 0;
  transform: translateY(-50%);
}

.world-dome {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  overflow: hidden;
  pointer-events: none;
}

.flow-lines {
  position: absolute;
  inset: 0 -8% -7%;
  width: 120%;
  height: 110%;
  opacity: 0.34;
  filter:
    drop-shadow(0 0 8px rgba(190, 235, 255, 0.38))
    drop-shadow(0 0 28px rgba(80, 170, 255, 0.28));
  transform-origin: 50% 74%;
  animation: lineFieldDrift 18s ease-in-out infinite alternate;
}

.flow-line {
  fill: none;
  stroke: rgba(198, 235, 255, 0.68);
  stroke-width: 1.05;
  stroke-linecap: round;
  stroke-dasharray: 620 920;
  stroke-dashoffset: 0;
  mix-blend-mode: screen;
  animation:
    lineTrace 13s ease-in-out infinite,
    lineBreathe 7s ease-in-out infinite alternate;
}

.line-a {
  stroke-width: 1.9;
  animation-delay: -1s, -2s;
}

.line-b {
  opacity: 0.9;
  stroke: rgba(168, 225, 255, 0.68);
  animation-delay: -4s, -1s;
}

.line-c {
  opacity: 0.86;
  stroke: rgba(235, 250, 255, 0.7);
  animation-delay: -8s, -4s;
}

.line-d {
  opacity: 0.78;
  stroke: rgba(148, 212, 255, 0.58);
  stroke-dasharray: 500 1100;
  animation-delay: -2s, -6s;
}

.line-e {
  opacity: 0.78;
  stroke: rgba(229, 250, 255, 0.62);
  stroke-dasharray: 430 1140;
  animation-delay: -7s, -3s;
}

.line-f {
  opacity: 0.74;
  stroke: rgba(122, 198, 255, 0.58);
  stroke-dasharray: 520 1080;
  animation-delay: -10s, -8s;
}

.line-g,
.line-o {
  opacity: 0.72;
  stroke: rgba(213, 240, 255, 0.56);
  stroke-width: 1.3;
  stroke-dasharray: 560 1160;
}

.line-h,
.line-p {
  opacity: 0.74;
  stroke: rgba(182, 228, 255, 0.55);
  stroke-dasharray: 700 1050;
}

.line-i,
.line-j,
.line-k,
.line-l,
.line-m,
.line-n {
  animation-delay: -6s, -3s;
}

.lower-line {
  opacity: 0.82;
  stroke: rgba(225, 247, 255, 0.68);
  stroke-width: 1.05;
  stroke-dasharray: 780 860;
  animation-delay: -9s, -5s;
}

.line-orb {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(220, 248, 255, 0.88);
  box-shadow:
    0 0 14px rgba(138, 220, 255, 0.9),
    0 0 38px rgba(75, 165, 255, 0.42);
  opacity: 0.82;
}

.orb-one {
  top: 31%;
  left: 19%;
  animation: orbFloatOne 11s ease-in-out infinite alternate;
}

.orb-two {
  top: 22%;
  right: 23%;
  width: 3px;
  height: 3px;
  animation: orbFloatTwo 12s ease-in-out infinite alternate;
}

.orb-three {
  right: 16%;
  bottom: 34%;
  width: 4px;
  height: 4px;
  animation: orbFloatThree 14s ease-in-out infinite alternate;
}

.world-dome::before {
  display: none;
}

.world-dome::after {
  display: none;
}

.planet-arc {
  display: none;
}

.planet-arc::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.11), transparent 38%);
  opacity: 0.44;
  animation: arcSheen 9s ease-in-out infinite;
}

.horizon-glow {
  display: none;
}

.horizon-glow::before {
  position: absolute;
  right: 0;
  bottom: 59%;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent 0%, rgba(98, 184, 255, 0.28), rgba(235, 252, 255, 0.92), rgba(98, 184, 255, 0.28), transparent 100%);
  box-shadow:
    0 0 22px rgba(138, 220, 255, 0.38),
    0 0 84px rgba(72, 153, 255, 0.34);
}

.human-scale {
  display: none;
}

.human-scale::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 62px;
  height: 62px;
  content: "";
  border: 1px solid rgba(198, 238, 255, 0.24);
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 34% 37%, rgba(238, 252, 255, 0.9) 0 20%, transparent 21%),
    radial-gradient(ellipse at 62% 62%, rgba(238, 252, 255, 0.84) 0 22%, transparent 23%),
    rgba(4, 11, 22, 0.84);
  box-shadow:
    0 0 0 9px rgba(255, 255, 255, 0.035),
    0 0 34px rgba(153, 213, 255, 0.32);
  transform: translateX(-50%);
}

.human-scale::after {
  position: absolute;
  top: 62px;
  left: 50%;
  width: 1px;
  height: 94px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(220, 247, 255, 0.8), rgba(92, 180, 255, 0.24), transparent);
  box-shadow:
    0 0 18px rgba(134, 217, 255, 0.5),
    0 0 48px rgba(74, 154, 255, 0.36);
  transform: translateX(-50%);
}

.star-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #79d6ff;
  box-shadow: 0 0 22px rgba(121, 214, 255, 0.9);
  animation: slowPulse 2.8s ease-in-out infinite alternate;
}

.star-one {
  top: 30%;
  right: 19%;
}

.star-two {
  top: 18%;
  left: 38%;
  width: 2px;
  height: 2px;
  opacity: 0.5;
}

.star-three {
  right: 7%;
  bottom: 30%;
  width: 2px;
  height: 2px;
  opacity: 0.5;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pixel-text,
.card-index,
.service-card small {
  font-family: "Space Grotesk", "Noto Sans SC", monospace;
}

h1 {
  font-family: "Noto Serif SC", serif;
}

.world-tags,
.hero-mark {
  font-family: "Noto Sans SC", "Space Grotesk", system-ui, sans-serif;
}

.hero-subtitle {
  font-family: "Noto Serif SC", serif;
}

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

h1 {
  width: max-content;
  max-width: 92vw;
  margin: 0 auto 22px;
  color: rgba(238, 246, 255, 0.96);
  font-size: clamp(62px, 6.25vw, 98px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0.02em;
  text-shadow: 0 12px 42px rgba(121, 214, 255, 0.2);
  text-wrap: balance;
}

h1 span {
  position: relative;
  display: flex;
  gap: clamp(6px, 0.75vw, 14px);
  align-items: center;
  justify-items: center;
  width: 100%;
}

.title-last::after {
  position: absolute;
  right: -0.42em;
  bottom: 0.22em;
  display: block;
  width: 0.34em;
  height: 0.08em;
  margin-left: 0;
  background: #76d7ff;
  box-shadow: 0 0 18px rgba(118, 215, 255, 0.62);
  content: "";
  animation:
    caretBlink 1.1s steps(1) infinite,
    caretGlow 2.4s ease-in-out infinite;
}

h1 b,
h1 em {
  display: block;
  width: 1em;
  text-align: center;
}

h1 em {
  color: #76d7ff;
  font-style: normal;
  text-shadow:
    0 0 10px rgba(118, 215, 255, 0.75),
    0 0 28px rgba(118, 215, 255, 0.44);
}

.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 20px;
  color: rgba(189, 203, 231, 0.7);
  font-size: 20px;
  font-weight: 760;
  letter-spacing: 10px;
}

.hero-subtitle::before,
.hero-subtitle::after {
  width: 54px;
  height: 1px;
  background: rgba(189, 203, 231, 0.52);
  content: "";
}

.hero-line {
  margin: 6px 0 0;
  color: #5d7299;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}

.hero-line strong {
  color: #7fd1ff;
  font-weight: 600;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3.9vw, 52px);
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(21px, 1.55vw, 25px);
  line-height: 1.25;
}

.hero-copy {
  max-width: 560px;
  margin: 0 auto 16px;
  color: rgba(166, 174, 196, 0.86);
  font-size: clamp(15px, 1.35vw, 17px);
}

.world-tags {
  position: absolute;
  right: 0;
  bottom: clamp(86px, 13vh, 138px);
  left: 0;
  display: flex;
  z-index: 3;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: min(760px, 100%);
  margin: 0 auto;
  padding-top: 0;
}

.world-tags span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 26px;
  color: rgba(244, 248, 255, 0.96);
  border: 1px solid rgba(102, 169, 219, 0.35);
  border-radius: 999px;
  background: rgba(7, 22, 38, 0.72);
  box-shadow: inset 0 1px 0 rgba(222, 248, 255, 0.12), inset 0 0 28px rgba(117, 204, 255, 0.08), 0 14px 36px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  -webkit-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}

.world-tags b {
  font: inherit;
  white-space: nowrap;
}

.world-tags i {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #7bd7ff;
  border: 1px solid rgba(123, 215, 255, 0.48);
  border-radius: 8px;
  font-size: 11px;
  font-style: normal;
}

.hero-mark {
  position: absolute;
  right: 0;
  bottom: 4.2%;
  left: 0;
  display: grid;
  justify-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-mark strong {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
}

.hero-mark span {
  margin-top: 4px;
  color: #5d7299;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section {
  position: relative;
  z-index: 0;
  padding: clamp(82px, 10vw, 132px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  background:
    var(--section-glow),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

.page-stage {
  --stage-shift: 0px;
  position: absolute;
  z-index: 0;
  top: calc(100svh - 80px);
  right: 0;
  bottom: -160px;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(145, 245, 214, 0.035), transparent 7%, transparent 92%, rgba(145, 245, 214, 0.025)),
    linear-gradient(90deg, rgba(145, 245, 214, 0.018), transparent 22%, transparent 78%, rgba(145, 245, 214, 0.018));
  transform: translate3d(0, var(--stage-shift), 0);
  will-change: transform;
}

.page-stage::before,
.page-stage::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.page-stage::before {
  top: 2%;
  right: -13%;
  width: min(48vw, 720px);
  height: 94%;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(145, 245, 214, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 245, 214, 0.09) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent, black 34%, black 72%, transparent);
  transform: rotate(-5deg);
}

.page-stage::after {
  top: 20%;
  bottom: 16%;
  left: -19%;
  width: min(44vw, 680px);
  border: 1px solid rgba(145, 245, 214, 0.1);
  border-left: 0;
  opacity: 0.62;
  transform: rotate(8deg);
}

.stage-plane {
  position: absolute;
  display: block;
  width: min(34vw, 510px);
  height: min(21vw, 320px);
  border: 1px solid rgba(145, 245, 214, 0.12);
  background: linear-gradient(145deg, rgba(145, 245, 214, 0.028), transparent 58%);
  box-shadow: inset 0 1px 0 rgba(215, 255, 240, 0.035);
  opacity: 0.72;
  animation: stageBreathe 16s ease-in-out infinite alternate;
}

.plane-one {
  top: 7%;
  right: -14%;
  transform: rotate(-11deg) skewY(4deg);
}

.plane-two {
  top: 32%;
  left: -13%;
  transform: rotate(9deg) skewY(-3deg);
  animation-delay: -5s;
}

.plane-three {
  top: 59%;
  right: -12%;
  transform: rotate(-8deg) skewY(3deg);
  animation-delay: -10s;
}

.plane-four {
  top: 81%;
  left: -15%;
  transform: rotate(10deg) skewY(-4deg);
  animation-delay: -13s;
}

.section::before {
  display: none;
}

.section::after {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(145, 245, 214, 0.026) 1px, transparent 1px),
    linear-gradient(rgba(145, 245, 214, 0.018) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(ellipse at 50% 34%, black 0%, transparent 66%);
  opacity: 0.36;
}

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

.intro-section,
.services-section,
.strengths-section,
.workflow-section {
  display: grid;
  min-height: min(92svh, 940px);
  align-content: center;
}

.cases-section {
  min-height: 100svh;
}

.scene-panel {
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.section-grid,
.section-heading,
.exposure-inner,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  width: min(100%, 1180px);
  margin-right: auto;
  margin-left: auto;
}

.intro-copy,
.section-heading > p,
.exposure-content p,
.contact-section p {
  color: var(--muted);
  font-size: clamp(16px, 1.18vw, 17px);
  line-height: 1.82;
}

.section-heading {
  display: block;
  margin-bottom: clamp(34px, 4.6vw, 56px);
}

.section-heading > p {
  max-width: 680px;
  margin: 0;
}

.cases-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.intro-section {
  display: grid;
  min-height: min(92svh, 940px);
  overflow: hidden;
  align-content: center;
  padding-top: clamp(112px, 11vw, 150px);
  padding-bottom: clamp(112px, 11vw, 150px);
  background: linear-gradient(180deg, rgba(6, 14, 15, 0.1), rgba(6, 14, 15, 0.035));
}

.intro-section::after {
  position: absolute;
  z-index: 0;
  right: clamp(20px, 8vw, 120px);
  bottom: clamp(58px, 9vw, 128px);
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  content: "";
  opacity: 0.28;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(145, 245, 214, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(145, 245, 214, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle, black, transparent 68%);
}

.intro-section .section-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.intro-flow {
  position: absolute;
  bottom: clamp(46px, 7vw, 96px);
  left: clamp(28px, 7vw, 112px);
  display: flex;
  width: min(300px, 30vw);
  align-items: center;
  justify-content: space-between;
  opacity: 0.68;
  pointer-events: none;
}

.intro-flow::before {
  position: absolute;
  right: 8px;
  left: 8px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(145, 245, 214, 0.52), transparent);
}

.intro-flow i {
  position: relative;
  display: block;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(157, 228, 255, 0.78);
  border-radius: 50%;
  background: #07121f;
  box-shadow: 0 0 18px rgba(145, 245, 214, 0.28);
  animation: nodeBreathe 4.8s ease-in-out infinite alternate;
}

.intro-flow i:nth-child(2) {
  width: 14px;
  height: 14px;
  animation-delay: -1.1s;
}

.intro-flow i:nth-child(3) {
  border-color: rgba(255, 211, 106, 0.72);
  box-shadow: 0 0 18px rgba(255, 211, 106, 0.24);
  animation-delay: -2.2s;
}

.intro-flow i:nth-child(4) {
  width: 6px;
  height: 6px;
  animation-delay: -3.1s;
}

.intro-section .section-title {
  position: relative;
  display: grid;
  min-height: clamp(360px, 34vw, 450px);
  align-content: center;
  overflow: hidden;
  padding: clamp(36px, 5vw, 68px);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(115deg, rgba(145, 245, 214, 0.07), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.006));
  box-shadow: inset 0 0 72px rgba(0, 0, 0, 0.14);
}

.intro-section .section-title::before,
.intro-section .section-title::after {
  position: absolute;
  z-index: 3;
  width: clamp(82px, 9vw, 128px);
  height: clamp(82px, 9vw, 128px);
  content: "";
  pointer-events: none;
}

.intro-section .section-title::before {
  top: 0;
  left: 0;
  border-top: 1px solid rgba(186, 255, 233, 0.62);
  border-left: 1px solid rgba(186, 255, 233, 0.34);
}

.intro-section .section-title::after {
  right: 0;
  bottom: 0;
  border-right: 1px solid rgba(186, 255, 233, 0.36);
  border-bottom: 1px solid rgba(186, 255, 233, 0.62);
}

.intro-section .section-title .section-kicker,
.intro-section .section-title h2 {
  position: relative;
  z-index: 2;
}

.intro-section .section-title h2 {
  display: grid;
  justify-items: start;
  gap: 8px;
  margin: 18px 0 0;
}

.declaration-lead,
.declaration-rest {
  display: block;
}

.declaration-lead {
  color: rgba(240, 249, 246, 0.96);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 700;
  line-height: 0.96;
}

.declaration-lead b {
  display: inline-block;
  font-size: 0.72em;
  font-weight: inherit;
  line-height: 1;
  transform: translateY(-0.08em);
}

.declaration-lead em {
  color: var(--cyan);
  font-style: normal;
  text-shadow: 0 0 28px rgba(145, 245, 214, 0.18);
}

.declaration-rest {
  color: rgba(229, 239, 237, 0.86);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.14;
}

.declaration-frames {
  position: absolute;
  z-index: 1;
  top: 12%;
  right: -8%;
  width: 58%;
  height: 76%;
  opacity: 0.72;
  pointer-events: none;
  transform: perspective(900px) rotateY(-14deg) rotateZ(-3deg);
}

.declaration-frames i {
  position: absolute;
  display: block;
  border: 1px solid rgba(145, 245, 214, 0.14);
  background: linear-gradient(135deg, rgba(145, 245, 214, 0.035), transparent 60%);
  box-shadow: inset 0 1px 0 rgba(218, 255, 243, 0.04);
  animation: declarationFloat 15s ease-in-out infinite alternate;
}

.declaration-frames i:nth-child(1) {
  inset: 4% 2% 24% 20%;
}

.declaration-frames i:nth-child(2) {
  inset: 22% 20% 8% 2%;
  animation-delay: -5s;
}

.declaration-frames i:nth-child(3) {
  inset: 34% 0 18% 34%;
  border-color: rgba(145, 245, 214, 0.1);
  animation-delay: -10s;
}

.intro-copy {
  position: relative;
  z-index: 1;
}

.intro-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(28px, 4vw, 46px);
}

.intro-metrics span {
  display: grid;
  min-height: 104px;
  align-content: center;
  padding: 22px;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
}

.intro-metrics b {
  color: var(--cyan);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
}

.intro-metrics small {
  margin-top: 12px;
  color: rgba(166, 174, 196, 0.86);
  font-size: 13px;
  line-height: 1.45;
}

.intro-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 24px);
  width: min(100%, 1180px);
  margin: clamp(42px, 5vw, 68px) auto 0;
}

.intro-visual::before {
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(145, 245, 214, 0.42), transparent);
}

.intro-visual span {
  position: relative;
  display: grid;
  min-height: 76px;
  place-items: center;
  color: rgba(232, 242, 255, 0.88);
  border: 1px solid rgba(190, 203, 255, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.018)),
    rgba(8, 12, 24, 0.82);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.services-section {
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6, 14, 15, 0.075), rgba(6, 14, 15, 0.025));
}

.services-section::before,
.services-section::after,
.strengths-section::before,
.strengths-section::after,
.workflow-section::before,
.workflow-section::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.services-section::before {
  top: -8%;
  right: -10%;
  width: min(42vw, 620px);
  height: min(42vw, 620px);
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(145, 245, 214, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 245, 214, 0.16) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(135deg, black, transparent 72%);
  transform: rotate(-10deg);
}

.services-section::after {
  bottom: 10%;
  left: 0;
  width: min(28vw, 370px);
  height: 180px;
  border-top: 1px solid rgba(145, 245, 214, 0.24);
  border-right: 1px solid rgba(145, 245, 214, 0.16);
  opacity: 0.7;
  transform: skewY(-12deg) translateX(-38%);
}

.services-section .section-heading,
.services-section .service-grid,
.strengths-section .section-heading,
.strengths-section .strength-list,
.workflow-section .section-heading,
.workflow-section .workflow {
  position: relative;
  z-index: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 248px;
  overflow: hidden;
  padding: clamp(26px, 2.2vw, 32px);
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-card::before {
  position: absolute;
  inset: -1px;
  content: "";
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(145, 245, 214, 0.2), transparent 18rem);
  transition: opacity 180ms ease;
}

.service-card::after {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(145, 245, 214, 0.45), transparent);
}

.service-mark,
.strength-mark {
  position: absolute;
  top: clamp(26px, 2.2vw, 32px);
  right: clamp(26px, 2.2vw, 32px);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: rgba(151, 226, 255, 0.78);
  border: 1px solid rgba(145, 245, 214, 0.2);
  border-radius: 10px;
  background: rgba(145, 245, 214, 0.035);
}

.service-mark i,
.strength-mark i {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
}

.mark-story i {
  border-radius: 50%;
}

.mark-story i::after {
  position: absolute;
  top: 4px;
  right: -5px;
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.mark-frame i::before,
.mark-frame i::after {
  position: absolute;
  width: 5px;
  height: 5px;
  content: "";
  border-color: currentColor;
}

.mark-frame i::before {
  top: -3px;
  left: -3px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.mark-frame i::after {
  right: -3px;
  bottom: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.mark-pulse i {
  width: 20px;
  height: 12px;
  border-width: 0 0 1px;
  transform: skewX(-28deg);
}

.mark-world i {
  border-radius: 50%;
}

.mark-world i::before,
.mark-world i::after {
  position: absolute;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
}

.mark-world i::before {
  inset: -1px 4px;
}

.mark-world i::after {
  top: 6px;
  right: -1px;
  left: -1px;
  height: 1px;
  border-width: 1px 0 0;
  border-radius: 0;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(213, 224, 255, 0.28);
  background: var(--surface-strong);
}

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

.card-index {
  display: inline-flex;
  margin-bottom: clamp(32px, 3.8vw, 48px);
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card p,
.strength-item p,
.workflow li {
  color: var(--muted);
}

.cases-section {
  padding-top: clamp(96px, 10vw, 140px);
  padding-bottom: clamp(96px, 10vw, 150px);
  background:
    radial-gradient(ellipse at 20% 28%, rgba(145, 245, 214, 0.1), transparent 28rem),
    linear-gradient(180deg, rgba(3, 8, 15, 0.04), rgba(3, 8, 15, 0.9) 16%, rgba(3, 8, 15, 0.9) 84%, rgba(3, 8, 15, 0.04));
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 28px);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.case-card {
  grid-column: span 2;
}

.case-card-featured {
  grid-column: span 4;
  grid-row: span 2;
}

.case-card a {
  display: grid;
  gap: 12px;
  color: inherit;
}

.case-card {
  position: relative;
  padding: 12px;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.026);
  box-shadow: var(--card-shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.case-card::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(180, 231, 255, 0.56), transparent);
  opacity: 0.56;
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(150, 213, 255, 0.32);
  background: rgba(255, 255, 255, 0.042);
}

.case-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(150, 213, 255, 0.14);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at 50% 22%, rgba(145, 245, 214, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.case-card-featured .case-cover {
  aspect-ratio: 16 / 9;
}

.case-card-featured h3 {
  font-size: clamp(24px, 2.2vw, 34px);
}

.case-cover::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  opacity: 0.38;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 4, 11, 0.08), transparent 44%, rgba(3, 4, 11, 0.28)),
    linear-gradient(90deg, rgba(3, 4, 11, 0.22), transparent 28%, transparent 72%, rgba(3, 4, 11, 0.18));
}

.case-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
  transition: transform 360ms ease, filter 360ms ease;
}

.case-cover::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 38%, rgba(232, 250, 255, 0.18) 50%, transparent 62%);
  transform: translateX(-65%);
  transition: transform 520ms ease, opacity 260ms ease;
}

.case-card a {
  height: 100%;
}

.case-card:hover .case-cover img {
  filter: saturate(1.15) contrast(1.06);
  transform: scale(1.045);
}

.case-card:hover .case-cover::after {
  opacity: 1;
  transform: translateX(65%);
}

.case-card h3 {
  position: relative;
  margin: 0;
  padding: 2px 4px 5px 16px;
  color: rgba(238, 246, 255, 0.94);
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.2;
}

.case-card h3::before {
  position: absolute;
  top: 0.18em;
  bottom: 0.28em;
  left: 3px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, var(--cyan), rgba(145, 245, 214, 0.12));
  box-shadow: 0 0 14px rgba(145, 245, 214, 0.26);
}

.case-card-featured h3::before {
  background: linear-gradient(180deg, #ffd36a, rgba(255, 211, 106, 0.14));
  box-shadow: 0 0 16px rgba(255, 211, 106, 0.32);
}

.case-card:nth-child(4),
.case-card:nth-child(5) {
  grid-column: span 3;
}

.case-card:hover .case-cover {
  transform: none;
  border-color: rgba(150, 213, 255, 0.34);
  box-shadow:
    0 0 60px rgba(84, 171, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.case-aurora .case-cover {
  background:
    radial-gradient(circle at 52% 18%, rgba(145, 245, 214, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    var(--surface);
}

.case-cyan .case-cover {
  background:
    radial-gradient(circle at 78% 24%, rgba(145, 245, 214, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    var(--surface);
}

.case-orbit .case-cover {
  background:
    radial-gradient(ellipse at 50% 42%, transparent 0 38%, rgba(134, 219, 255, 0.16) 39%, transparent 43%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    var(--surface);
}

.case-flare .case-cover {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 210, 154, 0.12), transparent 28%),
    radial-gradient(circle at 76% 74%, rgba(145, 245, 214, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    var(--surface);
}

.case-night .case-cover {
  background:
    radial-gradient(circle at 50% 28%, rgba(86, 151, 230, 0.17), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    var(--surface);
}

.case-pulse .case-cover {
  background:
    radial-gradient(circle at 70% 32%, rgba(145, 245, 214, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    var(--surface);
}

.case-brand {
  justify-self: end;
  width: 168px;
  padding: 8px;
  border: 1px solid rgba(255, 204, 86, 0.34);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.case-brand img {
  width: 100%;
}

.strength-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 1180px);
  margin: 50px auto 0;
  border-top: 1px solid rgba(190, 203, 255, 0.18);
  border-bottom: 1px solid rgba(190, 203, 255, 0.18);
}

.strengths-section {
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6, 14, 15, 0.075), rgba(6, 14, 15, 0.025));
}

.strengths-section::before {
  top: 14%;
  left: -4%;
  width: min(28vw, 420px);
  height: min(28vw, 420px);
  border: 1px solid rgba(145, 245, 214, 0.12);
  border-left: 0;
  opacity: 0.7;
  transform: rotate(18deg);
}

.strengths-section::after {
  right: -4%;
  bottom: 12%;
  width: min(26vw, 360px);
  height: min(18vw, 240px);
  border: 1px solid rgba(145, 245, 214, 0.16);
  border-right: 0;
  opacity: 0.72;
  transform: rotate(-12deg);
}

.strength-item {
  position: relative;
  min-height: 278px;
  padding: clamp(32px, 3vw, 46px);
  border: 0;
  border-right: 1px solid rgba(190, 203, 255, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.strength-item strong {
  max-width: 100%;
}

.strength-item:hover {
  background: linear-gradient(180deg, rgba(145, 245, 214, 0.045), transparent);
  transform: none;
}

.strength-item:last-child {
  border-right: 0;
}

.strength-item strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(21px, 1.55vw, 25px);
}

.strength-item p {
  margin-bottom: 0;
}

.strength-value {
  display: block;
  margin-bottom: 24px;
  color: var(--cyan);
  font-size: clamp(46px, 4.6vw, 68px);
  font-weight: 700;
  line-height: 0.9;
}

.strength-value sup,
.strength-value span {
  margin-left: 3px;
  color: rgba(145, 245, 214, 0.64);
  font-size: 0.36em;
  font-weight: 700;
}

.workflow-section {
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6, 14, 15, 0.075), rgba(6, 14, 15, 0.025));
}

.workflow-section::before {
  top: 12%;
  right: -10%;
  width: min(44vw, 640px);
  height: min(34vw, 480px);
  opacity: 0.32;
  background:
    linear-gradient(140deg, transparent 48%, rgba(145, 245, 214, 0.22) 48.2%, transparent 48.5%),
    linear-gradient(140deg, transparent 60%, rgba(145, 245, 214, 0.14) 60.2%, transparent 60.5%);
}

.workflow-section::after {
  bottom: 8%;
  left: -7%;
  width: min(30vw, 400px);
  height: min(24vw, 300px);
  border: 1px solid rgba(145, 245, 214, 0.16);
  border-bottom: 0;
  opacity: 0.65;
  transform: rotate(24deg);
}

.workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
  width: min(100%, 1180px);
  margin: 0;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.workflow li {
  position: relative;
  z-index: 1;
  min-height: 190px;
  overflow: hidden;
  padding: clamp(28px, 2.2vw, 34px) clamp(24px, 2vw, 28px) 28px;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.workflow li:hover {
  transform: translateY(-4px);
  border-color: rgba(213, 224, 255, 0.28);
  background: var(--surface-strong);
}

.workflow li::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 52px;
  color: var(--green);
  font-weight: 900;
}

.workflow span {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(20px, 1.45vw, 23px);
  font-weight: 900;
}


.exposure-section {
  background:
    radial-gradient(circle at 80% 50%, rgba(145, 245, 214, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.006), rgba(255, 255, 255, 0));
}

.exposure-inner {
  align-items: center;
  padding: clamp(38px, 5.8vw, 72px);
  background:
    radial-gradient(circle at 18% 4%, rgba(145, 245, 214, 0.08), transparent 28rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(190, 203, 255, 0.13);
  border-bottom: 1px solid rgba(190, 203, 255, 0.13);
}

.resource-slots,
.contact-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.resource-slots span,
.contact-slots span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: rgba(203, 213, 235, 0.74);
  border: 1px solid rgba(190, 203, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
  font-size: 13px;
  font-weight: 760;
}

.brand-portal {
  position: relative;
  display: grid;
  min-height: 240px;
  place-items: center;
  justify-self: end;
  width: min(440px, 100%);
  overflow: hidden;
  border-left: 1px solid rgba(190, 203, 255, 0.16);
}

.brand-portal::before {
  position: absolute;
  inset: 14%;
  z-index: -1;
  content: "";
  border-radius: 999px;
  background: rgba(145, 245, 214, 0.2);
  filter: blur(52px);
}

.brand-symbol {
  position: relative;
  width: 116px;
  aspect-ratio: 1;
  border: 1px solid rgba(145, 245, 214, 0.58);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(145, 245, 214, 0.035), 0 0 58px rgba(81, 175, 255, 0.24);
}

.brand-symbol::before,
.brand-symbol::after,
.brand-symbol i {
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(145, 245, 214, 0.76);
  border-radius: 50%;
  content: "";
}

.brand-symbol::after {
  inset: 34%;
  background: rgba(145, 245, 214, 0.86);
  box-shadow: 0 0 28px rgba(145, 245, 214, 0.7);
}

.brand-symbol i {
  inset: 8%;
  opacity: 0.48;
}

.brand-wordmark {
  display: grid;
  justify-items: center;
  gap: 7px;
  margin-top: 24px;
}

.brand-wordmark strong {
  color: rgba(255, 255, 255, 0.95);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.brand-wordmark span {
  color: var(--soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.button.primary {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  color: #031019;
  border: 1px solid rgba(196, 247, 255, 0.74);
  border-radius: 8px;
  background: var(--cyan);
  box-shadow: 0 14px 36px rgba(145, 245, 214, 0.16);
  font-size: 16px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary:hover {
  background: #b8f8ff;
  box-shadow: 0 18px 42px rgba(145, 245, 214, 0.28);
  transform: translateY(-2px);
}

.contact-section {
  align-items: center;
  padding: clamp(58px, 7vw, 92px) clamp(28px, 5.8vw, 72px) clamp(76px, 9vw, 118px);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(7, 16, 29, 0.72)),
    radial-gradient(ellipse at 18% 8%, rgba(145, 245, 214, 0.12), transparent 26rem);
  box-shadow: none;
}

.contact-section::before {
  right: 8%;
  left: 8%;
  background: linear-gradient(90deg, transparent, rgba(168, 224, 255, 0.24), transparent);
}

.contact-section::after {
  position: absolute;
  right: 5%;
  bottom: 0;
  left: 5%;
  z-index: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(145, 245, 214, 0.24), transparent);
}

.contact-section .button {
  justify-self: end;
}

.contact-action {
  position: relative;
  display: grid;
  justify-items: end;
  gap: 18px;
}

.contact-methods {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(300px, 1.12fr);
  gap: 14px;
  width: min(650px, 100%);
  justify-self: end;
}

.contact-method {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(167, 211, 226, 0.2);
  border-radius: 8px;
  background: rgba(7, 20, 31, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.contact-email {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-email:hover {
  border-color: rgba(145, 245, 214, 0.48);
  background: rgba(10, 31, 39, 0.76);
}

.contact-method-label,
.contact-method-note {
  display: block;
}

.contact-method-label {
  margin-bottom: 9px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

.contact-method strong {
  display: block;
  color: #f3f7fb;
  font-family: "Space Grotesk", "Noto Sans SC", system-ui, sans-serif;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  line-height: 1.35;
}

.contact-method-note {
  margin-top: 9px;
  color: rgba(183, 196, 211, 0.74);
  font-size: 12px;
}

.contact-wecom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.wecom-qr {
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
  padding: 5px;
  border: 1px solid rgba(145, 245, 214, 0.28);
  background: #fff;
  object-fit: contain;
}


.site-footer {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 36px;
  padding: clamp(44px, 5vw, 64px) clamp(20px, 5vw, 72px) 30px;
  color: var(--soft);
  border-top: 0;
  background: linear-gradient(180deg, rgba(7, 16, 29, 0.78), rgba(3, 4, 11, 0.96) 72%);
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 10%;
  left: 10%;
  z-index: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(145, 245, 214, 0.2), transparent);
}

.site-footer::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  height: 110px;
  content: "";
  opacity: 0.5;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(145, 245, 214, 0.04), transparent);
}

.footer-branding,
.footer-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}

.footer-branding span + span::before,
.footer-links a + a::before {
  display: inline-block;
  width: 1px;
  height: 12px;
  margin-right: 18px;
  content: "";
  vertical-align: -1px;
  background: rgba(190, 203, 255, 0.2);
}

.footer-links {
  font-size: 13px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

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

.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 22% 8%, rgba(145, 245, 214, 0.09), transparent 24rem),
    var(--bg);
}

.legal-header {
  position: relative;
  grid-template-columns: 1fr auto;
}

.legal-header .theater-brand,
.legal-header .nav {
  display: none;
}

.legal-main {
  width: min(900px, calc(100% - 40px));
  min-height: calc(100svh - 144px);
  margin: 0 auto;
  padding: 164px 0 88px;
}

.legal-content {
  padding: clamp(34px, 5vw, 64px);
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
}

.legal-content h1 {
  margin: 12px 0 22px;
  font-size: clamp(32px, 4.2vw, 52px);
}

.legal-content p {
  max-width: 720px;
  color: var(--soft);
  line-height: 1.9;
}

.legal-meta {
  margin: -8px 0 28px !important;
  color: rgba(166, 174, 196, 0.72) !important;
  font-size: 13px;
}

.legal-article {
  max-width: 720px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(181, 210, 235, 0.12);
}

.legal-article h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
}

.legal-article p {
  margin: 0;
}

.legal-article a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
  color: var(--soft);
  line-height: 1.9;
}

.legal-list strong {
  color: rgba(226, 242, 236, 0.92);
}

.legal-article p + p,
.legal-article .legal-list + p,
.legal-article p + .legal-list {
  margin-top: 14px;
}

.legal-note {
  margin-top: 18px;
  padding: 16px 18px;
  color: rgba(206, 218, 228, 0.82);
  border-left: 2px solid rgba(145, 245, 214, 0.72);
  background: rgba(145, 245, 214, 0.055);
  font-size: 14px;
  line-height: 1.85;
}

.legal-note strong {
  color: rgba(238, 249, 245, 0.96);
}

@keyframes slowPulse {
  from {
    opacity: 0.56;
    transform: translateX(-50%) scale(0.96);
  }

  to {
    opacity: 0.86;
    transform: translateX(-50%) scale(1.04);
  }
}

@keyframes nodeBreathe {
  from {
    opacity: 0.38;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes introFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes introRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes domeReveal {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(36px) scale(0.96);
  }

  to {
    opacity: 0.78;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes domeBreath {
  from {
    opacity: 0.58;
    filter: blur(0.3px) brightness(0.92);
  }

  to {
    opacity: 0.84;
    filter: blur(0.3px) brightness(1.08);
  }
}

@keyframes horizonAwake {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.85;
  }
}

@keyframes horizonBreath {
  from {
    opacity: 0.46;
    transform: scaleX(0.94);
  }

  to {
    opacity: 0.82;
    transform: scaleX(1.06);
  }
}

@keyframes horizon {
  from {
    opacity: 0.72;
    transform: scaleX(0.84);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes orbitGlow {
  from {
    opacity: 0.42;
    box-shadow: 0 0 28px rgba(84, 171, 255, 0.08);
  }

  to {
    opacity: 0.95;
    box-shadow: 0 0 60px rgba(145, 245, 214, 0.2);
  }
}

@keyframes lineFieldDrift {
  from {
    opacity: 0.66;
    transform: translate3d(-1.4%, 0.8%, 0) scale(1);
  }

  to {
    opacity: 0.9;
    transform: translate3d(1.2%, -1%, 0) scale(1.025);
  }
}

@keyframes lineTrace {
  0% {
    stroke-dashoffset: 680;
  }

  48% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -620;
  }
}

@keyframes lineBreathe {
  from {
    opacity: 0.24;
    filter: blur(0.15px);
  }

  to {
    opacity: 0.78;
    filter: blur(0);
  }
}

@keyframes flowTrace {
  from {
    opacity: 0.26;
    stroke-dashoffset: 160;
    transform: translateY(4px);
  }

  to {
    opacity: 0.78;
    stroke-dashoffset: -220;
    transform: translateY(-6px);
  }
}

@keyframes orbFloatOne {
  from {
    opacity: 0.32;
    transform: translate3d(-18px, 26px, 0) scale(0.72);
  }

  to {
    opacity: 0.9;
    transform: translate3d(72px, -24px, 0) scale(1.06);
  }
}

@keyframes orbFloatTwo {
  from {
    opacity: 0.2;
    transform: translate3d(28px, -18px, 0) scale(0.7);
  }

  to {
    opacity: 0.82;
    transform: translate3d(-76px, 44px, 0) scale(1.1);
  }
}

@keyframes orbFloatThree {
  from {
    opacity: 0.26;
    transform: translate3d(16px, 36px, 0) scale(0.76);
  }

  to {
    opacity: 0.86;
    transform: translate3d(-92px, -40px, 0) scale(1.12);
  }
}

@keyframes caretBlink {
  0%,
  46% {
    opacity: 1;
  }

  47%,
  100% {
    opacity: 0;
  }
}

@keyframes caretGlow {
  0%,
  100% {
    box-shadow: 0 0 14px rgba(118, 215, 255, 0.48);
    transform: translateX(0);
  }

  50% {
    box-shadow:
      0 0 22px rgba(118, 215, 255, 0.82),
      0 0 42px rgba(118, 215, 255, 0.38);
    transform: translateX(4px);
  }
}

@keyframes domeScan {
  from {
    opacity: 0.52;
    filter: blur(0.1px) brightness(0.92);
  }

  to {
    opacity: 0.9;
    filter: blur(0.1px) brightness(1.12);
  }
}

@keyframes arcSheen {
  0%,
  34% {
    transform: translateX(-28%);
  }

  72%,
  100% {
    transform: translateX(24%);
  }
}

@keyframes arcDriftLeft {
  from {
    opacity: 0.38;
    transform: translate3d(-2%, 1%, 0) rotate(-23deg);
  }

  to {
    opacity: 0.76;
    transform: translate3d(4%, -3%, 0) rotate(-18deg);
  }
}

@keyframes arcDriftRight {
  from {
    opacity: 0.32;
    transform: translate3d(2%, 2%, 0) rotate(150deg);
  }

  to {
    opacity: 0.7;
    transform: translate3d(-4%, -2%, 0) rotate(157deg);
  }
}

@keyframes arcBreathe {
  from {
    opacity: 0.24;
    transform: translateX(-50%) scale(0.94) rotate(13deg);
  }

  to {
    opacity: 0.6;
    transform: translateX(-50%) scale(1.06) rotate(10deg);
  }
}

@keyframes starPulse {
  from {
    opacity: 0.22;
    transform: scale(0.8);
  }

  to {
    opacity: 0.88;
    transform: scale(1.35);
  }
}

@keyframes panelFloatLeft {
  from {
    opacity: 0.3;
    transform: translate3d(-8px, 12px, 0) perspective(800px) rotateY(-16deg) rotateX(3deg);
  }

  to {
    opacity: 0.72;
    transform: translate3d(12px, -10px, 0) perspective(800px) rotateY(-11deg) rotateX(1deg);
  }
}

@keyframes panelFloatRight {
  from {
    opacity: 0.26;
    transform: translate3d(10px, -8px, 0) perspective(800px) rotateY(17deg) rotateX(3deg);
  }

  to {
    opacity: 0.66;
    transform: translate3d(-10px, 12px, 0) perspective(800px) rotateY(12deg) rotateX(1deg);
  }
}

@keyframes panelFloatLow {
  from {
    transform: translate3d(-8px, 5px, 0) perspective(800px) rotateX(55deg) rotateZ(-10deg);
  }

  to {
    transform: translate3d(9px, -7px, 0) perspective(800px) rotateX(52deg) rotateZ(-6deg);
  }
}

@keyframes panelGleam {
  0%,
  62%,
  100% {
    left: -36%;
    opacity: 0;
  }

  70% {
    opacity: 0.72;
  }

  84% {
    left: 118%;
    opacity: 0;
  }
}

@keyframes stageBreathe {
  from {
    opacity: 0.42;
  }

  to {
    opacity: 0.76;
  }
}

@keyframes declarationFloat {
  from {
    opacity: 0.42;
    transform: translate3d(-5px, 7px, 0);
  }

  to {
    opacity: 0.82;
    transform: translate3d(7px, -6px, 0);
  }
}

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 14px 20px;
  }

  .nav {
    justify-content: center;
    font-size: 14px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 190px;
  }

  .services-section,
  .strengths-section,
  .workflow-section {
    min-height: auto;
  }

  .page-stage {
    opacity: 0.58;
  }

  .stage-plane {
    width: 52vw;
    height: 34vw;
  }

  .section-grid,
  .section-heading,
  .exposure-inner,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .case-grid,
  .strength-list,
  .workflow,
  .intro-metrics,
  .intro-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-card,
  .case-card-featured {
    grid-column: auto;
    grid-row: auto;
  }

  .case-card-featured {
    grid-column: 1 / -1;
  }

  .case-card:nth-child(4),
  .case-card:nth-child(5) {
    grid-column: auto;
  }

  .contact-section .button,
  .brand-portal {
    justify-self: start;
  }

  .contact-action {
    justify-items: start;
  }

  .contact-methods {
    justify-self: start;
  }

  .brand-portal {
    width: 100%;
    border-top: 1px solid rgba(190, 203, 255, 0.16);
    border-left: 0;
  }

  .case-brand {
    justify-self: start;
  }

  .strength-item:nth-child(2) {
    border-right: 0;
  }

  .strength-item:nth-child(3) {
    border-top: 1px solid rgba(190, 203, 255, 0.14);
  }

  .intro-flow {
    display: none;
  }

  .cases-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 660px) {
  .site-header {
    position: absolute;
    padding: 16px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand span {
    font-size: 16px;
  }

  .brand-cluster {
    gap: 12px;
  }

  .brand {
    gap: 12px;
  }

  .brand span::before {
    margin-right: 12px;
  }

  .theater-brand {
    gap: 7px;
    font-size: 14px;
  }

  .nav {
    gap: 8px 12px;
    font-size: 13px;
  }

  .nav a + a::before {
    margin-right: 12px;
  }

  .hero {
    min-height: 860px;
    padding-top: 220px;
  }

  .page-stage {
    display: none;
  }

  .motion-arc {
    opacity: 0.46;
  }

  .motion-panel {
    display: none;
  }

  .hero-flow {
    right: -20%;
    bottom: -1%;
    left: -20%;
    width: 140%;
    height: 38%;
    opacity: 0.26;
  }

  .arc-left {
    top: 20%;
    left: -44%;
    width: 132vw;
    height: 142vw;
  }

  .arc-right {
    right: -48%;
    bottom: -14%;
    width: 142vw;
    height: 120vw;
  }

  .arc-center {
    top: 53%;
    width: 86vw;
    height: 54vw;
  }

  .hero-shell {
    min-height: 560px;
    height: 560px;
  }

  .hero-copy-block {
    top: 30%;
  }

  h1 {
    font-size: 46px;
  }

  .hero-subtitle {
    font-size: 15px;
    letter-spacing: 0.2em;
  }

  .hero-line {
    margin-bottom: 0;
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .world-tags {
    gap: 8px;
    max-width: 360px;
  }

  .world-tags span {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  .world-tags i {
    width: 24px;
    height: 24px;
  }

  .hero-mark {
    bottom: 7%;
  }

  .intro-section {
    min-height: auto;
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .intro-section .section-title {
    min-height: 320px;
    padding: 26px;
  }

  .declaration-frames {
    right: -28%;
    width: 78%;
    opacity: 0.42;
  }

  .declaration-lead {
    font-size: 44px;
  }

  .declaration-rest {
    font-size: 28px;
  }

  .intro-metrics,
  .intro-visual {
    grid-template-columns: 1fr;
  }

  .intro-metrics span,
  .intro-visual span {
    min-height: 72px;
  }

  .intro-visual::before {
    top: 0;
    bottom: 0;
    right: auto;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(145, 245, 214, 0.42), transparent);
  }

  .service-grid,
  .case-grid,
  .strength-list,
  .workflow {
    grid-template-columns: 1fr;
  }

  .strength-item,
  .strength-item:nth-child(2) {
    min-height: 228px;
    border-right: 0;
    border-bottom: 1px solid rgba(190, 203, 255, 0.14);
  }

  .strength-item:last-child {
    border-bottom: 0;
  }

  .case-card,
  .case-card-featured {
    grid-column: auto;
  }

  .case-card:last-child {
    grid-column: auto;
  }

  .case-card-featured .case-cover {
    aspect-ratio: 16 / 9;
  }

  .service-card,
  .workflow li {
    min-height: auto;
  }

  .strength-item {
    min-height: 228px;
  }

  .contact-section {
    width: calc(100% - 40px);
  }

  .site-footer,
  .footer-branding,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-branding,
  .footer-links {
    gap: 10px;
  }

  .footer-branding span + span::before,
  .footer-links a + a::before {
    display: none;
  }

  .legal-header {
    grid-template-columns: 1fr;
  }

  .legal-main {
    min-height: calc(100svh - 116px);
    padding-top: 150px;
    padding-bottom: 58px;
  }
}

/* Integrated about and service sections */
.integrated-about,
.integrated-services {
  display: grid;
  min-height: min(100svh, 940px);
  align-content: center;
  padding-top: clamp(104px, 9vw, 132px);
  padding-bottom: clamp(82px, 8vw, 112px);
}

.about-integrated {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(44px, 6vw, 88px);
  width: min(100%, 1180px);
  align-items: center;
  margin: 0 auto;
}

.integrated-about .section-title {
  min-height: clamp(390px, 38vw, 500px);
}

.about-content {
  min-width: 0;
}

.about-content .intro-copy {
  margin-bottom: clamp(24px, 3vw, 34px);
}

.about-proof-list {
  border-top: 1px solid rgba(190, 203, 255, 0.18);
}

.about-proof {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 104px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(190, 203, 255, 0.14);
}

.about-proof > b {
  color: var(--cyan);
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1;
}

.about-proof sup {
  margin-left: 2px;
  font-size: 0.42em;
}

.about-proof h3 {
  margin: 0 0 5px;
  color: var(--text);
  font-size: clamp(17px, 1.35vw, 20px);
}

.about-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.integrated-services .section-heading {
  margin-bottom: clamp(28px, 3.5vw, 42px);
}

.integrated-services .service-card {
  min-height: 216px;
  padding: clamp(24px, 2vw, 28px);
}

.integrated-services .card-index {
  margin-bottom: 30px;
}

.delivery-path {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 3.2fr);
  gap: clamp(28px, 4vw, 54px);
  width: min(100%, 1180px);
  align-items: center;
  margin: clamp(30px, 3.6vw, 44px) auto 0;
  padding: 24px 0;
  border-top: 1px solid rgba(190, 203, 255, 0.18);
  border-bottom: 1px solid rgba(190, 203, 255, 0.12);
}

.delivery-intro {
  display: grid;
  gap: 4px;
}

.delivery-intro span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.delivery-intro strong {
  color: var(--text);
  font-size: 18px;
}

.delivery-path ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-path ol::before {
  position: absolute;
  top: 10px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(145, 245, 214, 0.16), rgba(145, 245, 214, 0.5), rgba(145, 245, 214, 0.16));
}

.delivery-path li {
  position: relative;
  display: grid;
  gap: 10px;
  justify-items: center;
  color: rgba(226, 235, 250, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.delivery-path li b {
  position: relative;
  z-index: 1;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(145, 245, 214, 0.36);
  border-radius: 50%;
  background: #071117;
  font-size: 8px;
}

@media (max-width: 920px) {
  .integrated-about,
  .integrated-services {
    min-height: auto;
  }

  .about-integrated {
    grid-template-columns: 1fr;
  }

  .integrated-about .section-title {
    min-height: 340px;
  }

  .delivery-path {
    grid-template-columns: 1fr;
  }

  .delivery-intro {
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 16px;
  }
}

@media (max-width: 660px) {
  .integrated-about,
  .integrated-services {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .about-proof {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
  }

  .integrated-services .service-card {
    min-height: auto;
  }

  .delivery-path ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
  }

  .delivery-path ol::before {
    display: none;
  }
}

/* Chapter rhythm and soft section transitions */
.section {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.page-stage {
  opacity: 0.42;
}

.stage-plane {
  opacity: 0.46;
}

.integrated-about,
.integrated-services {
  min-height: clamp(740px, 88svh, 880px);
  align-content: start;
  padding-top: clamp(88px, 7.5vw, 108px);
  padding-bottom: clamp(68px, 6vw, 88px);
}

.integrated-about {
  background:
    radial-gradient(ellipse at 78% 36%, rgba(145, 245, 214, 0.055), transparent 34rem),
    linear-gradient(180deg, #050d0d 0%, #061110 13%, #071311 84%, #081214 100%);
}

.integrated-services {
  background:
    radial-gradient(ellipse at 18% 58%, rgba(105, 170, 220, 0.045), transparent 32rem),
    linear-gradient(180deg, #081214 0%, #091316 14%, #071117 84%, #050c13 100%);
}

.integrated-services::before {
  opacity: 0.18;
}

.integrated-services::after {
  opacity: 0.32;
}

.cases-section {
  min-height: auto;
  padding-top: clamp(82px, 8vw, 108px);
  padding-bottom: clamp(92px, 9vw, 122px);
  background:
    radial-gradient(ellipse at 18% 30%, rgba(145, 245, 214, 0.075), transparent 28rem),
    radial-gradient(ellipse at 84% 78%, rgba(88, 132, 196, 0.06), transparent 30rem),
    linear-gradient(180deg, #050c13 0%, #030911 13%, #030a12 86%, #07111a 100%);
}

.cases-section .section-heading {
  margin-bottom: clamp(30px, 3.6vw, 44px);
}

.contact-section {
  width: 100%;
  min-height: clamp(500px, 64svh, 610px);
  max-width: none;
  align-content: center;
  margin: 0;
  padding: clamp(72px, 7vw, 94px) max(5vw, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(ellipse at 20% 24%, rgba(145, 245, 214, 0.09), transparent 28rem),
    linear-gradient(180deg, #07111a 0%, #081522 24%, #07101d 100%);
}

.contact-section::after,
.site-footer::before {
  display: none;
}

.site-footer {
  padding-top: clamp(34px, 4vw, 48px);
  background: linear-gradient(180deg, #07101d 0%, #03050c 78%);
}

.site-footer::after {
  height: 72px;
  opacity: 0.28;
}

@media (max-width: 920px) {
  .integrated-about,
  .integrated-services {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 74px;
  }

  .cases-section {
    padding-top: 78px;
    padding-bottom: 88px;
  }

  .contact-section {
    min-height: auto;
    padding-top: 78px;
    padding-bottom: 82px;
  }
}

@media (max-width: 660px) {
  .integrated-about,
  .integrated-services {
    padding-top: 74px;
    padding-bottom: 66px;
  }

  .cases-section {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .contact-section {
    width: 100%;
    padding: 72px 20px 76px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .contact-method {
    min-height: 138px;
    padding: 20px;
  }

  .contact-wecom {
    gap: 16px;
  }

  .wecom-qr {
    flex-basis: 104px;
    width: 104px;
    height: 104px;
  }
}


/* Product portfolio section */
.products-section {
  position: relative;
  display: grid;
  min-height: clamp(780px, 100svh, 960px);
  overflow: hidden;
  align-content: center;
  padding: clamp(88px, 8vw, 112px) max(5vw, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(ellipse at 8% 28%, rgba(255, 122, 143, 0.07), transparent 26rem),
    radial-gradient(ellipse at 92% 72%, rgba(145, 245, 214, 0.07), transparent 28rem),
    linear-gradient(180deg, #050c13 0%, #071018 18%, #060e16 82%, #050c13 100%);
}

.products-section::before,
.products-section::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.products-section::before {
  top: 11%;
  right: -12%;
  width: min(46vw, 640px);
  aspect-ratio: 1;
  border: 1px solid rgba(172, 211, 255, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 64px rgba(172, 211, 255, 0.018),
    0 0 0 128px rgba(145, 245, 214, 0.012);
}

.products-section::after {
  bottom: 8%;
  left: -8%;
  width: min(40vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 132, 148, 0.32), rgba(145, 245, 214, 0.14), transparent);
  transform: rotate(-12deg);
  transform-origin: left center;
}

.products-heading,
.product-grid {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
}

.products-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.products-heading > p {
  max-width: 620px;
  justify-self: end;
}

.products-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.products-atmosphere i {
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(184, 220, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(145, 245, 214, 0.26);
}

.products-atmosphere i:nth-child(1) { top: 23%; left: 4%; }
.products-atmosphere i:nth-child(2) { top: 71%; right: 5%; width: 3px; height: 3px; }
.products-atmosphere i:nth-child(3) { right: 24%; bottom: 10%; width: 4px; height: 4px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  margin: 0 auto;
}

.product-card {
  --product-accent: 145, 245, 214;
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(190, 203, 255, 0.16);
  border-radius: var(--card-radius);
  background: rgba(8, 16, 26, 0.76);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.025);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.product-card::after {
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(var(--product-accent), 0.54), transparent);
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(var(--product-accent), 0.36);
  background: rgba(10, 20, 31, 0.9);
}

.product-heartbeat { --product-accent: 255, 128, 148; }
.product-strategy { --product-accent: 232, 183, 121; }
.product-wardrobe { --product-accent: 145, 245, 214; }

.product-visual {
  position: relative;
  display: grid;
  min-height: 270px;
  overflow: hidden;
  place-items: center;
  padding: clamp(30px, 3vw, 40px);
  background:
    radial-gradient(circle at 50% 44%, rgba(var(--product-accent), 0.12), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0));
}

.product-visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(var(--product-accent), 0.28), transparent);
}

.product-index {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 22px;
  color: rgba(var(--product-accent), 0.78);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.product-icon {
  position: relative;
  z-index: 2;
  width: min(72%, 204px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(var(--product-accent), 0.28);
  border-radius: 8px;
  background: #f7f8fa;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.36),
    0 0 48px rgba(var(--product-accent), 0.08);
}

.product-icon img {
  width: 100%;
  height: 100%;
}

.product-icon-cover img { object-fit: cover; }
.product-icon-mark { padding: 7%; }
.product-icon-mark img { object-fit: contain; mix-blend-mode: multiply; }

.product-strategy .product-icon {
  padding: 0;
  background: #d83a2f;
}

.product-strategy .product-icon img {
  object-fit: cover;
  transform: scale(1.08);
  mix-blend-mode: multiply;
}

.product-orbit {
  position: absolute;
  z-index: 1;
  width: 74%;
  aspect-ratio: 1.9;
  border: 1px solid rgba(var(--product-accent), 0.18);
  border-radius: 50%;
  transform: rotate(-17deg);
}

.product-orbit::after {
  position: absolute;
  top: 50%;
  right: -3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgb(var(--product-accent));
  box-shadow: 0 0 16px rgba(var(--product-accent), 0.64);
  content: "";
}

.product-copy {
  display: grid;
  min-height: 222px;
  align-content: start;
  padding: 24px clamp(22px, 2.3vw, 30px) 28px;
}

.product-category {
  margin-bottom: 10px;
  color: rgba(var(--product-accent), 0.78);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: clamp(23px, 2vw, 29px);
  line-height: 1.2;
}

.product-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.product-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-self: end;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(190, 203, 255, 0.12);
}

.platform-status {
  display: grid;
  grid-template-columns: 8px auto;
  gap: 1px 8px;
  align-items: center;
}

.platform-status i {
  grid-row: 1 / span 2;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
}

.platform-status b,
.platform-status em { font-style: normal; line-height: 1.25; }
.platform-status b { color: rgba(238, 244, 255, 0.9); font-size: 12px; }
.platform-status em { color: rgba(180, 192, 214, 0.68); font-size: 10px; }
.platform-status.is-live { color: #65e7ad; }
.platform-status.is-live i { background: #65e7ad; }
.platform-status.is-pending { color: #ff6f7e; }
.platform-status.is-pending i { background: #ff6f7e; }

@media (max-width: 920px) {
  .products-section {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 86px;
  }

  .products-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .products-heading > p { justify-self: start; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .product-card:last-child {
    grid-column: 1 / -1;
    grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  }

  .product-card:last-child .product-copy { align-content: center; }
}

@media (max-width: 660px) {
  .products-section { padding: 72px 20px 78px; }
  .product-grid { grid-template-columns: 1fr; }

  .product-card:last-child {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .product-visual { min-height: 248px; }
  .product-icon { width: min(64%, 190px); }
  .product-copy { min-height: 208px; }
}


/* Legal document navigation and disclosure list */
.legal-tabs { display: flex; flex-wrap: wrap; gap: 8px; max-width: 720px; margin: 0 0 32px; padding-bottom: 24px; border-bottom: 1px solid rgba(181, 210, 235, 0.12); }
.legal-tabs a { padding: 9px 13px; color: rgba(195, 207, 220, 0.76); border: 1px solid rgba(181, 210, 235, 0.14); border-radius: 6px; font-size: 13px; text-decoration: none; transition: color 160ms ease, border-color 160ms ease, background 160ms ease; }
.legal-tabs a:hover, .legal-tabs a.active { color: var(--text); border-color: rgba(145, 245, 214, 0.42); background: rgba(145, 245, 214, 0.08); }
.legal-article h3 { margin: 26px 0 12px; color: rgba(228, 239, 244, 0.94); font-size: 17px; line-height: 1.55; }
.legal-article h3 + p { margin-top: 0; }
.legal-third-party { max-width: none; }
.legal-third-party > p, .legal-third-party > h2, .legal-third-party > h3 { max-width: 720px; }
.sdk-group-title { margin-top: 36px !important; padding-top: 22px; border-top: 1px solid rgba(181, 210, 235, 0.1); }
.sdk-list { display: grid; gap: 12px; margin-top: 16px; }
.sdk-item { padding: 20px; border: 1px solid rgba(181, 210, 235, 0.12); border-radius: 6px; background: rgba(8, 18, 29, 0.44); }
.sdk-item h4 { margin: 0 0 15px; color: var(--text); font-size: 16px; line-height: 1.45; }
.sdk-item dl { display: grid; gap: 10px; margin: 0; }
.sdk-item dl > div { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 12px; }
.sdk-item dt { color: rgba(145, 245, 214, 0.78); font-size: 12px; line-height: 1.75; }
.sdk-item dd { min-width: 0; margin: 0; color: var(--soft); font-size: 13px; line-height: 1.75; overflow-wrap: anywhere; }
.sdk-item a { color: var(--cyan); }
.sdk-update-note { margin-top: 22px !important; font-size: 13px; }
.legal-footer { display: flex; justify-content: space-between; gap: 24px; width: min(900px, calc(100% - 40px)); margin: 0 auto; padding: 0 0 44px; color: rgba(166, 174, 196, 0.62); font-size: 12px; }
.legal-footer nav { display: flex; flex-wrap: wrap; gap: 16px; }
.legal-footer a { color: inherit; text-decoration: none; }
.legal-footer a:hover { color: var(--text); }
@media (max-width: 640px) { .legal-main { width: min(100% - 24px, 900px); padding-top: 116px; } .legal-content { padding: 26px 20px; } .legal-tabs { gap: 6px; } .legal-tabs a { flex: 1 1 auto; padding-inline: 8px; text-align: center; } .sdk-item { padding: 16px; } .sdk-item dl > div { grid-template-columns: 1fr; gap: 2px; } .legal-footer { flex-direction: column; width: min(100% - 24px, 900px); } }
