@charset "UTF-8";

:root {
  --bg: #06070d;
  --bg-soft: #090b13;
  --bg-raised: #0e111c;
  --surface: rgba(18, 21, 34, .82);
  --surface-strong: #111421;
  --surface-blue: rgba(33, 38, 77, .58);
  --text: #f7f8fc;
  --text-soft: rgba(239, 242, 250, .72);
  --text-muted: rgba(239, 242, 250, .50);
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .20);
  --blue: #1618ff;
  --blue-light: #6674ff;
  --blue-pale: #aeb4ff;
  --danger: #ff9fa8;
  --success: #a9f1c5;
  --header-h: 84px;
  --shell: min(1320px, calc(100% - 64px));
  --shadow: 0 30px 90px rgba(0, 0, 0, .34);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, .22);
  --radius-lg: 34px;
  --radius-md: 24px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --scroll-progress: 0;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  background: var(--bg);
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

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

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

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

ul,
ol { padding: 0; }

::selection { background: rgba(80, 91, 255, .48); color: #fff; }

.shell {
  width: var(--shell);
  margin-inline: auto;
  min-width: 0;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 300;
  left: 16px;
  top: 16px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: #06070d;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus { transform: none; }

:focus-visible {
  outline: 3px solid var(--blue-pale);
  outline-offset: 4px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  line-height: 1;
  transition:
    transform 140ms var(--ease-out),
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 42px rgba(22, 24, 255, .28);
}

.button--primary:hover {
  background: #2528ff;
  box-shadow: 0 20px 50px rgba(22, 24, 255, .38);
}

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

.button--secondary:hover {
  border-color: rgba(123, 132, 255, .54);
  background: rgba(87, 96, 255, .08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  color: var(--blue-pale);
  font-weight: 760;
}

.text-link b {
  font-size: 1.12em;
  transition: transform 180ms var(--ease-out);
}

.text-link:hover b { transform: translate(3px, -3px); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(6, 7, 13, .92), rgba(6, 7, 13, .74));
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  backdrop-filter: blur(18px) saturate(1.1);
  transition:
    transform 260ms var(--ease-out),
    background-color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(6, 7, 13, .92);
}

.site-header.is-hidden { transform: translateY(-100%); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 520;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.brand sup {
  margin-left: 2px;
  color: var(--text-muted);
  font-size: 7px;
  vertical-align: super;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 650;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="location"] { color: var(--text); }

.desktop-nav a[aria-current="location"]::after { transform: scaleX(1); }

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

.language-link {
  width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 760;
}

.language-link:hover { border-color: var(--line-strong); color: var(--text); }

.header-cta { min-height: 44px; padding-inline: 18px; font-size: 13px; }

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms var(--ease-out);
}

.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }

.header-progress {
  position: absolute;
  inset: auto 0 -1px;
  height: 2px;
  overflow: hidden;
}

.header-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
}

.mobile-menu {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(1, 2, 6, .74);
  color: var(--text);
}

.mobile-menu::backdrop { background: rgba(1, 2, 6, .74); }

.mobile-menu__panel {
  width: min(460px, 100%);
  height: 100%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  padding: max(24px, env(safe-area-inset-top)) 24px max(24px, env(safe-area-inset-bottom));
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 8%, rgba(51, 57, 255, .22), transparent 32%),
    #090b13;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.menu-close {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu nav {
  display: grid;
  margin-top: 18px;
}

.mobile-menu nav a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 28px;
  font-weight: 720;
  letter-spacing: -.04em;
}

.mobile-menu__actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(940px, 100svh);
  padding: calc(var(--header-h) + 76px) 0 70px;
  display: flex;
  align-items: center;
  overflow: clip;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.68), transparent 92%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.68), transparent 92%);
}

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

.hero-atmosphere i {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-atmosphere i:nth-child(1) {
  width: 780px;
  height: 780px;
  right: -220px;
  top: -240px;
  background: radial-gradient(circle, rgba(34, 38, 255, .32), rgba(18, 21, 104, .13) 43%, transparent 72%);
}

.hero-atmosphere i:nth-child(2) {
  width: 540px;
  height: 340px;
  left: 12%;
  bottom: -200px;
  background: radial-gradient(ellipse, rgba(81, 89, 255, .14), transparent 68%);
}

.hero-atmosphere i:nth-child(3) {
  width: 480px;
  height: 120px;
  right: 16%;
  bottom: 8%;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, transparent, rgba(101, 111, 255, .11), transparent);
  filter: blur(24px);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: clamp(38px, 5vw, 86px);
  align-items: center;
}

.hero-copy { position: relative; z-index: 3; min-width: 0; }

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(70px, 7.45vw, 112px);
  font-weight: 770;
  line-height: .89;
  letter-spacing: -.073em;
  text-wrap: balance;
}

.hero-copy h1 span { display: block; }
.hero-copy h1 span:last-child {
  color: #d9dcff;
  text-shadow: 0 0 44px rgba(93, 103, 255, .12);
}

.hero-lead {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--text-soft);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-services {
  margin: 34px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.hero-services li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255,255,255,.018);
  font-size: 11px;
  font-weight: 730;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-width: 0;
  aspect-ratio: 720 / 620;
  isolation: isolate;
  transform: translateZ(0);
}

.hero-flow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-flow path {
  fill: none;
  stroke: url(#flow-line);
  stroke-width: 2.2;
  stroke-linecap: round;
}

.hero-flow [data-flow] {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.hero-flow [data-output-line] {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.hero-flow circle {
  fill: var(--blue-light);
  opacity: 0;
}

.hero-flow__merge {
  fill: #fff !important;
  filter: drop-shadow(0 0 18px rgba(102, 116, 255, .78));
}

.hero-flow__end {
  fill: var(--blue) !important;
  filter: drop-shadow(0 0 16px rgba(22, 24, 255, .8));
}

.hero-input {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  color: rgba(245, 247, 255, .64);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-12px);
}

.hero-input i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 0 7px rgba(90, 100, 255, .08);
}

.hero-input--1 { left: 4.8%; top: 14.3%; }
.hero-input--2 { left: 2.2%; top: 35%; }
.hero-input--3 { left: 4.5%; top: 60%; }
.hero-input--4 { left: 13.2%; top: 81.5%; }

.liquid-mark {
  position: absolute;
  z-index: 3;
  left: 61.5%;
  top: 50%;
  width: 53%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) translate3d(calc(var(--pointer-x, 0) * 1px), calc(var(--pointer-y, 0) * 1px), 0);
  -webkit-mask-image: url('/assets/mrs-mark-mask-v14.svg');
  mask-image: url('/assets/mrs-mark-mask-v14.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background:
    radial-gradient(circle at 26% 20%, #ffffff 0, #c7caff 12%, transparent 33%),
    linear-gradient(140deg, #f7f8ff 0%, #8f97ff 28%, #2023ff 62%, #080977 100%);
  filter: drop-shadow(0 36px 72px rgba(22, 24, 255, .30));
  transition: transform 240ms var(--ease-out), filter 240ms ease;
}

.liquid-mark::before,
.liquid-mark::after {
  content: "";
  position: absolute;
  inset: -16%;
  border-radius: 50%;
  pointer-events: none;
}

.liquid-mark::before {
  background: radial-gradient(circle, rgba(255,255,255,.42), transparent 54%);
  mix-blend-mode: screen;
  animation: materialDrift 8s ease-in-out infinite alternate;
}

.liquid-mark::after {
  background:
    repeating-radial-gradient(ellipse at 36% 42%, transparent 0 18px, rgba(255,255,255,.13) 19px 21px, transparent 22px 40px);
  opacity: .46;
  transform: rotate(-10deg);
  animation: materialWave 11s linear infinite;
}

.liquid-mark canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(0);
}

.liquid-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
}

.hero-output {
  position: absolute;
  z-index: 5;
  right: 1.2%;
  top: 6%;
  display: grid;
  justify-items: end;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
}

.hero-output span {
  max-width: 170px;
  color: var(--text);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.25;
  letter-spacing: .14em;
  text-align: right;
  text-transform: uppercase;
}

.hero-output i {
  width: 74px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-light));
}

