@font-face {
  font-family: "Proba Pro Brand";
  src: url("./assets/fonts/ProbaPro-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proba Pro Brand";
  src: url("./assets/fonts/ProbaPro-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #0d0d0d;
  --bg-2: #15110f;
  --ink: #fff9f2;
  --muted: #a8a19b;
  --soft: rgba(255, 249, 242, 0.08);
  --soft-2: rgba(255, 249, 242, 0.14);
  --line: rgba(255, 249, 242, 0.16);
  --orange: #ff5c00;
  --orange-2: #ff8a3d;
  --charcoal: #161616;
  --radius: 8px;
  --glass-radius: 28px;
  --glass-bg: linear-gradient(145deg, rgba(255, 249, 242, 0.105), rgba(255, 92, 0, 0.055) 48%, rgba(8, 7, 6, 0.5));
  --glass-line: rgba(255, 249, 242, 0.2);
  --glass-edge: inset 0 1px 0 rgba(255, 249, 242, 0.34), inset 0 -16px 38px rgba(0, 0, 0, 0.2);
  --glass-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), 0 10px 28px rgba(255, 92, 0, 0.08);
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.45);
  --page-gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(76px, 12vw, 170px);
  font-family:
    "Proba Pro", "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

@property --button-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 92, 0, 0.18), transparent 28rem),
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.06), transparent 24rem),
    linear-gradient(180deg, var(--bg), #080808 48%, #0f0b09);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  z-index: 1000;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
}

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

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  z-index: 1000;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
}

.ambient-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.ambient-field span {
  position: absolute;
  width: 38vw;
  aspect-ratio: 1;
  filter: blur(70px);
  opacity: 0.18;
  background: var(--orange);
  border-radius: 50%;
  transform: translate3d(0, calc(var(--scroll-progress, 0) * -120px), 0);
}

.ambient-field span:nth-child(1) {
  top: 5%;
  right: -18vw;
}

.ambient-field span:nth-child(2) {
  top: 48%;
  left: -20vw;
  background: #ffffff;
  opacity: 0.08;
}

.ambient-field span:nth-child(3) {
  bottom: -18vw;
  right: 18vw;
  opacity: 0.11;
}

.site-header {
  position: fixed;
  top: 16px;
  left: var(--page-gutter);
  right: var(--page-gutter);
  z-index: 50;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 242, 0.2);
  border-radius: var(--glass-radius);
  background:
    linear-gradient(90deg, rgba(255, 249, 242, 0.095), rgba(255, 249, 242, 0.035) 42%, rgba(255, 92, 0, 0.09)),
    rgba(12, 10, 9, 0.66);
  backdrop-filter: blur(28px) saturate(1.34);
  box-shadow:
    var(--glass-edge),
    0 20px 58px rgba(0, 0, 0, 0.34),
    0 1px 0 rgba(255, 249, 242, 0.2);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.site-header::before {
  inset: 1px;
  z-index: 0;
  background:
    radial-gradient(ellipse at 12% 12%, rgba(255, 249, 242, 0.24), transparent 18rem),
    linear-gradient(100deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(255, 92, 0, 0.11) 74%, transparent);
  opacity: 0.72;
}

.site-header::after {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 249, 242, 0.16), transparent),
    radial-gradient(circle at 88% 50%, rgba(255, 92, 0, 0.18), transparent 11rem);
  opacity: 0.5;
  mix-blend-mode: screen;
}

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

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 750;
}

.brand-symbol {
  width: 46px;
  height: 36px;
  object-fit: contain;
  transform: scale(1.36);
  transform-origin: center;
}

.site-header .brand-lockup {
  --brand-logo-x: 0;
  --brand-logo-y: 0;
  --brand-logo-pop: 0;
  position: relative;
  isolation: isolate;
  gap: 10px;
  perspective: 420px;
  transform-style: preserve-3d;
}

.site-header .brand-lockup::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 50%;
  z-index: -1;
  width: 58px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(255, 92, 0, 0.38), rgba(255, 92, 0, 0) 72%);
  filter: blur(5px);
  opacity: 0.38;
  transform:
    translate3d(calc(var(--brand-logo-x) * 2px), 12px, -18px)
    rotateX(68deg)
    scaleX(calc(0.82 + var(--brand-logo-pop) * 0.08));
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    filter 180ms ease;
}

.brand-symbol-3d {
  width: 58px;
  height: 42px;
  margin-left: -7px;
  margin-right: -3px;
  object-fit: contain;
  transform:
    perspective(420px)
    translate3d(
      calc(var(--brand-logo-x) * 3px),
      calc(var(--brand-logo-y) * 2px),
      calc(var(--brand-logo-pop) * 8px)
    )
    rotateX(calc(var(--brand-logo-y) * -5deg))
    rotateY(calc(var(--brand-logo-x) * 6deg))
    rotateZ(calc(var(--brand-logo-x) * 1.5deg))
    scale(calc(1 + var(--brand-logo-pop) * 0.045));
  transform-origin: center;
  filter:
    drop-shadow(0 7px 12px rgba(0, 0, 0, 0.48))
    drop-shadow(0 5px 12px rgba(255, 92, 0, 0.18));
  transition:
    transform 160ms ease,
    filter 180ms ease;
  will-change: transform;
}

.brand-text-lockup {
  display: grid;
  gap: 0;
  color: #fff;
  line-height: 0.9;
  text-transform: none;
  transform: translateY(2px);
}

.brand-title,
.brand-subtitle {
  display: block;
  color: inherit;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-title {
  font-family: "Proba Pro Brand", "Proba Pro", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.08rem, 1.25vw, 1.34rem);
  font-weight: 600;
  line-height: 0.86;
}

.brand-subtitle {
  margin-top: 2px;
  font-family: "Proba Pro Brand", "Proba Pro", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(0.56rem, 0.64vw, 0.7rem);
  font-weight: 100;
  line-height: 0.92;
  opacity: 1;
}

.site-header .brand-lockup:hover::before,
.site-header .brand-lockup:focus-visible::before {
  opacity: 0.56;
  filter: blur(6px);
}

.site-header .brand-lockup:hover .brand-symbol-3d,
.site-header .brand-lockup:focus-visible .brand-symbol-3d {
  filter:
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.52))
    drop-shadow(0 6px 14px rgba(255, 92, 0, 0.24));
}

.site-header .brand-lockup.logo-pop::before {
  opacity: 0.68;
}

.desktop-nav {
  --nav-orb-x: 0px;
  --nav-orb-width: 0px;
  justify-self: center;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px;
}

.nav-active-orb {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
  width: var(--nav-orb-width);
  height: 38px;
  border: 1px solid rgba(255, 249, 242, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 249, 242, 0.2), rgba(255, 249, 242, 0.08) 52%, rgba(255, 92, 0, 0.15)),
    rgba(255, 249, 242, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -10px 22px rgba(255, 92, 0, 0.1),
    0 10px 26px rgba(0, 0, 0, 0.24);
  opacity: var(--nav-orb-opacity, 0);
  pointer-events: none;
  transform: translate3d(var(--nav-orb-x), -50%, 0);
  transition:
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 280ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(18px) saturate(1.35);
}

.nav-active-orb::before {
  content: "";
  position: absolute;
  inset: 4px 7px auto;
  height: 45%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 72%);
  filter: blur(2px);
  opacity: 0.78;
}

.desktop-nav a {
  position: relative;
  z-index: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.desktop-nav a.is-active {
  color: var(--ink);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 36px;
  padding: 3px;
  border: 1px solid rgba(255, 249, 242, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 249, 242, 0.12), rgba(255, 249, 242, 0.04) 58%, rgba(255, 92, 0, 0.1)),
    rgba(12, 10, 9, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px) saturate(1.25);
}

.language-toggle button {
  min-width: 34px;
  min-height: 28px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  appearance: none;
  background: transparent;
  color: rgba(255, 249, 242, 0.66);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.language-toggle button:hover,
.language-toggle button:focus-visible {
  color: var(--ink);
}

.language-toggle button.is-active {
  color: #14100d;
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.96), rgba(255, 246, 236, 0.78)),
    rgba(255, 249, 242, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 7px 18px rgba(0, 0, 0, 0.18);
}

.nav-cta,
.primary-button,
.secondary-link,
.text-arrow {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1;
}

.nav-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0 16px;
  border: 1px solid rgba(255, 249, 242, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.96), rgba(255, 246, 236, 0.84)),
    rgba(255, 249, 242, 0.9);
  color: #14100d;
  font-size: 0.82rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -10px 24px rgba(255, 92, 0, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.22);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.nav-cta::before,
.primary-button::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.52), transparent 32%, rgba(255, 255, 255, 0.18) 54%, transparent 76%),
    radial-gradient(ellipse at 18% 0%, rgba(255, 255, 255, 0.5), transparent 42%);
  opacity: 0.74;
  pointer-events: none;
}

.nav-cta > *,
.primary-button > * {
  position: relative;
  z-index: 1;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -12px 28px rgba(255, 92, 0, 0.11),
    0 18px 46px rgba(0, 0, 0, 0.3);
}

.nav-cta svg,
.primary-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero-section {
  position: relative;
  min-height: 94dvh;
  padding: clamp(108px, 10vw, 158px) var(--page-gutter) 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  grid-template-rows: 1fr auto;
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.hero-section > * {
  min-width: 0;
}

.small-label {
  margin: 0 0 14px;
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 14.8ch;
  margin-bottom: 24px;
  color: #f2ece6;
  font-size: clamp(3.8rem, 7.8vw, 8.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gooey-words {
  display: block;
  position: relative;
  width: 8.3ch;
  min-height: 0.9em;
  color: var(--orange);
  filter: url("#goo");
}

.hero-choice-line {
  display: block;
}

.hero-choice-fixed {
  display: block;
  color: #f2ece6;
}

:root[data-language="es"] .hero-choice-fixed {
  display: none;
}

:root[data-language="es"] .hero-section h1 {
  font-size: clamp(3.45rem, 7.2vw, 7.8rem);
  line-height: 0.98;
}

:root[data-language="es"] .hero-section .gooey-words {
  min-height: 1.08em;
  padding-top: 0.04em;
}

.word {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
  transform: translateY(0.22em) scale(0.96);
  filter: blur(10px);
  transition:
    opacity 480ms ease,
    transform 480ms ease,
    filter 480ms ease;
}

.word.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  position: relative;
}

.hero-intro {
  max-width: 680px;
  color: #d8d0ca;
  font-size: clamp(1.1rem, 1.5vw, 1.42rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.primary-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 61, 0.62);
  padding: 0 22px;
  cursor: pointer;
  background:
    linear-gradient(145deg, rgba(255, 138, 61, 0.98), rgba(255, 92, 0, 0.84) 46%, rgba(103, 28, 0, 0.74)),
    var(--orange);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.36),
    inset 0 -14px 34px rgba(96, 20, 0, 0.28),
    0 14px 40px rgba(255, 92, 0, 0.3);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.48),
    inset 0 -16px 38px rgba(96, 20, 0, 0.3),
    0 18px 56px rgba(255, 92, 0, 0.42);
}

.rotating-button::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -2;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--button-angle, 0deg), transparent 0 25%, #fff9f2 34%, transparent 45% 100%);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: rotateButton 5s linear infinite;
}

.secondary-link,
.text-arrow {
  color: var(--ink);
  padding: 0 2px;
}

.secondary-link {
  padding: 0 4px 0 2px;
  transition:
    color 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.secondary-link:hover,
.secondary-link:focus-visible {
  transform: translateY(-1px);
}

.secondary-link-orb {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 242, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 249, 242, 0.28), transparent 36%),
    linear-gradient(145deg, rgba(255, 92, 0, 0.64), rgba(255, 249, 242, 0.08)),
    rgba(255, 249, 242, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.2),
    0 12px 28px rgba(255, 92, 0, 0.16);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    background 180ms ease;
}

.secondary-link-orb::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 249, 242, 0.16);
  border-radius: inherit;
}

.secondary-link-orb svg {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.secondary-link:hover .secondary-link-orb,
.secondary-link:focus-visible .secondary-link-orb {
  border-color: rgba(255, 138, 61, 0.52);
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 249, 242, 0.34), transparent 36%),
    linear-gradient(145deg, rgba(255, 92, 0, 0.92), rgba(255, 138, 61, 0.22)),
    rgba(255, 92, 0, 0.22);
  transform: translateX(4px) scale(1.05);
}

.text-arrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-arrow:hover::after {
  transform: scaleX(1.35);
}

.hero-stage {
  position: relative;
  min-height: clamp(430px, 56vw, 720px);
  perspective: 1200px;
}

.horizon-grid {
  position: absolute;
  left: 5%;
  right: 0;
  bottom: 4%;
  height: 46%;
  transform: rotateX(64deg) translateY(14%);
  transform-origin: bottom;
  background:
    linear-gradient(rgba(255, 92, 0, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 249, 242, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.8;
  mask-image: linear-gradient(to top, black, transparent 85%);
}

.orbit-system {
  position: absolute;
  inset: 2% 0 8% 0;
  transform-style: preserve-3d;
  transform: rotateX(calc(var(--tilt-y, 0) * -0.04deg)) rotateY(calc(var(--tilt-x, 0) * 0.05deg));
  transition: transform 140ms ease-out;
}

.orbit-system::before,
.orbit-system::after {
  content: "";
  position: absolute;
  inset: 14% 18%;
  border: 1px solid rgba(255, 249, 242, 0.18);
  border-radius: 50%;
  transform: rotateX(66deg) rotateZ(18deg);
}

.orbit-system::after {
  inset: 8% 12%;
  border-color: rgba(255, 92, 0, 0.34);
  transform: rotateX(72deg) rotateZ(-24deg);
}

.identity-core {
  position: absolute;
  top: 35%;
  left: 49%;
  z-index: 5;
  width: clamp(205px, 18vw, 290px);
  transform: translate3d(-50%, -50%, 205px) rotateY(3deg) rotateZ(1deg);
  transform-style: preserve-3d;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 0;
  aspect-ratio: 1;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  pointer-events: none;
  animation: logoFloat 8.5s ease-in-out infinite;
}

.identity-core::before {
  content: "";
  position: absolute;
  inset: 36% 12% 18%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 72%, rgba(255, 92, 0, 0.18), transparent 64%);
  filter: blur(14px);
  transform: translateZ(-24px) rotateX(70deg);
}

.identity-logo {
  width: 106%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translateZ(58px);
  filter:
    drop-shadow(0 24px 34px rgba(0, 0, 0, 0.54))
    drop-shadow(0 10px 26px rgba(255, 92, 0, 0.18));
}

.floating-plane {
  position: absolute;
  z-index: 3;
  width: clamp(150px, 17vw, 230px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 242, 0.15);
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.floating-plane img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}

.plane-one img {
  object-position: 58% 52%;
}

.plane-two img {
  box-sizing: border-box;
  padding: clamp(4px, 0.45vw, 8px);
  object-fit: contain;
  object-position: 50% 50%;
  background: #f6f4f0;
  filter: contrast(1.04);
  transform: scale(1.36);
  transform-origin: 50% 50%;
}

.plane-three img {
  object-position: 52% 50%;
}

.floating-plane figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 10px;
  border-radius: var(--radius);
  background: rgba(13, 13, 13, 0.72);
  backdrop-filter: blur(14px);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plane-one {
  top: 7%;
  left: 2%;
  transform: translateZ(130px) rotateY(-18deg) rotateZ(-4deg);
  animation: floatA 7s ease-in-out infinite;
}

.plane-two {
  top: 16%;
  right: 2%;
  z-index: 4;
  transform: translateZ(80px) rotateY(18deg) rotateZ(5deg);
  animation: floatB 8s ease-in-out infinite;
}

.plane-three {
  bottom: 4%;
  left: 28%;
  z-index: 1;
  transform: translateZ(170px) rotateX(6deg) rotateY(-10deg) rotateZ(3deg);
  animation: floatC 9s ease-in-out infinite;
}

.marquee-section {
  padding: 10px 0 var(--section-space);
  perspective: 900px;
}

.perspective-marquee {
  transform: rotateX(16deg) rotateZ(-2deg);
  transform-style: preserve-3d;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 12px 0;
  animation: marquee 38s linear infinite;
}

.marquee-track.reverse {
  animation-direction: reverse;
  opacity: 0.52;
}

.marquee-track span {
  display: inline-flex;
  min-height: clamp(64px, 5.2vw, 86px);
  align-items: center;
  padding: 0 clamp(26px, 3vw, 42px);
  border: 1px solid rgba(255, 249, 242, 0.14);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.1), rgba(255, 249, 242, 0.035)),
    rgba(10, 10, 10, 0.44);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 249, 242, 0.12);
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 850;
  font-size: clamp(1.08rem, 2vw, 1.72rem);
}

.scroll-cinema {
  position: relative;
  min-height: 660dvh;
  margin-top: calc(var(--section-space) * -0.35);
  isolation: isolate;
}

.scroll-cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent, rgba(255, 92, 0, 0.08) 24%, transparent 62%),
    linear-gradient(90deg, rgba(255, 249, 242, 0.04), transparent 38%, rgba(255, 92, 0, 0.06));
  mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
}

.cinema-sticky {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(420px, 1fr);
  grid-template-rows: 1fr auto;
  gap: clamp(20px, 4vw, 58px);
  align-items: center;
  padding: clamp(96px, 9vw, 150px) var(--page-gutter) clamp(28px, 5vw, 60px);
  overflow: hidden;
}

.cinema-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.cinema-copy h2 {
  max-width: 11ch;
  margin-bottom: 20px;
  transform: translate3d(0, calc(var(--cinema-progress, 0) * -16px), 80px);
}

.cinema-copy p:not(.small-label) {
  max-width: 56ch;
  color: #ded6cf;
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
}

.cinema-meter {
  width: min(420px, 100%);
  height: 2px;
  margin-top: 28px;
  overflow: hidden;
  background: rgba(255, 249, 242, 0.16);
}

.cinema-meter span {
  display: block;
  width: calc(var(--cinema-progress, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #fff9f2);
}

.cinema-stage {
  position: relative;
  isolation: isolate;
  min-height: min(72dvh, 780px);
  perspective: 1300px;
  transform-style: preserve-3d;
  border: 1px solid rgba(255, 249, 242, 0.1);
  background:
    linear-gradient(130deg, rgba(255, 249, 242, 0.05), transparent 42%),
    linear-gradient(180deg, rgba(255, 92, 0, 0.06), rgba(0, 0, 0, 0.22));
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.48);
  overflow: hidden;
}

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

.cinema-stage::before {
  inset: -18%;
  background:
    repeating-linear-gradient(0deg, rgba(255, 249, 242, 0.032) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(255, 92, 0, 0.04) 0 1px, transparent 1px 54px),
    linear-gradient(122deg, transparent 0 27%, rgba(255, 92, 0, 0.13) 27.08% 27.25%, transparent 27.36% 100%),
    linear-gradient(62deg, transparent 0 61%, rgba(255, 249, 242, 0.07) 61.08% 61.22%, transparent 61.34% 100%);
  opacity: 0.64;
  transform:
    translate3d(calc(var(--cinema-progress, 0) * -34px), calc(var(--cinema-progress, 0) * 18px), 0)
    scale(1.04);
}

.cinema-stage::after {
  inset: 9% 8%;
  border: 1px solid rgba(255, 249, 242, 0.055);
  background:
    linear-gradient(90deg, transparent 0 34%, rgba(255, 92, 0, 0.08) 34.08% 34.3%, transparent 34.42% 100%),
    linear-gradient(180deg, transparent 0 46%, rgba(255, 249, 242, 0.06) 46.08% 46.24%, transparent 46.38% 100%),
    repeating-linear-gradient(135deg, transparent 0 76px, rgba(255, 92, 0, 0.035) 76px 77px, transparent 77px 152px);
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 84%, transparent);
  opacity: 0.58;
  animation: cinema-backdrop-drift 18s ease-in-out infinite alternate;
}

.cinema-vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.7), transparent 18%, transparent 76%, rgba(13, 13, 13, 0.56)),
    linear-gradient(180deg, rgba(13, 13, 13, 0.5), transparent 18%, transparent 76%, rgba(13, 13, 13, 0.72));
}

.cinema-terrain-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  overflow: visible;
}

.glsl-hills-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
}

.glsl-hills-background canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.cinema-world {
  position: absolute;
  z-index: 1;
  inset: -10% -8% -18%;
  transform-style: preserve-3d;
  transform-origin: 50% 58%;
  transition: transform 120ms ease-out;
}

@keyframes cinema-backdrop-drift {
  from {
    transform: translate3d(-10px, -6px, 0) scale(1);
  }

  to {
    transform: translate3d(14px, 10px, 0) scale(1.025);
  }
}

.cinema-floor,
.cinema-wall,
.cinema-beam {
  position: absolute;
  pointer-events: none;
}

.cinema-floor {
  left: 50%;
  bottom: -12%;
  width: 140%;
  height: 70%;
  transform: translateX(-50%) rotateX(76deg);
  transform-origin: bottom center;
  background:
    linear-gradient(rgba(255, 92, 0, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 249, 242, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to top, black, transparent 86%);
}

.cinema-wall {
  top: 3%;
  bottom: 20%;
  width: 36%;
  border: 1px solid rgba(255, 249, 242, 0.07);
  background:
    linear-gradient(rgba(255, 249, 242, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 92, 0, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.52;
}

.wall-left {
  left: 0;
  transform: rotateY(68deg) translateZ(-180px);
  transform-origin: left center;
}

.wall-right {
  right: 0;
  transform: rotateY(-68deg) translateZ(-180px);
  transform-origin: right center;
}

.cinema-beam {
  left: 50%;
  top: 50%;
  width: 1px;
  height: 92%;
  background: linear-gradient(transparent, rgba(255, 92, 0, 0.75), transparent);
  transform-origin: center;
  opacity: 0.45;
}

.beam-one {
  transform: translate3d(-190px, -50%, 180px) rotateZ(34deg);
}

.beam-two {
  transform: translate3d(220px, -45%, 420px) rotateZ(-28deg);
}

.cinema-object {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(170px, 16vw, 260px);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 249, 242, 0.18);
  background:
    linear-gradient(150deg, rgba(255, 249, 242, 0.13), rgba(255, 249, 242, 0.03)),
    rgba(13, 13, 13, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  transform-style: preserve-3d;
  backface-visibility: visible;
  will-change: transform, opacity, filter;
}

.cinema-object span,
.cinema-object strong {
  position: relative;
  z-index: 1;
}

.cinema-object span {
  color: var(--orange-2);
  font-weight: 900;
  text-transform: uppercase;
}

.cinema-object strong {
  color: var(--ink);
  font-size: clamp(1.28rem, 2vw, 2.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.cinema-object p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #d6cec8;
  line-height: 1.35;
}

.cinema-visual,
.cinema-detail {
  display: none;
}

.object-brief {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 92, 0, 0.32), transparent 32%),
    rgba(13, 13, 13, 0.86);
}

.object-strategy {
  width: clamp(210px, 20vw, 330px);
}

.object-identity {
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 92, 0, 0.3), transparent 52%),
    rgba(8, 8, 8, 0.88);
}

.cinema-logo {
  width: 76%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 34px rgba(255, 92, 0, 0.25));
}

.object-web {
  width: clamp(240px, 24vw, 390px);
  min-height: 240px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(135deg, rgba(255, 92, 0, 0.18), rgba(0, 0, 0, 0.8));
}

.object-web strong {
  max-width: 13ch;
  font-size: clamp(1.18rem, 1.8vw, 2.15rem);
}

.object-web p {
  max-width: 31ch;
}

.object-web::before {
  content: "";
  position: absolute;
  inset: 58px 18px 18px;
  border: 1px solid rgba(255, 249, 242, 0.1);
  background:
    linear-gradient(90deg, rgba(255, 249, 242, 0.18) 0 28%, transparent 28% 100%),
    linear-gradient(rgba(255, 249, 242, 0.12) 1px, transparent 1px);
  background-size: auto, 100% 38px;
  opacity: 0.5;
}

.browser-bar {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 7px;
}

.browser-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.browser-bar i:nth-child(2) {
  background: rgba(255, 249, 242, 0.56);
}

.browser-bar i:nth-child(3) {
  background: rgba(255, 249, 242, 0.28);
}

.object-launch {
  width: clamp(220px, 22vw, 350px);
  min-height: 260px;
  background:
    linear-gradient(145deg, rgba(255, 92, 0, 0.28), transparent 38%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.08), rgba(13, 13, 13, 0.88));
}

.object-launch::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 80px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 92, 0, 0.5);
  transform: rotateX(62deg) rotateZ(34deg);
}

.process-style-os .cinema-stage {
  border-color: rgba(255, 92, 0, 0.24);
  background:
    radial-gradient(circle at 74% 14%, rgba(255, 92, 0, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(255, 249, 242, 0.045), transparent 38%),
    linear-gradient(180deg, rgba(18, 16, 14, 0.96), rgba(6, 6, 6, 0.92));
  box-shadow:
    0 36px 130px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 249, 242, 0.08),
    inset 0 0 70px rgba(255, 92, 0, 0.06);
}

