:root {
  --ink: #05070a;
  --ink-soft: #090d13;
  --panel: #0d121a;
  --panel-2: #111823;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f7f8fb;
  --muted: #9ea9b8;
  --muted-2: #727e8d;
  --blue: #338dc8;
  --violet: #6753a3;
  --accent: #50b9ff;
  --success: #70e1bd;
  --danger: #ff7e84;
  --max: 1240px;
  --radius: 28px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 15% 0%, rgba(51, 141, 200, 0.09), transparent 30rem),
    radial-gradient(circle at 90% 24%, rgba(103, 83, 163, 0.09), transparent 32rem),
    var(--ink);
  color: var(--text);
  font-family: "Segoe UI Variable", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 9999;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

main,
.site-footer {
  transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
}

body.is-leaving main,
body.is-leaving .site-footer {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(5px);
}

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

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

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

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

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

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

::selection {
  background: rgba(80, 185, 255, 0.28);
  color: #fff;
}

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

.skip-link {
  position: fixed;
  z-index: 10001;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(88px, 11vw, 168px) 0;
}

.section--compact {
  padding: clamp(68px, 8vw, 112px) 0;
}

.section--line {
  border-top: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  content: "";
  background: currentColor;
}

.display,
.page-title,
.section-title,
.manifesto {
  margin-bottom: 24px;
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.display {
  max-width: 980px;
  font-size: clamp(3.2rem, 8.6vw, 8rem);
}

.page-title {
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.section-title {
  max-width: 850px;
  font-size: clamp(2.5rem, 5.4vw, 5.4rem);
}

.manifesto {
  max-width: 1120px;
  font-size: clamp(3rem, 7vw, 7.4rem);
}

.text-gradient {
  color: transparent;
  background: linear-gradient(108deg, #fff 10%, #8fd5ff 46%, #8b78c4 92%);
  background-clip: text;
  -webkit-background-clip: text;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.65;
}

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

.micro {
  color: var(--muted-2);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms ease, background 240ms ease;
}

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

.button--primary {
  background: linear-gradient(115deg, var(--blue), var(--violet));
  box-shadow: 0 16px 38px rgba(51, 141, 200, 0.22);
  color: #fff;
}

.button--primary:hover {
  box-shadow: 0 18px 48px rgba(71, 128, 205, 0.34);
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.button--ghost:hover {
  border-color: rgba(80, 185, 255, 0.5);
  background: rgba(80, 185, 255, 0.07);
}

.button--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.84rem;
}

.icon-arrow {
  width: 16px;
  height: 16px;
  transition: transform 220ms var(--ease);
}

.button:hover .icon-arrow,
.text-link:hover .icon-arrow {
  transform: translateX(3px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  padding: 15px 0;
  border-bottom: 1px solid transparent;
  transition: padding 240ms ease, background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  padding: 10px 0;
  border-color: var(--line);
  background: rgba(5, 7, 10, 0.78);
  backdrop-filter: blur(22px) saturate(135%);
}

.header-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: 168px;
  min-height: 44px;
  align-items: center;
}

.brand img {
  width: 164px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-link,
.nav-trigger {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #bdc5d0;
  cursor: pointer;
  font-size: 0.86rem;
  transition: color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-trigger:hover {
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
}

.nav-item {
  position: relative;
}

.nav-trigger svg {
  width: 14px;
  transition: transform 180ms ease;
}

.nav-item:hover .nav-trigger svg,
.nav-item:focus-within .nav-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(620px, 70vw);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(9, 13, 19, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px) scale(0.98);
  transform-origin: top;
  transition: opacity 180ms ease, transform 180ms var(--ease);
  backdrop-filter: blur(22px);
}

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

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

.dropdown-link {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 11px;
  padding: 11px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
  transition: background 180ms ease, color 180ms ease;
}

.dropdown-link:hover {
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.dropdown-icon {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(51, 141, 200, 0.14), rgba(103, 83, 163, 0.1));
  color: var(--accent);
}

.dropdown-icon svg {
  width: 18px;
  height: 18px;
}

.dropdown-link strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 0.86rem;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.menu-toggle__lines {
  position: relative;
  width: 21px;
  height: 16px;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
  position: absolute;
  right: 0;
  height: 1.5px;
  content: "";
  background: currentColor;
  transition: transform 220ms var(--ease), width 220ms ease, top 220ms ease;
}

.menu-toggle__lines::before {
  top: 3px;
  width: 21px;
}

.menu-toggle__lines::after {
  top: 12px;
  width: 14px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
  top: 7px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
  top: 7px;
  width: 21px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 990;
  inset: 0;
  display: none;
  padding: 98px 20px 28px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 75% 10%, rgba(103, 83, 163, 0.2), transparent 18rem),
    radial-gradient(circle at 10% 85%, rgba(51, 141, 200, 0.15), transparent 20rem),
    rgba(5, 7, 10, 0.985);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 220ms ease, transform 260ms var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__inner {
  display: flex;
  width: min(100%, 620px);
  min-height: calc(100dvh - 130px);
  margin-inline: auto;
  flex-direction: column;
}

.mobile-nav {
  display: grid;
  gap: 2px;
}

.mobile-nav > a,
.mobile-services summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 2px;
  border-bottom: 1px solid var(--line);
  color: #e8ebf1;
  cursor: pointer;
  font-size: clamp(1.35rem, 6vw, 2rem);
  font-weight: 560;
  letter-spacing: -0.035em;
  list-style: none;
}

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

.mobile-services summary::after {
  content: "+";
  color: var(--muted);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.mobile-services[open] summary::after {
  transform: rotate(45deg);
}

.mobile-services__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px 0 20px;
}

.mobile-services__links a {
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 0.85rem;
}

.mobile-menu__cta {
  margin-top: 24px;
}

.mobile-menu__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: auto;
  padding-top: 36px;
  color: var(--muted-2);
  font-size: 0.78rem;
}

/* Cinematic hero */
.film {
  position: relative;
  height: 530vh;
  background: var(--ink);
}

.film-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  perspective: 1200px;
  isolation: isolate;
}

.growth-canvas {
  position: absolute;
  z-index: -4;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.film-stage.has-webgl > .growth-canvas {
  opacity: 0.94;
}

.film-stage::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
  transform: perspective(900px) rotateX(64deg) scale(1.5) translateY(34%);
  transform-origin: center bottom;
}

.film-stage::after {
  position: absolute;
  z-index: 10;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.48), transparent 22%, transparent 72%, #05070a),
    radial-gradient(circle at 65% 46%, transparent 0, rgba(5, 7, 10, 0.12) 38%, rgba(5, 7, 10, 0.82) 83%);
}