.hero-visual__statement {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 1.5%;
  width: max-content;
  max-width: 90%;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(245,247,255,.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .19em;
  text-align: center;
}

.hero-visual__statement b { color: var(--blue-light); }

body.is-ready .hero-flow [data-flow] {
  animation: drawRoute 760ms var(--ease-out) forwards;
}

body.is-ready .hero-flow [data-flow="2"] { animation-delay: 70ms; }
body.is-ready .hero-flow [data-flow="3"] { animation-delay: 140ms; }
body.is-ready .hero-flow [data-flow="4"] { animation-delay: 210ms; }

body.is-ready .hero-flow circle {
  animation: nodeArrive 280ms var(--ease-out) forwards;
  animation-delay: 360ms;
}

body.is-ready .hero-input {
  animation: inputArrive 420ms var(--ease-out) forwards;
}

body.is-ready .hero-input--1 { animation-delay: 80ms; }
body.is-ready .hero-input--2 { animation-delay: 150ms; }
body.is-ready .hero-input--3 { animation-delay: 220ms; }
body.is-ready .hero-input--4 { animation-delay: 290ms; }

body.is-ready .hero-flow [data-output-line] {
  animation: drawRoute 440ms var(--ease-out) forwards;
  animation-delay: 600ms;
}

body.is-ready .hero-output {
  animation: outputArrive 360ms var(--ease-out) forwards;
  animation-delay: 770ms;
}

body.is-ready .liquid-mark {
  animation: markSettle 920ms var(--ease-out) both;
}

.hero.is-paused .liquid-mark::before,
.hero.is-paused .liquid-mark::after { animation-play-state: paused; }

@keyframes drawRoute { to { stroke-dashoffset: 0; } }
@keyframes nodeArrive { to { opacity: 1; } }
@keyframes inputArrive { to { opacity: 1; transform: none; } }
@keyframes outputArrive { to { opacity: 1; transform: none; } }
@keyframes markSettle {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.84) rotate(-3deg); filter: blur(6px) drop-shadow(0 0 0 transparent); }
  72% { opacity: 1; transform: translate(-50%, -50%) scale(1.025); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes materialDrift {
  from { transform: translate3d(-3%, -2%, 0) scale(.94); opacity: .52; }
  to { transform: translate3d(5%, 4%, 0) scale(1.09); opacity: .82; }
}
@keyframes materialWave { to { transform: rotate(350deg); } }

/* Shared sections */
.section {
  position: relative;
  padding-block: clamp(96px, 9.5vw, 148px);
}

.section-heading {
  margin-bottom: clamp(44px, 5vw, 72px);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr);
  gap: clamp(40px, 7vw, 112px);
  align-items: end;
}

.section-heading h2,
.ops-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(48px, 5.4vw, 78px);
  font-weight: 760;
  line-height: .94;
  letter-spacing: -.064em;
  text-wrap: balance;
}

.section-heading h2 span,
.ops-copy h2 span,
.contact-copy h2 span { display: block; }

.section-heading--split > p {
  max-width: 600px;
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.65;
}

/* When to call MRS */
.when-section {
  background:
    radial-gradient(circle at 92% 18%, rgba(35, 40, 155, .15), transparent 30%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
  overflow: clip;
}

.when-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--line);
}

.when-grid li {
  min-height: 218px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 22px;
  padding: clamp(26px, 3vw, 40px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.025), transparent 70%),
    var(--bg);
}

.when-grid li:last-child { grid-column: 1 / -1; min-height: 180px; }

.when-grid li > span {
  color: var(--blue-light);
  font: 800 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.when-grid h3 {
  max-width: 620px;
  margin: 0 0 13px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.when-grid p { max-width: 660px; margin: 0; color: var(--text-soft); }

.when-closing {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
  border: 1px solid rgba(104, 114, 255, .24);
  border-radius: 24px;
  background:
    linear-gradient(100deg, rgba(22,24,255,.08), rgba(255,255,255,.018) 52%, rgba(22,24,255,.08));
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -.035em;
  text-align: center;
}

.when-closing__mark { width: 34px; fill: var(--blue-light); }

/* Capabilities */
.capabilities-section {
  background:
    linear-gradient(180deg, #06070d, #080a12 58%, #06070d);
  border-bottom: 1px solid var(--line);
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(440px, .94fr);
  min-height: 690px;
  border: 1px solid var(--line);
  border-radius: 38px;
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.event-feature__media {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #05060a;
}

.event-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.09);
  transform: scale(1.035);
  transition: transform 900ms var(--ease-out), filter 500ms ease;
}

.event-feature:hover .event-feature__media img {
  transform: scale(1.065);
  filter: grayscale(.74) contrast(1.08);
}

.event-feature__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 55%, rgba(8,10,18,.76)),
    linear-gradient(0deg, rgba(4,5,10,.72), transparent 55%),
    linear-gradient(150deg, rgba(22,24,255,.18), transparent 44%);
}

.event-feature__media > span {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(6,7,13,.62);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.event-feature__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 70px);
}