.process-style-os .cinema-stage::before {
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(255, 92, 0, 0.24) 28.05% 28.18%, transparent 28.32% 100%),
    linear-gradient(58deg, transparent 0 62%, rgba(87, 211, 196, 0.18) 62.05% 62.16%, transparent 62.3% 100%),
    repeating-linear-gradient(0deg, rgba(255, 249, 242, 0.035) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(255, 92, 0, 0.055) 0 1px, transparent 1px 58px);
  opacity: 0.74;
}

.process-style-os .cinema-stage::after {
  inset: 7% 6%;
  border-color: rgba(255, 249, 242, 0.085);
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(255, 249, 242, 0.075) 22.08% 22.22%, transparent 22.34% 100%),
    linear-gradient(90deg, transparent 0 72%, rgba(255, 92, 0, 0.11) 72.08% 72.22%, transparent 72.34% 100%),
    linear-gradient(180deg, transparent 0 44%, rgba(87, 211, 196, 0.1) 44.08% 44.2%, transparent 44.32% 100%),
    repeating-linear-gradient(135deg, transparent 0 62px, rgba(255, 249, 242, 0.04) 62px 63px, transparent 63px 124px);
  opacity: 0.7;
}

.process-style-os .cinema-vignette {
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.62), transparent 15%, transparent 82%, rgba(13, 13, 13, 0.6)),
    linear-gradient(180deg, rgba(13, 13, 13, 0.46), transparent 20%, transparent 78%, rgba(13, 13, 13, 0.66));
}

.process-style-os .cinema-floor {
  background:
    linear-gradient(rgba(255, 92, 0, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 211, 196, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.68;
}

.process-style-os .cinema-wall {
  border-color: rgba(255, 249, 242, 0.1);
  background:
    linear-gradient(rgba(255, 249, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 92, 0, 0.09) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 92, 0, 0.06), transparent);
  background-size: 40px 40px, 40px 40px, auto;
  opacity: 0.58;
}

.process-style-os .cinema-beam {
  background: linear-gradient(transparent, rgba(87, 211, 196, 0.48), rgba(255, 92, 0, 0.72), transparent);
  opacity: 0.54;
}

.process-style-os .cinema-object {
  overflow: hidden;
  border-radius: 8px;
  border-color: rgba(255, 249, 242, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 92, 0, 0.13), rgba(0, 0, 0, 0.42)),
    rgba(10, 9, 8, 0.72);
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.54),
    inset 0 1px 0 rgba(255, 249, 242, 0.15),
    inset 0 -1px 0 rgba(255, 92, 0, 0.18);
  backdrop-filter: blur(18px) saturate(1.2);
}

.process-style-os .cinema-object::before,
.process-style-os .cinema-object::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.process-style-os .cinema-object::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 249, 242, 0.08) 0 1px, transparent 1px 100%) 16px 18px / 42px 100%,
    repeating-linear-gradient(180deg, rgba(255, 249, 242, 0.05) 0 1px, transparent 1px 17px),
    linear-gradient(120deg, transparent 0 48%, rgba(255, 249, 242, 0.12) 48.1% 48.45%, transparent 48.55% 100%);
  opacity: 0.42;
}

.process-style-os .cinema-object::after {
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 0;
  height: 46px;
  border: 1px solid rgba(255, 249, 242, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 92, 0, 0.76) 0 46%, transparent 46% 100%) 0 0 / 100% 3px no-repeat,
    linear-gradient(90deg, rgba(87, 211, 196, 0.46) 0 28%, transparent 28% 100%) 0 14px / 84% 2px no-repeat,
    linear-gradient(90deg, rgba(255, 249, 242, 0.24) 0 62%, transparent 62% 100%) 0 28px / 72% 2px no-repeat;
  opacity: 0.7;
}

.process-style-os .cinema-object span,
.process-style-os .cinema-object strong,
.process-style-os .cinema-object p,
.process-style-os .cinema-object .browser-bar,
.process-style-os .cinema-object .cinema-logo {
  position: relative;
  z-index: 2;
}

.process-style-os .cinema-object span {
  color: #ff7a1a;
  letter-spacing: 0;
}

.process-style-os .cinema-object strong {
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.58);
}

.process-style-os .cinema-object p {
  color: rgba(255, 249, 242, 0.76);
}

.process-style-os .object-brief {
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 92, 0, 0.34), transparent 30%),
    linear-gradient(160deg, rgba(255, 249, 242, 0.12), transparent 42%),
    rgba(7, 7, 7, 0.76);
}

.process-style-os .object-strategy {
  background:
    radial-gradient(circle at 78% 20%, rgba(87, 211, 196, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(255, 92, 0, 0.16), transparent 45%),
    rgba(8, 8, 8, 0.74);
}

.process-style-os .object-strategy::after {
  height: 58px;
  background:
    linear-gradient(90deg, rgba(255, 92, 0, 0.72) 0 18%, transparent 18% 100%) 0 0 / 100% 3px no-repeat,
    linear-gradient(90deg, rgba(255, 249, 242, 0.22) 0 52%, transparent 52% 100%) 0 18px / 92% 2px no-repeat,
    linear-gradient(90deg, rgba(87, 211, 196, 0.5) 0 34%, transparent 34% 100%) 0 35px / 76% 2px no-repeat;
}

.process-style-os .object-identity {
  border-radius: 50%;
  border-color: rgba(255, 92, 0, 0.32);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 92, 0, 0.28), transparent 52%),
    radial-gradient(circle at 50% 50%, rgba(87, 211, 196, 0.08), transparent 70%),
    rgba(6, 6, 6, 0.8);
}

.process-style-os .object-identity::before {
  inset: 13px;
  border-radius: 50%;
  border: 1px solid rgba(255, 249, 242, 0.1);
  background:
    repeating-conic-gradient(from 14deg, rgba(255, 92, 0, 0.22) 0 4deg, transparent 4deg 19deg),
    radial-gradient(circle, transparent 0 58%, rgba(255, 249, 242, 0.08) 58.4% 59.2%, transparent 59.6%);
  opacity: 0.62;
}

.process-style-os .object-identity::after {
  display: none;
}

.process-style-os .cinema-logo {
  filter:
    drop-shadow(0 18px 34px rgba(255, 92, 0, 0.26))
    drop-shadow(0 0 18px rgba(87, 211, 196, 0.1));
}

.process-style-os .object-web {
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.13), transparent 24%),
    linear-gradient(135deg, rgba(255, 92, 0, 0.18), rgba(0, 0, 0, 0.76)),
    rgba(8, 8, 8, 0.8);
}

.process-style-os .object-web::before {
  inset: 58px 20px 20px;
  border-color: rgba(255, 249, 242, 0.13);
  background:
    linear-gradient(90deg, rgba(255, 249, 242, 0.16) 0 24%, transparent 24% 100%),
    linear-gradient(90deg, transparent 0 58%, rgba(255, 92, 0, 0.22) 58% 80%, transparent 80% 100%),
    linear-gradient(rgba(255, 249, 242, 0.12) 1px, transparent 1px);
  background-size: auto, auto, 100% 34px;
  opacity: 0.62;
}

.process-style-os .object-web::after {
  left: auto;
  right: 20px;
  bottom: 22px;
  width: 92px;
  height: 48px;
  border-color: rgba(87, 211, 196, 0.24);
  background:
    linear-gradient(90deg, rgba(87, 211, 196, 0.52) 0 36%, transparent 36% 100%) 0 0 / 100% 3px no-repeat,
    linear-gradient(90deg, rgba(255, 249, 242, 0.18) 0 62%, transparent 62% 100%) 0 16px / 90% 2px no-repeat,
    linear-gradient(90deg, rgba(255, 92, 0, 0.54) 0 46%, transparent 46% 100%) 0 31px / 72% 2px no-repeat;
}

.process-style-os .object-launch {
  background:
    radial-gradient(circle at 70% 24%, rgba(87, 211, 196, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(255, 92, 0, 0.28), transparent 42%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.09), rgba(7, 7, 7, 0.8));
}

.process-style-os .object-launch::after {
  right: 18px;
  bottom: 18px;
  width: 90px;
  height: 72px;
  aspect-ratio: auto;
  border-color: rgba(255, 92, 0, 0.28);
  transform: none;
  background:
    linear-gradient(90deg, rgba(255, 92, 0, 0.68) 0 44%, transparent 44% 100%) 0 0 / 100% 3px no-repeat,
    linear-gradient(90deg, rgba(255, 249, 242, 0.2) 0 72%, transparent 72% 100%) 0 19px / 94% 2px no-repeat,
    linear-gradient(90deg, rgba(87, 211, 196, 0.44) 0 52%, transparent 52% 100%) 0 39px / 74% 2px no-repeat,
    linear-gradient(90deg, rgba(255, 249, 242, 0.14) 0 34%, transparent 34% 100%) 0 58px / 86% 2px no-repeat;
}

.process-style-os .scroll-cinema::before {
  background:
    linear-gradient(180deg, transparent, rgba(23, 39, 58, 0.22) 28%, transparent 76%),
    linear-gradient(90deg, rgba(255, 92, 0, 0.08), transparent 32%, rgba(121, 255, 244, 0.06));
}

.process-style-os .cinema-sticky {
  grid-template-columns: minmax(240px, 0.44fr) minmax(500px, 1.14fr);
  gap: clamp(18px, 3.2vw, 46px);
}

.process-style-os .cinema-stage {
  border-color: rgba(255, 249, 242, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.035), transparent 28%),
    linear-gradient(125deg, rgba(255, 92, 0, 0.075), transparent 32%),
    linear-gradient(180deg, #08111d, #05080f 64%, #040509);
  box-shadow:
    0 40px 140px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 249, 242, 0.08);
}

.process-style-os .cinema-stage::before {
  inset: -12%;
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(121, 255, 244, 0.12) 28.08% 28.18%, transparent 28.32% 100%),
    linear-gradient(62deg, transparent 0 64%, rgba(255, 92, 0, 0.14) 64.08% 64.2%, transparent 64.34% 100%),
    repeating-linear-gradient(0deg, rgba(255, 249, 242, 0.026) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(255, 249, 242, 0.024) 0 1px, transparent 1px 54px);
  opacity: 0.74;
}

.process-style-os .cinema-stage::after {
  inset: 7%;
  border-color: rgba(255, 249, 242, 0.06);
  background:
    linear-gradient(90deg, rgba(255, 92, 0, 0.3) 0 54px, transparent 54px 100%) 0 0 / 100% 2px no-repeat,
    linear-gradient(180deg, rgba(255, 249, 242, 0.045), transparent 46%),
    repeating-linear-gradient(135deg, transparent 0 86px, rgba(121, 255, 244, 0.04) 86px 87px, transparent 87px 172px);
  opacity: 0.68;
}

.process-style-os .cinema-vignette {
  background:
    linear-gradient(90deg, rgba(5, 8, 15, 0.76), transparent 16%, transparent 80%, rgba(5, 8, 15, 0.7)),
    linear-gradient(180deg, rgba(5, 8, 15, 0.46), transparent 24%, transparent 78%, rgba(5, 8, 15, 0.76));
}

.process-style-os .cinema-floor {
  background:
    linear-gradient(rgba(121, 255, 244, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 249, 242, 0.06) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: 0.36;
}

.process-style-os .cinema-wall {
  border-color: rgba(255, 249, 242, 0.055);
  background:
    linear-gradient(rgba(255, 249, 242, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 255, 244, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.28;
}

.process-style-os .cinema-beam {
  background: linear-gradient(transparent, rgba(121, 255, 244, 0.42), rgba(255, 92, 0, 0.5), transparent);
  opacity: 0.3;
}

.process-style-os .cinema-object {
  width: clamp(224px, 20vw, 315px);
  min-height: 348px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow: visible;
  padding: 24px 22px 26px;
  border: 1px solid rgba(255, 249, 242, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.105), rgba(255, 249, 242, 0.025)),
    rgba(19, 23, 31, 0.72);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 249, 242, 0.16),
    inset 0 -1px 0 rgba(255, 249, 242, 0.05);
  backdrop-filter: blur(16px) saturate(1.25);
}

.process-style-os .cinema-object::before,
.process-style-os .object-brief::before,
.process-style-os .object-strategy::before,
.process-style-os .object-identity::before,
.process-style-os .object-web::before,
.process-style-os .object-launch::before {
  inset: 0;
  z-index: 0;
  border: 1px solid rgba(255, 249, 242, 0.075);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 249, 242, 0.16), transparent 24%),
    linear-gradient(180deg, transparent 0 70%, rgba(121, 255, 244, 0.05) 100%);
  opacity: 0.88;
}

.process-style-os .cinema-object::after,
.process-style-os .object-brief::after,
.process-style-os .object-strategy::after,
.process-style-os .object-identity::after,
.process-style-os .object-web::after,
.process-style-os .object-launch::after {
  display: none;
}

.process-style-os .cinema-object span,
.process-style-os .cinema-object strong,
.process-style-os .cinema-object p,
.process-style-os .cinema-object .browser-bar,
.process-style-os .cinema-object .cinema-visual {
  position: relative;
  z-index: 2;
}

.process-style-os .cinema-object span {
  position: absolute;
  top: 16px;
  left: 18px;
  color: rgba(255, 138, 61, 0.94);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0;
}

.process-style-os .cinema-object strong {
  max-width: 14ch;
  color: rgba(255, 249, 242, 0.96);
  font-size: clamp(1.02rem, 1.25vw, 1.38rem);
  line-height: 1.08;
  text-align: center;
  text-transform: none;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.56);
}

.process-style-os .cinema-object p {
  max-width: 28ch;
  color: rgba(255, 249, 242, 0.76);
  font-size: clamp(0.74rem, 0.78vw, 0.88rem);
  line-height: 1.42;
  text-align: center;
}

.process-style-os .cinema-detail {
  display: block;
}

.process-style-os .cinema-visual {
  display: grid;
  position: relative;
  width: min(170px, 78%);
  height: 156px;
  margin: 26px auto 8px;
  place-items: center;
  transform-style: preserve-3d;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.48));
}

.process-style-os .cinema-visual i,
.process-style-os .cinema-visual b,
.process-style-os .cinema-visual em {
  position: absolute;
  display: block;
  font-style: normal;
  transform-style: preserve-3d;
}

.process-style-os .cinema-visual::after {
  position: absolute;
  left: 50%;
  bottom: 12px;
  min-width: 104px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 249, 242, 0.55);
  border-radius: 5px;
  background: rgba(5, 8, 15, 0.88);
  color: #fff9f2;
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(-3deg) translateZ(38px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.34);
}

.process-style-os .visual-audit i {
  width: 92px;
  height: 92px;
  border: 5px solid rgba(255, 249, 242, 0.92);
  border-radius: 50%;
  transform: translate3d(-8px, -12px, 26px) rotate(-16deg);
  box-shadow: inset 0 0 0 7px rgba(41, 103, 255, 0.7);
}

.process-style-os .visual-audit b {
  width: 66px;
  height: 18px;
  border: 2px solid rgba(255, 249, 242, 0.9);
  border-radius: 5px;
  background: #79fff4;
  transform: translate3d(34px, 6px, 46px) rotate(-8deg);
}

.process-style-os .visual-audit em {
  width: 36px;
  height: 56px;
  background: linear-gradient(180deg, #ff8a3d, #ff5c00);
  clip-path: polygon(45% 0, 100% 0, 68% 41%, 100% 41%, 25% 100%, 45% 55%, 0 55%);
  transform: translate3d(-8px, 42px, 58px) rotate(9deg);
}

.process-style-os .visual-audit::after {
  content: "Trust Map";
}

.process-style-os .visual-strategy i,
.process-style-os .visual-strategy b,
.process-style-os .visual-strategy em {
  width: 118px;
  height: 38px;
  border: 5px solid #dfff55;
  border-radius: 50%;
  background: rgba(223, 255, 85, 0.08);
}

.process-style-os .visual-strategy i {
  transform: translate3d(-18px, -28px, 24px) rotate(2deg);
}

.process-style-os .visual-strategy b {
  transform: translate3d(-6px, -10px, 42px) rotate(-5deg);
  border-color: rgba(255, 249, 242, 0.82);
}

.process-style-os .visual-strategy em {
  width: 74px;
  height: 74px;
  border-color: #79fff4;
  background:
    linear-gradient(90deg, transparent 48%, #79fff4 48% 52%, transparent 52%),
    linear-gradient(0deg, transparent 48%, #79fff4 48% 52%, transparent 52%);
  transform: translate3d(40px, 20px, 58px) rotate(18deg);
}

.process-style-os .visual-strategy::after {
  content: "Offer Map";
  color: #79fff4;
}

.process-style-os .object-identity {
  aspect-ratio: auto;
  border-radius: 8px;
  text-align: center;
}

.process-style-os .object-identity > .cinema-logo {
  display: none;
}

.process-style-os .visual-identity img {
  position: relative;
  z-index: 2;
  width: 120px;
  height: auto;
  filter: drop-shadow(0 14px 18px rgba(255, 92, 0, 0.3));
  transform: translate3d(-4px, -10px, 56px) rotate(-2deg);
}

.process-style-os .visual-identity i {
  width: 138px;
  height: 90px;
  border: 2px solid rgba(121, 255, 244, 0.72);
  border-radius: 50%;
  transform: translate3d(-2px, -8px, 18px) rotate(-16deg);
}

.process-style-os .visual-identity b {
  right: 24px;
  top: 22px;
  width: 20px;
  height: 20px;
  background: #dfff55;
  clip-path: polygon(50% 0, 62% 35%, 100% 50%, 62% 65%, 50% 100%, 38% 65%, 0 50%, 38% 35%);
  transform: translateZ(70px);
}

.process-style-os .visual-identity::after {
  content: "Brand Lock";
}

.process-style-os .object-web > .browser-bar {
  position: absolute;
  top: 17px;
  right: 18px;
  left: auto;
}

.process-style-os .object-web > .browser-bar i {
  width: 7px;
  height: 7px;
}

.process-style-os .visual-web i {
  width: 126px;
  height: 88px;
  border: 3px solid rgba(255, 249, 242, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 249, 242, 0.16) 0 28%, transparent 28%),
    linear-gradient(rgba(255, 249, 242, 0.2) 2px, transparent 2px);
  background-size: auto, 100% 26px;
  transform: translate3d(-10px, -12px, 24px) rotate(2deg);
}

.process-style-os .visual-web b {
  width: 76px;
  height: 24px;
  border: 2px solid rgba(5, 8, 15, 0.8);
  border-radius: 6px;
  background: #79fff4;
  transform: translate3d(34px, 28px, 56px) rotate(-7deg);
}

.process-style-os .visual-web em {
  width: 48px;
  height: 48px;
  border: 4px solid #dfff55;
  border-top-color: transparent;
  border-radius: 50%;
  transform: translate3d(52px, -44px, 46px) rotate(24deg);
}

.process-style-os .visual-web::after {
  content: "Sales Path";
  color: #79fff4;
}

.process-style-os .visual-launch i {
  width: 112px;
  height: 82px;
  border: 4px solid rgba(255, 249, 242, 0.9);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 92, 0, 0.78), transparent 54%),
    rgba(255, 249, 242, 0.08);
  transform: translate3d(-8px, -10px, 24px) rotate(-4deg);
}

.process-style-os .visual-launch b {
  width: 78px;
  height: 78px;
  border: 4px solid #2967ff;
  border-radius: 16px;
  background:
    linear-gradient(45deg, transparent 44%, #fff9f2 44% 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, #fff9f2 44% 56%, transparent 56%),
    #1d4bff;
  transform: translate3d(46px, 8px, 58px) rotate(12deg);
}

.process-style-os .visual-launch em {
  width: 86px;
  height: 28px;
  border: 4px solid #dfff55;
  border-top: 0;
  border-right: 0;
  border-radius: 0 0 0 22px;
  transform: translate3d(34px, 48px, 64px) rotate(-16deg);
}

.process-style-os .visual-launch::after {
  content: "Asset Hub";
}

.process-style-os .object-brief,
.process-style-os .object-strategy,
.process-style-os .object-identity,
.process-style-os .object-web,
.process-style-os .object-launch {
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.105), rgba(255, 249, 242, 0.025)),
    rgba(19, 23, 31, 0.72);
}

@media (max-width: 960px) {
  .process-style-os .cinema-sticky {
    grid-template-columns: minmax(260px, 0.58fr) minmax(340px, 1fr);
  }

  .process-style-os .cinema-object {
    width: 220px;
    min-height: 320px;
  }

  .process-style-os .cinema-visual {
    width: 148px;
    height: 138px;
  }
}

@media (max-width: 720px) {
  .process-style-os .cinema-sticky {
    grid-template-columns: 1fr;
  }

  .process-style-os .cinema-object {
    width: 170px;
    min-height: 260px;
    padding: 18px 14px 18px;
  }

  .process-style-os .cinema-visual {
    width: 120px;
    height: 112px;
    margin-top: 22px;
  }

  .process-style-os .cinema-object strong {
    font-size: 0.94rem;
  }

  .process-style-os .cinema-object p {
    font-size: 0.68rem;
  }

  .process-style-os .cinema-visual::after {
    min-width: 84px;
    font-size: 0.62rem;
  }
}

.process-style-os .cinema-stage {
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.025), transparent 32%),
    linear-gradient(120deg, rgba(255, 92, 0, 0.07), transparent 26%),
    linear-gradient(180deg, #07101a, #05070d 68%, #030408);
}

.process-style-os .cinema-stage::before {
  opacity: 0.5;
}

.process-style-os .cinema-stage::after {
  opacity: 0.48;
}

.process-style-os .cinema-object {
  width: clamp(310px, 29vw, 430px);
  min-height: 430px;
  padding: 30px 30px 32px;
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.105), rgba(255, 249, 242, 0.035)),
    rgba(16, 21, 30, 0.7);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 249, 242, 0.16);
}

.process-style-os .cinema-object::before,
.process-style-os .object-brief::before,
.process-style-os .object-strategy::before,
.process-style-os .object-identity::before,
.process-style-os .object-web::before,
.process-style-os .object-launch::before {
  background:
    linear-gradient(135deg, rgba(255, 249, 242, 0.13), transparent 25%),
    linear-gradient(180deg, transparent 0 72%, rgba(255, 249, 242, 0.04) 100%);
}

.process-style-os .cinema-object span {
  top: 22px;
  left: 24px;
  color: rgba(255, 138, 61, 0.88);
}

.process-style-os .cinema-object strong {
  max-width: 16ch;
  font-size: clamp(1.34rem, 1.7vw, 1.88rem);
  line-height: 1.04;
}

.process-style-os .cinema-object p {
  max-width: 34ch;
  font-size: clamp(0.88rem, 0.92vw, 1rem);
  line-height: 1.5;
}

.process-style-os .cinema-visual {
  width: min(214px, 74%);
  height: 178px;
  margin: 32px auto 18px;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.42));
}

.process-style-os .cinema-visual::after {
  display: none;
}

.process-style-os .cinema-visual i,
.process-style-os .cinema-visual b,
.process-style-os .cinema-visual em {
  border-radius: 8px;
  background: transparent;
  clip-path: none;
}

.process-style-os .visual-audit i {
  width: 148px;
  height: 106px;
  border: 1px solid rgba(255, 249, 242, 0.28);
  background:
    linear-gradient(90deg, rgba(255, 249, 242, 0.12) 0 42%, transparent 42% 100%),
    linear-gradient(rgba(255, 249, 242, 0.13) 1px, transparent 1px);
  background-size: auto, 100% 26px;
  transform: translate3d(-8px, -4px, 18px) rotate(-3deg);
}

.process-style-os .visual-audit b {
  width: 76px;
  height: 76px;
  border: 8px solid rgba(121, 255, 244, 0.84);
  border-radius: 50%;
  background: rgba(121, 255, 244, 0.04);
  transform: translate3d(28px, -18px, 48px) rotate(-9deg);
  box-shadow: inset 0 0 0 12px rgba(255, 249, 242, 0.08);
}

.process-style-os .visual-audit em {
  width: 94px;
  height: 16px;
  border: 1px solid rgba(255, 249, 242, 0.42);
  background: linear-gradient(90deg, var(--orange), #ff8a3d);
  transform: translate3d(30px, 52px, 60px) rotate(-17deg);
}

.process-style-os .visual-strategy i {
  width: 150px;
  height: 96px;
  border: 1px solid rgba(255, 249, 242, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 92, 0, 0.18) 0 2px, transparent 2px 100%),
    linear-gradient(180deg, transparent 0 54%, rgba(255, 249, 242, 0.1) 54% 55%, transparent 55% 100%);
  transform: translate3d(-10px, 12px, 16px) rotate(2deg);
}

.process-style-os .visual-strategy b {
  width: 108px;
  height: 40px;
  border: 5px solid rgba(255, 138, 61, 0.72);
  border-radius: 50%;
  transform: translate3d(-8px, -30px, 48px) rotate(-7deg);
}