.film-glow {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 66%;
  width: min(66vw, 840px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70, 160, 220, 0.24), rgba(103, 83, 163, 0.09) 38%, transparent 68%);
  filter: blur(18px);
  transform: translate(-50%, -50%);
}

.hero-world {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 67%;
  width: min(54vw, 720px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateX(var(--world-rx, -5deg)) rotateY(var(--world-ry, 7deg));
  transform-style: preserve-3d;
  transition: opacity 500ms ease, transform 120ms linear;
}

.film-stage.has-webgl .hero-world {
  opacity: 0;
}

.growth-system-key {
  position: absolute;
  z-index: 22;
  right: clamp(62px, 6vw, 96px);
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 8px;
}

.growth-system-key span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(8, 13, 20, 0.48);
  color: rgba(222, 231, 239, 0.35);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 260ms ease, color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.growth-system-key span.is-active {
  border-color: rgba(80, 185, 255, 0.38);
  background: rgba(80, 185, 255, 0.09);
  box-shadow: 0 0 22px rgba(80, 185, 255, 0.08);
  color: #d9f1ff;
}

.core {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(130px, 17vw, 210px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(143, 213, 255, 0.4);
  border-radius: 42%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.015)),
    #09121b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 70px rgba(51, 141, 200, 0.24),
    0 34px 80px rgba(0, 0, 0, 0.6);
  transform: translate(-50%, -50%) translateZ(70px) rotateZ(var(--core-rotation, 0deg)) scale(var(--core-scale, 0.86));
  transform-style: preserve-3d;
}

.core::before,
.core::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  content: "";
  pointer-events: none;
}

.core::before {
  inset: 12px;
  border-radius: 38%;
}

.core::after {
  inset: 28px;
  border-color: rgba(80, 185, 255, 0.19);
  border-radius: 34%;
}

.core img {
  width: 52%;
  filter: drop-shadow(0 0 24px rgba(80, 185, 255, 0.3));
}

.core-label {
  position: absolute;
  bottom: 13%;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(121, 186, 229, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(66deg) rotateZ(var(--orbit-rotation, 0deg));
  transform-style: preserve-3d;
}

.orbit--one {
  width: 62%;
  aspect-ratio: 1;
}

.orbit--two {
  width: 86%;
  aspect-ratio: 1;
  border-color: rgba(135, 110, 190, 0.2);
  transform: translate(-50%, -50%) rotateX(68deg) rotateY(16deg) rotateZ(var(--orbit-rotation, 0deg));
}

.orbit-dot {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9bdcff;
  box-shadow: 0 0 18px #50b9ff;
}

.shield {
  position: absolute;
  z-index: 7;
  top: 50%;
  left: 50%;
  width: 38%;
  aspect-ratio: 0.86;
  border: 1px solid rgba(112, 225, 189, 0.64);
  border-radius: 48% 48% 54% 54% / 28% 28% 70% 70%;
  box-shadow: inset 0 0 40px rgba(112, 225, 189, 0.08), 0 0 32px rgba(112, 225, 189, 0.11);
  opacity: var(--shield-opacity, 0);
  transform: translate(-50%, -51%) translateZ(120px) scale(var(--shield-scale, 0.7));
}

.stack-layer {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: flex;
  width: clamp(118px, 15vw, 182px);
  min-height: 54px;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(17, 24, 35, 0.95), rgba(8, 13, 20, 0.76));
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.34);
  color: #eaf4fb;
  font-size: clamp(0.66rem, 1vw, 0.78rem);
  font-weight: 650;
  letter-spacing: 0.015em;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.stack-layer span {
  display: grid;
  width: 28px;
  aspect-ratio: 1;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  background: rgba(80, 185, 255, 0.09);
  color: var(--accent);
}

.stack-layer svg {
  width: 15px;
  height: 15px;
}

.data-beam {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(80, 185, 255, 0.8), transparent);
  opacity: var(--beam-opacity, 0);
  transform-origin: left;
}

.data-beam--a {
  transform: translate(2%, -50%) rotate(-28deg) scaleX(var(--beam-scale, 0));
}

.data-beam--b {
  transform: translate(2%, -50%) rotate(17deg) scaleX(var(--beam-scale, 0));
}

.data-beam--c {
  transform: translate(-101%, -50%) rotate(-10deg) scaleX(var(--beam-scale, 0));
}

.hero-copy {
  position: absolute;
  z-index: 20;
  top: 50%;
  left: max(20px, calc((100vw - var(--max)) / 2));
  width: min(46vw, 620px);
  transform: translateY(-48%);
}