.event-feature__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.event-feature__top > span {
  color: var(--blue-light);
  font: 800 13px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.event-feature__top p {
  margin: 0;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.event-feature h3 {
  margin: 32px 0 20px;
  font-size: clamp(52px, 5.5vw, 82px);
  line-height: .93;
  letter-spacing: -.066em;
}

.event-feature__summary {
  max-width: 670px;
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
}

.event-feature__when {
  margin-top: 28px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.event-feature__when b,
.event-feature__details h4,
.service-card__body > div > span {
  display: block;
  margin: 0 0 9px;
  color: var(--text);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.event-feature__when p { margin: 0; color: var(--text-soft); }

.event-feature__details {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  margin: 26px 0;
}

.event-feature__details h4 { margin-bottom: 14px; }

.event-feature__details ul {
  margin: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.event-feature__details li {
  position: relative;
  padding-left: 17px;
  color: var(--text-soft);
}

.event-feature__details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  background: var(--blue-light);
  transform: rotate(45deg);
}

.event-feature__details p { margin: 0; color: var(--text-soft); }

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

.service-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(40,46,168,.13), transparent 35%),
    rgba(14,17,28,.78);
  overflow: clip;
  transition: border-color 180ms ease, transform 220ms var(--ease-out), background-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(112, 121, 255, .34);
}

.service-card[open] { border-color: rgba(112, 121, 255, .36); }

.service-card summary {
  min-height: 220px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: start;
  padding: clamp(26px, 3vw, 36px);
  cursor: pointer;
  list-style: none;
}

.service-card summary::-webkit-details-marker { display: none; }

.service-card__number {
  padding-top: 5px;
  color: var(--blue-light);
  font: 800 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.service-card__title strong {
  display: block;
  margin-bottom: 15px;
  font-size: clamp(27px, 2.8vw, 38px);
  line-height: 1;
  letter-spacing: -.052em;
}

.service-card__title > span {
  display: block;
  color: var(--text-soft);
  line-height: 1.58;
}

.service-card__control {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.service-card__control i {
  position: absolute;
  left: 9px;
  right: 9px;
  top: 15px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms var(--ease-out);
}

.service-card__control i:last-child { transform: rotate(90deg); }
.service-card[open] .service-card__control i:last-child { transform: rotate(0); }

.service-card__body {
  display: grid;
  gap: 24px;
  padding: 0 clamp(26px, 3vw, 36px) clamp(28px, 3vw, 38px) 88px;
  border-top: 1px solid var(--line);
}

.service-card__body > div:first-child { padding-top: 28px; }

.service-card__body p { margin: 0; color: var(--text-soft); }

.service-card__handles ul {
  margin: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.service-card__handles li {
  position: relative;
  padding-left: 16px;
  color: var(--text-soft);
}

.service-card__handles li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .64em;
  width: 5px;
  height: 5px;
  background: var(--blue-light);
  transform: rotate(45deg);
}

/* Method */
.method-section {
  background:
    radial-gradient(circle at 14% 0, rgba(45,50,176,.12), transparent 30%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.method-track { position: relative; padding-top: 26px; }

.method-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 3px;
  height: 2px;
  overflow: hidden;
  background: var(--line);
}

.method-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), #fff);
  transform: scaleX(var(--method-progress, 0));
  transform-origin: left;
}

.method-track ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  list-style: none;
}

.method-step {
  position: relative;
  min-height: 300px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(13,16,26,.82);
  transition: transform 220ms var(--ease-out), border-color 180ms ease;
}

.method-step.is-active {
  transform: translateY(-7px);
  border-color: rgba(104,114,255,.44);
}

.method-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.method-step__top span {
  color: var(--blue-light);
  font: 800 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.method-step__top i {
  width: 9px;
  height: 9px;
  border: 2px solid var(--blue-light);
  border-radius: 50%;
  background: var(--bg-soft);
}

.method-step h3 {
  margin: 38px 0 16px;
  font-size: clamp(27px, 2.7vw, 36px);
  letter-spacing: -.05em;
}

.method-step p { margin: 0; color: var(--text-soft); }

.method-step small {
  display: block;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 13px;
}

.method-step small b {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 9px;
  letter-spacing: .14em;
}

/* Work */
.work-section {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  grid-template-rows: repeat(2, minmax(380px, auto));
  gap: 20px;
}

.work-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.work-card--1 { grid-row: 1 / 3; }

.work-card__media {
  position: relative;
  height: 56%;
  min-height: 270px;
  overflow: hidden;
  background: #05060a;
}

.work-card--1 .work-card__media { min-height: 480px; }

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.04);
  transform: scale(1.04);
  transition: transform 900ms var(--ease-out), filter 500ms ease;
}

.work-card:hover .work-card__media img {
  transform: scale(1.075);
  filter: saturate(.94) contrast(1.04);
}

.work-card__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(5,6,11,.88)),
    linear-gradient(130deg, rgba(22,24,255,.12), transparent 48%);
}

.work-card__media > span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(22,24,255,.82);
  color: #fff;
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .13em;
}

.work-card__content { padding: clamp(24px, 3vw, 36px); }

.work-card h3 {
  margin: 0 0 24px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.055em;
}

.work-card dl { margin: 0; border-top: 1px solid var(--line); }

.work-card dl div {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.work-card dt {
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .14em;
}

.work-card dd { margin: 0; color: var(--text-soft); font-size: 14px; }

/* MRS OPS */
.ops-section {
  overflow: clip;
  background:
    radial-gradient(circle at 82% 22%, rgba(56,63,255,.24), transparent 35%),
    linear-gradient(135deg, #080a13 0%, #10152d 48%, #07080f 100%);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

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

.ops-atmosphere i:first-child {
  position: absolute;
  width: 560px;
  height: 560px;
  left: -220px;
  bottom: -280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40,45,255,.15), transparent 66%);
}

.ops-atmosphere i:last-child {
  position: absolute;
  width: 680px;
  height: 120px;
  right: -120px;
  top: 14%;
  transform: rotate(-13deg);
  background: linear-gradient(90deg, transparent, rgba(117,125,255,.08), transparent);
  filter: blur(25px);
}

.ops-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(580px, 1.22fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
}

.ops-copy h2 { margin-bottom: 28px; }
.ops-copy > p:not(.eyebrow) { max-width: 620px; margin: 0; color: var(--text-soft); font-size: 18px; }

.ops-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.ops-principles span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 11px;
}

.ops-board {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(7,9,16,.88);
  box-shadow: 0 38px 100px rgba(0,0,0,.42);
}

.ops-board__top {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 26px;
  border-bottom: 1px solid var(--line);
}

.ops-board__identity {
  display: flex;
  align-items: center;
  gap: 13px;
}