.process-style-os .visual-strategy em {
  width: 82px;
  height: 82px;
  border: 4px solid rgba(121, 255, 244, 0.8);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(121, 255, 244, 0.82) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(121, 255, 244, 0.82) 49% 51%, transparent 51%);
  transform: translate3d(52px, -2px, 58px) rotate(18deg);
}

.process-style-os .object-identity > .cinema-logo {
  display: none;
}

.process-style-os .visual-identity img {
  width: 136px;
  transform: translate3d(-4px, 0, 48px);
  filter: drop-shadow(0 18px 22px rgba(255, 92, 0, 0.26));
}

.process-style-os .visual-identity i {
  width: 170px;
  height: 104px;
  border: 1px solid rgba(121, 255, 244, 0.58);
  border-radius: 50%;
  transform: translate3d(0, 2px, 18px) rotate(-15deg);
}

.process-style-os .visual-identity b {
  width: 126px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 249, 242, 0.62), transparent);
  transform: translate3d(0, 70px, 50px);
}

.process-style-os .object-web > .browser-bar {
  top: 22px;
  right: 24px;
}

.process-style-os .visual-web i {
  width: 164px;
  height: 112px;
  border: 1px solid rgba(255, 249, 242, 0.28);
  background:
    linear-gradient(90deg, rgba(255, 249, 242, 0.12) 0 25%, transparent 25% 100%),
    linear-gradient(90deg, transparent 0 68%, rgba(255, 92, 0, 0.2) 68% 86%, transparent 86%),
    linear-gradient(rgba(255, 249, 242, 0.13) 1px, transparent 1px);
  background-size: auto, auto, 100% 30px;
  transform: translate3d(-10px, -2px, 18px) rotate(2deg);
}

.process-style-os .visual-web b {
  width: 112px;
  height: 22px;
  border: 1px solid rgba(121, 255, 244, 0.78);
  background: rgba(121, 255, 244, 0.18);
  transform: translate3d(36px, 42px, 50px) rotate(-3deg);
}

.process-style-os .visual-web em {
  width: 54px;
  height: 54px;
  border: 5px solid rgba(255, 138, 61, 0.82);
  border-top-color: rgba(255, 249, 242, 0.26);
  border-radius: 50%;
  transform: translate3d(56px, -42px, 48px) rotate(24deg);
}

.process-style-os .visual-launch i {
  width: 150px;
  height: 108px;
  border: 1px solid rgba(255, 249, 242, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 92, 0, 0.2) 0 2px, transparent 2px 100%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.12) 0 1px, transparent 1px);
  background-size: auto, 100% 34px;
  transform: translate3d(-8px, 0, 18px) rotate(-2deg);
}

.process-style-os .visual-launch b {
  width: 74px;
  height: 74px;
  border: 1px solid rgba(121, 255, 244, 0.72);
  background:
    linear-gradient(45deg, transparent 46%, rgba(121, 255, 244, 0.82) 46% 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, rgba(121, 255, 244, 0.82) 46% 54%, transparent 54%),
    rgba(121, 255, 244, 0.08);
  transform: translate3d(52px, -16px, 48px) rotate(9deg);
}

.process-style-os .visual-launch em {
  width: 118px;
  height: 26px;
  border: 1px solid rgba(255, 138, 61, 0.78);
  background: linear-gradient(90deg, rgba(255, 92, 0, 0.5), rgba(255, 138, 61, 0.12));
  transform: translate3d(22px, 58px, 56px) rotate(-5deg);
}

@media (max-width: 960px) {
  .process-style-os .cinema-object {
    width: 280px;
    min-height: 380px;
  }

  .process-style-os .cinema-visual {
    width: 180px;
    height: 150px;
  }
}

@media (max-width: 720px) {
  .process-style-os .cinema-object {
    width: 220px;
    min-height: 310px;
  }

  .process-style-os .cinema-visual {
    width: 145px;
    height: 124px;
  }

  .process-style-os .cinema-object strong {
    font-size: 1.02rem;
  }
}

.process-style-os .cinema-stage {
  border-color: rgba(255, 249, 242, 0.12);
  background:
    radial-gradient(ellipse at 50% 76%, rgba(255, 249, 242, 0.035), transparent 36%),
    linear-gradient(180deg, #030404 0%, #040505 50%, #010202 100%);
  box-shadow:
    0 46px 140px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 249, 242, 0.09);
}

.process-style-os .cinema-stage::before {
  inset: -8%;
  background:
    radial-gradient(ellipse at 50% 68%, rgba(255, 249, 242, 0.055), transparent 46%),
    linear-gradient(180deg, transparent 0 44%, rgba(255, 249, 242, 0.02), transparent 78%);
  opacity: 0.42;
}

.process-style-os .cinema-stage::after {
  inset: 0;
  border: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.52)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 34%, rgba(0, 0, 0, 0.24));
  opacity: 0.72;
}

.process-style-os .cinema-terrain-background {
  opacity: 0;
  mix-blend-mode: screen;
  filter: contrast(1.16) drop-shadow(0 0 14px rgba(255, 249, 242, 0.05));
  mask-image: linear-gradient(to bottom, transparent 2%, black 13%, black 92%, transparent 100%);
}

.process-style-os .glsl-hills-background {
  opacity: 1;
}

.process-style-os .terrain-band {
  transform-box: view-box;
  transform-origin: 50% 58%;
  will-change: transform;
}

.process-style-os .terrain-band path {
  fill: none;
  stroke: rgba(255, 249, 242, 0.18);
  stroke-width: 1.18;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 62 12 18 22;
  vector-effect: non-scaling-stroke;
  animation: os-terrain-line-flow 28s linear infinite;
}

.process-style-os .terrain-ridge {
  opacity: 0.72;
  filter: blur(0.25px);
}

.process-style-os .terrain-left {
  animation: os-valley-left-drift 28s ease-in-out infinite alternate;
}

.process-style-os .terrain-right {
  animation: os-valley-right-drift 30s ease-in-out infinite alternate;
}

.process-style-os .terrain-ridge path {
  stroke: rgba(255, 249, 242, 0.22);
  stroke-width: 1.2;
}

.process-style-os .terrain-left path:nth-child(2n),
.process-style-os .terrain-right path:nth-child(2n) {
  opacity: 0.56;
  stroke-dasharray: 36 10 12 18;
  animation-duration: 34s;
}

.process-style-os .terrain-left path:nth-child(3n),
.process-style-os .terrain-right path:nth-child(3n) {
  opacity: 0.7;
  stroke-width: 1.55;
}

.process-style-os .terrain-valley {
  opacity: 0.48;
  filter: blur(0.35px);
  animation: os-valley-floor-drift 36s ease-in-out infinite alternate;
}

.process-style-os .terrain-valley path {
  stroke: rgba(255, 249, 242, 0.13);
  stroke-width: 0.95;
  stroke-dasharray: 42 16 10 24;
  animation-duration: 32s;
}

.process-style-os .terrain-valley path:nth-child(3n) {
  opacity: 0.44;
  stroke-dasharray: 22 22;
}

.process-style-os .cinema-vignette {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.78), transparent 18%, transparent 82%, rgba(3, 4, 7, 0.76)),
    linear-gradient(180deg, rgba(3, 4, 7, 0.58), transparent 26%, transparent 76%, rgba(3, 4, 7, 0.78));
}

.process-style-os .cinema-floor {
  opacity: 0.05;
}

.process-style-os .cinema-wall {
  opacity: 0.04;
}

.process-style-os .cinema-beam {
  opacity: 0.08;
}

.process-style-os .cinema-hud {
  display: none;
}

.process-style-os .scroll-cinema {
  min-height: 1160dvh;
}

.process-style-os .cinema-sticky {
  grid-template-columns: minmax(250px, 0.38fr) minmax(520px, 1fr);
  gap: clamp(20px, 3vw, 42px);
}

.process-style-os .cinema-copy {
  max-width: 390px;
  opacity: var(--os-copy-opacity, 1);
  filter: blur(var(--os-copy-blur, 0));
  transform: translate3d(0, var(--os-copy-y, 0), 0);
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-style-os .cinema-copy h2 {
  max-width: 9.4ch;
  font-size: clamp(2.9rem, 5.15vw, 6rem);
  line-height: 0.94;
}

.process-style-os .cinema-copy p:not(.small-label) {
  max-width: 34ch;
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  line-height: 1.5;
}

.process-style-os .cinema-object,
.process-style-os .object-brief,
.process-style-os .object-strategy,
.process-style-os .object-identity,
.process-style-os .object-web,
.process-style-os .object-launch {
  width: clamp(320px, 30vw, 450px);
  min-height: 440px;
  overflow: hidden;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(255, 249, 242, 0.2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 26% 0%, rgba(255, 249, 242, 0.2), transparent 31%),
    radial-gradient(circle at 82% 76%, rgba(var(--story-accent, 255, 92, 0), 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 249, 242, 0.16), rgba(255, 249, 242, 0.045) 36%, rgba(4, 7, 10, 0.72) 100%);
  box-shadow:
    0 48px 130px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 249, 242, 0.035),
    inset 0 1px 0 rgba(255, 249, 242, 0.28),
    inset 0 -1px 0 rgba(var(--story-accent, 255, 92, 0), 0.18),
    inset -22px -32px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(24px) saturate(1.02);
}

.process-style-os .cinema-object::before,
.process-style-os .object-brief::before,
.process-style-os .object-strategy::before,
.process-style-os .object-identity::before,
.process-style-os .object-web::before,
.process-style-os .object-launch::before {
  inset: 10px;
  border: 1px solid rgba(255, 249, 242, 0.105);
  border-radius: 11px;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 249, 242, 0.14), transparent 24%),
    linear-gradient(120deg, rgba(255, 249, 242, 0.075), transparent 30%),
    linear-gradient(180deg, transparent 0 72%, rgba(var(--story-accent, 255, 92, 0), 0.07) 100%);
  opacity: 0.98;
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.12),
    inset 0 0 36px rgba(255, 249, 242, 0.026);
}

.process-style-os .cinema-object span {
  position: relative;
  top: auto;
  left: auto;
  order: 0;
  color: rgba(255, 138, 61, 0.94);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.process-style-os .cinema-visual {
  order: 1;
  width: min(260px, 86%);
  height: 190px;
  margin: 22px auto 8px;
  filter:
    drop-shadow(0 34px 34px rgba(0, 0, 0, 0.54))
    drop-shadow(0 0 18px rgba(var(--story-accent, 255, 92, 0), 0.1));
}

.process-style-os .cinema-object strong {
  order: 2;
  max-width: 13ch;
  color: rgba(255, 249, 242, 0.98);
  font-size: clamp(1.72rem, 2.18vw, 2.55rem);
  font-weight: 950;
  line-height: 0.98;
  text-align: left;
  text-transform: none;
  text-wrap: balance;
}

.process-style-os .cinema-object p {
  order: 3;
  max-width: 30ch;
  color: rgba(255, 249, 242, 0.76);
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  line-height: 1.48;
  text-align: left;
}

.process-style-os .cinema-visual::after {
  display: none;
}

.process-style-os .cinema-visual i,
.process-style-os .cinema-visual b,
.process-style-os .cinema-visual em {
  inset: auto;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  clip-path: none;
  backface-visibility: hidden;
}

.process-style-os .visual-audit i {
  width: 188px;
  height: 118px;
  border: 1px solid rgba(255, 249, 242, 0.38);
  border-radius: 14px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 249, 242, 0.2), transparent 22%),
    linear-gradient(90deg, rgba(255, 249, 242, 0.18) 0 31%, transparent 31% 100%),
    linear-gradient(90deg, rgba(255, 92, 0, 0.48) 0 46%, transparent 46% 100%) 24px 26px / 134px 3px no-repeat,
    linear-gradient(90deg, rgba(121, 255, 244, 0.46) 0 62%, transparent 62% 100%) 24px 56px / 134px 3px no-repeat,
    linear-gradient(90deg, rgba(255, 249, 242, 0.24) 0 78%, transparent 78% 100%) 24px 86px / 134px 3px no-repeat,
    linear-gradient(145deg, rgba(255, 249, 242, 0.18), rgba(255, 249, 242, 0.05) 40%, rgba(3, 5, 8, 0.68));
  transform: translate3d(-20px, 8px, 20px) rotate(-2deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.42),
    inset 10px 0 26px rgba(255, 249, 242, 0.12),
    inset -20px -24px 38px rgba(0, 0, 0, 0.38),
    0 24px 46px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px) saturate(1.08);
}

.process-style-os .visual-audit b {
  width: 90px;
  height: 90px;
  border: 2px solid rgba(255, 249, 242, 0.84);
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 28%, rgba(255, 249, 242, 0.32), transparent 15%),
    radial-gradient(circle at 50% 50%, rgba(255, 92, 0, 0.26), transparent 58%),
    linear-gradient(145deg, rgba(255, 249, 242, 0.14), rgba(121, 255, 244, 0.08) 42%, rgba(0, 0, 0, 0.34));
  transform: translate3d(56px, -18px, 58px);
  box-shadow:
    inset 0 0 0 13px rgba(121, 255, 244, 0.1),
    inset -14px -16px 24px rgba(0, 0, 0, 0.32),
    inset 8px 9px 18px rgba(255, 249, 242, 0.05),
    0 18px 38px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px) saturate(1.05);
}

.process-style-os .visual-audit em {
  width: 94px;
  height: 6px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.9), rgba(255, 249, 242, 0.14) 44%, rgba(0, 0, 0, 0.36)),
    linear-gradient(90deg, transparent, rgba(255, 249, 242, 0.88), transparent);
  transform: translate3d(78px, 52px, 64px) rotate(42deg);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.32);
}

.process-style-os .visual-strategy i {
  width: 198px;
  height: 122px;
  border: 1px solid rgba(255, 249, 242, 0.24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 58% 54%, rgba(121, 255, 244, 0.12), transparent 22%),
    linear-gradient(90deg, transparent 0 50%, rgba(255, 249, 242, 0.12) 50% 50.8%, transparent 50.8% 100%),
    linear-gradient(0deg, transparent 0 54%, rgba(255, 249, 242, 0.1) 54% 54.8%, transparent 54.8% 100%),
    linear-gradient(145deg, rgba(255, 249, 242, 0.12), rgba(255, 249, 242, 0.025) 44%, rgba(2, 5, 7, 0.58));
  transform: translate3d(-2px, 12px, 12px) rotate(1deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.3),
    inset -18px -24px 38px rgba(0, 0, 0, 0.38),
    inset 14px 12px 28px rgba(255, 249, 242, 0.045),
    0 24px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px) saturate(1.05);
}

.process-style-os .visual-strategy b {
  width: 94px;
  height: 74px;
  border: 1px solid rgba(255, 138, 61, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 249, 242, 0.3), transparent 18%),
    linear-gradient(155deg, rgba(255, 138, 61, 0.88), rgba(255, 92, 0, 0.54) 56%, rgba(88, 27, 0, 0.42));
  transform: translate3d(-58px, -18px, 52px) rotate(-8deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.34),
    inset 12px 12px 24px rgba(255, 249, 242, 0.08),
    inset -16px -22px 28px rgba(62, 16, 0, 0.38),
    0 22px 38px rgba(255, 92, 0, 0.2);
}

.process-style-os .visual-strategy em {
  width: 104px;
  height: 104px;
  border: 1px solid rgba(121, 255, 244, 0.78);
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 28%, rgba(255, 249, 242, 0.34), transparent 16%),
    radial-gradient(circle at 50% 50%, rgba(121, 255, 244, 0.16), transparent 54%),
    linear-gradient(90deg, transparent 49%, rgba(121, 255, 244, 0.48) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(121, 255, 244, 0.48) 49% 51%, transparent 51%),
    linear-gradient(145deg, rgba(121, 255, 244, 0.14), rgba(0, 0, 0, 0.26));
  transform: translate3d(58px, -18px, 64px) rotate(10deg);
  box-shadow:
    inset 0 0 0 12px rgba(121, 255, 244, 0.055),
    inset 8px 10px 18px rgba(255, 249, 242, 0.05),
    inset -16px -20px 30px rgba(0, 0, 0, 0.36),
    0 24px 38px rgba(121, 255, 244, 0.14);
  backdrop-filter: blur(12px) saturate(1.05);
}

.process-style-os .visual-identity img {
  position: relative;
  z-index: 3;
  width: 152px;
  height: auto;
  filter:
    drop-shadow(0 18px 24px rgba(255, 92, 0, 0.28))
    drop-shadow(0 0 18px rgba(255, 138, 61, 0.13));
  transform: translate3d(0, 6px, 58px);
}

.process-style-os .visual-identity i {
  width: 192px;
  height: 114px;
  border: 1px solid rgba(255, 138, 61, 0.46);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 92, 0, 0.12), transparent 54%),
    linear-gradient(120deg, rgba(255, 249, 242, 0.08), transparent 42%);
  transform: translate3d(0, 8px, 18px) rotate(-13deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.16),
    0 20px 36px rgba(255, 92, 0, 0.1);
  backdrop-filter: blur(10px) saturate(1.02);
}

.process-style-os .visual-identity b {
  right: auto;
  top: auto;
  width: 150px;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.5), rgba(255, 249, 242, 0.08)),
    linear-gradient(90deg, transparent, rgba(255, 249, 242, 0.48), transparent);
  transform: translate3d(0, 76px, 48px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.24);
}

.process-style-os .object-web > .browser-bar {
  display: none;
}

.process-style-os .visual-web i {
  width: 198px;
  height: 126px;
  border: 1px solid rgba(255, 249, 242, 0.34);
  border-radius: 16px;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 249, 242, 0.18), transparent 18%),
    linear-gradient(90deg, rgba(255, 249, 242, 0.16) 0 24%, transparent 24% 100%),
    linear-gradient(rgba(255, 249, 242, 0.13) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 249, 242, 0.12), rgba(255, 249, 242, 0.025) 38%, rgba(3, 5, 8, 0.62));
  background-size: auto, auto, 100% 31px, auto;
  transform: translate3d(-10px, 4px, 20px) rotate(1deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.34),
    inset 16px 0 26px rgba(255, 249, 242, 0.08),
    inset -18px -24px 34px rgba(0, 0, 0, 0.36),
    0 24px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px) saturate(1.05);
}

.process-style-os .visual-web b {
  width: 128px;
  height: 30px;
  border: 1px solid rgba(121, 255, 244, 0.72);
  border-radius: 999px;
  background:
    radial-gradient(circle at 88% 50%, rgba(121, 255, 244, 0.95) 0 4px, transparent 5px),
    linear-gradient(145deg, rgba(121, 255, 244, 0.3), rgba(121, 255, 244, 0.1) 52%, rgba(0, 0, 0, 0.24));
  transform: translate3d(42px, 50px, 60px) rotate(-2deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.28),
    inset -8px -10px 14px rgba(0, 0, 0, 0.2),
    0 16px 28px rgba(121, 255, 244, 0.14);
  backdrop-filter: blur(8px) saturate(1.08);
}

.process-style-os .visual-web em {
  width: 76px;
  height: 62px;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.18), rgba(255, 249, 242, 0.035)),
    linear-gradient(90deg, rgba(255, 92, 0, 0.18), rgba(255, 138, 61, 0.42));
  border: 1px solid rgba(255, 138, 61, 0.56);
  transform: translate3d(46px, -32px, 66px) rotate(8deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.28),
    inset 10px 9px 18px rgba(255, 249, 242, 0.04),
    inset -12px -14px 22px rgba(255, 92, 0, 0.2),
    0 20px 32px rgba(255, 92, 0, 0.14);
  backdrop-filter: blur(10px) saturate(1.04);
}

.process-style-os .visual-launch i {
  width: 108px;
  height: 126px;
  border: 1px solid rgba(255, 249, 242, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 76% 14%, rgba(255, 249, 242, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.13) 0 22px, transparent 22px),
    linear-gradient(90deg, rgba(255, 249, 242, 0.18) 0 34%, transparent 34%),
    linear-gradient(90deg, rgba(121, 255, 244, 0.34) 0 62%, transparent 62%) 20px 46px / 66px 4px no-repeat,
    linear-gradient(90deg, rgba(255, 249, 242, 0.2) 0 80%, transparent 80%) 20px 64px / 66px 3px no-repeat,
    linear-gradient(145deg, rgba(255, 249, 242, 0.13), rgba(255, 249, 242, 0.035) 42%, rgba(0, 0, 0, 0.56));
  transform: translate3d(-58px, 4px, 48px) rotate(-12deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.3),
    inset 12px 12px 24px rgba(255, 249, 242, 0.05),
    inset -14px -18px 28px rgba(0, 0, 0, 0.38),
    0 24px 40px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px) saturate(1.04);
}

.process-style-os .visual-launch b {
  width: 112px;
  height: 138px;
  border: 1px solid rgba(255, 249, 242, 0.38);
  border-radius: 20px;
  background:
    radial-gradient(circle at 76% 12%, rgba(255, 249, 242, 0.2), transparent 16%),
    linear-gradient(90deg, rgba(255, 92, 0, 0.9) 0 22%, rgba(255, 138, 61, 0.62) 22% 42%, rgba(121, 255, 244, 0.48) 42% 61%, rgba(255, 249, 242, 0.23) 61% 78%, transparent 78%),
    linear-gradient(90deg, rgba(255, 249, 242, 0.32) 0 68%, transparent 68%) 22px 68px / 68px 3px no-repeat,
    linear-gradient(90deg, rgba(255, 249, 242, 0.2) 0 82%, transparent 82%) 22px 84px / 68px 2px no-repeat,
    linear-gradient(90deg, rgba(255, 249, 242, 0.14) 0 58%, transparent 58%) 22px 98px / 68px 2px no-repeat,
    linear-gradient(145deg, rgba(255, 249, 242, 0.18), rgba(255, 249, 242, 0.045) 42%, rgba(3, 5, 8, 0.48));
  transform: translate3d(-6px, -16px, 76px) rotate(-1deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.38),
    inset 12px 10px 22px rgba(255, 249, 242, 0.06),
    inset -15px -18px 28px rgba(0, 0, 0, 0.34),
    0 28px 48px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(255, 92, 0, 0.1);
  backdrop-filter: blur(12px) saturate(1.08);
}

.process-style-os .visual-launch em {
  width: 104px;
  height: 122px;
  border: 1px solid rgba(121, 255, 244, 0.4);
  border-radius: 18px;
  background:
    radial-gradient(circle at 20px 18px, rgba(255, 92, 0, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 36px 18px, rgba(255, 249, 242, 0.52) 0 3px, transparent 4px),
    linear-gradient(90deg, rgba(255, 249, 242, 0.13) 0 30%, transparent 30%),
    linear-gradient(90deg, rgba(121, 255, 244, 0.34) 0 68%, transparent 68%) 22px 52px / 62px 4px no-repeat,
    linear-gradient(90deg, rgba(255, 249, 242, 0.22) 0 86%, transparent 86%) 22px 70px / 62px 3px no-repeat,
    linear-gradient(145deg, rgba(121, 255, 244, 0.11), rgba(255, 249, 242, 0.045) 42%, rgba(0, 0, 0, 0.46));
  transform: translate3d(58px, 0, 58px) rotate(12deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.26),
    inset -12px -14px 22px rgba(0, 0, 0, 0.28),
    0 20px 34px rgba(121, 255, 244, 0.12);
  backdrop-filter: blur(10px) saturate(1.06);
}

.process-style-os .visual-launch::before,
.process-style-os .visual-launch::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 51%;
  z-index: -1;
  width: 244px;
  height: 114px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-10deg);
}

.process-style-os .visual-launch::before {
  border: 1px solid rgba(121, 255, 244, 0.24);
  box-shadow:
    0 0 24px rgba(121, 255, 244, 0.09),
    inset 0 0 28px rgba(255, 92, 0, 0.08);
  opacity: 0.78;
}

.process-style-os .visual-launch::after {
  display: block;
  border: 1px solid transparent;
  background:
    conic-gradient(from 205deg, transparent 0 15%, rgba(255, 92, 0, 0.9) 18%, rgba(121, 255, 244, 0.72) 24%, transparent 32% 100%) border-box;
  mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.84;
  filter:
    drop-shadow(0 0 10px rgba(255, 92, 0, 0.32))
    drop-shadow(0 0 16px rgba(121, 255, 244, 0.18));
}

.process-style-os .visual-launch i,
.process-style-os .visual-launch b,
.process-style-os .visual-launch em {
  z-index: 1;
}

@media (max-width: 960px) {
  .process-style-os .cinema-sticky {
    grid-template-columns: minmax(230px, 0.4fr) minmax(360px, 1fr);
  }

  .process-style-os .cinema-copy h2 {
    max-width: 9ch;
    font-size: clamp(2.35rem, 5.6vw, 4.4rem);
  }

  .process-style-os .cinema-object,
  .process-style-os .object-brief,
  .process-style-os .object-strategy,
  .process-style-os .object-identity,
  .process-style-os .object-web,
  .process-style-os .object-launch {
    width: 285px;
    min-height: 392px;
    padding: 26px;
  }

  .process-style-os .cinema-visual {
    width: 184px;
    height: 150px;
    margin-top: 18px;
  }

  .process-style-os .cinema-object strong {
    font-size: 1.46rem;
  }

  .process-style-os .cinema-object p {
    font-size: 0.9rem;
  }
}