.chapter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 420ms ease, transform 520ms var(--ease);
}

.chapter.is-active {
  opacity: 1;
  transform: translateY(0);
}

.chapter-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chapter h1,
.chapter h2 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 6.7vw, 6.8rem);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.chapter p {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.chapter .button-row {
  pointer-events: auto;
}

.scroll-cue {
  position: absolute;
  z-index: 22;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue::before {
  width: 34px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, currentColor);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  50% { opacity: 0.28; transform: scaleX(0.65); }
}

.film-progress {
  position: absolute;
  z-index: 22;
  top: 50%;
  right: 22px;
  display: grid;
  gap: 9px;
  transform: translateY(-50%);
}

.film-progress span {
  width: 2px;
  height: 28px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.13);
  transition: background 200ms ease, height 200ms ease;
}

.film-progress span.is-active {
  height: 46px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(80, 185, 255, 0.6);
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: min(760px, 90svh);
  padding: clamp(150px, 19vw, 230px) 0 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted-2);
  font-size: 0.72rem;
  letter-spacing: 0.045em;
  list-style: none;
  text-transform: uppercase;
}

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

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: rgba(255, 255, 255, 0.24);
}

.breadcrumbs a {
  transition: color 180ms ease;
}

.breadcrumbs a:hover,
.breadcrumbs [aria-current="page"] {
  color: #d7dde6;
}

.page-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.page-hero__layout .page-title {
  font-size: clamp(2.8rem, 6vw, 6.25rem);
}

.page-hero__copy {
  min-width: 0;
}

.page-hero::before {
  position: absolute;
  z-index: -2;
  top: -35%;
  right: -10%;
  width: min(70vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(51, 141, 200, 0.2), rgba(103, 83, 163, 0.07) 35%, transparent 68%);
  filter: blur(10px);
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.meta-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 0.8rem;
}

.meta-pill::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--success);
  box-shadow: 0 0 9px var(--success);
}

/* Cards and grids */
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 48px;
  margin-bottom: clamp(38px, 6vw, 72px);
}

.section-heading p {
  color: var(--muted);
}

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

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

.card {
  --card-accent: 80, 185, 255;
  position: relative;
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(var(--card-accent), 0.15), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--lift, 0));
  transform-style: preserve-3d;
  transition: border-color 260ms ease, box-shadow 300ms var(--ease), transform 200ms ease;
  will-change: transform;
}

.card::before {
  position: absolute;
  z-index: 1;
  width: 190px;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(var(--card-accent), 0.18), transparent 67%);
  opacity: 0;
  filter: blur(2px);
  transform: translate(calc(var(--mx, 50%) - 95px), calc(var(--my, 0%) - 95px)) translateZ(5px);
  transition: opacity 240ms ease;
}

.card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  background: linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.055) 45%, transparent 62%);
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 260ms ease, transform 600ms var(--ease);
}

.card:hover {
  --lift: -6px;
  border-color: rgba(80, 185, 255, 0.28);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(80, 185, 255, 0.04);
}

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

.card:hover::after {
  opacity: 1;
  transform: translateX(50%);
}

.card > * {
  position: relative;
  z-index: 2;
  transform: translateZ(20px);
}

.service-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
}

.service-card--shield,
.service-card--message {
  --card-accent: 112, 225, 189;
}

.service-card--search,
.service-card--compass {
  --card-accent: 132, 109, 204;
}

.service-card--chart,
.service-card--target {
  --card-accent: 78, 184, 235;
}

.service-card__signal {
  position: absolute;
  z-index: 1;
  top: -64px;
  right: -50px;
  width: 190px;
  aspect-ratio: 1;
  border: 1px solid rgba(var(--card-accent), 0.17);
  border-radius: 50%;
  opacity: 0.65;
  pointer-events: none;
  transform: translateZ(4px) scale(0.82);
  transition: opacity 380ms ease, transform 650ms var(--ease);
}

.service-card__signal i {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(var(--card-accent), 0.16);
  border-radius: 50%;
}

.service-card__signal i:nth-child(2) {
  inset: 35%;
  border-color: rgba(var(--card-accent), 0.24);
}

.service-card__signal i:nth-child(3) {
  inset: 48%;
  border: 0;
  background: rgb(var(--card-accent));
  box-shadow: 0 0 28px rgba(var(--card-accent), 0.48);
}