.ops-board__mark { width: 28px; fill: var(--blue-light); }
.ops-board__identity div { display: grid; gap: 3px; }
.ops-board__identity b { font-size: 13px; }
.ops-board__identity span { color: var(--text-muted); font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.ops-board__phase { color: var(--text-muted); font-size: 9px; font-weight: 800; letter-spacing: .13em; }

.ops-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.ops-tabs button {
  min-height: 54px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 720;
}

.ops-tabs button:last-child { border-right: 0; }

.ops-tabs button[aria-selected="true"] {
  background: var(--blue);
  color: #fff;
}

.ops-panel {
  padding: clamp(26px, 3.5vw, 42px);
  transition: opacity 130ms ease, transform 130ms var(--ease-out);
}

.ops-panel.is-changing { opacity: .25; transform: translateY(5px); }

.ops-panel__headline {
  max-width: 720px;
  margin: 0 0 26px;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.ops-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ops-metrics article {
  min-height: 104px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

.ops-metrics span {
  display: block;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ops-metrics strong { font-size: 24px; letter-spacing: -.035em; }

.ops-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin: 28px 0;
}

.ops-route i { height: 2px; background: linear-gradient(90deg, rgba(98,108,255,.22), var(--blue-light)); }
.ops-route b { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 7px rgba(22,24,255,.10); }

.ops-rows { display: grid; gap: 10px; }
.ops-rows > div {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.018);
}
.ops-rows span { color: var(--text-soft); }
.ops-rows em { padding: 6px 9px; border-radius: 999px; background: rgba(22,24,255,.16); color: #c8ccff; font-size: 10px; font-style: normal; font-weight: 760; }

/* Why and FAQ */
.assurance-section { background: var(--bg); }

.assurance-heading {
  max-width: 960px;
  margin-bottom: 56px;
}

.assurance-heading h2 {
  margin: 0;
  font-size: clamp(48px, 5.3vw, 76px);
  line-height: .96;
  letter-spacing: -.062em;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.assurance-grid article {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.assurance-grid article:last-child { border-right: 0; }
.assurance-grid span { color: var(--blue-light); font: 800 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.assurance-grid h3 { margin: 56px 0 14px; font-size: 27px; line-height: 1.05; letter-spacing: -.045em; }
.assurance-grid p { margin: 0; color: var(--text-soft); }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr);
  gap: clamp(48px, 8vw, 128px);
  margin-top: clamp(82px, 9vw, 130px);
  padding-top: clamp(60px, 7vw, 94px);
  border-top: 1px solid var(--line);
}

.faq-heading h2 {
  margin: 0;
  font-size: clamp(42px, 4.5vw, 66px);
  line-height: .96;
  letter-spacing: -.058em;
}

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

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

.faq-item summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 650;
}

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

.faq-item summary span {
  flex: 0 0 auto;
  font-size: 25px;
  font-weight: 300;
  transition: transform 180ms var(--ease-out);
}

.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item > div { padding: 0 48px 26px 0; }
.faq-item p { max-width: 760px; margin: 0; color: var(--text-soft); }

/* Contact */
.contact-section {
  overflow: clip;
  background:
    radial-gradient(circle at 8% 18%, rgba(43,49,207,.24), transparent 34%),
    linear-gradient(135deg, #080a14, #10152c 55%, #080910);
  isolation: isolate;
}

.contact-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(44vw, 640px);
  aspect-ratio: 1;
  left: -12vw;
  bottom: -22vw;
  opacity: .035;
  background: #fff;
  -webkit-mask: url('/assets/mrs-mark-mask-v14.svg') center / contain no-repeat;
  mask: url('/assets/mrs-mark-mask-v14.svg') center / contain no-repeat;
  transform: rotate(-8deg);
}

.contact-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.contact-atmosphere i:first-child {
  position: absolute;
  width: 520px;
  height: 180px;
  right: 8%;
  top: -70px;
  transform: rotate(-12deg);
  background: linear-gradient(90deg, transparent, rgba(101,111,255,.12), transparent);
  filter: blur(28px);
}

.contact-atmosphere i:last-child {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -280px;
  bottom: -330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36,42,255,.20), transparent 67%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(600px, 1.28fr);
  gap: clamp(52px, 7vw, 110px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-h) + 40px);
  min-width: 0;
}

.contact-copy h2 { margin: 0; font-size: clamp(56px, 6vw, 88px); }
.contact-copy > p:not(.eyebrow):not(.contact-direct) { max-width: 580px; margin: 28px 0 0; color: var(--text-soft); font-size: 18px; }

.need-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.need-chips button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.018);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 690;
}

.need-chips button:hover,
.need-chips button[aria-pressed="true"] {
  border-color: transparent;
  background: var(--blue);
  color: #fff;
}

.contact-direct {
  margin: 34px 0 0;
  display: grid;
  gap: 7px;
  color: var(--text-muted);
  font-size: 13px;
}

.contact-direct a { width: max-content; max-width: 100%; color: var(--text); overflow-wrap: anywhere; }