@media (max-width: 720px) {
  .process-style-os .cinema-sticky {
    grid-template-columns: 1fr;
  }

  .process-style-os .cinema-copy {
    max-width: 100%;
  }

  .process-style-os .cinema-copy h2 {
    max-width: 10ch;
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .process-style-os .scroll-cinema {
    min-height: 980dvh;
  }

  .process-style-os .cinema-object,
  .process-style-os .object-brief,
  .process-style-os .object-strategy,
  .process-style-os .object-identity,
  .process-style-os .object-web,
  .process-style-os .object-launch {
    width: 236px;
    min-height: 330px;
    padding: 22px;
  }

  .process-style-os .cinema-visual {
    width: 142px;
    height: 116px;
    margin-top: 12px;
  }

  .process-style-os .cinema-object strong {
    font-size: 1.08rem;
  }

  .process-style-os .cinema-object p {
    font-size: 0.76rem;
  }
}

.process-style-os .cinema-stage[data-story-step="1"] {
  --story-accent: 255, 92, 0;
  --story-secondary: 121, 255, 244;
}

.process-style-os .cinema-stage[data-story-step="2"] {
  --story-accent: 121, 255, 244;
  --story-secondary: 255, 138, 61;
}

.process-style-os .cinema-stage[data-story-step="3"] {
  --story-accent: 255, 138, 61;
  --story-secondary: 255, 249, 242;
}

.process-style-os .cinema-stage[data-story-step="4"] {
  --story-accent: 255, 249, 242;
  --story-secondary: 255, 92, 0;
}

.process-style-os .cinema-stage[data-story-step="5"] {
  --story-accent: 255, 92, 0;
  --story-secondary: 121, 255, 244;
}

.process-style-os .cinema-stage[data-story-step]::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.52)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 34%, rgba(0, 0, 0, 0.24));
}

@keyframes os-valley-left-drift {
  from {
    transform: translate3d(-28px, -8px, 0) scale(1.05);
  }

  to {
    transform: translate3d(24px, 10px, 0) scale(1.08);
  }
}

@keyframes os-valley-right-drift {
  from {
    transform: translate3d(30px, -10px, 0) scale(1.06);
  }

  to {
    transform: translate3d(-26px, 12px, 0) scale(1.09);
  }
}

@keyframes os-valley-floor-drift {
  from {
    transform: translate3d(18px, 8px, 0) scale(1.02);
  }

  to {
    transform: translate3d(-24px, -6px, 0) scale(1.055);
  }
}

@keyframes os-terrain-line-flow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -240;
  }
}

.process-style-os .cinema-world::before,
.process-style-os .cinema-world::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
  transform-style: preserve-3d;
}

.process-style-os .cinema-world::before {
  width: 620px;
  height: 620px;
  border: 1px solid rgba(var(--story-accent, 255, 92, 0), 0.16);
  border-radius: 50%;
  opacity: 0.58;
  transform: translate3d(-50%, -50%, 70px) rotateX(72deg) rotateZ(var(--os-orbit-rotation, 0deg));
}

.process-style-os .cinema-world::after {
  width: 420px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--story-accent, 255, 92, 0), 0.52), transparent);
  opacity: var(--os-beam-opacity, 0.16);
  transform: translate3d(-50%, -50%, 260px) rotateZ(var(--os-beam-rotation, -18deg));
}

.process-style-os .cinema-object {
  transition:
    border-color 680ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 680ms cubic-bezier(0.22, 1, 0.36, 1),
    background 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-style-os .cinema-object.is-active {
  border-color: rgba(var(--story-accent, 255, 92, 0), 0.34);
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.58),
    0 0 46px rgba(var(--story-accent, 255, 92, 0), 0.12),
    inset 0 1px 0 rgba(255, 249, 242, 0.2),
    inset 0 -1px 0 rgba(var(--story-accent, 255, 92, 0), 0.18);
}

.process-style-os .cinema-object.is-leaving {
  border-color: rgba(255, 249, 242, 0.09);
}

.process-style-os .cinema-object.is-entering {
  border-color: rgba(var(--story-secondary, 121, 255, 244), 0.3);
}

.process-style-os .cinema-visual i::before,
.process-style-os .cinema-visual i::after,
.process-style-os .cinema-visual b::before,
.process-style-os .cinema-visual b::after,
.process-style-os .cinema-visual em::before,
.process-style-os .cinema-visual em::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.process-style-os .visual-audit i {
  overflow: hidden;
}

.process-style-os .visual-audit i::before {
  left: 10px;
  top: 8px;
  width: 54px;
  height: 94px;
  border-radius: 10px;
  background:
    linear-gradient(110deg, rgba(255, 249, 242, 0.22), transparent 46%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.08), transparent);
  opacity: 0.58;
}

.process-style-os .visual-audit i::after {
  inset: -4px 0 auto;
  height: 22px;
  background:
    linear-gradient(180deg, transparent, rgba(121, 255, 244, 0.56), transparent),
    linear-gradient(90deg, transparent, rgba(255, 249, 242, 0.38), transparent);
  opacity: 0;
  transform: translateY(-28px);
}

.process-style-os .visual-audit b::before {
  left: 15px;
  top: 11px;
  width: 34px;
  height: 14px;
  border-radius: 50%;
  border-top: 2px solid rgba(255, 249, 242, 0.8);
  transform: rotate(-20deg);
  opacity: 0.78;
}

.process-style-os .visual-audit b::after {
  inset: 50% auto auto 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #fff9f2, rgba(255, 92, 0, 0.92) 32%, rgba(255, 92, 0, 0.7));
  box-shadow: 0 0 30px rgba(255, 92, 0, 0.82);
  transform: translate(-50%, -50%);
}

.process-style-os .object-brief.is-active .visual-audit i::after {
  animation: audit-scan 3.8s ease-in-out infinite;
}

.process-style-os .object-brief.is-active .visual-audit b {
  animation: audit-lens 3.8s ease-in-out infinite;
}

.process-style-os .object-brief.is-active .visual-audit em {
  animation: audit-callout 3.8s ease-in-out infinite;
}

.process-style-os .visual-strategy i::before,
.process-style-os .visual-strategy i::after {
  border-radius: 999px;
}

.process-style-os .visual-strategy i::before {
  left: 50%;
  top: 56%;
  width: 118px;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 138, 61, 0.18), rgba(255, 138, 61, 0.9) 36%, rgba(121, 255, 244, 0.9) 72%, rgba(121, 255, 244, 0.18));
  box-shadow: 0 0 20px rgba(121, 255, 244, 0.26);
  transform: translate(-50%, -50%) rotate(-9deg);
  transform-origin: center;
}

.process-style-os .visual-strategy i::after {
  left: 50%;
  top: 56%;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle at 35% 32%, #fff9f2, rgba(255, 92, 0, 0.94) 35%, rgba(255, 92, 0, 0.64));
  box-shadow:
    0 0 34px rgba(255, 92, 0, 0.74),
    0 0 24px rgba(121, 255, 244, 0.22);
  transform: translate(-50%, -50%);
}

.process-style-os .visual-strategy b::before {
  left: 17px;
  right: 17px;
  top: 22px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.72);
  box-shadow:
    0 14px 0 rgba(255, 249, 242, 0.32),
    0 28px 0 rgba(255, 249, 242, 0.2);
}

.process-style-os .visual-strategy b::after {
  right: -12px;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, rgba(255, 249, 242, 0.85), rgba(255, 92, 0, 0.9) 38%, rgba(255, 92, 0, 0.5));
  transform: translateY(-50%);
  box-shadow: 0 0 24px rgba(255, 92, 0, 0.46);
}

.process-style-os .visual-strategy em::before {
  inset: 14px;
  border: 1px solid rgba(121, 255, 244, 0.32);
  border-radius: 50%;
}

.process-style-os .visual-strategy em::after {
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(121, 255, 244, 0.95);
  box-shadow: 0 0 28px rgba(121, 255, 244, 0.72);
  transform: translate(-50%, -50%);
}

.process-style-os .visual-strategy b,
.process-style-os .visual-strategy em {
  transition: transform 320ms ease;
}

.process-style-os .object-strategy.is-active .visual-strategy b {
  animation: strategy-ring-left 4.2s ease-in-out infinite;
}

.process-style-os .object-strategy.is-active .visual-strategy em {
  animation: strategy-ring-right 4.2s ease-in-out infinite;
}

.process-style-os .object-strategy.is-active .visual-strategy i::before {
  animation: strategy-bridge 4.2s ease-in-out infinite;
}

.process-style-os .object-strategy.is-active .visual-strategy i::after,
.process-style-os .object-strategy.is-active .visual-strategy em::after {
  animation: strategy-node 4.2s ease-in-out infinite;
}

.process-style-os .visual-identity i {
  transform-origin: 50% 50%;
}

.process-style-os .visual-identity b {
  overflow: hidden;
}

.process-style-os .visual-identity b::after {
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 249, 242, 0.78), transparent);
}

.process-style-os .object-identity.is-active .visual-identity img {
  animation: identity-lock 4s ease-in-out infinite;
}

.process-style-os .object-identity.is-active .visual-identity i {
  animation: identity-orbit 5.8s linear infinite;
}

.process-style-os .object-identity.is-active .visual-identity b::after {
  animation: identity-baseline 4s ease-in-out infinite;
}

.process-style-os .visual-web i {
  overflow: hidden;
}

.process-style-os .visual-web i::before {
  left: 0;
  right: 0;
  top: 0;
  height: 26px;
  border-bottom: 1px solid rgba(255, 249, 242, 0.12);
  border-radius: 16px 16px 0 0;
  background:
    radial-gradient(circle at 16px 13px, rgba(255, 92, 0, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 32px 13px, rgba(255, 249, 242, 0.55) 0 3px, transparent 4px),
    radial-gradient(circle at 48px 13px, rgba(121, 255, 244, 0.55) 0 3px, transparent 4px),
    linear-gradient(180deg, rgba(255, 249, 242, 0.14), rgba(255, 249, 242, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.18),
    0 30px 0 rgba(255, 249, 242, 0.08),
    0 60px 0 rgba(255, 249, 242, 0.055);
}

.process-style-os .visual-web i::after {
  left: 26%;
  top: 0;
  width: 24%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 249, 242, 0.2), transparent);
  transform: translateX(-140%);
}

.process-style-os .visual-web b::after {
  inset: 50% 12px auto auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(121, 255, 244, 0.9);
  box-shadow: 0 0 18px rgba(121, 255, 244, 0.72);
  transform: translateY(-50%);
}

.process-style-os .visual-web em::before {
  left: 12px;
  right: 12px;
  top: 14px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.62);
  box-shadow:
    0 14px 0 rgba(255, 249, 242, 0.24),
    0 28px 0 rgba(255, 249, 242, 0.14);
}

.process-style-os .visual-web em::after {
  right: 10px;
  bottom: 9px;
  width: 24px;
  height: 20px;
  border-radius: 6px;
  background: rgba(255, 92, 0, 0.56);
  box-shadow: -30px 0 0 rgba(121, 255, 244, 0.2);
}

.process-style-os .object-web.is-active .visual-web i::after {
  animation: web-sweep 4.1s ease-in-out infinite;
}

.process-style-os .object-web.is-active .visual-web b {
  animation: web-cta 4.1s ease-in-out infinite;
}

.process-style-os .object-web.is-active .visual-web em {
  animation: web-path 4.1s ease-in-out infinite;
}

.process-style-os .visual-launch i::before,
.process-style-os .visual-launch i::after {
  border: 1px solid rgba(255, 249, 242, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.08), rgba(255, 249, 242, 0.02));
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.18),
    0 12px 22px rgba(0, 0, 0, 0.18);
}

.process-style-os .visual-launch i::before {
  left: 16px;
  top: 14px;
  width: 72px;
  height: 20px;
  border-color: rgba(255, 249, 242, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12px 10px, rgba(255, 92, 0, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 26px 10px, rgba(255, 249, 242, 0.5) 0 3px, transparent 4px),
    radial-gradient(circle at 40px 10px, rgba(121, 255, 244, 0.54) 0 3px, transparent 4px),
    linear-gradient(145deg, rgba(255, 249, 242, 0.1), rgba(255, 249, 242, 0.02));
}

.process-style-os .visual-launch i::after {
  left: 20px;
  bottom: 18px;
  width: 66px;
  height: 18px;
  border-color: rgba(121, 255, 244, 0.36);
  border-radius: 999px;
  background:
    radial-gradient(circle at 82% 50%, rgba(121, 255, 244, 0.9) 0 3px, transparent 4px),
    linear-gradient(90deg, rgba(121, 255, 244, 0.26), rgba(121, 255, 244, 0.08));
}

.process-style-os .visual-launch b::before {
  left: 24px;
  top: 22px;
  width: 58px;
  height: 42px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 92, 0, 0.95) 0 4px, transparent 5px),
    linear-gradient(62deg, transparent 0 33%, rgba(255, 92, 0, 0.88) 34% 55%, transparent 56%),
    linear-gradient(118deg, transparent 0 34%, rgba(255, 138, 61, 0.86) 35% 55%, transparent 56%),
    linear-gradient(145deg, rgba(255, 249, 242, 0.14), rgba(255, 249, 242, 0.02));
  filter: drop-shadow(0 9px 15px rgba(255, 92, 0, 0.18));
}

.process-style-os .visual-launch b::after {
  left: 24px;
  bottom: 20px;
  width: 60px;
  height: 9px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 92, 0, 0.92) 0 22%, rgba(255, 138, 61, 0.78) 22% 44%, rgba(121, 255, 244, 0.6) 44% 66%, rgba(255, 249, 242, 0.38) 66% 88%, transparent 88%);
}

.process-style-os .visual-launch em::before {
  left: 22px;
  top: 26px;
  width: 60px;
  height: 38px;
  border: 1px solid rgba(255, 138, 61, 0.42);
  border-radius: 12px;
  background:
    linear-gradient(135deg, transparent 0 45%, rgba(255, 249, 242, 0.22) 46% 53%, transparent 54%),
    linear-gradient(45deg, transparent 0 45%, rgba(255, 249, 242, 0.16) 46% 53%, transparent 54%),
    linear-gradient(145deg, rgba(255, 138, 61, 0.18), rgba(255, 249, 242, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.2),
    0 12px 22px rgba(0, 0, 0, 0.24);
}

.process-style-os .visual-launch em::after {
  right: 18px;
  bottom: 18px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(121, 255, 244, 0.44);
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 28%, rgba(121, 255, 244, 0.72) 0 4px, transparent 5px),
    linear-gradient(135deg, rgba(255, 249, 242, 0.18), transparent 44%),
    linear-gradient(145deg, rgba(121, 255, 244, 0.14), rgba(255, 249, 242, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.22),
    0 14px 24px rgba(0, 0, 0, 0.26);
}

.process-style-os .object-launch.is-active .visual-launch i::before {
  animation: launch-tile-a 4.25s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.process-style-os .object-launch.is-active .visual-launch i::after {
  animation: launch-tile-b 4.25s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.process-style-os .object-launch.is-active .visual-launch::before {
  animation: launch-loop-glow 5.2s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.process-style-os .object-launch.is-active .visual-launch::after {
  animation: launch-loop-spin 5.2s linear infinite;
}

.process-style-os .object-launch.is-active .visual-launch i {
  animation: launch-card-web 4.25s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.process-style-os .object-launch.is-active .visual-launch b {
  animation: launch-module 4.25s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.process-style-os .object-launch.is-active .visual-launch em {
  animation: launch-status 4.25s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

@keyframes audit-scan {
  0%,
  12% {
    opacity: 0;
    transform: translateY(-26px);
  }

  32%,
  70% {
    opacity: 1;
  }

  86%,
  100% {
    opacity: 0;
    transform: translateY(118px);
  }
}

@keyframes audit-lens {
  0%,
  100% {
    transform: translate3d(56px, -18px, 58px) scale(1);
  }

  42% {
    transform: translate3d(42px, -7px, 64px) scale(1.04);
  }

  68% {
    transform: translate3d(66px, 4px, 62px) scale(1.02);
  }
}

@keyframes audit-callout {
  0%,
  22% {
    opacity: 0.42;
  }

  48%,
  78% {
    opacity: 1;
  }

  100% {
    opacity: 0.42;
  }
}

@keyframes strategy-ring-left {
  0%,
  100% {
    transform: translate3d(-58px, -18px, 52px) rotate(-8deg);
  }

  50% {
    transform: translate3d(-38px, -10px, 62px) rotate(-3deg) scale(1.035);
  }
}

@keyframes strategy-ring-right {
  0%,
  100% {
    transform: translate3d(58px, -18px, 64px) rotate(10deg);
  }

  50% {
    transform: translate3d(38px, -10px, 72px) rotate(3deg) scale(1.035);
  }
}

@keyframes strategy-bridge {
  0%,
  100% {
    opacity: 0.52;
    transform: translate(-50%, -50%) rotate(-9deg) scaleX(0.7);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-9deg) scaleX(1.05);
  }
}

@keyframes strategy-node {
  0%,
  100% {
    opacity: 0.58;
    transform: translate(-50%, -50%) scale(0.86);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.22);
  }
}

@keyframes identity-lock {
  0%,
  100% {
    transform: translate3d(0, 6px, 58px) scale(1);
  }

  46% {
    transform: translate3d(0, -2px, 64px) scale(1.045);
  }
}

@keyframes identity-orbit {
  from {
    transform: translate3d(0, 8px, 18px) rotate(-13deg);
  }

  to {
    transform: translate3d(0, 8px, 18px) rotate(347deg);
  }
}

@keyframes identity-baseline {
  0%,
  18% {
    width: 0;
  }

  54%,
  100% {
    width: 100%;
  }
}

@keyframes web-sweep {
  0%,
  16% {
    transform: translateX(-140%);
  }

  58%,
  100% {
    transform: translateX(360%);
  }
}

@keyframes web-cta {
  0%,
  100% {
    transform: translate3d(42px, 50px, 60px) rotate(-2deg);
  }

  52% {
    transform: translate3d(34px, 44px, 70px) rotate(-2deg) scale(1.045);
  }
}

@keyframes web-path {
  0%,
  100% {
    opacity: 0.72;
    transform: translate3d(46px, -32px, 66px) rotate(8deg) scale(0.94);
  }

  58% {
    opacity: 1;
    transform: translate3d(34px, -28px, 76px) rotate(4deg) scale(1.02);
  }
}

@keyframes launch-tile-a {
  0%,
  100% {
    transform: translateX(-8px);
    opacity: 0.58;
  }

  48% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes launch-tile-b {
  0%,
  100% {
    transform: translateX(-8px) scaleX(0.74);
    transform-origin: left center;
    opacity: 0.56;
  }

  48% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes launch-loop-glow {
  0%,
  100% {
    opacity: 0.44;
    transform: translate(-50%, -50%) rotate(-10deg) scale(0.94);
  }

  52% {
    opacity: 0.9;
    transform: translate(-50%, -50%) rotate(-10deg) scale(1.02);
  }
}

@keyframes launch-loop-spin {
  from {
    transform: translate(-50%, -50%) rotate(-10deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(350deg);
  }
}

@keyframes launch-card-web {
  0%,
  100% {
    transform: translate3d(-84px, 18px, 42px) rotate(-18deg) scale(0.92);
    opacity: 0.68;
  }

  50% {
    transform: translate3d(-58px, 4px, 48px) rotate(-12deg) scale(1.02);
    opacity: 1;
  }

  74% {
    transform: translate3d(-58px, 4px, 48px) rotate(-12deg) scale(1);
    opacity: 1;
  }
}

@keyframes launch-module {
  0%,
  100% {
    transform: translate3d(-6px, -34px, 76px) rotate(-4deg) scale(0.94);
    opacity: 0.76;
  }

  50% {
    transform: translate3d(-6px, -16px, 76px) rotate(-1deg) scale(1.045);
    opacity: 1;
  }

  72% {
    transform: translate3d(-6px, -16px, 76px) rotate(-1deg) scale(1);
    opacity: 1;
  }
}

@keyframes launch-status {
  0%,
  100% {
    transform: translate3d(84px, 18px, 52px) rotate(18deg) scale(0.92);
    opacity: 0.66;
  }

  55% {
    transform: translate3d(58px, 0, 58px) rotate(12deg) scale(1.03);
    opacity: 1;
  }

  78% {
    transform: translate3d(58px, 0, 58px) rotate(12deg) scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-style-os .cinema-terrain-background *,
  .process-style-os .cinema-object.is-active .cinema-visual *,
  .process-style-os .cinema-object.is-active .cinema-visual *::before,
  .process-style-os .cinema-object.is-active .cinema-visual *::after {
    animation: none !important;
  }
}

.process-style-deck .cinema-stage {
  border-color: rgba(255, 249, 242, 0.14);
  background:
    linear-gradient(140deg, rgba(255, 249, 242, 0.06), transparent 32%),
    linear-gradient(100deg, transparent 0 52%, rgba(255, 92, 0, 0.14) 74%, transparent 100%),
    linear-gradient(180deg, rgba(24, 18, 14, 0.94), rgba(8, 8, 8, 0.96));
  box-shadow:
    0 40px 140px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 249, 242, 0.09);
}

.process-style-deck .cinema-stage::before {
  inset: -14%;
  background:
    linear-gradient(120deg, transparent 0 22%, rgba(255, 249, 242, 0.09) 22.08% 22.22%, transparent 22.34% 100%),
    linear-gradient(58deg, transparent 0 70%, rgba(255, 92, 0, 0.18) 70.08% 70.22%, transparent 70.34% 100%),
    repeating-linear-gradient(0deg, rgba(255, 249, 242, 0.025) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(255, 92, 0, 0.04) 0 1px, transparent 1px 72px);
  opacity: 0.6;
}

.process-style-deck .cinema-stage::after {
  inset: 8% 7%;
  border-color: rgba(255, 249, 242, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 92, 0, 0.22) 0 11%, transparent 11% 100%) 0 0 / 100% 2px no-repeat,
    linear-gradient(90deg, transparent 0 64%, rgba(255, 249, 242, 0.1) 64.08% 64.22%, transparent 64.34% 100%),
    repeating-linear-gradient(180deg, transparent 0 68px, rgba(255, 249, 242, 0.035) 68px 69px, transparent 69px 136px);
  opacity: 0.58;
}

.process-style-deck .cinema-vignette {
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.66), transparent 20%, transparent 80%, rgba(13, 13, 13, 0.58)),
    linear-gradient(180deg, rgba(13, 13, 13, 0.42), transparent 22%, transparent 78%, rgba(13, 13, 13, 0.72));
}

.process-style-deck .cinema-floor {
  background:
    linear-gradient(rgba(255, 92, 0, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 249, 242, 0.07) 1px, transparent 1px);
  background-size: 66px 66px;
  opacity: 0.44;
}

.process-style-deck .cinema-wall {
  border-color: rgba(255, 249, 242, 0.07);
  background:
    linear-gradient(rgba(255, 249, 242, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 92, 0, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.32;
}

.process-style-deck .cinema-beam {
  opacity: 0.22;
}

.process-style-deck .cinema-object {
  width: clamp(235px, 22vw, 380px);
  min-height: 246px;
  overflow: hidden;
  border-radius: 8px;
  border-color: rgba(255, 249, 242, 0.2);
  background:
    linear-gradient(150deg, rgba(255, 249, 242, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(31, 24, 20, 0.96), rgba(12, 10, 9, 0.95));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 249, 242, 0.14),
    inset 0 -1px 0 rgba(255, 92, 0, 0.16);
}

.process-style-deck .cinema-object::before,
.process-style-deck .cinema-object::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.process-style-deck .cinema-object::before {
  inset: 10px;
  z-index: 0;
  border: 1px solid rgba(255, 249, 242, 0.08);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255, 92, 0, 0.4) 0 2px, transparent 2px 100%),
    linear-gradient(180deg, transparent 0 58%, rgba(255, 249, 242, 0.055) 58% 58.6%, transparent 58.8% 100%),
    linear-gradient(90deg, transparent 0 62%, rgba(255, 249, 242, 0.045) 62% 62.6%, transparent 62.8% 100%);
  opacity: 0.9;
}

.process-style-deck .cinema-object::after {
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 0;
  height: 2px;
  border: 0;
  background: linear-gradient(90deg, var(--orange) 0 34%, rgba(255, 249, 242, 0.18) 34% 100%);
  opacity: 0.9;
}

.process-style-deck .cinema-object span,
.process-style-deck .cinema-object strong,
.process-style-deck .cinema-object p,
.process-style-deck .cinema-object .browser-bar,
.process-style-deck .cinema-object .cinema-logo {
  position: relative;
  z-index: 2;
}

.process-style-deck .cinema-object span {
  color: var(--orange-2);
  font-size: 0.82rem;
  line-height: 1;
}

.process-style-deck .cinema-object strong {
  max-width: 9.5ch;
  color: var(--ink);
  font-size: clamp(1.68rem, 2.45vw, 3rem);
  line-height: 0.9;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.44);
}

.process-style-deck .cinema-object p {
  max-width: 27ch;
  color: rgba(255, 249, 242, 0.78);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
}

.process-style-deck .object-brief {
  background:
    linear-gradient(135deg, rgba(255, 92, 0, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(28, 22, 18, 0.98), rgba(9, 8, 7, 0.96));
}

.process-style-deck .object-brief::before {
  background:
    linear-gradient(90deg, rgba(255, 92, 0, 0.55) 0 2px, transparent 2px 100%),
    linear-gradient(180deg, transparent 0 40%, rgba(255, 249, 242, 0.07) 40% 40.5%, transparent 40.8% 100%),
    linear-gradient(180deg, transparent 0 64%, rgba(255, 249, 242, 0.045) 64% 64.5%, transparent 64.8% 100%);
}

.process-style-deck .object-strategy {
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(39, 26, 19, 0.98), rgba(10, 8, 7, 0.96));
}

.process-style-deck .object-strategy::after {
  height: 58px;
  background:
    linear-gradient(90deg, var(--orange) 0 22%, rgba(255, 249, 242, 0.18) 22% 100%) 0 0 / 100% 2px no-repeat,
    linear-gradient(90deg, rgba(255, 249, 242, 0.34) 0 58%, transparent 58% 100%) 0 21px / 76% 2px no-repeat,
    linear-gradient(90deg, rgba(255, 92, 0, 0.55) 0 44%, transparent 44% 100%) 0 42px / 64% 2px no-repeat;
}

.process-style-deck .object-identity {
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  aspect-ratio: auto;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 92, 0, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(22, 18, 15, 0.98), rgba(9, 8, 7, 0.97));
}

.process-style-deck .object-identity::before {
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255, 92, 0, 0.48) 0 2px, transparent 2px 100%),
    linear-gradient(135deg, transparent 0 56%, rgba(255, 92, 0, 0.12) 56% 78%, transparent 78% 100%),
    linear-gradient(180deg, transparent 0 60%, rgba(255, 249, 242, 0.055) 60% 60.5%, transparent 60.8% 100%);
}

.process-style-deck .cinema-logo {
  align-self: flex-end;
  width: min(112px, 42%);
  filter: drop-shadow(0 18px 30px rgba(255, 92, 0, 0.22));
}

.process-style-deck .object-web {
  width: clamp(270px, 26vw, 440px);
  min-height: 260px;
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(31, 22, 17, 0.98), rgba(8, 7, 6, 0.97));
}