.service-card:hover .service-card__signal {
  opacity: 1;
  transform: translateZ(42px) rotate(18deg) scale(1);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.card-icon {
  display: grid;
  width: 54px;
  aspect-ratio: 1;
  margin-bottom: 62px;
  place-items: center;
  border: 1px solid rgba(80, 185, 255, 0.2);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(51, 141, 200, 0.16), rgba(103, 83, 163, 0.1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--accent);
  transition: transform 300ms var(--ease), box-shadow 300ms ease;
}

.card:hover .card-icon {
  box-shadow: 0 13px 32px rgba(51, 141, 200, 0.18);
  transform: translateZ(46px) rotate(-4deg) scale(1.05);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  font-weight: 590;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.card .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 26px;
  color: #dce9f3;
  font-size: 0.84rem;
  font-weight: 700;
}

.project-showcase {
  display: grid;
  max-width: 1040px;
  grid-template-columns: repeat(2, minmax(0, 480px));
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
}

.project-card {
  display: block;
  min-height: 0;
  padding: 10px;
  border-radius: 24px;
  color: inherit;
}

.project-card__frame {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: #080c12;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
  transform: translateZ(24px);
}

.project-card__bar {
  display: grid;
  min-height: 32px;
  grid-template-columns: repeat(3, 7px) minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.project-card__bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.project-card__bar i:first-child { background: #ff7d72; }
.project-card__bar i:nth-child(2) { background: #f2c15b; }
.project-card__bar i:nth-child(3) { background: #70d8bd; }

.project-card__bar b {
  overflow: hidden;
  color: rgba(220, 230, 238, 0.52);
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-card__frame img {
  display: block;
  width: 100%;
  height: 205px;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.92) contrast(1.02);
  transition: filter 500ms ease, transform 750ms var(--ease);
}

.project-card:hover .project-card__frame img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.project-card__content {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 20px 12px 12px;
  transform: translateZ(28px);
}

.project-card__category {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-card__title {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  font-weight: 590;
  letter-spacing: -0.05em;
  line-height: 1;
}

.project-card__description {
  max-width: 620px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.82rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.project-card__tags i {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(226, 236, 244, 0.64);
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 650;
}

.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding-top: 0;
  color: #e8f5ff;
  font-size: 0.72rem;
  font-weight: 720;
}

.project-card__link svg {
  width: 18px;
  transition: transform 260ms var(--ease);
}

.project-card:hover .project-card__link svg {
  transform: translateX(5px);
}

.feature-card {
  min-height: 230px;
}

.feature-card .card-icon {
  margin-bottom: 28px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.editorial-grid .card:first-child {
  min-height: 510px;
}

.editorial-stack {
  display: grid;
  gap: 18px;
}

.story-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 45% 40%, rgba(51, 141, 200, 0.22), transparent 25%),
    radial-gradient(circle at 58% 61%, rgba(103, 83, 163, 0.2), transparent 28%),
    linear-gradient(145deg, #0d141d, #06080c);
}

/* Content-specific 3D diagrams */
.content-diagram {
  --diagram-accent: 80, 185, 255;
  position: relative;
  width: min(100%, 500px);
  min-height: 440px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 42%, rgba(var(--diagram-accent), 0.16), transparent 34%),
    linear-gradient(145deg, rgba(17, 25, 36, 0.94), rgba(6, 9, 14, 0.92));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: perspective(1100px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
}

.content-diagram--shield { --diagram-accent: 112, 225, 189; }
.content-diagram--search { --diagram-accent: 119, 166, 255; }
.content-diagram--chart { --diagram-accent: 125, 100, 208; }
.content-diagram--target { --diagram-accent: 88, 197, 239; }
.content-diagram--compass { --diagram-accent: 148, 122, 217; }
.content-diagram--message { --diagram-accent: 112, 225, 189; }

.content-diagram::after {
  position: absolute;
  z-index: 8;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 24%, transparent 70%, rgba(var(--diagram-accent), .05));
}

.diagram-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 74%);
  opacity: 0.62;
  transform: perspective(600px) rotateX(64deg) scale(1.4) translateY(22%);
}

.diagram-scene {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  aspect-ratio: 1;
  perspective: 950px;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
}

.diagram-plane {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  height: 44%;
  border: 1px solid rgba(var(--diagram-accent), 0.23);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(var(--diagram-accent), 0.16), rgba(9, 16, 24, 0.62));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.27);
  transform-style: preserve-3d;
}

.diagram-plane b {
  position: absolute;
  right: 17px;
  bottom: 13px;
  color: rgba(228, 241, 250, 0.55);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.diagram-plane--one {
  opacity: 0.52;
  transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-28deg) translateZ(-72px) translateY(55px);
}

.diagram-plane--two {
  opacity: 0.72;
  transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-28deg) translateZ(0) translateY(10px);
}

.diagram-plane--three {
  transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-28deg) translateZ(72px) translateY(-38px);
  animation: diagramFloat 5.6s ease-in-out infinite;
}

@keyframes diagramFloat {
  50% { transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-28deg) translateZ(82px) translateY(-48px); }
}

.diagram-core {
  position: absolute;
  z-index: 7;
  top: 45%;
  left: 50%;
  display: grid;
  width: 104px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(var(--diagram-accent), 0.55);
  border-radius: 31px;
  background: rgba(7, 13, 20, 0.92);
  box-shadow: 0 0 48px rgba(var(--diagram-accent), 0.2), inset 0 1px 0 rgba(255,255,255,.1);
  color: rgb(var(--diagram-accent));
  transform: translate(-50%, -50%) translateZ(120px);
}

.diagram-core svg {
  width: 34px;
  height: 34px;
}