.project-form {
  position: relative;
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  background: rgba(13,16,28,.80);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.form-grid label {
  min-width: 0;
  display: grid;
  gap: 9px;
}

.form-grid label > span:first-child {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 730;
  letter-spacing: .055em;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 15px;
  background: rgba(5,7,14,.62);
  color: var(--text);
  outline: 0;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

input,
select { height: 54px; padding: 0 15px; }

textarea {
  min-height: 170px;
  padding: 15px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover { border-color: rgba(255,255,255,.28); }

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-light);
  background: rgba(14,18,38,.8);
  box-shadow: 0 0 0 4px rgba(89,99,255,.12);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

select { color-scheme: dark; }

.field-error {
  min-height: 0;
  color: var(--danger);
  font-size: 12px;
}

.field-error:not(:empty) { min-height: 18px; }

.consent {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
}

.consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.consent > span { color: var(--text-soft); line-height: 1.45; }
.consent a { color: var(--blue-pale); text-decoration: underline; text-underline-offset: 3px; }
.consent .field-error { grid-column: 2; }

.form-submit {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-submit button { flex: 0 0 auto; }

#form-status {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

#form-status.is-error { color: var(--danger); }
#form-status.is-success { color: var(--success); }

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Footer */
.site-footer {
  padding: 62px 0 24px;
  border-top: 1px solid var(--line);
  background: #05060a;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, .3fr));
  gap: 50px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand__mark { width: 42px; flex: 0 0 auto; fill: #fff; }
.footer-brand h2 { margin: 2px 0 10px; font-size: 20px; }
.footer-brand p { max-width: 570px; margin: 0; color: var(--text-soft); }

.footer-column {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 10px;
}
.footer-column h3 { margin: 0 0 6px; color: var(--text-muted); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.footer-column a,
.footer-column span {
  min-width: 0;
  color: var(--text-soft);
  font-size: 14px;
  overflow-wrap: anywhere;
}
.footer-column a:hover { color: var(--text); }

.footer-bottom {
  min-height: 74px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 12px;
}

.footer-bottom div { display: flex; gap: 20px; }

/* Legal/status */
.utility-header {
  height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(6,7,13,.9);
}

.legal-shell { width: min(900px, calc(100% - 40px)); margin-inline: auto; }
.utility-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.utility-header .brand img { width: 40px; height: 40px; }

.legal-main { min-height: calc(100svh - 76px); padding: 80px 0 120px; }
.legal-main .legal-shell > h1,
.legal-card h1 { margin: 18px 0 40px; font-size: clamp(50px, 7vw, 86px); line-height: .95; letter-spacing: -.065em; }

.legal-main section { padding: 30px 0; border-top: 1px solid var(--line); }
.legal-main section h2 { margin: 0 0 12px; font-size: 24px; }
.legal-main section p { max-width: 780px; margin: 0; color: var(--text-soft); }
.legal-updated { margin-top: 48px; color: var(--text-muted); }
.utility-center { display: grid; place-items: center; padding-inline: 20px; }
.legal-card { width: min(680px, 100%); padding: clamp(30px, 6vw, 60px); border: 1px solid var(--line); border-radius: 28px; background: var(--surface-strong); }
.legal-card > p:not(.eyebrow) { color: var(--text-soft); }
.status-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* Reveal */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}

html.js [data-reveal].is-visible { opacity: 1; transform: none; }


.no-js .hero-flow [data-flow],
.no-js .hero-flow [data-output-line] { stroke-dashoffset: 0; }
.no-js .hero-flow circle,
.no-js .hero-input,
.no-js .hero-output { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1180px) {
  :root { --shell: min(100% - 40px, 1120px); }
  .desktop-nav,
  .header-cta { display: none; }
  .menu-toggle { display: grid; }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 64px);
  }

  .hero-layout {
    grid-template-columns: minmax(0, .92fr) minmax(470px, 1.08fr);
    gap: 24px;
  }

  .hero-copy h1 { font-size: clamp(64px, 7.3vw, 88px); }

  .event-feature { grid-template-columns: 1fr; }
  .event-feature__media { min-height: 520px; }
  .event-feature__content { padding: 48px; }

  .ops-layout,
  .contact-layout { grid-template-columns: 1fr; }

  .ops-copy { max-width: 780px; }
  .contact-copy { position: static; max-width: 860px; }
  .contact-copy h2 { max-width: 850px; }
}

@media (max-width: 900px) {
  :root { --header-h: 76px; --shell: min(100% - 32px, 820px); }

  .brand { font-size: 16px; gap: 11px; }
  .brand img { width: 42px; height: 42px; }

  .hero {
    padding-top: calc(var(--header-h) + 54px);
    padding-bottom: 54px;
  }

  .hero-layout { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { max-width: 760px; }
  .hero-copy h1 { max-width: 780px; font-size: clamp(61px, 12vw, 90px); }
  .hero-lead { max-width: 720px; }
  .hero-visual { width: min(720px, 100%); justify-self: center; }

  .section { padding-block: 88px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 24px; }
  .section-heading h2,
  .ops-copy h2,
  .contact-copy h2 { font-size: clamp(48px, 9vw, 70px); }

  .when-grid { grid-template-columns: 1fr; }
  .when-grid li:last-child { grid-column: auto; min-height: 210px; }

  .event-feature__details { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  .method-track ol { grid-template-columns: repeat(2, 1fr); }
  .method-line { display: none; }

  .work-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .work-card--1 { grid-column: 1 / -1; grid-row: auto; }
  .work-card--1 .work-card__media { min-height: 420px; }

  .ops-layout { gap: 48px; }
  .ops-board { max-width: 760px; width: 100%; }

  .assurance-grid { grid-template-columns: 1fr; }
  .assurance-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .assurance-grid article:last-child { border-bottom: 0; }
  .assurance-grid h3 { margin-top: 28px; }

  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .consent { grid-template-columns: 22px minmax(0, 1fr); }
  .form-submit { flex-direction: column; align-items: flex-start; }

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

@media (max-width: 620px) {
  :root { --shell: min(100% - 28px, 540px); }

  body { font-size: 15px; }
  .header-inner { gap: 12px; }
  .brand span { max-width: 208px; overflow: hidden; text-overflow: ellipsis; }
  .header-actions { margin-left: auto; }
  .language-link { width: 42px; min-height: 42px; }
  .menu-toggle { width: 44px; height: 44px; }

  .hero {
    padding-top: calc(var(--header-h) + 42px);
    min-height: 0;
  }

  .hero-copy h1 { font-size: clamp(52px, 15.2vw, 72px); line-height: .91; letter-spacing: -.068em; }
  .hero-lead { margin-top: 24px; font-size: 17px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-services { gap: 7px; margin-top: 26px; }
  .hero-services li { font-size: 9px; padding-inline: 10px; }

  .hero-visual {
    margin-top: 6px;
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .hero-input { font-size: 8px; letter-spacing: .12em; gap: 6px; }
  .hero-input i { width: 5px; height: 5px; box-shadow: 0 0 0 5px rgba(90,100,255,.07); }
  .hero-input--1 { left: 3%; top: 13%; }
  .hero-input--2 { left: 1%; top: 34%; }
  .hero-input--3 { left: 3%; top: 59%; }
  .hero-input--4 { left: 11%; top: 80%; }
  .liquid-mark { width: 54%; left: 61%; }
  .hero-output { right: 0; top: 5%; }
  .hero-output span { max-width: 104px; font-size: 8px; }
  .hero-output i { width: 44px; }
  .hero-visual__statement { bottom: 0; font-size: 7px; letter-spacing: .13em; }

  .section { padding-block: 76px; }
  .eyebrow { margin-bottom: 15px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2,
  .ops-copy h2,
  .contact-copy h2 { font-size: clamp(43px, 12.4vw, 60px); }
  .section-heading--split > p { font-size: 16px; }

  .when-grid { border-radius: 24px; }
  .when-grid li { grid-template-columns: 34px minmax(0, 1fr); gap: 12px; min-height: auto; padding: 25px 20px; }
  .when-grid li:last-child { min-height: auto; }
  .when-grid h3 { font-size: 24px; }
  .when-closing { min-height: 88px; padding: 20px; }

  .event-feature { border-radius: 26px; min-height: 0; }
  .event-feature__media { min-height: 320px; }
  .event-feature__media > span { left: 18px; bottom: 18px; }
  .event-feature__content { padding: 28px 22px 30px; }
  .event-feature h3 { margin-top: 24px; font-size: 50px; }
  .event-feature__summary { font-size: 16px; }
  .event-feature__details { gap: 22px; }

  .service-card { border-radius: 22px; }
  .service-card summary { min-height: 0; grid-template-columns: 34px minmax(0, 1fr) 32px; gap: 12px; padding: 24px 19px; }
  .service-card__title strong { font-size: 27px; }
  .service-card__body { padding: 0 19px 26px 53px; }

  .method-track ol { grid-template-columns: 1fr; }
  .method-step { min-height: 0; }
  .method-step.is-active { transform: none; }

  .work-grid { grid-template-columns: 1fr; }
  .work-card--1 { grid-column: auto; }
  .work-card__media,
  .work-card--1 .work-card__media { min-height: 310px; height: 310px; }
  .work-card dl div { grid-template-columns: 88px minmax(0, 1fr); }

  .ops-board__top { padding-inline: 18px; }
  .ops-board__phase { display: none; }
  .ops-tabs button { min-height: 52px; font-size: 11px; }
  .ops-panel { padding: 22px 18px 24px; }
  .ops-metrics { grid-template-columns: 1fr; }
  .ops-rows > div { align-items: flex-start; flex-direction: column; padding-block: 13px; gap: 8px; }

  .assurance-heading h2 { font-size: 46px; }
  .assurance-grid article { padding: 26px 2px; }
  .faq-item summary { min-height: 72px; font-size: 16px; }
  .faq-item > div { padding-right: 24px; }

  .project-form { padding: 24px 18px; border-radius: 24px; }
  .form-grid { gap: 18px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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

  html.js [data-reveal] { opacity: 1; transform: none; }
  .hero-flow [data-flow],
  .hero-flow [data-output-line] {
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }
  .liquid-mark::before,
  .liquid-mark::after { animation: none !important; }
  .hero-flow circle,
  .hero-input,
  .hero-output { opacity: 1 !important; transform: none !important; }
  .liquid-mark { transform: translate(-50%, -50%) !important; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .mobile-menu__panel,
  .event-feature__media > span,
  .project-form { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .site-header { background: #06070d; }
  .project-form { background: #0d101c; }
}

@media (prefers-contrast: more) {
  :root {
    --text-soft: rgba(255,255,255,.88);
    --text-muted: rgba(255,255,255,.72);
    --line: rgba(255,255,255,.26);
    --line-strong: rgba(255,255,255,.42);
  }
}

@media (forced-colors: active) {
  .liquid-mark {
    background: CanvasText;
    filter: none;
  }
  .hero-flow path { stroke: CanvasText; }
}

/* Company-profile parity layer — consultancy focus */
.story-grid,.detail-layout{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);gap:clamp(2rem,6vw,7rem);align-items:start}.story-grid h2,.detail-layout h2{font-size:clamp(2.5rem,5vw,5.8rem);line-height:.92;letter-spacing:-.055em;margin:.55rem 0 1.2rem}.story-subtitle{font-size:1.15rem;max-width:34rem;color:var(--text-muted,#a9acb5)}.story-copy{display:grid;gap:1.2rem;font-size:clamp(1rem,1.4vw,1.25rem);line-height:1.7}.story-copy strong{margin-top:1rem;text-transform:uppercase;letter-spacing:.12em;font-size:.8rem}.evolution-grid{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid rgba(255,255,255,.18);border-bottom:1px solid rgba(255,255,255,.12)}.evolution-grid article{padding:2rem 1.4rem 2.4rem;border-right:1px solid rgba(255,255,255,.12)}.evolution-grid article:last-child{border-right:0}.evolution-grid span,.consulting-grid>article>span,.portfolio-grid article>span,.leadership-grid article>span{font-size:.72rem;letter-spacing:.13em;text-transform:uppercase;color:#b6bac5}.evolution-grid h3{font-size:1.2rem;margin:.8rem 0}.evolution-grid p{color:#a9acb5;line-height:1.6}.facts-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:1px;background:rgba(255,255,255,.12);margin-top:2rem}.facts-grid article{background:#090a10;padding:2rem 1.3rem;min-height:9rem;display:flex;flex-direction:column;justify-content:space-between}.facts-grid strong{font-size:clamp(1.5rem,2.4vw,2.8rem);letter-spacing:-.04em}.facts-grid span{color:#a9acb5}.facts-details{display:grid;grid-template-columns:repeat(5,1fr);gap:1rem;margin-top:1.2rem}.facts-details div{padding:1rem 0;border-top:1px solid rgba(255,255,255,.16)}.facts-details span{display:block;font-size:.72rem;text-transform:uppercase;letter-spacing:.12em;color:#8f939e;margin-bottom:.5rem}.consulting-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1px;background:rgba(255,255,255,.12);margin-top:3rem}.consulting-grid article{background:#08090e;padding:clamp(1.6rem,3vw,3rem)}.consulting-grid h3{font-size:clamp(1.6rem,2.8vw,3rem);max-width:18ch;letter-spacing:-.04em}.consulting-grid ul{columns:2;column-gap:2rem;list-style:none;padding:0;margin:2rem 0 0}.consulting-grid li{break-inside:avoid;padding:.65rem 0;border-top:1px solid rgba(255,255,255,.12);color:#c3c6cf}.detail-section--alt{background:#0a0b11}.detail-layout>div:first-child>p:not(.eyebrow){font-size:1.1rem;line-height:1.7;color:#aeb1ba;max-width:40rem}.detail-list{border-top:1px solid rgba(255,255,255,.18)}.detail-list div{display:grid;grid-template-columns:3rem 1fr;gap:1rem;align-items:center;padding:1rem 0;border-bottom:1px solid rgba(255,255,255,.12)}.detail-list span{font-size:.72rem;color:#7f8490}.detail-list p{margin:0}.project-feature{margin-top:2.2rem;padding:1.5rem;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.025)}.project-feature>span{font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:#aeb1ba}.project-feature h3{font-size:1.5rem;margin:.6rem 0}.project-feature small{display:block;color:#979ba6;line-height:1.6}.method-simple{display:grid;grid-template-columns:repeat(7,1fr);list-style:none;padding:0;margin:3rem 0 0;border-top:1px solid rgba(255,255,255,.16)}.method-simple li{padding:1.6rem 1rem 2rem;border-right:1px solid rgba(255,255,255,.12)}.method-simple li:last-child{border-right:0}.method-simple>li>span{font-size:.72rem;color:#8c909a}.method-simple h3{font-size:1.05rem;margin:.8rem 0}.method-simple p{font-size:.86rem;line-height:1.55;color:#9da1aa}.portfolio-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:rgba(255,255,255,.12);margin-top:3rem}.portfolio-grid article{background:#08090e;padding:2rem;min-height:17rem}.portfolio-grid h3{font-size:1.5rem;line-height:1.1;margin:1rem 0}.portfolio-grid p{color:#aeb1ba;line-height:1.7}.client-wall{margin-top:5rem;padding-top:2rem;border-top:1px solid rgba(255,255,255,.16)}.client-wall>div{display:flex;flex-wrap:wrap;gap:.6rem}.client-wall>div span{padding:.75rem 1rem;border:1px solid rgba(255,255,255,.12);font-size:.82rem;color:#c6c8cf}.leadership-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:rgba(255,255,255,.12);margin-top:3rem}.leadership-grid article{background:#08090e;padding:2rem;min-height:15rem}.leadership-grid h3{font-size:1.55rem;margin:1.2rem 0 .35rem}.leadership-grid strong{display:block;font-size:.86rem;text-transform:uppercase;letter-spacing:.08em}.leadership-grid p{margin-top:1.6rem;color:#9ca0aa;line-height:1.6}.credentials-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1px;background:rgba(255,255,255,.12);margin-top:2.5rem}.credentials-grid article{background:#08090e;padding:1.7rem}.credentials-grid span{display:block;color:#8e929d;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;margin-bottom:.9rem}.credentials-grid strong{line-height:1.5}.contact-copy address{font-style:normal;max-width:30rem;color:#9da1aa;line-height:1.6;margin-top:1.5rem}
@media(max-width:980px){.evolution-grid{grid-template-columns:repeat(2,1fr)}.facts-grid{grid-template-columns:repeat(3,1fr)}.facts-details{grid-template-columns:repeat(2,1fr)}.method-simple{grid-template-columns:repeat(2,1fr)}.portfolio-grid,.leadership-grid{grid-template-columns:repeat(2,1fr)}.credentials-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:700px){.story-grid,.detail-layout{grid-template-columns:1fr;gap:2rem}.evolution-grid,.consulting-grid,.facts-grid,.facts-details,.portfolio-grid,.leadership-grid,.credentials-grid,.method-simple{grid-template-columns:1fr}.consulting-grid ul{columns:1}.evolution-grid article,.method-simple li{border-right:0;border-bottom:1px solid rgba(255,255,255,.12)}.portfolio-grid article,.leadership-grid article{min-height:0}.story-grid h2,.detail-layout h2{font-size:clamp(2.3rem,13vw,4rem)}}

/* v14.3.1 — concise company-profile alignment */
.method-simple{grid-template-columns:repeat(5,minmax(0,1fr))}
.portfolio-section .section-heading{max-width:980px}
.portfolio-grid{grid-template-columns:repeat(2,minmax(0,1fr));background:transparent;gap:14px}
.portfolio-grid article{border:1px solid rgba(255,255,255,.12);min-height:0;padding:1.7rem 1.8rem;background:#08090e}
.portfolio-grid h3{margin:.75rem 0 .85rem}
.portfolio-grid p{margin:0;font-size:.96rem;line-height:1.62}
.client-wall--compact{margin-top:3.25rem;padding-top:1.5rem}
.client-wall--compact>div{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0;border-top:1px solid rgba(255,255,255,.13)}
.client-wall--compact>div span{padding:1rem .25rem;border:0;border-bottom:1px solid rgba(255,255,255,.1);font-size:.84rem;color:#c6c8cf}
.leadership-grid--compact{grid-template-columns:repeat(3,minmax(0,1fr));background:transparent;gap:14px}
.leadership-grid--compact article{border:1px solid rgba(255,255,255,.12);min-height:12rem;padding:1.8rem;background:#08090e}
.leadership-grid--compact h3{margin:.2rem 0 .45rem}
.leadership-grid--compact p{margin-top:1.3rem}
.site-footer--compact{padding-top:0}
.footer-compact{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(220px,.55fr) minmax(280px,.8fr);gap:clamp(28px,5vw,72px);align-items:start;padding-block:44px;border-top:1px solid var(--line)}
.site-footer--compact .footer-brand{display:flex;align-items:flex-start;gap:16px}
.site-footer--compact .footer-brand h2{margin:1px 0 7px;font-size:19px;line-height:1.15}
.site-footer--compact .footer-brand p{margin:0;color:var(--text-muted);font-size:.9rem}
.footer-meta{display:grid;gap:9px;align-content:start}
.footer-meta>span{font-size:10px;letter-spacing:.15em;text-transform:uppercase;color:var(--text-muted)}
.footer-meta a,.footer-meta p{margin:0;color:var(--text-soft);font-size:.9rem;line-height:1.55;text-decoration:none}
.footer-meta a:hover{color:var(--text)}
.footer-office p{max-width:34rem}
.site-footer--compact .footer-bottom{padding-top:18px;padding-bottom:24px;border-top:1px solid rgba(255,255,255,.1)}
@media(max-width:980px){
  .method-simple{grid-template-columns:repeat(2,minmax(0,1fr))}
  .portfolio-grid{grid-template-columns:1fr}
  .client-wall--compact>div{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer-compact{grid-template-columns:1fr 1fr}
  .footer-brand{grid-column:1/-1}
}
@media(max-width:700px){
  .method-simple,.leadership-grid--compact,.client-wall--compact>div,.footer-compact{grid-template-columns:1fr}
  .footer-brand{grid-column:auto}
  .client-wall--compact>div span{padding:.9rem 0}
  .site-footer--compact .footer-bottom{gap:14px}
}
@media(max-width:700px){
  .client-wall--compact>div{grid-template-columns:repeat(2,minmax(0,1fr));column-gap:14px}
  .client-wall--compact>div span{font-size:.74rem;line-height:1.35;padding:.8rem 0}
}


/* v14.3.1 — final polish: subtract, strengthen hierarchy, reduce mobile depth */
.story-section{background:linear-gradient(180deg,#07080e 0%,#090a11 100%);border-bottom:1px solid var(--line)}
.story-grid{grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);gap:clamp(2rem,5vw,5.5rem)}
.story-copy{align-content:start;gap:.9rem;max-width:46rem}
.story-copy strong{margin-top:.45rem}
.consulting-grid{margin-top:2.35rem}
.consulting-grid article{padding:clamp(1.45rem,2.6vw,2.55rem)}
.consulting-grid ul{margin-top:1.55rem}
.consulting-grid li{padding:.58rem 0}
.method-simple{grid-template-columns:repeat(4,minmax(0,1fr));margin-top:2.35rem}
.method-simple li{padding:1.45rem 1.05rem 1.65rem}
.portfolio-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:2.45rem}
.portfolio-grid article{padding:1.55rem 1.6rem}
.portfolio-grid h3{font-size:1.4rem}
.portfolio-grid p{font-size:.9rem;line-height:1.55}
.client-wall--compact{margin-top:2.6rem;padding-top:1.25rem}
.client-wall--compact>div{grid-template-columns:repeat(4,minmax(0,1fr))}
.client-wall--compact>div span{padding:.9rem .25rem;font-size:.79rem}
.leadership-grid--compact article{min-height:10.25rem;padding:1.55rem 1.6rem}
.leadership-grid--compact p{margin-top:.9rem}
.contact-layout{gap:clamp(2.5rem,6vw,6.5rem)}
.project-form{padding:clamp(1.4rem,2.5vw,2.4rem)}
.footer-compact{padding-block:36px;grid-template-columns:minmax(0,1.1fr) minmax(210px,.48fr) minmax(300px,.92fr);gap:clamp(22px,4vw,58px)}
.site-footer--compact .footer-bottom{padding-top:14px;padding-bottom:20px}

@media(max-width:980px){
  .portfolio-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .client-wall--compact>div{grid-template-columns:repeat(2,minmax(0,1fr))}
  .method-simple{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:620px){
  .hero{padding-top:calc(var(--header-h) + 34px);padding-bottom:44px}
  .hero-layout{gap:0}
  .hero-visual{display:none}
  .hero-copy h1{font-size:clamp(50px,14.6vw,68px)}
  .hero-lead{margin-top:20px;line-height:1.58}
  .hero-actions{margin-top:26px}
  .section{padding-block:64px}
  .section-heading{margin-bottom:28px}
  .section-heading h2,.contact-copy h2{font-size:clamp(39px,11.6vw,54px)}
  .story-grid{gap:1.55rem}
  .story-grid h2{font-size:clamp(2.2rem,11.7vw,3.65rem);margin-bottom:.8rem}
  .story-subtitle{font-size:1rem;line-height:1.55}
  .story-copy{font-size:1rem;line-height:1.65}
  .consulting-grid{margin-top:2rem}
  .consulting-grid article{padding:1.35rem 1.2rem}
  .consulting-grid h3{font-size:1.75rem;margin:.7rem 0 0}
  .consulting-grid ul{margin-top:1.15rem}
  .consulting-grid li{padding:.5rem 0;font-size:.92rem}
  .method-simple{grid-template-columns:1fr;margin-top:1.75rem}
  .method-simple li{padding:1.15rem .25rem 1.25rem;border-right:0}
  .method-simple h3{margin:.55rem 0 .35rem;font-size:1.08rem}
  .method-simple p{font-size:.9rem}
  .portfolio-grid{grid-template-columns:1fr;gap:10px;margin-top:1.8rem}
  .portfolio-grid article{padding:1.35rem 1.2rem}
  .portfolio-grid h3{font-size:1.28rem;margin:.6rem 0 .65rem}
  .portfolio-grid p{font-size:.86rem;line-height:1.5}
  .client-wall--compact{margin-top:2.1rem}
  .client-wall--compact>div{grid-template-columns:1fr 1fr;column-gap:12px}
  .client-wall--compact>div span{padding:.7rem 0;font-size:.72rem}
  .leadership-grid--compact{gap:10px}
  .leadership-grid--compact article{min-height:0;padding:1.3rem 1.2rem}
  .leadership-grid--compact h3{font-size:1.35rem}
  .leadership-grid--compact p{margin-top:.7rem;font-size:.88rem}
  .contact-layout{gap:2rem}
  .contact-copy>p:not(.eyebrow):not(.contact-direct){font-size:1rem;line-height:1.65}
  .need-chips{margin-top:20px}
  .project-form{padding:20px 16px;border-radius:22px}
  .form-grid{gap:15px}
  .footer-compact{padding-block:30px;gap:22px}
  .footer-office p{max-width:28rem}
}
@media(max-width:620px){
  .footer-compact{grid-template-columns:1fr}
}
@media(max-width:620px){
  .story-grid{grid-template-columns:1fr}
  .section-heading h2,.story-grid h2,.contact-copy h2{overflow-wrap:anywhere}
}

/* v14.3.1 — first-class light/dark appearance */
.theme-toggle {
  width: 44px;
  min-width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, transform 140ms var(--ease-out);
}
.theme-toggle:hover { border-color: var(--line-strong); color: var(--text); background: rgba(95,105,255,.07); }
.theme-toggle:active { transform: scale(.96); }
.theme-icon { grid-area: 1 / 1; width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: opacity 160ms ease, transform 180ms var(--ease-out); }
.theme-icon--moon { opacity: 0; transform: scale(.72) rotate(-18deg); }
html[data-theme="light"] .theme-icon--sun { opacity: 0; transform: scale(.72) rotate(18deg); }
html[data-theme="light"] .theme-icon--moon { opacity: 1; transform: scale(1) rotate(0); }
.utility-header__actions { display: flex; align-items: center; gap: 10px; }

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f6fb;
  --bg-soft: #eef1f7;
  --bg-raised: #ffffff;
  --surface: rgba(255,255,255,.86);
  --surface-strong: #ffffff;
  --surface-blue: rgba(74,84,214,.08);
  --text: #0b0d16;
  --text-soft: rgba(11,13,22,.72);
  --text-muted: rgba(11,13,22,.50);
  --line: rgba(11,13,22,.11);
  --line-strong: rgba(11,13,22,.20);
  --blue: #2028e8;
  --blue-light: #4554ea;
  --blue-pale: #5964cf;
  --danger: #b42335;
  --success: #147a45;
  --shadow: 0 30px 90px rgba(37,44,77,.14);
  --shadow-soft: 0 18px 50px rgba(37,44,77,.10);
}

html[data-theme="light"] body { background: var(--bg); color: var(--text); }
html[data-theme="light"] ::selection { background: rgba(55,67,230,.22); color: #090b14; }
html[data-theme="light"] .brand img { filter: invert(1); }
html[data-theme="light"] .site-header {
  background: linear-gradient(180deg, rgba(250,251,255,.94), rgba(250,251,255,.80));
}
html[data-theme="light"] .site-header.is-scrolled { background: rgba(250,251,255,.94); }
html[data-theme="light"] .menu-toggle,
html[data-theme="light"] .menu-close { color: var(--text); }
html[data-theme="light"] .mobile-menu { background: rgba(18,21,34,.28); }
html[data-theme="light"] .mobile-menu::backdrop { background: rgba(18,21,34,.28); }
html[data-theme="light"] .mobile-menu__panel {
  background: radial-gradient(circle at 80% 8%, rgba(74,84,214,.10), transparent 32%), #f8f9fd;
}
html[data-theme="light"] .hero::before {
  background: linear-gradient(rgba(10,13,25,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(10,13,25,.035) 1px, transparent 1px);
}
html[data-theme="light"] .hero-atmosphere i:nth-child(1) { background: radial-gradient(circle, rgba(75,86,255,.16), rgba(89,98,209,.06) 43%, transparent 72%); }
html[data-theme="light"] .hero-atmosphere i:nth-child(2) { background: radial-gradient(ellipse, rgba(81,89,255,.09), transparent 68%); }
html[data-theme="light"] .hero-copy h1 span:last-child { color: #3944ca; text-shadow: 0 0 34px rgba(70,80,220,.08); }
html[data-theme="light"] .hero-input { color: rgba(11,13,22,.60); }
html[data-theme="light"] .hero-flow__merge { fill: #15192a !important; filter: drop-shadow(0 0 14px rgba(80,92,235,.26)); }
html[data-theme="light"] .hero-visual__statement { color: rgba(11,13,22,.45); }
html[data-theme="light"] .story-section { background: linear-gradient(180deg,#fafbfe 0%,#f3f5fa 100%); }
html[data-theme="light"] .capabilities-section { background: linear-gradient(180deg,#f5f6fb,#ffffff 58%,#f5f6fb); }
html[data-theme="light"] .method-section { background: radial-gradient(circle at 14% 0, rgba(75,84,215,.08), transparent 30%), var(--bg-soft); }
html[data-theme="light"] .consulting-grid,
html[data-theme="light"] .portfolio-grid,
html[data-theme="light"] .leadership-grid { background: transparent; }
html[data-theme="light"] .consulting-grid article,
html[data-theme="light"] .portfolio-grid article,
html[data-theme="light"] .leadership-grid article,
html[data-theme="light"] .leadership-grid--compact article { background: #ffffff; border-color: var(--line); box-shadow: 0 10px 34px rgba(42,48,75,.035); }
html[data-theme="light"] .consulting-grid { gap: 1px; background: var(--line); }
html[data-theme="light"] .consulting-grid>article>span,
html[data-theme="light"] .portfolio-grid article>span,
html[data-theme="light"] .leadership-grid article>span { color: var(--text-muted); }
html[data-theme="light"] .consulting-grid li { border-color: var(--line); color: var(--text-soft); }
html[data-theme="light"] .method-simple { border-color: var(--line); }
html[data-theme="light"] .method-simple li { border-color: var(--line); }
html[data-theme="light"] .method-simple>li>span,
html[data-theme="light"] .method-simple p { color: var(--text-muted); }
html[data-theme="light"] .portfolio-grid article { border-color: var(--line); }
html[data-theme="light"] .portfolio-grid p,
html[data-theme="light"] .leadership-grid p { color: var(--text-soft); }
html[data-theme="light"] .client-wall,
html[data-theme="light"] .client-wall--compact>div { border-color: var(--line); }
html[data-theme="light"] .client-wall--compact>div span { border-color: var(--line); color: var(--text-soft); }
html[data-theme="light"] .contact-section {
  background: radial-gradient(circle at 8% 18%, rgba(67,79,220,.10), transparent 34%), linear-gradient(135deg,#f4f6ff,#edf0ff 55%,#f8f9fc);
}
html[data-theme="light"] .contact-section::after { background: #11152b; opacity: .025; }
html[data-theme="light"] .contact-atmosphere i:first-child { background: linear-gradient(90deg, transparent, rgba(70,83,225,.10), transparent); }
html[data-theme="light"] .project-form { border-color: var(--line-strong); background: rgba(255,255,255,.88); box-shadow: var(--shadow); }
html[data-theme="light"] .need-chips button { background: rgba(18,22,39,.025); color: var(--text-soft); }
html[data-theme="light"] input,
html[data-theme="light"] select,
html[data-theme="light"] textarea { border-color: rgba(11,13,22,.16); background: rgba(255,255,255,.92); color: var(--text); }
html[data-theme="light"] input:hover,
html[data-theme="light"] select:hover,
html[data-theme="light"] textarea:hover { border-color: rgba(11,13,22,.28); }
html[data-theme="light"] input:focus,
html[data-theme="light"] select:focus,
html[data-theme="light"] textarea:focus { background: #ffffff; }
html[data-theme="light"] select { color-scheme: light; }
html[data-theme="light"] .site-footer { background: #eef1f7; }
html[data-theme="light"] .site-footer--compact .footer-bottom { border-color: var(--line); }
html[data-theme="light"] .utility-header { background: rgba(250,251,255,.94); }
html[data-theme="light"] .legal-card { background: #ffffff; box-shadow: var(--shadow-soft); }

@media (prefers-color-scheme: light) {
  html:not([data-theme]) {
    color-scheme: light;
    --bg: #f5f6fb;
    --bg-soft: #eef1f7;
    --bg-raised: #ffffff;
    --surface: rgba(255,255,255,.86);
    --surface-strong: #ffffff;
    --text: #0b0d16;
    --text-soft: rgba(11,13,22,.72);
    --text-muted: rgba(11,13,22,.50);
    --line: rgba(11,13,22,.11);
    --line-strong: rgba(11,13,22,.20);
  }
}
@media (max-width: 480px) {
  .site-header .brand span { display: none; }
  .site-header .brand { gap: 0; }
}