.process-style-deck .object-web strong {
  max-width: 12ch;
  font-size: clamp(1.55rem, 2.15vw, 2.65rem);
}

.process-style-deck .object-web p {
  max-width: 30ch;
}

.process-style-deck .object-web::before {
  inset: 62px 20px 20px;
  border-color: rgba(255, 249, 242, 0.1);
  background:
    linear-gradient(90deg, rgba(255, 249, 242, 0.12) 0 26%, transparent 26% 100%),
    linear-gradient(90deg, transparent 0 66%, rgba(255, 92, 0, 0.18) 66% 86%, transparent 86% 100%),
    linear-gradient(rgba(255, 249, 242, 0.08) 1px, transparent 1px);
  background-size: auto, auto, 100% 36px;
  opacity: 0.8;
}

.process-style-deck .browser-bar {
  gap: 8px;
}

.process-style-deck .browser-bar i {
  width: 8px;
  height: 8px;
}

.process-style-deck .object-launch {
  width: clamp(260px, 25vw, 410px);
  min-height: 270px;
  background:
    linear-gradient(135deg, rgba(255, 92, 0, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(34, 25, 19, 0.98), rgba(8, 7, 6, 0.96));
}

.process-style-deck .object-launch::after {
  right: 26px;
  bottom: 26px;
  left: 26px;
  width: auto;
  height: 64px;
  aspect-ratio: auto;
  border: 1px solid rgba(255, 249, 242, 0.08);
  transform: none;
  background:
    linear-gradient(90deg, var(--orange) 0 18%, rgba(255, 249, 242, 0.16) 18% 100%) 0 0 / 100% 2px no-repeat,
    linear-gradient(90deg, rgba(255, 249, 242, 0.3) 0 48%, transparent 48% 100%) 0 21px / 72% 2px no-repeat,
    linear-gradient(90deg, rgba(255, 92, 0, 0.58) 0 32%, transparent 32% 100%) 0 42px / 62% 2px no-repeat;
}

.process-style-deck .scroll-cinema::before {
  background:
    linear-gradient(180deg, transparent, rgba(255, 249, 242, 0.025) 28%, transparent 72%),
    linear-gradient(90deg, rgba(255, 92, 0, 0.055), transparent 24%, rgba(255, 249, 242, 0.035));
}

.process-style-deck .cinema-copy .small-label {
  color: rgba(255, 138, 61, 0.92);
}

.process-style-deck .cinema-copy h2 {
  max-width: 10.4ch;
  letter-spacing: 0;
}

.process-style-deck .cinema-copy p:not(.small-label) {
  max-width: 52ch;
  color: rgba(255, 249, 242, 0.76);
}

.process-style-deck .cinema-meter {
  height: 1px;
  background: rgba(255, 249, 242, 0.2);
}

.process-style-deck .cinema-meter span {
  background: linear-gradient(90deg, var(--orange) 0 24%, rgba(255, 249, 242, 0.72));
}

.process-style-deck .cinema-stage {
  border-color: rgba(255, 249, 242, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.035), transparent 22%),
    linear-gradient(105deg, rgba(255, 92, 0, 0.1) 0 12%, transparent 32%),
    linear-gradient(180deg, #161210, #080807);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 249, 242, 0.1);
}

.process-style-deck .cinema-stage::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 19%, rgba(255, 249, 242, 0.08) 19% 19.12%, transparent 19.28% 100%),
    linear-gradient(90deg, transparent 0 81%, rgba(255, 92, 0, 0.09) 81% 81.14%, transparent 81.28% 100%),
    linear-gradient(180deg, transparent 0 18%, rgba(255, 249, 242, 0.055) 18% 18.12%, transparent 18.28% 100%),
    linear-gradient(180deg, transparent 0 82%, rgba(255, 249, 242, 0.055) 82% 82.12%, transparent 82.28% 100%);
  opacity: 0.74;
  transform: none;
}

.process-style-deck .cinema-stage::after {
  inset: 42px;
  border-color: rgba(255, 249, 242, 0.085);
  background:
    linear-gradient(90deg, var(--orange) 0 72px, transparent 72px 100%) 0 0 / 100% 2px no-repeat,
    linear-gradient(180deg, rgba(255, 249, 242, 0.055), transparent 42%);
  opacity: 0.72;
  animation: none;
}

.process-style-deck .cinema-vignette {
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.62), transparent 18%, transparent 82%, rgba(13, 13, 13, 0.58)),
    linear-gradient(180deg, rgba(13, 13, 13, 0.34), transparent 24%, transparent 82%, rgba(13, 13, 13, 0.68));
}

.process-style-deck .cinema-floor {
  background:
    linear-gradient(rgba(255, 249, 242, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 249, 242, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.28;
}

.process-style-deck .cinema-wall,
.process-style-deck .cinema-beam {
  opacity: 0.16;
}

.process-style-deck .cinema-object {
  width: clamp(300px, 30vw, 500px);
  min-height: 304px;
  padding: 30px 32px 28px;
  border-color: rgba(255, 249, 242, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.075), transparent 28%),
    linear-gradient(135deg, rgba(255, 92, 0, 0.09), transparent 30%),
    #12100f;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 249, 242, 0.16);
}

.process-style-deck .cinema-object::before {
  inset: 14px;
  border-color: rgba(255, 249, 242, 0.09);
  background:
    linear-gradient(90deg, var(--orange) 0 2px, transparent 2px 100%),
    linear-gradient(180deg, transparent 0 34%, rgba(255, 249, 242, 0.06) 34% 34.4%, transparent 34.8% 100%),
    linear-gradient(180deg, transparent 0 72%, rgba(255, 249, 242, 0.045) 72% 72.4%, transparent 72.8% 100%);
  opacity: 1;
}

.process-style-deck .cinema-object::after {
  left: 32px;
  right: 32px;
  bottom: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange) 0 18%, rgba(255, 249, 242, 0.22) 18% 100%);
}

.process-style-deck .cinema-object span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: rgba(255, 138, 61, 0.96);
  font-size: 0.74rem;
}

.process-style-deck .cinema-object span::after {
  content: " / MELLOW PROCESS";
  margin-left: 8px;
  color: rgba(255, 249, 242, 0.42);
  font-weight: 800;
}

.process-style-deck .cinema-object strong {
  max-width: 11ch;
  font-size: clamp(1.95rem, 2.8vw, 3.45rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.process-style-deck .cinema-object p {
  max-width: 31ch;
  color: rgba(255, 249, 242, 0.72);
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  line-height: 1.5;
}

.process-style-deck .object-brief,
.process-style-deck .object-strategy,
.process-style-deck .object-identity,
.process-style-deck .object-web,
.process-style-deck .object-launch {
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.075), transparent 28%),
    linear-gradient(135deg, rgba(255, 92, 0, 0.09), transparent 30%),
    #12100f;
}

.process-style-deck .object-identity {
  justify-content: space-between;
}

.process-style-deck .object-identity::before {
  background:
    linear-gradient(90deg, var(--orange) 0 2px, transparent 2px 100%),
    linear-gradient(180deg, transparent 0 58%, rgba(255, 249, 242, 0.055) 58% 58.4%, transparent 58.8% 100%),
    linear-gradient(135deg, transparent 0 70%, rgba(255, 92, 0, 0.08) 70% 88%, transparent 88% 100%);
}

.process-style-deck .object-identity strong::before {
  content: "03 / MELLOW PROCESS";
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 138, 61, 0.96);
  font-size: 0.74rem;
  line-height: 1;
}

.process-style-deck .cinema-logo {
  width: min(130px, 38%);
  margin-top: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.34));
}

.process-style-deck .object-web,
.process-style-deck .object-launch {
  width: clamp(330px, 32vw, 540px);
  min-height: 318px;
}

.process-style-deck .object-web strong {
  max-width: 12ch;
  font-size: clamp(1.8rem, 2.5vw, 3.15rem);
}

.process-style-deck .object-web::before {
  inset: 78px 32px 52px;
  border-color: rgba(255, 249, 242, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 249, 242, 0.13) 0 22%, transparent 22% 100%),
    linear-gradient(90deg, transparent 0 68%, rgba(255, 92, 0, 0.16) 68% 86%, transparent 86% 100%),
    linear-gradient(rgba(255, 249, 242, 0.065) 1px, transparent 1px);
  background-size: auto, auto, 100% 42px;
  opacity: 0.86;
}

.process-style-deck .object-web::after,
.process-style-deck .object-launch::after,
.process-style-deck .object-strategy::after {
  left: 32px;
  right: 32px;
  bottom: 30px;
  width: auto;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, var(--orange) 0 18%, rgba(255, 249, 242, 0.22) 18% 100%);
  transform: none;
}

.process-style-deck .browser-bar {
  gap: 8px;
}

.process-style-deck .browser-bar i {
  width: 7px;
  height: 7px;
}

.process-style-deck .cinema-hud strong {
  color: rgba(255, 249, 242, 0.56);
  font-size: 0.92rem;
}

.process-style-deck .cinema-steps {
  border-color: transparent;
  background: transparent;
}

.process-style-deck .cinema-steps button {
  background: transparent;
}

.process-style-deck .cinema-steps button.active {
  background: transparent;
  color: var(--ink);
}

@media (max-width: 960px) {
  .process-style-deck .cinema-object {
    width: 260px;
    min-height: 240px;
    padding: 20px;
  }

  .process-style-deck .object-web,
  .process-style-deck .object-launch {
    width: 300px;
  }
}

@media (max-width: 720px) {
  .process-style-deck .cinema-object {
    width: 210px;
    min-height: 190px;
    padding: 16px;
  }

  .process-style-deck .cinema-object strong {
    font-size: 1.22rem;
  }

  .process-style-deck .object-web,
  .process-style-deck .object-launch {
    width: 236px;
    min-height: 202px;
  }
}

.cinema-hud {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 6;
  display: grid;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: right;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.72);
}

.cinema-hud span {
  display: none;
}

.cinema-hud strong {
  color: rgba(255, 249, 242, 0.64);
  font-size: 1.08rem;
  line-height: 1;
}

.cinema-steps {
  grid-column: 1 / -1;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5.2vw, 78px);
  width: min(100%, 980px);
  min-height: 56px;
  padding: 6px clamp(8px, 2vw, 20px) 0;
  border: 0;
  background: transparent;
}

.cinema-steps button {
  position: relative;
  min-height: 44px;
  padding: 0 0 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.cinema-steps button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  opacity: 0;
  transform: scaleX(0.56);
  transition:
    opacity 220ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease;
}

.cinema-steps button:hover,
.cinema-steps button:focus-visible {
  color: rgba(255, 249, 242, 0.86);
}

.cinema-steps button.active {
  color: var(--ink);
}

.cinema-steps button.active::after {
  opacity: 1;
  transform: scaleX(1);
}

:root[data-language="es"].process-style-os .cinema-sticky,
:root[data-language="es"] .process-style-os .cinema-sticky {
  height: 100dvh;
  max-height: 100dvh;
  min-height: 100dvh;
  grid-template-rows: minmax(0, 1fr);
  padding-bottom: clamp(126px, 14vh, 160px);
}

:root[data-language="es"].process-style-os .cinema-steps,
:root[data-language="es"] .process-style-os .cinema-steps {
  position: absolute;
  left: var(--page-gutter);
  right: var(--page-gutter);
  bottom: clamp(30px, 4.8vh, 52px);
  z-index: 8;
  width: auto;
  max-width: none;
  gap: clamp(20px, 4.2vw, 64px);
  pointer-events: auto;
}

:root[data-language="es"].process-style-os .cinema-steps button,
:root[data-language="es"] .process-style-os .cinema-steps button {
  min-width: 0;
  white-space: nowrap;
}

.belief-section,
.work-section,
.services-section,
.locations-section,
.comparison-section,
.audit-section {
  padding: 0 var(--page-gutter) var(--section-space);
}

.belief-section {
  position: relative;
  min-height: 340dvh;
  padding: 0;
  isolation: isolate;
}

.belief-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 82% 22%, rgba(255, 92, 0, 0.2), transparent 34rem),
    linear-gradient(180deg, transparent 0 16%, rgba(255, 249, 242, 0.025), transparent 74%);
  mask-image: linear-gradient(to bottom, transparent, black 9%, black 92%, transparent);
}

.belief-sticky {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(420px, 0.96fr);
  gap: clamp(30px, 5.2vw, 86px);
  align-items: start;
  padding: clamp(48px, 5vw, 76px) var(--page-gutter) clamp(76px, 7vw, 104px);
  overflow: hidden;
}

.belief-heading {
  align-self: start;
  max-width: 900px;
  margin-bottom: 0;
}

.belief-heading h2 {
  max-width: 13.2ch;
  font-size: clamp(3rem, 5.75vw, 6.1rem);
  line-height: 0.91;
  text-wrap: balance;
}

.belief-accordion {
  position: relative;
  align-self: start;
  width: 100%;
  max-height: calc(100dvh - clamp(118px, 11vw, 170px));
  overflow: visible;
  border-top: 1px dashed rgba(255, 249, 242, 0.22);
}

.belief-accordion::before {
  content: "";
  position: absolute;
  inset: -12% -20% -18%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% var(--belief-glow-y, 18%), rgba(255, 92, 0, 0.16), transparent 24%),
    radial-gradient(circle at 18% 72%, rgba(255, 249, 242, 0.045), transparent 28%);
  filter: blur(2px);
}

.belief-item {
  display: grid;
  grid-template-rows: auto 0fr;
  border-bottom: 1px dashed rgba(255, 249, 242, 0.22);
  transition:
    grid-template-rows 640ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.belief-item.is-active {
  grid-template-rows: auto 1fr;
  border-color: rgba(255, 249, 242, 0.38);
}

.belief-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  width: 100%;
  min-height: clamp(72px, 10vh, 102px);
  padding: clamp(10px, 1.35vw, 18px) 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.belief-index {
  display: none;
}

.belief-title {
  color: rgba(255, 249, 242, 0.36);
  font-size: clamp(1.85rem, 2.9vw, 3.08rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  transition:
    color 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.belief-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 249, 242, 0.24);
  border-radius: 50%;
  opacity: 0.58;
  transition:
    opacity 360ms ease,
    border-color 360ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.belief-mark::before,
.belief-mark::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 11px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.belief-mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.belief-panel {
  min-height: 0;
  overflow: hidden;
}

.belief-panel-inner {
  max-width: 680px;
  padding: 0 54px clamp(18px, 2vw, 28px) 0;
  opacity: 0;
  transform: translate3d(0, -10px, 0);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.belief-panel p {
  max-width: 50ch;
  margin: 0;
  color: rgba(255, 249, 242, 0.72);
  font-size: clamp(0.98rem, 1.04vw, 1.08rem);
  line-height: 1.56;
}

.belief-item.is-active .belief-title {
  color: var(--ink);
  transform: translate3d(0, -1px, 0);
}

.belief-item.is-active .belief-index {
  color: var(--orange-2);
}

.belief-item.is-active .belief-mark {
  color: var(--orange-2);
  opacity: 1;
  border-color: rgba(255, 138, 61, 0.68);
  transform: rotate(45deg);
}

.belief-item.is-active .belief-panel-inner {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.belief-trigger:hover .belief-title,
.belief-trigger:focus-visible .belief-title {
  color: rgba(255, 249, 242, 0.82);
}

.work-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 7vw, 118px);
  scroll-margin-top: clamp(92px, 9vw, 132px);
  isolation: isolate;
}

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

.work-section::before {
  inset: clamp(24px, 4vw, 62px) var(--page-gutter) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 249, 242, 0.26), transparent);
  opacity: 0.72;
}

.work-section::after {
  width: min(78vw, 1180px);
  height: min(54vw, 760px);
  right: -18vw;
  top: 18%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 52% 48%, rgba(255, 92, 0, 0.18), transparent 56%),
    radial-gradient(circle at 32% 42%, rgba(255, 249, 242, 0.08), transparent 46%);
  filter: blur(46px);
  opacity: 0.74;
  transform: rotate(-8deg);
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(28px, 5vw, 64px);
}

.section-heading.wide {
  max-width: 1160px;
}

.work-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: clamp(14px, 1.8vw, 24px);
  align-items: start;
  max-width: 1480px;
  margin-inline: auto;
  margin-bottom: clamp(34px, 4.4vw, 68px);
}

.work-section .section-heading h2 {
  max-width: 13.8ch;
  margin: 0;
  font-size: clamp(2.85rem, 5.45vw, 5.05rem);
  line-height: 0.93;
  text-wrap: balance;
}

.work-section .section-heading .small-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.work-heading-copy {
  position: relative;
  max-width: 64ch;
  margin: clamp(6px, 0.9vw, 12px) 0 0;
  padding-top: clamp(18px, 2vw, 26px);
  color: rgba(255, 249, 242, 0.68);
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  line-height: 1.74;
}

.work-heading-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(100%, 180px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 249, 242, 0.38), transparent);
}

h2 {
  max-width: 15ch;
  font-size: clamp(2.4rem, 6vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading.wide h2 {
  max-width: 18ch;
}

h3 {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.62;
}

.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.belief-grid article {
  min-height: 320px;
  padding: clamp(24px, 4vw, 46px);
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.07), transparent),
    rgba(13, 13, 13, 0.82);
}

.belief-grid span,
.method-card span,
.service-readout span,
.audit-preview span {
  color: var(--orange-2);
  font-weight: 850;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.method-section {
  position: relative;
  --method-sticky-top: clamp(92px, 12vh, 128px);
  margin-top: clamp(-180px, -10vw, -112px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: start;
  padding: clamp(18px, 3vw, 42px) var(--page-gutter) var(--section-space);
}

.sticky-copy {
  position: relative;
  top: auto;
  align-self: auto;
  justify-self: center;
  max-width: 1180px;
  min-height: auto;
  display: block;
  text-align: center;
}

.sticky-copy h2 {
  margin-inline: auto;
  max-width: 21.6ch;
  font-size: clamp(3.25rem, 5.4vw, 6.05rem);
}

.magic-method-title {
  position: relative;
  isolation: isolate;
  cursor: pointer;
  overflow: visible;
  transition: text-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.magic-method-title .magic-title-line {
  display: block;
  color: transparent;
  opacity: 0;
  text-shadow: none;
  transition:
    color 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    text-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.magic-method-title .magic-text-canvas {
  position: absolute;
  inset: -0.08em -0.04em;
  width: calc(100% + 0.08em);
  height: calc(100% + 0.16em);
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: screen;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.magic-method-title.is-magic-hover {
  text-shadow: 0 0 22px rgba(255, 109, 21, 0.18), 0 0 42px rgba(255, 245, 237, 0.08);
}

.magic-method-title.is-magic-hover .magic-title-line {
  color: #fffaf4;
  opacity: 1;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.12), 0 12px 42px rgba(255, 109, 21, 0.08);
}

.magic-method-title.is-magic-hover .magic-text-canvas {
  opacity: 0.38;
}

.sticky-copy p {
  margin-inline: auto;
  max-width: 720px;
  font-size: clamp(1rem, 1.28vw, 1.28rem);
}

.sticky-copy .text-arrow,
.sticky-copy .method-audit-button {
  margin-inline: auto;
}

.method-audit-button {
  margin-top: 8px;
  min-height: 54px;
  padding-inline: 24px;
}

.method-stack {
  display: grid;
  justify-self: center;
  width: 100%;
  max-width: 1440px;
  gap: 0;
}

.method-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4.2vw, 56px);
  align-items: start;
  min-height: clamp(1040px, 142dvh, 1420px);
  padding: clamp(56px, 7vw, 92px) 0 clamp(78px, 9vh, 128px);
  border: 0;
  background: transparent;
  opacity: var(--method-card-opacity, 1);
  transform: translate3d(0, var(--method-card-y, -46px), 0);
  will-change: opacity, transform;
}

.method-card > span,
.method-card > h3,
.method-card > p {
  grid-column: 1;
  min-width: 0;
  opacity: var(--method-text-opacity, 0.34);
  transform: translate3d(0, var(--method-content-y, -42px), 0);
  will-change: opacity, transform;
  transition: opacity 240ms ease;
}

.method-card:nth-child(even) > span,
.method-card:nth-child(even) > h3,
.method-card:nth-child(even) > p {
  grid-column: 1;
}

.method-card h3 {
  max-width: min(100%, clamp(760px, 88vw, 1360px));
  margin-bottom: 0;
  font-size: clamp(3rem, 5.8vw, 6.8rem);
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: normal;
}

.method-card p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.22vw, 1.24rem);
}

.image-slice {
  position: sticky;
  top: var(--method-sticky-top);
  grid-column: 1;
  grid-row: auto;
  align-self: center;
  justify-self: center;
  scroll-margin: clamp(104px, 12vh, 156px) 0;
  width: min(100%, 1180px);
  height: clamp(380px, 45vw, 640px);
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  opacity: var(--method-image-opacity, 0.18);
  clip-path: var(--method-image-clip, inset(0 100% 0 0));
  transform: translate3d(0, var(--method-image-y, 42px), 0);
  will-change: clip-path, opacity, transform;
  transition:
    clip-path 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 360ms ease;
}

.method-card:nth-child(even) .image-slice {
  grid-column: 1;
}

.image-slice-contain {
  background: #fff;
}

.image-slice-white {
  background: #fff;
}

.image-slice img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
  transform: translate3d(0, var(--method-image-parallax, 0px), 0) scale(var(--method-image-scale, 1.12));
  will-change: transform;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms ease;
}

.image-slice-contain img {
  object-fit: contain;
  padding: clamp(8px, 1.2vw, 16px);
  filter: saturate(0.98) contrast(1.03);
  transform: translate3d(0, 0, 0) scale(0.965);
}

.method-card:hover .image-slice img {
  filter: saturate(0.82) contrast(1.1);
}

.method-card:hover .image-slice-contain img {
  filter: saturate(1) contrast(1.04);
}

.work-experience {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, 1.06fr) minmax(320px, 0.56fr);
  gap: clamp(34px, 5.2vw, 88px);
  align-items: center;
  max-width: 1480px;
  min-height: clamp(520px, 44vw, 720px);
  margin-inline: auto;
  isolation: isolate;
}