.diagram-core small {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 180px;
  color: rgba(231, 239, 247, 0.7);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.content-diagram--shield .diagram-core {
  border-radius: 48% 48% 54% 54% / 31% 31% 69% 69%;
}

.diagram-ring {
  position: absolute;
  z-index: 3;
  top: 45%;
  left: 50%;
  border: 1px solid rgba(var(--diagram-accent), 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(66deg);
}

.diagram-ring--one {
  width: 58%;
  aspect-ratio: 1;
  animation: ringSpin 10s linear infinite;
}

.diagram-ring--two {
  width: 92%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: ringSpin 16s linear reverse infinite;
}

@keyframes ringSpin {
  to { transform: translate(-50%, -50%) rotateX(66deg) rotateZ(360deg); }
}

.diagram-node {
  position: absolute;
  z-index: 6;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(var(--diagram-accent));
  box-shadow: 0 0 18px rgba(var(--diagram-accent), 0.8);
}

.diagram-node--one { top: 18%; left: 18%; }
.diagram-node--two { right: 14%; bottom: 29%; }
.diagram-node--three { bottom: 16%; left: 31%; }

.diagram-bars {
  position: absolute;
  z-index: 6;
  right: 12%;
  bottom: 14%;
  display: none;
  height: 90px;
  align-items: end;
  gap: 7px;
  transform: rotateX(8deg) rotateY(-12deg) translateZ(90px);
}

.diagram-bars i {
  width: 13px;
  border: 1px solid rgba(var(--diagram-accent), .55);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(to top, rgba(var(--diagram-accent), .12), rgba(var(--diagram-accent), .72));
}

.diagram-bars i:nth-child(1) { height: 34%; }
.diagram-bars i:nth-child(2) { height: 62%; }
.diagram-bars i:nth-child(3) { height: 48%; }
.diagram-bars i:nth-child(4) { height: 86%; }
.content-diagram--chart .diagram-bars { display: flex; }

.content-diagram--chart .diagram-plane,
.content-diagram--target .diagram-plane,
.content-diagram--search .diagram-plane {
  width: 72%;
}

.content-diagram--target .diagram-ring--one,
.content-diagram--search .diagram-ring--one {
  border-width: 2px;
  box-shadow: 0 0 28px rgba(var(--diagram-accent), .08);
}

.story-visual__stack {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70%, 400px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-28deg);
  transform-style: preserve-3d;
}

.story-visual__stack span {
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  background: rgba(16, 24, 35, 0.76);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
}

.story-visual__stack span:nth-child(1) { transform: translateZ(-90px); }
.story-visual__stack span:nth-child(2) { transform: translateZ(-30px); }
.story-visual__stack span:nth-child(3) { transform: translateZ(30px); }
.story-visual__stack span:nth-child(4) {
  background: linear-gradient(145deg, rgba(51, 141, 200, 0.22), rgba(103, 83, 163, 0.12));
  transform: translateZ(90px);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}

.split--top {
  align-items: start;
}

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

.check-list li,
.plain-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: #d4d9e1;
}

.check-list li::before {
  display: grid;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  place-items: center;
  border: 1px solid rgba(112, 225, 189, 0.28);
  border-radius: 50%;
  content: "✓";
  background: rgba(112, 225, 189, 0.08);
  color: var(--success);
  font-size: 0.68rem;
}

.plain-list li::before {
  margin-top: 10px;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--accent);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: clamp(28px, 4vw, 52px) clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.86rem;
}

/* Process */
.process-story {
  position: relative;
  height: 220vh;
  min-height: 1450px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 48%, rgba(51, 141, 200, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(8, 12, 18, 0.28), rgba(5, 7, 10, 0.82));
}

.process-story__stage {
  position: sticky;
  top: 68px;
  display: grid;
  height: calc(100svh - 68px);
  min-height: 640px;
  padding: 24px 0 28px;
  align-items: stretch;
  overflow: hidden;
}

.process-story__layout {
  display: grid;
  height: 100%;
  grid-template-areas:
    "intro intro"
    "visual journey";
  grid-template-columns: minmax(430px, 1.12fr) minmax(350px, 0.88fr);
  grid-template-rows: auto minmax(0, 1fr);
  align-items: stretch;
  column-gap: clamp(34px, 5vw, 76px);
  row-gap: clamp(22px, 3vh, 34px);
}

.process-story__intro {
  grid-area: intro;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: end;
  gap: clamp(36px, 7vw, 110px);
}

.process-story__intro .section-title {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(2.75rem, 4.4vw, 4.75rem);
}

.process-story__summary {
  display: grid;
  gap: 18px;
  padding-bottom: 3px;
}

.process-story__summary > .lead {
  max-width: 560px;
  margin: 0;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
}

.process-story__journey {
  position: relative;
  z-index: 3;
  grid-area: journey;
  display: grid;
  min-height: 0;
  align-items: center;
}

.process-story__cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  color: rgba(220, 229, 237, 0.56);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.process-story__cue i {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(80, 185, 255, 0.05));
}

.process-story__steps {
  display: grid;
  gap: 8px;
  margin: 0;
}

.process-story__step {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  padding: 14px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.018);
  opacity: 0.66;
  transform: translateX(0);
  transition: opacity 280ms ease, border-color 320ms ease, background 320ms ease, transform 420ms var(--ease);
}

.process-story__step.is-active {
  opacity: 1;
  border-color: rgba(80, 185, 255, 0.3);
  background: linear-gradient(90deg, rgba(80, 185, 255, 0.09), rgba(125, 91, 188, 0.035));
  transform: translateX(8px);
}

.process-story__number {
  grid-row: 1 / span 2;
  align-self: start;
  padding-top: 3px;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.process-story__step h3 {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 620;
  letter-spacing: -0.025em;
}

.process-story__step p {
  grid-column: 2;
  max-width: 560px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.86rem;
  opacity: 0;
  transition: max-height 420ms var(--ease), margin-top 320ms ease, opacity 280ms ease;
}

.process-story__step.is-active p {
  max-height: 100px;
  margin-top: 7px;
  opacity: 1;
}

.process-story__visual {
  position: relative;
  grid-area: visual;
  width: 100%;
  height: 100%;
  max-height: 510px;
  min-height: 390px;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 46%, rgba(80, 185, 255, 0.17), transparent 28%),
    linear-gradient(145deg, rgba(16, 24, 34, 0.93), rgba(5, 8, 12, 0.94));
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  isolation: isolate;
}

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

.process-story__visual::before {
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.process-story__visual::after {
  z-index: 5;
  inset: 0;
  background: linear-gradient(150deg, rgba(255,255,255,.07), transparent 22%, transparent 70%, rgba(80,185,255,.04));
}

.process-story__visual .growth-canvas {
  z-index: 1;
}

.process-story.has-webgl .process-story__visual .growth-canvas {
  opacity: 1;
}

.process-story__fallback {
  position: absolute;
  z-index: 2;
  inset: 12%;
  transition: opacity 500ms ease;
  transform-style: preserve-3d;
}

.process-story.has-webgl .process-story__fallback {
  opacity: 0.2;
}

.process-story__fallback span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62%;
  height: 30%;
  border: 1px solid rgba(80, 185, 255, 0.22);
  border-radius: 24px;
  background: rgba(11, 18, 27, 0.78);
  transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-28deg);
}

.process-story__fallback span:nth-child(1) { transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-28deg) translateZ(-84px) translateY(50px); }
.process-story__fallback span:nth-child(2) { transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-28deg) translateZ(-28px) translateY(18px); }
.process-story__fallback span:nth-child(3) { transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-28deg) translateZ(28px) translateY(-15px); }
.process-story__fallback span:nth-child(4) { transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-28deg) translateZ(84px) translateY(-48px); }

.process-story__fallback img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  filter: drop-shadow(0 0 26px rgba(80,185,255,.3));
  transform: translate(-50%, -50%);
}