.gallery-shell {
  position: relative;
  min-height: clamp(440px, 37vw, 610px);
  width: min(100%, 820px);
  margin-inline: auto;
  perspective: 1200px;
  transform-style: preserve-3d;
  cursor: grab;
  touch-action: pan-y;
  outline: none;
  overflow: hidden;
  isolation: isolate;
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-shell::before {
  content: "";
  position: absolute;
  inset: 15% 7% 4%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 92, 0, 0.2), transparent 50%),
    radial-gradient(circle at 48% 30%, rgba(255, 249, 242, 0.09), transparent 36%);
  filter: blur(42px);
  transform: rotateX(62deg);
  pointer-events: none;
}

.gallery-shell.is-dragging {
  cursor: grabbing;
}

.circular-gallery-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: rgba(255, 249, 242, 0.92);
  font-size: clamp(1.15rem, 1.7vw, 1.65rem);
  font-weight: 900;
  text-transform: uppercase;
  outline: none;
  cursor: grab;
}

.circular-gallery-canvas.is-dragging {
  cursor: grabbing;
}

.circular-gallery-canvas::before,
.circular-gallery-canvas::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 15%;
  pointer-events: none;
}

.circular-gallery-canvas::before {
  left: 0;
  background: linear-gradient(90deg, rgba(9, 8, 7, 0.82), transparent);
}

.circular-gallery-canvas::after {
  right: 0;
  background: linear-gradient(270deg, rgba(21, 9, 3, 0.72), transparent);
}

.circular-gallery-canvas canvas {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

.circular-gallery-canvas:focus-visible {
  border-radius: 36px;
  box-shadow: inset 0 0 0 2px rgba(255, 92, 0, 0.52);
}

.stack-card {
  position: absolute;
  width: clamp(235px, 22vw, 330px);
  aspect-ratio: 2 / 3;
  left: 50%;
  top: 50%;
  padding: 0;
  border: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  transform-style: preserve-3d;
  cursor: pointer;
  will-change: transform, opacity, filter;
  transition:
    transform 640ms cubic-bezier(0.2, 0.84, 0.18, 1),
    opacity 260ms ease,
    filter 260ms ease;
  transform: translate3d(
      calc(-50% + var(--stack-x, 0px)),
      calc(-50% + var(--stack-y, 0px)),
      var(--stack-z, 0px)
    )
    rotateX(var(--stack-rx, 0deg)) rotateY(var(--stack-ry, 0deg)) rotateZ(var(--stack-rz, 0deg))
    scale(var(--stack-scale, 1));
  opacity: var(--stack-opacity, 1);
  filter: blur(var(--stack-blur, 0px)) saturate(var(--stack-saturation, 1));
}

.stack-card[aria-hidden="true"] {
  pointer-events: none;
}

.stack-card:focus-visible .poster {
  border-color: rgba(255, 92, 0, 0.9);
  box-shadow:
    0 0 0 3px rgba(255, 92, 0, 0.22),
    var(--shadow);
}

.stack-card.active .poster {
  transform: translateY(-4px);
  border-color: rgba(255, 249, 242, 0.32);
}

.stack-dots {
  position: absolute;
  right: clamp(2px, 1vw, 10px);
  top: 50%;
  z-index: 140;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transform: translateY(-50%);
}

.stack-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 249, 242, 0.28);
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.16);
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.stack-dots button.active {
  width: 9px;
  height: 28px;
  border-color: var(--orange);
  background: var(--orange);
}

.stack-counter {
  position: absolute;
  left: clamp(0px, 1vw, 10px);
  top: 50%;
  z-index: 140;
  display: grid;
  justify-items: center;
  gap: 10px;
  transform: translateY(-50%);
  color: rgba(255, 249, 242, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
}

.stack-counter span:first-child {
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 650;
}

.stack-counter i {
  width: 1px;
  height: 34px;
  background: rgba(255, 249, 242, 0.22);
}

.stack-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(14px, 2vw, 28px);
  z-index: 140;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
  color: rgba(255, 249, 242, 0.58);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.stack-hint svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: stack-hint-float 1.8s ease-in-out infinite;
}

@keyframes stack-hint-float {
  0%,
  100% {
    transform: translateY(-3px);
  }

  50% {
    transform: translateY(3px);
  }
}

.poster {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 242, 0.18);
  border-radius: 30px;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 249, 242, 0.04);
  background: #111;
  transform: translateY(0);
  transition:
    transform 280ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

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

.poster::before {
  z-index: 0;
  opacity: 0.92;
}

.poster::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.1), transparent 20%),
    linear-gradient(transparent 44%, rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, auto, 24px 24px;
}

.poster img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
  filter: saturate(0.92) contrast(1.04);
}

.poster.eco img {
  object-position: center 48%;
}

.poster.arthub img {
  object-position: center 50%;
}

.poster.ctm img {
  object-position: center 54%;
}

.poster.golf img {
  object-position: center 48%;
}

.poster span {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 8ch;
  font-size: clamp(1.65rem, 3.4vw, 3.65rem);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  text-align: left;
}

.poster.eco::before {
  background:
    radial-gradient(circle at 30% 22%, #c4ff90, transparent 20%),
    radial-gradient(circle at 78% 12%, #32d2ff, transparent 24%),
    linear-gradient(135deg, #073f34, #0fa36d 48%, #d7f7bd);
}

.poster.virelo::before {
  background:
    radial-gradient(circle at 72% 20%, #ff5c00, transparent 18%),
    linear-gradient(150deg, #141414, #31402d 54%, #c8de84);
}

.poster.arthub::before {
  background:
    radial-gradient(circle at 55% 18%, #f5f6ff, transparent 16%),
    linear-gradient(145deg, #041e3d, #075da8 45%, #bcd9ff);
}

.poster.ctm::before {
  background:
    radial-gradient(circle at 25% 18%, #fff2d3, transparent 20%),
    linear-gradient(145deg, #2b1210, #9d432a 46%, #eac6a0);
}

.poster.golf::before {
  background:
    radial-gradient(circle at 70% 16%, #fff4bf, transparent 18%),
    radial-gradient(circle at 22% 78%, #7cc4ff, transparent 22%),
    linear-gradient(145deg, #11130f, #394a26 48%, #d7e08a);
}

.project-panel {
  position: relative;
  align-self: center;
  padding: clamp(22px, 3.2vw, 44px) 0 clamp(24px, 3.5vw, 48px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-panel::before,
.project-panel::after {
  content: "";
  position: absolute;
  left: 0;
  width: min(100%, 360px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 249, 242, 0.34), transparent);
}

.project-panel::before {
  top: 0;
}

.project-panel::after {
  bottom: 0;
  opacity: 0.62;
}

.project-panel h3 {
  max-width: 9ch;
  font-size: clamp(2.8rem, 4vw, 4.85rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0 0 clamp(16px, 1.8vw, 24px);
}

.project-panel > p:not(.small-label) {
  max-width: 43ch;
  color: rgba(255, 249, 242, 0.68);
  font-size: clamp(1rem, 1.05vw, 1.14rem);
  line-height: 1.72;
}

.audit-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: clamp(18px, 2vw, 26px) 0 clamp(24px, 3vw, 36px);
}

.audit-promises span {
  min-height: 0;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  color: rgba(255, 249, 242, 0.58);
  font-size: clamp(0.86rem, 0.92vw, 0.98rem);
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.project-case-trigger {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 clamp(24px, 3vw, 34px);
  padding: 0 20px;
  border: 1px solid rgba(255, 249, 242, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.13), rgba(255, 249, 242, 0.03)),
    rgba(255, 249, 242, 0.045);
  color: rgba(255, 249, 242, 0.92);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.2),
    0 16px 44px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.project-case-trigger:hover,
.project-case-trigger:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 92, 0, 0.58);
  background:
    linear-gradient(145deg, rgba(255, 92, 0, 0.95), rgba(177, 58, 0, 0.86)),
    rgba(255, 92, 0, 0.84);
  color: white;
}

.project-case-trigger:active {
  transform: translateY(0) scale(0.99);
}

.project-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding-top: clamp(4px, 0.8vw, 10px);
}

.project-controls button,
.service-orbit button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 249, 242, 0.16);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.project-controls button:hover,
.project-controls button:focus-visible,
.project-controls button.active,
.service-orbit button:hover,
.service-orbit button:focus-visible,
.service-orbit button.active {
  background:
    linear-gradient(145deg, rgba(255, 138, 61, 0.95), rgba(255, 92, 0, 0.92)),
    var(--orange);
  border-color: var(--orange);
  color: white;
}

.work-experience.is-project-gallery-open .gallery-shell,
.work-experience.is-project-gallery-open .project-panel {
  opacity: 0;
  filter: blur(10px) saturate(0.74);
  transform: translateY(18px) scale(0.92);
  pointer-events: none;
}

.project-gallery-viewer {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.64fr);
  gap: clamp(20px, 4vw, 62px);
  align-items: stretch;
  max-height: min(850px, calc(100svh - 112px));
  padding: clamp(10px, 1.5vw, 22px);
  scroll-margin-top: 130px;
  overflow: hidden auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 249, 242, 0.18) transparent;
  border: 1px solid rgba(255, 249, 242, 0.18);
  border-radius: clamp(30px, 4vw, 58px);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 249, 242, 0.08), transparent 22rem),
    radial-gradient(circle at 80% 24%, rgba(255, 92, 0, 0.1), transparent 28rem),
    linear-gradient(145deg, rgba(255, 249, 242, 0.055), rgba(255, 249, 242, 0.018) 42%, rgba(255, 92, 0, 0.035)),
    rgba(9, 8, 7, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.14),
    inset 0 -1px 0 rgba(255, 249, 242, 0.06),
    0 34px 96px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(26px) scale(0.92);
  transform-origin: 36% 52%;
  transition:
    opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-gallery-viewer::-webkit-scrollbar,
.project-gallery-copy::-webkit-scrollbar {
  width: 7px;
}

.project-gallery-viewer::-webkit-scrollbar-track,
.project-gallery-copy::-webkit-scrollbar-track,
.project-gallery-rail::-webkit-scrollbar-track {
  background: transparent;
}

.project-gallery-viewer::-webkit-scrollbar-thumb,
.project-gallery-copy::-webkit-scrollbar-thumb,
.project-gallery-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.18);
}

.project-gallery-viewer[hidden] {
  display: none;
}

.project-gallery-viewer.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-gallery-viewer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 28% 26%, rgba(0, 0, 0, 0.8), transparent 70%);
}

.project-gallery-stage,
.project-gallery-copy {
  position: relative;
  z-index: 1;
}

.project-gallery-stage {
  min-height: clamp(500px, 44vw, 720px);
  overflow: hidden;
  border: 1px solid rgba(255, 249, 242, 0.16);
  border-radius: clamp(24px, 3vw, 42px);
  background:
    radial-gradient(circle at 44% 18%, rgba(255, 249, 242, 0.12), transparent 18rem),
    #120d0a;
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.12),
    0 28px 78px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.project-gallery-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.06), transparent 22%),
    linear-gradient(0deg, rgba(8, 6, 5, 0.2), transparent 44%);
  pointer-events: none;
}

.project-gallery-stage img,
.project-gallery-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.98) contrast(1.04);
  transform: scale(0.985);
  transition:
    opacity 240ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 240ms ease;
}

.project-gallery-video {
  position: relative;
  z-index: 1;
  background: #080604;
  pointer-events: none;
}

.project-gallery-video[hidden] {
  display: none;
}

.project-gallery-stage img[hidden] {
  display: none;
}

.project-gallery-stage img.is-changing,
.project-gallery-video.is-changing {
  opacity: 0.32;
  filter: saturate(0.72) contrast(1.08);
  transform: scale(1.015);
}

.project-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: clamp(42px, 4vw, 54px);
  height: clamp(42px, 4vw, 54px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 249, 242, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.12), rgba(255, 249, 242, 0.025)),
    rgba(8, 7, 6, 0.28);
  color: rgba(255, 249, 242, 0.58);
  cursor: pointer;
  opacity: 0.26;
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.12),
    0 16px 38px rgba(0, 0, 0, 0.24);
  transform: translateY(-50%);
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.project-gallery-nav::before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.project-gallery-nav-prev {
  left: clamp(12px, 2vw, 26px);
}

.project-gallery-nav-next {
  right: clamp(12px, 2vw, 26px);
}

.project-gallery-nav-prev::before {
  transform: translateX(2px) rotate(225deg);
}

.project-gallery-nav-next::before {
  transform: translateX(-2px) rotate(45deg);
}

.project-gallery-stage:hover .project-gallery-nav,
.project-gallery-nav:hover,
.project-gallery-nav:focus-visible {
  opacity: 0.72;
}

.project-gallery-nav:hover,
.project-gallery-nav:focus-visible {
  border-color: rgba(255, 249, 242, 0.3);
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.18), rgba(255, 249, 242, 0.04)),
    rgba(8, 7, 6, 0.48);
  color: rgba(255, 249, 242, 0.92);
}

.project-gallery-nav:active {
  transform: translateY(-50%) scale(0.96);
}

.project-gallery-topline span {
  color: var(--orange-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-gallery-copy {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(22px, 3.2vw, 46px) clamp(4px, 0.8vw, 12px) clamp(22px, 3.2vw, 46px) clamp(4px, 0.8vw, 12px);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 249, 242, 0.16) transparent;
}

.project-gallery-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(22px, 3vw, 38px);
}

.project-gallery-close {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 249, 242, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.12), rgba(255, 249, 242, 0.035)),
    rgba(8, 7, 6, 0.42);
  color: rgba(255, 249, 242, 0.72);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(16px) saturate(1.1);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.project-gallery-close:hover,
.project-gallery-close:focus-visible {
  border-color: rgba(255, 249, 242, 0.34);
  background: rgba(255, 249, 242, 0.1);
  color: white;
}

.project-gallery-copy h3 {
  max-width: 9ch;
  margin: 0 0 18px;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.project-gallery-copy > p:not(.small-label) {
  max-width: 66ch;
  margin: 0;
  color: rgba(255, 249, 242, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.62;
}

.project-gallery-frame-copy {
  margin-top: clamp(20px, 2.5vw, 32px) !important;
  padding: clamp(14px, 1.8vw, 22px) 0 0;
  border-top: 1px solid rgba(255, 249, 242, 0.18);
  border-radius: 0;
  background: transparent;
}

.project-gallery-rail {
  display: flex;
  gap: 10px;
  margin-top: clamp(22px, 3vw, 38px);
  padding: 0 clamp(8px, 1vw, 14px) 10px 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 249, 242, 0.18) transparent;
}

.project-gallery-rail::-webkit-scrollbar {
  height: 6px;
}

.project-gallery-thumb {
  position: relative;
  flex: 0 0 clamp(112px, 9vw, 152px);
  min-height: 86px;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 242, 0.12);
  border-radius: 18px;
  background: rgba(255, 249, 242, 0.04);
  cursor: pointer;
  scroll-snap-align: start;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    opacity 180ms ease;
}

.project-gallery-thumb img,
.project-gallery-thumb video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.62);
  transform: scale(1.05);
  transition:
    filter 180ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-gallery-thumb span {
  position: absolute;
  left: 11px;
  bottom: 10px;
  z-index: 1;
  color: rgba(255, 249, 242, 0.84);
  font-size: 0.68rem;
  font-weight: 900;
}

.project-gallery-thumb:hover,
.project-gallery-thumb:focus-visible,
.project-gallery-thumb.active {
  border-color: rgba(255, 92, 0, 0.7);
  transform: translateY(-2px);
}

.project-gallery-thumb:hover img,
.project-gallery-thumb:focus-visible img,
.project-gallery-thumb.active img,
.project-gallery-thumb:hover video,
.project-gallery-thumb:focus-visible video,
.project-gallery-thumb.active video {
  filter: saturate(1.02) brightness(0.78);
  transform: scale(1.01);
}

.services-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: center;
  scroll-margin-top: 170px;
}

.service-copy h2 {
  max-width: 13ch;
}

.service-copy p {
  max-width: 620px;
}

.service-constellation {
  position: relative;
  min-height: clamp(660px, 60vw, 800px);
  isolation: isolate;
  overflow: hidden;
  perspective: 1300px;
  transform-style: preserve-3d;
  background:
    radial-gradient(circle at 52% 46%, rgba(255, 92, 0, 0.16), transparent 22rem),
    radial-gradient(circle at 78% 18%, rgba(255, 249, 242, 0.08), transparent 15rem),
    radial-gradient(circle at 24% 72%, rgba(255, 92, 0, 0.08), transparent 18rem);
}

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

.service-constellation::before {
  left: 50%;
  top: 50%;
  z-index: 0;
  width: min(72%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 92, 0, 0.18), transparent 36%),
    conic-gradient(from 24deg, transparent 0 17%, rgba(255, 249, 242, 0.12) 17.2% 17.8%, transparent 18% 47%, rgba(255, 92, 0, 0.16) 47.2% 48%, transparent 48.2% 100%);
  filter: blur(0.2px);
  opacity: 0.58;
  transform: translate(-50%, -44%) rotateX(68deg) rotateZ(-14deg);
}

.service-constellation::after {
  left: 50%;
  top: 19%;
  bottom: 10%;
  z-index: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 138, 61, 0.52), rgba(255, 249, 242, 0.08), transparent);
  opacity: 0.42;
  transform: translateX(-50%);
}

#reachGlobe {
  position: absolute;
  inset: -6% -6% 0;
  z-index: -1;
  width: 112%;
  height: 112%;
  opacity: 0.72;
}

.artifact-space {
  position: absolute;
  inset: 19% 0 18%;
  z-index: 3;
  transform-style: preserve-3d;
}

.artifact-space::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(72%, 560px);
  aspect-ratio: 1.45;
  border: 1px solid rgba(255, 249, 242, 0.11);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(66deg) rotateZ(-12deg);
  box-shadow:
    0 0 70px rgba(255, 92, 0, 0.13),
    inset 0 0 34px rgba(255, 92, 0, 0.08);
}

.brand-artifact {
  position: absolute;
  width: clamp(180px, 19vw, 260px);
  min-height: clamp(218px, 24vw, 308px);
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(255, 249, 242, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.14), rgba(255, 249, 242, 0.035) 44%, rgba(255, 92, 0, 0.06)),
    rgba(13, 13, 13, 0.64);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.16),
    inset 0 -28px 52px rgba(0, 0, 0, 0.26),
    0 34px 90px rgba(0, 0, 0, 0.46),
    0 0 48px rgba(255, 92, 0, 0.1);
  transform-style: preserve-3d;
  transition:
    opacity 260ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease;
  animation: artifact-float 7.5s ease-in-out infinite;
}

.brand-artifact::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255, 249, 242, 0.08);
  border-radius: 7px;
  pointer-events: none;
}

.brand-artifact::after {
  content: "";
  position: absolute;
  inset: auto 14px -18px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 92, 0, 0.22);
  filter: blur(18px);
  opacity: 0.72;
  pointer-events: none;
}

.artifact-primary {
  left: 48%;
  top: 46%;
  z-index: 3;
  width: clamp(230px, 24vw, 330px);
  min-height: clamp(260px, 28vw, 360px);
  transform: translate3d(-50%, -50%, 90px) rotateX(8deg) rotateY(-13deg) rotateZ(-5deg);
}

.artifact-secondary {
  left: 8%;
  top: 54%;
  z-index: 2;
  transform: translate3d(0, -50%, 10px) rotateX(10deg) rotateY(18deg) rotateZ(8deg);
  animation-delay: -1.8s;
}

.artifact-tertiary {
  right: 4%;
  top: 54%;
  z-index: 2;
  transform: translate3d(0, -50%, 20px) rotateX(9deg) rotateY(-19deg) rotateZ(-7deg);
  animation-delay: -3.4s;
}

.service-constellation.is-switching .brand-artifact {
  opacity: 0.42;
}

.artifact-object {
  position: relative;
  min-height: 154px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.artifact-object > * {
  transform-style: preserve-3d;
}

.brand-artifact > span {
  color: rgba(255, 138, 61, 0.92);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-artifact > strong {
  color: var(--ink);
  font-size: clamp(1.1rem, 1.5vw, 1.55rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.artifact-render {
  position: relative;
  width: 86%;
  height: 150px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 24px 22px rgba(0, 0, 0, 0.38));
}

.artifact-primary .artifact-render {
  height: 190px;
}

.render-plate,
.render-screen,
.render-phone,
.render-sheet,
.render-card,
.render-board {
  position: relative;
  border: 1px solid rgba(255, 249, 242, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.18), rgba(255, 249, 242, 0.04) 42%, rgba(255, 92, 0, 0.08)),
    #15110f;
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.22),
    inset 0 -18px 30px rgba(0, 0, 0, 0.26),
    0 22px 42px rgba(0, 0, 0, 0.34);
}

.render-logo-suite .render-plate {
  width: 78%;
  height: 122px;
  display: grid;
  place-items: center;
  transform: rotateX(10deg) rotateY(-16deg) rotateZ(-4deg);
}

.render-logo-suite img {
  width: 84%;
  max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(255, 92, 0, 0.22));
}

.mini-chip {
  display: none;
}

.render-palette .palette-stack,
.render-social-grid .social-grid,
.render-calendar .calendar-stack,
.render-emails .email-stack {
  position: relative;
  width: 78%;
  height: 130px;
}

.render-palette .palette-stack-simple {
  width: 80%;
  max-width: 166px;
  height: 132px;
}

.palette-card,
.social-tile,
.calendar-card,
.email-card {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 249, 242, 0.15);
  border-radius: 9px;
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.14), rgba(255, 249, 242, 0.04)),
    #17110e;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

.palette-card:nth-child(1) {
  transform: translate3d(-22px, 14px, 0) rotateZ(-12deg);
}

.palette-card:nth-child(2) {
  transform: translate3d(7px, 0, 42px) rotateZ(2deg);
}

.palette-card:nth-child(3) {
  transform: translate3d(30px, 22px, 82px) rotateZ(13deg);
}

.palette-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, #ff5c00 0 33%, #fff9f2 33% 66%, #191513 66%),
    #ff5c00;
}

.render-type .type-sheet,
.render-flyer .flyer-sheet {
  width: 78%;
  height: 138px;
  padding: 18px;
  transform: rotateX(12deg) rotateY(-15deg) rotateZ(6deg);
}

.type-sheet strong {
  display: block;
  color: var(--ink);
  font-size: 3.4rem;
  line-height: 0.85;
}

.type-lines,
.screen-lines,
.board-lines,
.chat-lines {
  display: grid;
  gap: 7px;
  margin-top: 13px;
}

.type-lines i,
.screen-lines i,
.board-lines i,
.chat-lines i {
  display: block;
  height: 7px;
  border-radius: 99px;
  background: rgba(255, 249, 242, 0.22);
}

.type-lines i:nth-child(2),
.screen-lines i:nth-child(2),
.board-lines i:nth-child(2),
.chat-lines i:nth-child(2) {
  width: 72%;
}

.render-screen {
  width: 88%;
  height: 136px;
  padding: 14px;
  transform: rotateX(9deg) rotateY(-16deg) rotateZ(-5deg);
}

.browser-top {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}

.browser-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 249, 242, 0.28);
}

.screen-hero {
  width: 64%;
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
}

.render-phone {
  width: 78px;
  height: 150px;
  padding: 12px 9px;
  border-radius: 18px;
  transform: rotateX(8deg) rotateY(18deg) rotateZ(8deg);
}

.phone-screen {
  height: 100%;
  border-radius: 12px;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 92, 0, 0.55), transparent 22%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.18), rgba(255, 249, 242, 0.05));
}

.phone-screen::before,
.phone-screen::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 249, 242, 0.22);
}

.phone-screen::before {
  top: 48px;
}

.phone-screen::after {
  top: 68px;
  right: 34px;
}

.render-cta .cta-slab {
  width: 84%;
  height: 96px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 92, 0, 0.24), rgba(255, 249, 242, 0.06)),
    #17110f;
  transform: rotateX(11deg) rotateY(-13deg) rotateZ(-6deg);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.38);
}

.cta-slab::before {
  content: "";
  width: 56%;
  height: 16px;
  border-radius: 99px;
  background: var(--orange);
  box-shadow: 0 0 24px rgba(255, 92, 0, 0.42);
}

.cta-slab::after {
  content: "";
  width: 82%;
  height: 9px;
  border-radius: 99px;
  background: rgba(255, 249, 242, 0.18);
}

.render-board {
  width: 86%;
  height: 138px;
  padding: 15px;
  transform: rotateX(10deg) rotateY(-18deg) rotateZ(-4deg);
}

.board-stat {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--orange), #8e2c00);
  box-shadow: 0 16px 28px rgba(255, 92, 0, 0.2);
}

.flyer-sheet::before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 75% 16%, #ff8a3d 0 5px, transparent 6px),
    linear-gradient(135deg, #ff5c00 0 52%, #a83200 53%);
  margin-bottom: 16px;
}

.render-funnel .funnel-stack {
  width: 76%;
  display: grid;
  gap: 10px;
  transform: rotateX(14deg) rotateY(17deg) rotateZ(4deg);
}

.funnel-stack i {
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 92, 0, 0.9), rgba(255, 138, 61, 0.42));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.funnel-stack i:nth-child(1) {
  width: 100%;
}

.funnel-stack i:nth-child(2) {
  width: 74%;
  margin-inline: auto;
}

.funnel-stack i:nth-child(3) {
  width: 44%;
  margin-inline: auto;
}

.social-tile {
  width: 78px;
  height: 90px;
}

.social-tile:nth-child(1) {
  transform: translate3d(-38px, 24px, 0) rotateZ(-12deg);
}

.social-tile:nth-child(2) {
  transform: translate3d(18px, 0, 52px) rotateZ(5deg);
}

.social-tile:nth-child(3) {
  transform: translate3d(58px, 32px, 86px) rotateZ(16deg);
}

.social-tile::before {
  content: "";
  position: absolute;
  inset: 13px 13px auto;
  height: 42px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 249, 242, 0.7), transparent 13%),
    linear-gradient(135deg, #ff5c00, #3a1f15);
}

.calendar-card {
  height: 112px;
}

.calendar-card:nth-child(1) {
  transform: translate3d(-18px, 18px, 0) rotateZ(-7deg);
}

.calendar-card:nth-child(2) {
  transform: translate3d(14px, 0, 48px) rotateZ(5deg);
}

.calendar-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 28px;
  border-radius: 8px 8px 0 0;
  background: var(--orange);
}

.calendar-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 50px;
  height: 10px;
  border-radius: 99px;
  box-shadow:
    0 0 0 999px transparent,
    0 0 0 0 rgba(0, 0, 0, 0);
  background: rgba(255, 249, 242, 0.2);
}

.render-chat .chat-shell {
  width: 82%;
  min-height: 138px;
  padding: 16px;
  transform: rotateX(9deg) rotateY(-16deg) rotateZ(-5deg);
}

.chat-bubble {
  width: 72%;
  min-height: 30px;
  margin-bottom: 10px;
  border-radius: 14px 14px 14px 4px;
  background: rgba(255, 249, 242, 0.14);
}

.chat-bubble:nth-child(2) {
  margin-left: auto;
  border-radius: 14px 14px 4px;
  background: linear-gradient(90deg, var(--orange), #b73600);
}

.render-flow .flow-map {
  width: 86%;
  height: 132px;
  position: relative;
}

.flow-node {
  position: absolute;
  width: 64px;
  height: 42px;
  border: 1px solid rgba(255, 249, 242, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.12), rgba(255, 92, 0, 0.1)),
    #17110f;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.34);
}

.flow-node:nth-of-type(1) {
  left: 0;
  top: 46px;
}

.flow-node:nth-of-type(2) {
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
}

.flow-node:nth-of-type(3) {
  right: 0;
  top: 64px;
}

.flow-map::before,
.flow-map::after {
  content: "";
  position: absolute;
  height: 1px;
  background: rgba(255, 92, 0, 0.55);
  transform-origin: left center;
}

.flow-map::before {
  left: 54px;
  top: 54px;
  width: 76px;
  transform: rotate(-26deg);
}

.flow-map::after {
  right: 54px;
  top: 55px;
  width: 80px;
  transform: rotate(32deg);
}

.email-card {
  width: 84%;
  height: 80px;
}

.email-card:nth-child(1) {
  transform: translate3d(-16px, 34px, 0) rotateZ(-7deg);
}

.email-card:nth-child(2) {
  transform: translate3d(18px, 12px, 46px) rotateZ(4deg);
}

.email-card:nth-child(3) {
  transform: translate3d(34px, 52px, 76px) rotateZ(12deg);
}

.email-card::before,
.email-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-top: 1px solid rgba(255, 249, 242, 0.24);
  transform: skewY(-18deg);
}

.email-card::after {
  transform: skewY(18deg);
}

.service-orbit {
  position: absolute;
  left: 50%;
  top: clamp(74px, 12%, 104px);
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: min(700px, calc(100% - 20px));
  gap: 8px;
  transform: translateX(-50%);
}

.service-orbit button {
  position: relative;
  min-height: 48px;
  display: inline-grid;
  grid-template-columns: 26px auto;
  gap: 8px;
  align-items: center;
  padding: 7px 11px 7px 8px;
  border-radius: 999px;
  border-color: rgba(255, 249, 242, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.08), rgba(255, 249, 242, 0.02)),
    rgba(13, 13, 13, 0.68);
  backdrop-filter: blur(16px);
  color: rgba(255, 249, 242, 0.74);
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.08),
    0 16px 32px rgba(0, 0, 0, 0.24);
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-orbit button strong {
  font-size: 0.78rem;
  line-height: 1;
}

.service-orbit button:hover,
.service-orbit button:focus-visible {
  transform: translateY(-1px);
  color: var(--ink);
}

.service-orbit button.active {
  border-color: rgba(255, 92, 0, 0.8);
  background:
    linear-gradient(145deg, rgba(255, 92, 0, 0.28), rgba(255, 249, 242, 0.05)),
    rgba(20, 12, 8, 0.88);
  color: var(--ink);
}

.service-glyph {
  position: relative;
  width: 26px;
  height: 26px;
  display: inline-block;
  border-radius: 8px;
  background:
    radial-gradient(circle at 68% 22%, rgba(255, 249, 242, 0.5), transparent 13%),
    linear-gradient(145deg, var(--orange), #9d2f00);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.28),
    0 8px 18px rgba(255, 92, 0, 0.18);
}

.service-glyph::before,
.service-glyph::after {
  content: "";
  position: absolute;
  background: rgba(255, 249, 242, 0.72);
}

.service-glyph-identity::before {
  left: 7px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  transform: rotate(45deg);
}

.service-glyph-web::before {
  left: 6px;
  right: 6px;
  top: 8px;
  height: 2px;
  box-shadow: 0 5px 0 rgba(255, 249, 242, 0.56), 0 10px 0 rgba(255, 249, 242, 0.36);
}

.service-glyph-marketing::before {
  left: 7px;
  bottom: 6px;
  width: 3px;
  height: 12px;
  box-shadow: 5px -4px 0 rgba(255, 249, 242, 0.62), 10px -8px 0 rgba(255, 249, 242, 0.48);
}

.service-glyph-social::before {
  left: 6px;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  box-shadow: 8px 0 0 rgba(255, 249, 242, 0.58), 0 8px 0 rgba(255, 249, 242, 0.48), 8px 8px 0 rgba(255, 249, 242, 0.38);
}

.service-glyph-automation::before,
.service-glyph-automation::after {
  display: none;
}

.service-glyph-network {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  overflow: visible;
  filter: drop-shadow(0 1px 4px rgba(255, 249, 242, 0.12));
  transform: translate(-50%, -50%);
}

.service-glyph-network path {
  fill: none;
  stroke: rgba(255, 249, 242, 0.68);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-glyph-network circle {
  fill: rgba(255, 249, 242, 0.88);
  stroke: rgba(255, 138, 61, 0.36);
  stroke-width: 0.7;
}

.palette-card:nth-child(1)::before {
  background:
    linear-gradient(90deg, #ff5c00 0 36%, #ff9b52 36% 68%, #8e2c00 68%),
    #ff5c00;
}

.palette-card:nth-child(2)::before {
  background:
    linear-gradient(90deg, #fff9f2 0 34%, #d8c3a5 34% 66%, #3b3028 66%),
    #fff9f2;
}

.palette-card:nth-child(3)::before {
  background:
    linear-gradient(90deg, #0b2f25 0 35%, #4f7362 35% 67%, #101710 67%),
    #0b2f25;
}

.store-screen {
  overflow: hidden;
}

.store-screen .screen-hero {
  width: 58%;
  height: 23px;
  border-radius: 5px;
}

.store-shelf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 12px;
}

.store-shelf i {
  position: relative;
  height: 38px;
  border: 1px solid rgba(255, 249, 242, 0.12);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.14) 0 43%, rgba(255, 92, 0, 0.42) 43% 100%),
    rgba(255, 249, 242, 0.04);
}

.store-shelf i::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 7px;
  height: 4px;
  border-radius: 99px;
  background: rgba(13, 13, 13, 0.52);
}

.render-video-phone {
  transform: rotateX(8deg) rotateY(-18deg) rotateZ(-7deg);
}

.video-screen {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 92, 0, 0.22), transparent 42%),
    radial-gradient(circle at 52% 42%, rgba(255, 249, 242, 0.16), transparent 24%),
    linear-gradient(145deg, rgba(255, 249, 242, 0.12), rgba(13, 13, 13, 0.36));
}

.video-screen::before {
  left: 13px;
  right: 13px;
  top: auto;
  bottom: 16px;
  height: 4px;
  background: rgba(255, 249, 242, 0.24);
}

.video-screen::after {
  left: 13px;
  right: auto;
  top: auto;
  bottom: 16px;
  width: 28px;
  height: 4px;
  background: var(--orange);
}

.video-play {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 249, 242, 0.24);
  border-radius: 50%;
  background: rgba(13, 13, 13, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.16),
    0 12px 24px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.video-play::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 10px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid rgba(255, 249, 242, 0.9);
}

.render-social-grid .social-grid {
  width: 168px;
  max-width: 92%;
  transform: translateX(2px);
}

.social-tile {
  inset: auto;
  left: 50%;
  top: 50%;
}

.social-tile:nth-child(1) {
  transform: translate3d(-92px, -26px, 0) rotateZ(-12deg);
}

.social-tile:nth-child(2) {
  transform: translate3d(-39px, -52px, 52px) rotateZ(2deg);
}

.social-tile:nth-child(3) {
  transform: translate3d(14px, -24px, 86px) rotateZ(13deg);
}

.render-chat .chat-shell {
  display: grid;
  align-content: center;
  gap: 9px;
}

.chat-bubble {
  position: relative;
  display: block;
  min-height: 28px;
  margin-bottom: 0;
  box-shadow: inset 0 1px 0 rgba(255, 249, 242, 0.12);
}

.chat-bubble::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 18px;
  top: 10px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 249, 242, 0.34);
}

.chat-bubble::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 36px;
  top: 18px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 249, 242, 0.22);
}

.chat-sent {
  margin-left: auto;
  margin-right: 0;
  border-radius: 14px 14px 4px;
  background: linear-gradient(90deg, var(--orange), #b73600);
}

.chat-sent::before,
.chat-sent::after {
  background: rgba(255, 249, 242, 0.64);
}

.chat-reply {
  margin-left: 0;
  margin-right: auto;
  border-radius: 14px 14px 14px 4px;
  background: rgba(255, 249, 242, 0.16);
}

.chat-bubble.is-short {
  width: 54%;
  min-height: 24px;
}

.render-chat .chat-shell .chat-sent {
  margin-left: auto;
  margin-right: 0;
  border-radius: 14px 14px 4px;
  background: linear-gradient(90deg, var(--orange), #b73600);
}

.render-chat .chat-shell .chat-reply {
  margin-left: 0;
  margin-right: auto;
  border-radius: 14px 14px 14px 4px;
  background: rgba(255, 249, 242, 0.16);
}

.render-chat .chat-shell .chat-reply::before {
  background: rgba(255, 249, 242, 0.34);
}

.render-chat .chat-shell .chat-reply::after {
  background: rgba(255, 249, 242, 0.22);
}

.render-flow .flow-map {
  width: 174px;
  max-width: 92%;
  height: 132px;
  transform: rotateX(11deg) rotateY(13deg) rotateZ(2deg);
}

.flow-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: visible;
}

.flow-lines path {
  fill: none;
  stroke: rgba(255, 92, 0, 0.64);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255, 92, 0, 0.22));
}

.flow-node {
  width: 44px;
  height: 32px;
  z-index: 1;
}

.flow-node::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 15px 0 0 rgba(255, 249, 242, 0.3);
}

.flow-node::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 249, 242, 0.2);
}

.flow-node:nth-of-type(1) {
  left: 12px;
  top: 52px;
}

.flow-node:nth-of-type(2) {
  left: 75px;
  top: 52px;
  transform: none;
  border-radius: 12px;
}

.flow-node:nth-of-type(2)::before {
  left: 50%;
  top: 50%;
  width: 11px;
  height: 11px;
  box-shadow: none;
  transform: translate(-50%, -50%) rotate(45deg);
}

.flow-node:nth-of-type(2)::after {
  display: none;
}

.flow-node:nth-of-type(3) {
  right: 6px;
  top: 26px;
}

.flow-node:nth-of-type(4) {
  right: 6px;
  top: 84px;
}

.flow-map::before {
  display: none;
}

.flow-map::after {
  display: none;
}

.render-emails .email-stack {
  width: 172px;
  max-width: 92%;
  transform: rotateX(11deg) rotateY(-16deg) rotateZ(-5deg);
}

.email-stack::before,
.email-stack::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
}

.email-stack::before {
  bottom: 5px;
  width: 148px;
  height: 54px;
  border: 1px solid rgba(255, 249, 242, 0.18);
  border-radius: 12px 12px 16px 16px;
  background:
    linear-gradient(180deg, rgba(255, 92, 0, 0.28), rgba(255, 249, 242, 0.05)),
    rgba(18, 14, 12, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.12),
    0 18px 30px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%) translateZ(36px);
}

.email-stack::after {
  bottom: 37px;
  width: 106px;
  height: 20px;
  border-right: 1px solid rgba(255, 249, 242, 0.2);
  border-bottom: 1px solid rgba(255, 249, 242, 0.2);
  border-left: 1px solid rgba(255, 249, 242, 0.2);
  border-radius: 0 0 14px 14px;
  transform: translateX(-50%) translateZ(52px);
}

.email-card {
  inset: auto;
  left: 50%;
  width: 132px;
  height: 46px;
  border-radius: 10px;
}

.email-card:nth-child(1) {
  top: 12px;
  transform: translate3d(-50%, 0, 0) rotateZ(-7deg);
}

.email-card:nth-child(2) {
  top: 36px;
  transform: translate3d(calc(-50% + 14px), 0, 42px) rotateZ(3deg);
}

.email-card:nth-child(3) {
  top: 62px;
  transform: translate3d(calc(-50% - 8px), 0, 72px) rotateZ(-2deg);
}

.email-card::before,
.email-card::after {
  content: "";
  position: absolute;
  inset: auto;
  border: 0;
  transform: none;
}

.email-card::before {
  left: 12px;
  top: 12px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
}

.email-card::after {
  left: 36px;
  right: 14px;
  top: 14px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 249, 242, 0.26);
  box-shadow: 0 11px 0 rgba(255, 249, 242, 0.16);
}

.service-glyph {
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 26px;
}

.service-glyph-marketing::before {
  left: 6px;
  bottom: 8px;
  width: 3px;
  height: 8px;
  border-radius: 1px;
  box-shadow: 5px -3px 0 rgba(255, 249, 242, 0.62), 10px -6px 0 rgba(255, 249, 242, 0.48);
}

.service-glyph-marketing::after {
  display: none;
}

.render-launch-board .launch-board {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  overflow: hidden;
  transform: rotateX(10deg) rotateY(-18deg) rotateZ(-4deg);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-artifact[data-artifact-type="launch-board"]:hover {
  transform: translate3d(-50%, -50%, 108px) rotateX(5deg) rotateY(-7deg) rotateZ(-2deg) scale(1.018);
}

.brand-artifact[data-artifact-type="launch-board"]:hover .launch-board {
  transform: rotateX(5deg) rotateY(-7deg) rotateZ(-1deg);
}

.brand-artifact:hover {
  border-color: rgba(255, 249, 242, 0.24);
  z-index: 12;
}

.artifact-primary:hover {
  transform: translate3d(-50%, -50%, 108px) rotateX(5deg) rotateY(-7deg) rotateZ(-2deg) scale(1.018);
}

.artifact-secondary:hover {
  transform: translate3d(0, -50%, 46px) rotateX(5deg) rotateY(8deg) rotateZ(3deg) scale(1.018);
}

.artifact-tertiary:hover {
  transform: translate3d(0, -50%, 52px) rotateX(5deg) rotateY(-8deg) rotateZ(-3deg) scale(1.018);
}

.brand-artifact:hover .artifact-render {
  filter: drop-shadow(0 26px 26px rgba(0, 0, 0, 0.42)) saturate(1.08);
}

.board-header {
  display: flex;
  gap: 5px;
}

.board-header i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 249, 242, 0.24);
}

.board-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  min-height: 62px;
}

.board-columns i {
  position: relative;
  display: block;
  border: 1px solid rgba(255, 249, 242, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 92, 0, 0.34), rgba(255, 249, 242, 0.045)),
    rgba(13, 13, 13, 0.34);
}

.board-columns b,
.board-columns em {
  position: absolute;
  left: 9px;
  right: 9px;
  display: block;
  border-radius: 99px;
}

.board-columns b {
  top: 10px;
  height: 16px;
  background: var(--orange);
  box-shadow: 0 8px 16px rgba(255, 92, 0, 0.18);
}

.board-columns em {
  bottom: 12px;
  height: 5px;
  background: rgba(255, 249, 242, 0.26);
}

.board-timeline {
  position: relative;
  height: 13px;
  border-radius: 99px;
  background: rgba(255, 249, 242, 0.13);
  overflow: hidden;
}

.board-timeline i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 62%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), rgba(255, 138, 61, 0.62));
}

.render-inbox .inbox-window {
  position: relative;
  width: 88%;
  height: 124px;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 242, 0.18);
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.18), rgba(255, 249, 242, 0.04)),
    rgba(15, 12, 10, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.16),
    0 20px 38px rgba(0, 0, 0, 0.34);
  transform: rotateX(9deg) rotateY(-16deg) rotateZ(-5deg);
}

.inbox-top {
  position: absolute;
  inset: 0 0 auto;
  height: 18px;
  border-bottom: 1px solid rgba(255, 249, 242, 0.1);
  background: rgba(255, 249, 242, 0.08);
}

.inbox-top i {
  position: absolute;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 249, 242, 0.45);
}

.inbox-top i:nth-child(1) {
  right: 18px;
}

.inbox-top i:nth-child(2) {
  right: 11px;
}

.inbox-top i:nth-child(3) {
  right: 4px;
}

.inbox-sidebar {
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 0;
  width: 32%;
  border-right: 1px solid rgba(255, 249, 242, 0.1);
  background: rgba(255, 249, 242, 0.035);
}

.inbox-sidebar i {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 249, 242, 0.28);
}

.inbox-sidebar i:nth-child(1) {
  top: 14px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 92, 0, 0.78);
}

.inbox-sidebar i:nth-child(2) {
  top: 36px;
  width: 40px;
}

.inbox-sidebar i:nth-child(3) {
  top: 56px;
}

.inbox-sidebar i:nth-child(4) {
  top: 72px;
  width: 45px;
}

.inbox-list {
  position: absolute;
  left: 32%;
  right: 0;
  top: 18px;
  bottom: 0;
  padding: 11px 10px;
  display: grid;
  gap: 6px;
}

.inbox-list i {
  position: relative;
  display: block;
  min-height: 25px;
  border-bottom: 1px solid rgba(255, 249, 242, 0.1);
}

.inbox-list b,
.inbox-list em,
.inbox-list span {
  position: absolute;
  display: block;
  border-radius: 99px;
}

.inbox-list b {
  left: 0;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 92, 0, 0.72);
}

.inbox-list em {
  left: 18px;
  top: 4px;
  width: 42%;
  height: 4px;
  background: rgba(255, 249, 242, 0.34);
}

.inbox-list span {
  left: 18px;
  right: 8px;
  top: 15px;
  height: 4px;
  background: rgba(255, 249, 242, 0.2);
}

.service-readout {
  position: absolute;
  left: 50%;
  bottom: 3%;
  z-index: 7;
  transform: translateX(-50%);
  display: grid;
  gap: 8px;
  width: min(440px, 88%);
  padding: 18px 20px;
  border: 1px solid rgba(255, 249, 242, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 249, 242, 0.13), transparent 38%),
    linear-gradient(145deg, rgba(255, 249, 242, 0.09), rgba(255, 249, 242, 0.035)),
    rgba(13, 13, 13, 0.76);
  backdrop-filter: blur(18px);
  overflow: hidden;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.16),
    inset 0 -24px 42px rgba(0, 0, 0, 0.24),
    0 32px 80px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(255, 92, 0, 0.1);
}

.service-readout::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 249, 242, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

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

.service-readout strong {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  text-transform: uppercase;
  line-height: 1;
}

.service-readout p {
  max-width: 40ch;
  margin: 0 auto;
  color: rgba(255, 249, 242, 0.66);
  font-size: 0.88rem;
  line-height: 1.45;
}

@keyframes artifact-float {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -12px;
  }
}

.locations-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(300px, 0.76fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(18px, 3vw, 48px);
  padding-bottom: clamp(84px, 9vw, 136px);
  scroll-margin-top: 150px;
  isolation: isolate;
}

.locations-section::before {
  content: "";
  position: absolute;
  inset: clamp(8px, 1.5vw, 22px) 0 clamp(46px, 6vw, 84px);
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 73% 42%, rgba(255, 92, 0, 0.21), transparent 31rem),
    radial-gradient(ellipse at 19% 70%, rgba(255, 249, 242, 0.06), transparent 24rem),
    linear-gradient(180deg, transparent, rgba(255, 249, 242, 0.018) 36%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 82%, transparent);
}

.locations-copy h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 3.4vw, 3.9rem);
}

.locations-copy p {
  max-width: 540px;
}

.market-note {
  margin-top: 14px;
  color: rgba(255, 249, 242, 0.56);
  font-size: 0.98rem;
}

.market-note a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 138, 61, 0.64);
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.market-note a:hover,
.market-note a:focus-visible {
  color: var(--orange-2);
  border-color: currentColor;
}

.location-list {
  display: grid;
  gap: 10px;
  max-width: 440px;
  margin-top: 26px;
}

.location-list button {
  position: relative;
  isolation: isolate;
  min-height: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 13px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 242, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.08), rgba(255, 249, 242, 0.03)),
    rgba(13, 13, 13, 0.54);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(12px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.14),
    0 14px 34px rgba(0, 0, 0, 0.14);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.location-list button::before {
  content: none;
}

.location-list button::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255, 249, 242, 0.13), transparent 38%, rgba(255, 92, 0, 0.11));
  opacity: 0.55;
}

.location-list button > * {
  position: relative;
  z-index: 1;
}

.location-list button:hover,
.location-list button:focus-visible,
.location-list button.active {
  border-color: rgba(255, 138, 61, 0.5);
  background:
    linear-gradient(145deg, rgba(255, 138, 61, 0.14), rgba(255, 249, 242, 0.045)),
    rgba(18, 13, 10, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.2),
    0 16px 44px rgba(255, 92, 0, 0.11);
  transform: translateX(6px);
}

.location-list span {
  grid-column: 1;
}

.location-list span,
.location-readout strong {
  font-size: clamp(1.05rem, 1.8vw, 1.65rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.location-list strong {
  grid-column: 2;
}

.location-list strong,
.location-readout span {
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.location-globe-shell {
  position: relative;
  min-height: clamp(330px, 34vw, 460px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 242, 0.16);
  border-radius: clamp(26px, 3vw, 42px);
  background:
    radial-gradient(circle at 50% 47%, rgba(255, 92, 0, 0.18), transparent 21rem),
    radial-gradient(ellipse at 18% 18%, rgba(255, 249, 242, 0.09), transparent 18rem),
    linear-gradient(145deg, rgba(255, 249, 242, 0.07), rgba(255, 92, 0, 0.065)),
    rgba(10, 8, 7, 0.74);
  backdrop-filter: blur(22px) saturate(1.16);
  box-shadow:
    var(--glass-edge),
    var(--glass-shadow);
}

.location-globe-shell::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.16), transparent 62%);
  filter: blur(24px);
}

.location-cobe-stage {
  position: relative;
  z-index: 1;
  width: min(84%, 360px);
  aspect-ratio: 1;
}

.location-cobe-stage > div {
  width: 100%;
  height: 100%;
}

.location-pulse-marker {
  position: absolute;
  bottom: anchor(center);
  left: anchor(center);
  z-index: 3;
  width: 40px;
  height: 40px;
  pointer-events: none;
  translate: -50% 50%;
  opacity: var(--cobe-visible-tampa, 0);
  filter: blur(calc((1 - var(--cobe-visible-tampa, 0)) * 8px));
  transition:
    opacity 0.4s ease,
    filter 0.4s ease,
    transform 0.25s ease;
}

.location-pulse-marker[data-location-marker="tampa"] {
  position-anchor: --cobe-tampa;
  opacity: var(--cobe-visible-tampa, 0);
  filter: blur(calc((1 - var(--cobe-visible-tampa, 0)) * 8px));
  --pulse-delay: 0s;
}

.location-pulse-marker[data-location-marker="los-angeles"] {
  position-anchor: --cobe-los-angeles;
  opacity: var(--cobe-visible-los-angeles, 0);
  filter: blur(calc((1 - var(--cobe-visible-los-angeles, 0)) * 8px));
  --pulse-delay: 0.5s;
}