.process-story__meter {
  position: absolute;
  z-index: 7;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.process-story__meter span {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(220, 229, 237, 0.34);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 220ms ease, color 220ms ease;
}

.process-story__meter span.is-active {
  border-color: var(--accent);
  color: #dff3ff;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.timeline-step {
  display: grid;
  grid-template-columns: 110px minmax(180px, 0.65fr) minmax(240px, 1.35fr);
  gap: 30px;
  padding: clamp(24px, 4vw, 46px);
  background: var(--panel);
  transition: background 240ms ease;
}

.timeline-step:hover {
  background: #101720;
}

.timeline-step__number {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.timeline-step h3 {
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 580;
  letter-spacing: -0.03em;
}

.timeline-step p {
  margin-bottom: 0;
  color: var(--muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  display: flex;
  min-height: 490px;
  flex-direction: column;
}

.price-card.is-featured {
  border-color: rgba(80, 185, 255, 0.38);
  background:
    radial-gradient(circle at 50% 0%, rgba(80, 185, 255, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(51, 141, 200, 0.1), rgba(103, 83, 163, 0.055));
}

.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border: 1px solid rgba(80, 185, 255, 0.24);
  border-radius: 999px;
  background: rgba(80, 185, 255, 0.09);
  color: #a8ddff;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-name {
  color: #fff;
  font-size: 1.22rem;
  font-weight: 600;
}

.price-audience {
  min-height: 44px;
  color: var(--muted);
  font-size: 0.82rem;
}

.price {
  margin: 18px 0 28px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
}

.price-card .check-list {
  gap: 10px;
  margin-top: 0;
  font-size: 0.84rem;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.comparison th,
.comparison td {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison td {
  color: var(--muted);
  font-size: 0.9rem;
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.comparison td:last-child {
  color: #dceefa;
}

/* Founder, article and quote */
.founder-card {
  display: grid;
  min-height: 420px;
  grid-template-rows: auto 1fr;
}

.founder-monogram {
  display: grid;
  width: 112px;
  aspect-ratio: 1;
  margin-bottom: 50px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 36px 36px 36px 8px;
  background: linear-gradient(145deg, rgba(51, 141, 200, 0.2), rgba(103, 83, 163, 0.13));
  color: #fff;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.founder-role {
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-card {
  min-height: 340px;
}

.article-card .micro {
  margin-bottom: 70px;
}

.article-body h2,
.legal-content h2 {
  margin: 58px 0 18px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 590;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.article-body h3,
.legal-content h3 {
  margin: 34px 0 12px;
  font-size: 1.2rem;
}

.article-body p,
.article-body li,
.legal-content p,
.legal-content li {
  color: #b0bac7;
}

.article-body ul,
.article-body ol,
.legal-content ul,
.legal-content ol {
  padding-left: 1.25rem;
}

.article-callout,
.legal-note {
  margin: 34px 0;
  padding: 22px 24px;
  border: 1px solid rgba(80, 185, 255, 0.2);
  border-radius: 18px;
  background: rgba(80, 185, 255, 0.055);
  color: #dceaf4;
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  min-height: 80px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  font-size: clamp(1rem, 2vw, 1.24rem);
  font-weight: 570;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  color: var(--muted);
  font-weight: 300;
  transition: transform 220ms var(--ease), color 180ms ease, border-color 180ms ease;
}

.faq-item[open] summary::after {
  border-color: rgba(80, 185, 255, 0.4);
  color: var(--accent);
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 820px;
  padding: 0 60px 28px 0;
  color: var(--muted);
}

/* Forms */
.form-card {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: #d9dee6;
  font-size: 0.79rem;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  background: rgba(4, 7, 11, 0.6);
  color: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(80, 185, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(80, 185, 255, 0.08);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #687382;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.78rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.form-status {
  min-height: 24px;
  color: var(--success);
  font-size: 0.82rem;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  color: var(--muted);
}

.contact-item__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--accent);
}

.contact-item__icon svg {
  width: 19px;
  height: 19px;
}

.contact-item strong {
  display: block;
  color: #fff;
  font-size: 0.84rem;
}

/* Legal */
.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: clamp(36px, 7vw, 90px);
}

.legal-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 4px;
}

.legal-toc a {
  padding: 8px 10px;
  border-left: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.8rem;
  transition: color 180ms ease, border-color 180ms ease;
}

.legal-toc a:hover {
  border-color: var(--accent);
  color: #fff;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted-2);
  font-size: 0.79rem;
}

/* CTA */
.cta-band {
  position: relative;
  padding: clamp(44px, 7vw, 88px);
  overflow: hidden;
  border: 1px solid rgba(80, 185, 255, 0.2);
  border-radius: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 82% 22%, rgba(103, 83, 163, 0.23), transparent 32%),
    radial-gradient(circle at 20% 92%, rgba(51, 141, 200, 0.19), transparent 34%),
    linear-gradient(145deg, #0e151f, #080b10);
  box-shadow: var(--shadow);
}

.cta-band::after {
  position: absolute;
  right: -8%;
  bottom: -70%;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 48% 52% 56% 44%;
  content: "";
  box-shadow: 0 0 70px rgba(80, 185, 255, 0.08);
  transform: rotate(20deg);
}

.cta-band h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5.2vw, 5.2rem);
  font-weight: 610;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.cta-band p {
  max-width: 620px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  margin-top: clamp(72px, 10vw, 140px);
  padding: 72px 0 28px;
  border-top: 1px solid var(--line);
  background: #06090d;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: 48px;
  padding-bottom: 58px;
}

.footer-brand img {
  width: 176px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 330px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-column h3 {
  margin-bottom: 17px;
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a,
.footer-column button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.84rem;
  text-align: left;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column button:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.75rem;
}

/* Floating actions */
.floating-actions {
  position: fixed;
  z-index: 700;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 9px;
}

.floating-action {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(12, 18, 26, 0.88);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  color: #fff;
  backdrop-filter: blur(14px);
  transition: transform 220ms var(--ease), border-color 180ms ease, background 180ms ease;
}

.floating-action:hover {
  border-color: rgba(80, 185, 255, 0.44);
  background: #101925;
  transform: translateY(-3px) scale(1.03);
}

.floating-action svg {
  width: 21px;
  height: 21px;
}

.floating-action--whatsapp {
  color: var(--success);
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  z-index: 5000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: none;
  width: min(calc(100% - 36px), 720px);
  margin-inline: auto;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: rgba(12, 17, 24, 0.96);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(22px);
}

.cookie-banner.is-visible {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

.cookie-banner h2 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.cookie-banner p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  z-index: 5100;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(1, 3, 6, 0.76);
  backdrop-filter: blur(10px);
}

.cookie-modal.is-open {
  display: grid;
}

.cookie-dialog {
  width: min(100%, 600px);
  max-height: min(760px, 90dvh);
  padding: clamp(24px, 5vw, 38px);
  overflow-y: auto;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: #0b1017;
  box-shadow: var(--shadow);
}

.cookie-dialog__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cookie-dialog h2 {
  margin-bottom: 8px;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.cookie-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.03);
  color: #fff;
  cursor: pointer;
}

.cookie-category {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.cookie-category p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.switch {
  position: relative;
  width: 48px;
  height: 28px;
  margin-top: 3px;
}

.switch input {
  position: absolute;
  opacity: 0;
}

.switch span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #171d26;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.switch span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  content: "";
  background: #818b99;
  transition: transform 180ms var(--ease), background 180ms ease;
}

.switch input:checked + span {
  border-color: var(--blue);
  background: rgba(51, 141, 200, 0.25);
}

.switch input:checked + span::after {
  background: var(--accent);
  transform: translateX(20px);
}

.switch input:disabled + span {
  cursor: not-allowed;
  opacity: 0.65;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 800ms var(--ease);
}

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

/* Responsive */
@media (max-width: 1100px) {
  .desktop-nav,
  .header-actions .button {
    display: none;
  }

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

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-world {
    left: 72%;
    width: min(62vw, 660px);
  }

  .hero-copy {
    width: min(48vw, 520px);
  }

  .process-story__layout {
    grid-template-columns: minmax(410px, 1fr) minmax(340px, 0.9fr);
    column-gap: 32px;
  }

  .process-story__intro {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 38px;
  }

  .process-story__intro .section-title {
    font-size: clamp(2.7rem, 5.5vw, 4.15rem);
  }

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

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

  .footer-top {
    grid-template-columns: 1.25fr repeat(2, 0.75fr);
  }

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 820px) {
  .section-heading,
  .split,
  .editorial-grid,
  .legal-layout,
  .page-hero__layout {
    grid-template-columns: 1fr;
  }

  .page-hero__layout {
    gap: 56px;
  }

  .content-diagram {
    width: min(100%, 520px);
    justify-self: center;
  }

  .section-heading {
    gap: 12px;
  }

  .film {
    height: 490vh;
  }

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

  .hero-world {
    top: 42%;
    left: 50%;
    width: min(92vw, 600px);
    opacity: 0.82;
  }

  .film-glow {
    top: 42%;
    left: 50%;
    width: 100vw;
  }

  .hero-copy {
    top: auto;
    right: 20px;
    bottom: 84px;
    left: 20px;
    width: auto;
    transform: none;
  }

  .chapter {
    align-items: flex-end;
  }

  .chapter h1,
  .chapter h2 {
    max-width: 680px;
    font-size: clamp(2.7rem, 12vw, 5.4rem);
  }

  .chapter p {
    max-width: 620px;
  }

  .film-progress {
    top: auto;
    right: auto;
    bottom: 30px;
    left: 20px;
    display: flex;
    transform: none;
  }

  .film-progress span,
  .film-progress span.is-active {
    width: 28px;
    height: 2px;
  }

  .growth-system-key {
    display: none;
  }

  .scroll-cue {
    right: 20px;
    bottom: 24px;
    left: auto;
    transform: none;
  }

  .process-story {
    height: auto;
    min-height: 0;
    padding: 96px 0;
  }

  .process-story__stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .process-story__layout {
    height: auto;
    grid-template-areas:
      "intro"
      "journey"
      "visual";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 46px;
  }

  .process-story__intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-story__intro .section-title {
    max-width: 720px;
  }

  .process-story__summary {
    max-width: 620px;
    gap: 0;
    padding: 0;
  }

  .process-story__cue {
    display: none;
  }

  .process-story__steps {
    display: grid;
    min-height: 0;
    gap: 12px;
  }

  .process-story__step {
    position: relative;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.025);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .process-story__step p,
  .process-story__step.is-active p {
    max-height: none;
    margin-top: 8px;
    opacity: 1;
  }

  .process-story__step.is-active {
    border-color: rgba(80, 185, 255, 0.28);
    background: rgba(80, 185, 255, 0.045);
    transform: none;
  }

  .process-story__visual {
    min-height: 500px;
    border-radius: 32px;
  }

  .project-showcase {
    grid-template-columns: 1fr;
  }

  .project-card__content {
    min-height: 0;
  }

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

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

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .timeline-step {
    grid-template-columns: 74px 1fr;
  }

  .timeline-step p {
    grid-column: 2;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .shell,
  .narrow {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    padding: 9px 0;
  }

  .brand {
    width: 148px;
  }

  .brand img {
    width: 144px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .mobile-services__links {
    grid-template-columns: 1fr;
  }

  .display,
  .page-title {
    font-size: clamp(2.85rem, 15vw, 4.9rem);
  }

  .section-title,
  .manifesto {
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  .lead {
    font-size: 1rem;
  }

  .page-hero {
    min-height: 660px;
    padding-top: 142px;
  }

  .page-hero__layout .page-title {
    font-size: clamp(2.7rem, 14vw, 4.7rem);
  }

  .breadcrumbs {
    margin-bottom: 30px;
  }

  .breadcrumbs ol {
    font-size: 0.64rem;
  }

  .content-diagram {
    min-height: 340px;
    border-radius: 28px;
  }

  .process-story {
    padding: 76px 0;
  }

  .process-story__visual {
    min-height: 370px;
    border-radius: 26px;
  }

  .process-story__meter {
    right: 14px;
    bottom: 14px;
    left: 14px;
    gap: 4px;
  }

  .process-story__meter span {
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .diagram-scene {
    width: 88%;
  }

  .diagram-core {
    width: 84px;
    border-radius: 25px;
  }

  .diagram-core svg {
    width: 28px;
    height: 28px;
  }

  .card-grid,
  .card-grid--two,
  .pricing-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .service-card {
    min-height: 300px;
  }

  .card-icon {
    margin-bottom: 44px;
  }

  .editorial-grid .card:first-child {
    min-height: 390px;
  }

  .timeline-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timeline-step p {
    grid-column: auto;
  }

  .price-card {
    min-height: 460px;
  }

  .footer-top,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-column:last-child,
  .footer-brand {
    grid-column: auto;
  }

  .cookie-banner.is-visible {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .cookie-actions .button {
    flex: 1 1 130px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-action {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

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

  .cta-band {
    padding: 36px 24px;
  }

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

  .stat,
  .stat:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }
}

@media (min-width: 821px) and (max-height: 760px) {
  .process-story__stage {
    top: 60px;
    height: calc(100svh - 60px);
    min-height: 0;
    padding: 14px 0 18px;
  }

  .process-story__layout {
    row-gap: 16px;
  }

  .process-story__intro .section-title {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
  }

  .process-story__summary > .lead {
    font-size: 0.92rem;
  }

  .process-story__cue {
    display: none;
  }

  .process-story__visual {
    min-height: 290px;
    max-height: 390px;
  }

  .process-story__steps {
    gap: 6px;
  }

  .process-story__step {
    padding: 10px 13px;
  }

  .process-story__step p {
    font-size: 0.78rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .card {
    transform: none !important;
  }

  .card:hover {
    --lift: 0;
  }

  .card::before {
    display: none;
  }

  .service-card__signal {
    transform: scale(0.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .film {
    height: 100svh;
    min-height: 680px;
  }

  .film-stage {
    position: relative;
  }

  .process-story {
    height: auto;
    min-height: 0;
    padding: 96px 0;
  }

  .process-story__stage {
    position: relative;
    top: auto;
    height: auto;
    padding: 0;
  }

  .process-story__layout {
    height: auto;
    grid-template-areas:
      "intro"
      "journey"
      "visual";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .process-story__intro {
    grid-template-columns: 1fr;
  }

  .process-story__cue {
    display: none;
  }

  .process-story__steps {
    display: grid;
    min-height: 0;
    gap: 12px;
  }

  .process-story__step {
    position: relative;
    padding: 22px 0;
    opacity: 1;
    transform: none;
  }

  .process-story__step.is-active {
    transform: none;
  }

  .process-story__step p,
  .process-story__step.is-active p {
    max-height: none;
    margin-top: 8px;
    opacity: 1;
  }

  .chapter {
    display: none;
  }

  .chapter:last-child {
    display: flex;
    opacity: 1;
    transform: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-menu,
  .floating-actions,
  .cookie-banner,
  .cookie-modal,
  .site-footer,
  .button-row {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .page-hero {
    min-height: auto;
    padding: 40px 0;
  }

  .page-title,
  .section-title,
  .legal-content h2,
  .legal-content h3 {
    color: #111;
  }

  .lead,
  .legal-content p,
  .legal-content li {
    color: #333;
  }
}