.location-pulse-marker[data-location-marker="san-juan"] {
  position-anchor: --cobe-san-juan;
  opacity: var(--cobe-visible-san-juan, 0);
  filter: blur(calc((1 - var(--cobe-visible-san-juan, 0)) * 8px));
  --pulse-delay: 1s;
}

.location-pulse-marker i,
.location-pulse-marker b {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.location-pulse-marker i {
  inset: 0;
  border: 2px solid rgba(255, 138, 61, 0.78);
  opacity: 0;
  animation: location-pulse-expand 2s ease-out infinite var(--pulse-delay);
}

.location-pulse-marker i:nth-child(2) {
  animation-delay: calc(var(--pulse-delay) + 0.5s);
}

.location-pulse-marker b {
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--orange-2);
  box-shadow:
    0 0 0 3px rgba(12, 9, 8, 0.95),
    0 0 0 5px rgba(255, 249, 242, 0.68),
    0 0 24px rgba(255, 92, 0, 0.62);
  transform: translate(-50%, -50%);
}

.location-pulse-marker.active {
  transform: scale(1.08);
}

#locationGlobe {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  cursor: grab;
  opacity: 0;
  touch-action: none;
  transition: opacity 1.2s ease;
}

.location-globe-shell.is-cobe-ready #locationGlobe {
  opacity: 1;
}

#locationGlobe.is-dragging {
  cursor: grabbing;
}

@keyframes location-pulse-expand {
  0% {
    opacity: 0.8;
    transform: scaleX(0.3) scaleY(0.3);
  }

  100% {
    opacity: 0;
    transform: scaleX(1.5) scaleY(1.5);
  }
}

.location-readout {
  position: absolute;
  right: clamp(14px, 2.4vw, 24px);
  bottom: clamp(14px, 2.4vw, 24px);
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(280px, calc(100% - 28px));
  padding: 15px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 242, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.085), rgba(255, 92, 0, 0.04)),
    rgba(10, 9, 8, 0.72);
  backdrop-filter: blur(20px) saturate(1.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 242, 0.18),
    var(--shadow);
}

.location-readout p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.comparison-section {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.66fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: stretch;
  scroll-margin-top: 150px;
}

.before-after {
  position: relative;
  min-height: clamp(390px, 34vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(255, 249, 242, 0.18);
  border-radius: clamp(24px, 3vw, 40px);
  background:
    radial-gradient(circle at 22% 72%, rgba(255, 249, 242, 0.12), transparent 16rem),
    radial-gradient(ellipse at 76% 26%, rgba(255, 92, 0, 0.16), transparent 26rem),
    rgba(13, 13, 13, 0.78);
  backdrop-filter: blur(18px) saturate(1.1);
  box-shadow:
    var(--glass-edge),
    var(--glass-shadow);
  isolation: isolate;
  touch-action: none;
}

.before-after::before {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 28% 70%, rgba(255, 249, 242, 0.1), transparent 18rem),
    conic-gradient(from 212deg at 70% 34%, rgba(255, 92, 0, 0.24), rgba(255, 249, 242, 0.05), rgba(255, 92, 0, 0.16), transparent 72%),
    linear-gradient(130deg, rgba(255, 249, 242, 0.04), transparent 42%);
  filter: blur(8px);
}

.comparison-layer {
  position: absolute;
  inset: 0;
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  align-items: center;
}

.comparison-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.comparison-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.38;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 78%, transparent);
}

.comparison-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  opacity: 0.13;
  filter: saturate(0.85) contrast(1.06);
  mix-blend-mode: screen;
}

.comparison-after-layer {
  justify-content: flex-end;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 92, 0, 0.3), transparent 20rem),
    linear-gradient(135deg, rgba(255, 92, 0, 0.08), rgba(255, 249, 242, 0.02));
}

.comparison-after-media {
  opacity: 0.54;
  filter: saturate(1.08) contrast(1.05) brightness(0.86);
}

.comparison-after-layer::after {
  background-image:
    linear-gradient(90deg, rgba(10, 8, 7, 0.08), rgba(12, 8, 5, 0.32) 48%, rgba(12, 7, 4, 0.64)),
    radial-gradient(circle at 70% 18%, rgba(255, 92, 0, 0.16), transparent 21rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.34));
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.comparison-before-layer {
  z-index: 2;
  justify-content: flex-start;
  clip-path: inset(0 calc(100% - var(--compare-position, 52%)) 0 0);
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.78), rgba(8, 7, 6, 0.48) 46%, rgba(8, 7, 6, 0.18)),
    radial-gradient(circle at 18% 20%, rgba(255, 249, 242, 0.08), transparent 15rem),
    linear-gradient(135deg, rgba(255, 249, 242, 0.04), rgba(0, 0, 0, 0.1)),
    rgba(9, 9, 9, 0.9);
}

.comparison-before-layer::after {
  background-image:
    linear-gradient(90deg, rgba(7, 7, 7, 0.72), rgba(8, 7, 6, 0.18) 56%, rgba(8, 7, 6, 0.04)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28)),
    url("./assets/before-brand-desk.jpg");
  background-position: 50% 45%;
  opacity: 0.54;
  filter: saturate(0.64) contrast(1.04) brightness(0.9);
  mix-blend-mode: normal;
}

.comparison-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: space-between;
  min-height: 100%;
}

.comparison-before-layer .comparison-content {
  width: clamp(190px, calc(var(--compare-position, 52%) - 56px), 380px);
}

.comparison-after-layer .comparison-content {
  width: clamp(200px, calc(100% - var(--compare-position, 52%) - 56px), 430px);
}

.comparison-content p {
  margin: 0;
  color: var(--orange-2);
  font-weight: 850;
  text-transform: uppercase;
}

.comparison-content h3 {
  max-width: 13ch;
  margin: 0;
  align-self: center;
  font-size: clamp(1.9rem, 3.2vw, 3.45rem);
  line-height: 0.98;
}

.comparison-divider {
  position: absolute;
  inset: 0 auto 0 var(--compare-position, 52%);
  z-index: 4;
  width: 1px;
  transform: translateX(-50%);
  background: rgba(255, 249, 242, 0.34);
  pointer-events: none;
}

.comparison-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 1px rgba(13, 13, 13, 0.38);
  transform: translate(-50%, -50%);
}

.comparison-divider svg {
  display: none;
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-slider:focus-within {
  border-color: rgba(255, 249, 242, 0.3);
  box-shadow: 0 0 0 2px rgba(255, 249, 242, 0.08);
}

.comparison-section blockquote {
  position: relative;
  margin: 0;
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 242, 0.17);
  border-radius: clamp(24px, 3vw, 38px);
  background:
    radial-gradient(ellipse at 70% 18%, rgba(255, 92, 0, 0.18), transparent 19rem),
    linear-gradient(145deg, rgba(255, 249, 242, 0.08), rgba(255, 249, 242, 0.025)),
    rgba(14, 11, 9, 0.62);
  color: var(--ink);
  backdrop-filter: blur(18px) saturate(1.12);
  box-shadow:
    var(--glass-edge),
    0 18px 54px rgba(0, 0, 0, 0.22);
  font-size: clamp(1.35rem, 2.4vw, 2.6rem);
  line-height: 1.1;
}

.comparison-section blockquote::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 249, 242, 0.16), transparent 36%, rgba(255, 92, 0, 0.08)),
    radial-gradient(ellipse at 0% 0%, rgba(255, 249, 242, 0.14), transparent 40%);
}

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

.comparison-section cite {
  margin-top: 28px;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  text-transform: uppercase;
}

.comparison-section cite span:first-child {
  color: rgba(255, 249, 242, 0.82);
  font-weight: 850;
  letter-spacing: 0.02em;
}

.comparison-section cite span:last-child {
  color: rgba(255, 249, 242, 0.54);
}

.audit-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.audit-copy {
  position: sticky;
  top: 120px;
  max-width: 780px;
}

.audit-copy h2 {
  max-width: min(100%, clamp(540px, 48vw, 720px));
  font-size: clamp(2.55rem, 4.25vw, 5rem);
  text-wrap: balance;
}

.audit-copy > p {
  max-width: 760px;
}

.audit-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(255, 249, 242, 0.16);
  background:
    radial-gradient(circle at 85% 0, rgba(255, 92, 0, 0.2), transparent 17rem),
    rgba(255, 249, 242, 0.07);
  box-shadow: var(--shadow);
}

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

.audit-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-form input,
.audit-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(255, 249, 242, 0.16);
  border-radius: var(--radius);
  outline: none;
  background: rgba(0, 0, 0, 0.28);
  color: var(--ink);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.audit-form input:focus,
.audit-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 92, 0, 0.16);
}

.audit-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 249, 242, 0.64) 50%),
    linear-gradient(135deg, rgba(255, 249, 242, 0.64) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.audit-form select option {
  color: #fff9f2;
  background: #15110f;
}

.audit-preview {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 249, 242, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
}

.audit-preview strong {
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.consent-field {
  grid-template-columns: 18px 1fr;
  gap: 13px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 249, 242, 0.13);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
}

.audit-form .consent-field {
  color: rgba(255, 249, 242, 0.62);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.62;
  text-transform: none;
}

.audit-form .consent-field input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--orange);
}

.consent-field strong {
  color: rgba(255, 249, 242, 0.78);
  font-weight: 800;
}

.consent-field a {
  color: var(--orange);
  font-weight: 800;
  text-decoration: none;
}

.consent-field a:hover,
.consent-field a:focus-visible {
  text-decoration: underline;
}

.form-error {
  display: none;
  margin: 0;
  padding: 13px 15px;
  border: 1px solid rgba(255, 92, 0, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 92, 0, 0.08);
  color: rgba(255, 214, 190, 0.94);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-error.visible {
  display: block;
}

.submit-button {
  width: 100%;
  min-height: 56px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.form-note {
  margin: 0;
  color: #9f9791;
  font-size: 0.86rem;
}

.success-message {
  display: none;
  padding: 16px;
  border: 1px solid rgba(255, 92, 0, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 92, 0, 0.12);
  color: var(--ink);
  line-height: 1.45;
}

.success-message.visible {
  display: block;
}

.site-footer {
  position: relative;
  width: 100%;
  max-width: none;
  margin: clamp(76px, 9vw, 132px) 0 0;
  padding:
    clamp(64px, 7vw, 92px)
    max(var(--page-gutter), calc((100vw - 1180px) / 2))
    clamp(70px, 7vw, 96px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 249, 242, 0.18);
  border-radius: clamp(34px, 4vw, 56px) clamp(34px, 4vw, 56px) 0 0;
  background:
    radial-gradient(36% 150px at 50% 0%, rgba(255, 249, 242, 0.09), transparent 72%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.04), transparent 56%),
    rgba(7, 7, 7, 0.48);
}

.footer-top-glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 33%;
  height: 1px;
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.36);
  filter: blur(4px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(58px, 7vw, 86px);
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.footer-logo img {
  width: 58px;
  height: 42px;
  object-fit: contain;
  filter:
    drop-shadow(0 8px 15px rgba(0, 0, 0, 0.42))
    drop-shadow(0 4px 12px rgba(255, 92, 0, 0.2));
}

.footer-text-lockup .brand-title {
  font-size: clamp(1.18rem, 1.55vw, 1.5rem);
}

.footer-text-lockup .brand-subtitle {
  font-size: clamp(0.62rem, 0.78vw, 0.78rem);
}

.site-footer p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(38px, 7vw, 112px);
  align-items: start;
}

.footer-columns h3 {
  margin: 0;
  color: rgba(255, 249, 242, 0.92);
  font-size: 0.78rem;
  font-weight: 750;
}

.footer-columns ul {
  display: grid;
  gap: 13px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.95rem;
  list-style: none;
}

.footer-columns a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: inherit;
  transition:
    color 260ms ease,
    transform 260ms ease,
    opacity 260ms ease;
}

.footer-columns a:hover,
.footer-columns a:focus-visible {
  color: var(--ink);
  transform: translateX(3px);
}

.footer-columns svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

.footer-cell[data-reveal] {
  filter: blur(4px);
  transform: translateY(-8px);
  transition:
    opacity 800ms ease,
    filter 800ms ease,
    transform 800ms ease;
  transition-delay: var(--footer-delay, 0s);
}

.footer-cell[data-reveal].is-visible {
  filter: blur(0);
  transform: translateY(0);
}

.legal-page .ambient-field {
  opacity: 0.72;
}

.legal-site-header {
  position: fixed;
}

.legal-main {
  width: min(100% - (var(--page-gutter) * 2), 1180px);
  margin: 0 auto;
  padding: clamp(150px, 18vw, 220px) 0 0;
}

.legal-hero {
  max-width: 880px;
  padding-bottom: clamp(42px, 5vw, 68px);
  border-bottom: 1px solid rgba(255, 249, 242, 0.16);
}

.legal-hero h1 {
  margin: 12px 0 20px;
  color: var(--ink);
  font-size: clamp(3.6rem, 9vw, 8.8rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.legal-hero p:not(.small-label) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.legal-content {
  display: grid;
  gap: clamp(30px, 4vw, 46px);
  max-width: 820px;
  padding: clamp(42px, 5vw, 68px) 0 0;
}

.legal-content section {
  display: grid;
  gap: 14px;
}

.legal-content h2 {
  margin: 0;
  color: rgba(255, 249, 242, 0.94);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.legal-content p {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.72;
}

.legal-content a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(255, 92, 0, 0.72);
  text-underline-offset: 0.2em;
}

.site-header[data-reveal],
.hero-copy[data-reveal] {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(255, 92, 0, 0.72);
  outline-offset: 3px;
}

@keyframes rotateButton {
  to {
    --button-angle: 360deg;
  }
}

@keyframes floatA {
  50% {
    transform: translate3d(2px, -16px, 130px) rotateY(-14deg) rotateZ(-2deg);
  }
}

@keyframes floatB {
  50% {
    transform: translate3d(-4px, 18px, 80px) rotateY(14deg) rotateZ(3deg);
  }
}

@keyframes floatC {
  50% {
    transform: translate3d(4px, -12px, 170px) rotateX(8deg) rotateY(-8deg) rotateZ(1deg);
  }
}

@keyframes logoFloat {
  50% {
    transform: translate3d(calc(-50% + 3px), calc(-50% - 14px), 205px) rotateY(5deg) rotateZ(-1deg);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero-section,
  .cinema-sticky,
  .method-section,
  .work-experience,
  .services-section,
  .locations-section,
  .comparison-section,
  .audit-section {
    grid-template-columns: 1fr;
  }

  .work-section .section-heading {
    grid-template-columns: 1fr;
    gap: clamp(16px, 4vw, 28px);
  }

  .work-heading-copy {
    max-width: 62ch;
    margin-bottom: 0;
  }

  .hero-section {
    min-height: auto;
    max-width: 100vw;
    overflow: hidden;
  }

  h1 {
    max-width: 14.8ch;
  }

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

  .sticky-copy,
  .audit-copy {
    position: static;
    min-height: auto;
    display: block;
  }

  .method-card {
    grid-template-columns: 1fr;
    min-height: clamp(740px, 112dvh, 980px);
    padding: clamp(48px, 9vw, 78px) 0 clamp(62px, 9vh, 96px);
    gap: clamp(22px, 5vw, 32px);
  }

  .method-card:nth-child(even) > span,
  .method-card:nth-child(even) > h3,
  .method-card:nth-child(even) > p {
    grid-column: 1;
  }

  .image-slice {
    grid-column: 1;
    grid-row: auto;
    top: clamp(76px, 12vh, 106px);
    height: clamp(300px, 58vw, 520px);
    min-height: 0;
  }

  .scroll-cinema {
    min-height: 560dvh;
  }

  .cinema-sticky {
    align-content: center;
    gap: 22px;
    padding-top: 94px;
  }

  .cinema-copy h2 {
    max-width: 12ch;
  }

  .cinema-stage {
    min-height: 54dvh;
  }

  .cinema-object {
    width: 200px;
  }

  .object-web,
  .object-launch {
    width: 260px;
  }

  .service-constellation {
    min-height: clamp(680px, 82vw, 820px);
  }

  .project-gallery-viewer {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    max-height: none;
  }

  .work-experience.is-project-gallery-open .gallery-shell,
  .work-experience.is-project-gallery-open .project-panel {
    display: none;
  }

  .project-gallery-stage {
    min-height: clamp(360px, 58vw, 520px);
  }

  .artifact-primary {
    width: clamp(220px, 34vw, 310px);
  }

  .artifact-secondary,
  .artifact-tertiary {
    width: clamp(170px, 26vw, 230px);
  }
}

@media (max-width: 720px) {
  :root {
    --page-gutter: 16px;
  }

  .sticky-copy h2 {
    max-width: 100%;
    font-size: clamp(2.55rem, 10.8vw, 3.25rem);
    line-height: 0.98;
  }

  :root[data-language="es"] .sticky-copy h2 {
    font-size: clamp(2.28rem, 9.7vw, 3rem);
  }

  .site-header {
    top: 10px;
    gap: 10px;
    min-height: 58px;
    padding: 8px 8px 8px 12px;
  }

  .header-actions {
    gap: 6px;
  }

  .language-toggle {
    min-height: 34px;
    padding: 2px;
  }

  .language-toggle button {
    min-width: 30px;
    min-height: 28px;
    padding: 0 7px;
    font-size: 0.68rem;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.52rem;
  }

  .brand-text-lockup {
    transform: translateY(1px);
  }

  .brand-symbol {
    width: 38px;
    height: 30px;
  }

  .brand-symbol-3d {
    width: 52px;
    height: 38px;
  }

  .nav-cta {
    width: 46px;
    min-height: 42px;
    min-width: 46px;
    padding: 0;
    gap: 0;
  }

  .nav-cta-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero-section {
    display: block;
    padding-top: 104px;
    padding-bottom: 22px;
  }

  .hero-stage {
    margin-top: 34px;
  }

  .image-slice {
    height: clamp(260px, 68vw, 420px);
    border-radius: 24px;
  }

  .scroll-cinema {
    min-height: 590dvh;
    margin-top: 20px;
  }

  .cinema-sticky {
    min-height: 100svh;
    padding: 86px 16px 18px;
  }

  .cinema-copy h2 {
    max-width: 10ch;
    margin-bottom: 12px;
  }

  .cinema-copy p:not(.small-label) {
    max-width: 33ch;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .cinema-meter {
    margin-top: 18px;
  }

  .cinema-stage {
    min-height: 42dvh;
    margin-inline: -16px;
    border-left: 0;
    border-right: 0;
  }

  .cinema-world {
    inset: -22% -34% -30%;
  }

  .cinema-floor {
    width: 180%;
  }

  .cinema-wall {
    width: 48%;
  }

  .cinema-object {
    width: 156px;
    min-height: 156px;
    padding: 15px;
  }

  .cinema-object strong {
    font-size: 1.12rem;
  }

  .cinema-object p {
    font-size: 0.78rem;
  }

  .object-web,
  .object-launch {
    width: 208px;
    min-height: 176px;
  }

  .location-globe-shell {
    min-height: 500px;
  }

  .location-list button {
    transform: none;
  }

  .location-list button:hover,
  .location-list button:focus-visible,
  .location-list button.active {
    transform: none;
  }

  .cinema-hud {
    right: 12px;
    bottom: 12px;
  }

  .cinema-hud strong {
    font-size: 0.95rem;
  }

  .cinema-steps {
    justify-content: flex-start;
    gap: 22px;
    width: 100%;
    margin-inline: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .cinema-steps::-webkit-scrollbar {
    display: none;
  }

  .cinema-steps button {
    min-height: 46px;
    flex: 0 0 auto;
    padding: 0 0 8px;
    font-size: 0.68rem;
  }

  .hero-copy,
  .hero-intro {
    min-width: 0;
  }

  .hero-intro {
    max-width: 33ch;
    font-size: 1.05rem;
  }

  h1 {
    max-width: 11.4ch;
    font-size: clamp(2.95rem, 12vw, 4rem);
    line-height: 0.95;
  }

  .gooey-words {
    width: 8.2ch;
  }

  h2 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .hero-actions,
  .project-controls,
  .audit-promises {
    align-items: stretch;
  }

  .form-row.two-up {
    grid-template-columns: 1fr;
  }

  .hero-actions .primary-button,
  .secondary-link {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .secondary-link {
    justify-content: space-between;
    padding-right: 8px;
  }

  .hero-stage {
    min-height: 480px;
    margin-inline: -16px;
  }

  .identity-core {
    width: clamp(210px, 58vw, 270px);
  }

  .floating-plane {
    width: 170px;
  }

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

  .belief-section {
    min-height: auto;
    padding: 0 var(--page-gutter) var(--section-space);
  }

  .belief-sticky {
    position: relative;
    min-height: auto;
    display: block;
    padding: clamp(78px, 14vw, 112px) 0 0;
    overflow: visible;
  }

  .belief-heading {
    margin-bottom: clamp(26px, 7vw, 44px);
  }

  .belief-heading h2 {
    max-width: 12ch;
    font-size: clamp(2.55rem, 11.5vw, 5.2rem);
  }

  .belief-trigger {
    grid-template-columns: minmax(0, 1fr) 30px;
    min-height: 72px;
  }

  .belief-title {
    font-size: clamp(1.8rem, 8.8vw, 3.4rem);
  }

  .belief-panel-inner {
    padding-left: 0;
  }

  .belief-grid article {
    min-height: auto;
  }

  .before-after {
    min-height: 500px;
  }

  .comparison-layer {
    padding: 22px;
  }

  .comparison-before-layer .comparison-content,
  .comparison-after-layer .comparison-content {
    width: clamp(140px, calc(var(--compare-position, 52%) - 32px), 300px);
  }

  .comparison-after-layer .comparison-content {
    width: clamp(140px, calc(100% - var(--compare-position, 52%) - 32px), 300px);
  }

  .comparison-content h3 {
    max-width: 9.5ch;
    font-size: clamp(1.32rem, 7vw, 2rem);
  }

  .comparison-divider span {
    width: 16px;
    height: 16px;
  }

  .gallery-shell {
    width: min(100vw, 760px);
    min-height: clamp(390px, 74vw, 560px);
    margin-inline: -16px;
    overflow: hidden;
  }

  .circular-gallery-canvas {
    font-size: clamp(1rem, 4.6vw, 1.45rem);
  }

  .stack-card {
    width: min(78vw, 360px);
  }

  .poster {
    padding: 20px;
  }

  .stack-dots {
    right: 8px;
  }

  .project-panel {
    padding: 24px 0 28px;
  }

  .project-case-trigger {
    width: 100%;
    justify-content: center;
  }

  .project-gallery-viewer {
    padding: 16px;
    border-radius: 32px;
  }

  .project-gallery-stage {
    min-height: 330px;
    border-radius: 24px;
  }

  .project-gallery-copy {
    padding: 8px 2px 2px;
    overflow-y: visible;
  }

  .project-gallery-copy h3 {
    max-width: 10ch;
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .project-gallery-frame-copy {
    border-radius: 22px;
  }

  .project-gallery-rail {
    margin-inline: -2px;
    padding-bottom: 8px;
  }

  .project-gallery-thumb {
    flex-basis: min(38vw, 144px);
    min-height: 78px;
  }

  .service-constellation {
    min-height: 800px;
    margin-inline: -8px;
  }

  .artifact-space {
    inset: 128px 0 190px;
  }

  .brand-artifact {
    width: min(46vw, 170px);
    min-height: 210px;
    padding: 12px;
  }

  .artifact-primary {
    left: 50%;
    top: 30%;
    width: min(72vw, 260px);
    min-height: 270px;
  }

  .artifact-secondary {
    left: 5%;
    top: 68%;
  }

  .artifact-tertiary {
    right: 5%;
    top: 70%;
  }

  .artifact-primary .artifact-render {
    height: 162px;
  }

  .artifact-render {
    height: 126px;
  }

  .service-orbit {
    top: 18px;
    width: calc(100% - 20px);
    gap: 6px;
  }

  .location-list button {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 66px;
  }

  .location-list button::before {
    content: none;
  }

  .location-list span,
  .location-list strong {
    grid-column: 1;
  }

  .location-globe-shell {
    min-height: 470px;
    margin-inline: -16px;
    border-left: 0;
    border-right: 0;
  }

  #locationGlobe {
    width: min(118%, 560px);
  }

  .location-readout {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .service-orbit button {
    min-height: 42px;
    padding: 6px 9px 6px 7px;
    font-size: 0.72rem;
  }

  .service-glyph {
    width: 24px;
    height: 24px;
  }

  .service-readout {
    width: calc(100% - 24px);
    bottom: 14px;
    padding: 16px;
  }

  .comparison-section blockquote {
    font-size: 1.35rem;
  }

  .site-footer {
    width: 100%;
    padding: 52px 22px;
  }

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

  .footer-columns {
    gap: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .magic-method-title .magic-title-line {
    color: #fffaf4;
    opacity: 1;
    text-shadow: none;
  }

  .magic-method-title .magic-text-canvas {
    display: none;
  }

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

  .orbit-system,
  .gallery-shell,
  .cinema-world,
  .cinema-object {
    transform: none !important;
  }
}
