:root {
  --blue: #1939d8;
  --blue-bright: #2548ef;
  --navy: #121933;
  --ink: #171f41;
  --paper: #f8f8f4;
  --white: #fff;
  --soft: #eef0f4;
  --line: #d4d8e0;
  --muted: #5d6474;
  --lime: #dfff82;
  --orange: #ff8200;
  --yellow: #ffbd00;
  --green: #63b500;
  --cyan: #2faac1;
  --pad: clamp(24px, 5.25vw, 84px);
  --header-h: 72px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
figure, h1, h2, h3, h4, p, ol, ul, dl, dd { margin: 0; }
ul, ol { padding: 0; }
button { color: inherit; }
::selection { color: var(--white); background: var(--blue); }

.skip {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}
.skip:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.section-pad { padding-left: var(--pad); padding-right: var(--pad); }
.eyebrow {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
em {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -.05em;
}

/* Navigation */
.header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 32px), 1180px);
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 3vw, 54px);
  padding: 10px 10px 10px 16px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(15, 20, 44, .11), inset 0 1px 0 rgba(255, 255, 255, .72);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  transform: translateX(-50%);
  transition: top .4s var(--ease), width .4s var(--ease), min-height .4s var(--ease), padding .4s var(--ease), background .35s ease, box-shadow .35s ease;
}
.header.is-scrolled {
  top: 8px;
  width: min(calc(100% - 32px), 1060px);
  min-height: 60px;
  padding-top: 6px;
  padding-bottom: 6px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 32px rgba(15, 20, 44, .15), inset 0 1px 0 rgba(255, 255, 255, .8);
}
.wordmark { position: relative; display: inline-flex; align-items: center; gap: 10px; width: max-content; }
.header .wordmark::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 32px;
  height: 2px;
  content: '';
  background: linear-gradient(90deg, var(--orange) 0 22%, var(--yellow) 22% 43%, var(--green) 43% 65%, var(--cyan) 65% 82%, var(--blue) 82%);
  border-radius: 99px;
  opacity: .9;
}
.brand-symbol { width: 39px; height: 39px; object-fit: contain; }
.brand-name {
  display: flex;
  flex-direction: column;
  color: var(--navy);
  font-size: 15px;
  line-height: .96;
  font-weight: 800;
  letter-spacing: -.035em;
}
.brand-name > span { font-weight: 500; }
.brand-dot { color: var(--orange); }
.nav { justify-self: center; display: flex; align-items: center; gap: clamp(22px, 2.6vw, 42px); }
.nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(18, 25, 51, .76);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .25s ease;
}
.nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  content: '';
  background: var(--blue);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav a:hover, .nav a:focus-visible, .nav a.is-active { color: var(--navy); }
.nav a:hover::after, .nav a:focus-visible::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  justify-self: end;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 5px 5px 5px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 13px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(18, 25, 51, .16);
  transition: color .3s ease, background .3s ease, transform .3s var(--ease), box-shadow .3s ease;
}
.nav-cta-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--lime);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 400;
  transition: transform .35s var(--ease), background .3s ease;
}
.nav-cta:hover { color: var(--white); background: var(--blue); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(25, 57, 216, .24); }
.nav-cta:hover .nav-cta-icon { background: var(--white); transform: rotate(45deg); }
.menu-toggle { display: none; }
.mobile-nav { display: none; }

/* Cinematic opener */
.cinematic-intro { height: 300vh; color: var(--white); background: #11162c; }
.intro-stage {
  --intro-scale: 1.05;
  --intro-shift: 0px;
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}
.intro-media { position: absolute; z-index: -3; inset: 0; overflow: hidden; background: #10162d; }
.intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 46%;
  filter: saturate(.8) contrast(1.02);
  transform: scale(var(--intro-scale)) translate3d(0, var(--intro-shift), 0);
  will-change: transform;
}
.intro-media::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(90deg, rgba(8, 12, 28, .78) 0%, rgba(8, 12, 28, .36) 51%, rgba(8, 12, 28, .55) 100%), linear-gradient(0deg, rgba(8, 12, 28, .52), transparent 52%);
}
.intro-credit {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: rgba(255, 255, 255, .55);
  font-size: 9px;
  letter-spacing: .06em;
}
.intro-wash {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: var(--intro-wash, 0);
  background: linear-gradient(125deg, rgba(25, 57, 216, .82), rgba(13, 22, 61, .2) 70%);
  will-change: opacity;
}
.intro-brandline {
  position: absolute;
  top: calc(var(--header-h) + 42px);
  right: var(--pad);
  left: var(--pad);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
}
.intro-state { display: flex; align-items: center; gap: 10px; text-align: right; }
.intro-state i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(223, 255, 130, .16); }
.intro-frames { position: absolute; inset: 0; }
.intro-frame {
  position: absolute;
  top: 50%;
  left: var(--pad);
  width: min(1020px, calc(100% - var(--pad) * 2));
  opacity: 0;
  transform: translate3d(0, 54px, 0) scale(.97);
  will-change: opacity, transform;
  pointer-events: none;
}
.intro-frame:first-child { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
.intro-frame .eyebrow { margin-bottom: 22px; color: rgba(255, 255, 255, .74); }
.intro-frame h1, .intro-frame h2 {
  max-width: 1000px;
  font-size: clamp(52px, 6.5vw, 106px);
  line-height: .91;
  font-weight: 500;
  letter-spacing: -.067em;
}
.intro-frame em { color: var(--lime); }
.intro-final { top: 47%; }
.intro-final > p:not(.eyebrow) { max-width: 580px; margin-top: 28px; color: rgba(255, 255, 255, .8); font-size: clamp(16px, 1.4vw, 21px); }
.intro-actions { display: flex; align-items: center; gap: 28px; margin-top: 32px; }
.intro-actions a { font-size: 12px; font-weight: 800; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: space-between; gap: 32px; padding: 0 20px; }
.intro-primary { color: var(--navy); background: var(--lime); transition: transform .25s ease, background .25s ease; }
.intro-primary:hover { background: var(--white); transform: translateY(-3px); }
.intro-rail {
  position: absolute;
  top: 50%;
  right: var(--pad);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}
.rail-step { display: flex; align-items: center; justify-content: flex-end; gap: 11px; }
.rail-step i { display: block; width: 26px; height: 1px; background: rgba(255, 255, 255, .35); transition: width .3s ease, background .3s ease; }
.rail-step b { color: rgba(255, 255, 255, .48); font-size: 9px; letter-spacing: .1em; }
.rail-step.is-active i { width: 48px; background: var(--lime); }
.rail-step.is-active b { color: var(--white); }
.intro-scroll {
  position: absolute;
  right: var(--pad);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.intro-scroll i { position: relative; width: 42px; height: 1px; overflow: hidden; background: rgba(255, 255, 255, .35); }
.intro-scroll i::after { position: absolute; inset: 0; content: ''; background: var(--lime); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: translateX(-110%); } 50%, 100% { transform: translateX(110%); } }

/* Continuous service line */
.service-strip {
  position: relative;
  z-index: 4;
  min-height: 74px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.strip-source { width: max-content; display: flex; align-items: center; white-space: nowrap; }
.strip-source span { padding: 0 clamp(26px, 3vw, 52px); font-size: clamp(14px, 1.1vw, 18px); font-weight: 700; letter-spacing: -.025em; }
.strip-source i { color: var(--lime); font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.js .strip-source { display: none; }
.strip-track { width: max-content; display: flex; animation: marquee 34s linear infinite; will-change: transform; }
.strip-group { display: flex; align-items: center; white-space: nowrap; }
.strip-group span { padding: 0 clamp(26px, 3vw, 52px); font-size: clamp(14px, 1.1vw, 18px); font-weight: 700; letter-spacing: -.025em; }
.strip-group i { color: var(--lime); font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.service-strip:hover .strip-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-33.3333%); } }

/* Shared section headers */
.section-intro { display: grid; grid-template-columns: minmax(180px, .7fr) minmax(500px, 1.9fr) minmax(240px, .72fr); gap: clamp(28px, 4vw, 74px); align-items: start; }
.section-intro h2 {
  grid-column: 2;
  font-size: clamp(48px, 5.4vw, 88px);
  line-height: .96;
  font-weight: 500;
  letter-spacing: -.063em;
}
.section-intro h2 em { color: var(--blue); }
.section-intro > p:last-child { grid-column: 3; padding-top: 8px; color: var(--muted); font-size: clamp(15px, 1.2vw, 18px); }

/* Outcome-led orientation */
.orientation { padding-top: clamp(100px, 12vw, 190px); padding-bottom: clamp(110px, 13vw, 210px); background: var(--paper); }
.outcome-list { margin-top: clamp(72px, 9vw, 145px); border-top: 1px solid var(--line); }
.outcome-row {
  display: grid;
  grid-template-columns: 80px minmax(260px, .85fr) minmax(340px, 1.3fr) 64px;
  gap: clamp(20px, 3vw, 56px);
  align-items: center;
  min-height: 150px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: color .35s ease, padding .35s var(--ease), background .35s ease;
}
.outcome-row:hover { padding-right: 18px; padding-left: 18px; color: var(--white); background: var(--blue); }
.outcome-index { font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.outcome-name { font-size: clamp(28px, 3.1vw, 52px); line-height: .98; font-weight: 500; letter-spacing: -.05em; }
.outcome-copy { max-width: 630px; color: var(--muted); }
.outcome-row:hover .outcome-copy { color: rgba(255, 255, 255, .78); }
.round-arrow { width: 54px; height: 54px; display: grid; place-items: center; justify-self: end; border: 1px solid currentColor; border-radius: 50%; font-size: 19px; transition: color .25s ease, background .25s ease, transform .35s var(--ease); }
.outcome-row:hover .round-arrow { color: var(--navy); background: var(--lime); border-color: var(--lime); transform: rotate(45deg); }

/* Services */
.services { padding-top: clamp(100px, 11vw, 175px); padding-bottom: clamp(90px, 10vw, 160px); color: var(--white); background: var(--navy); }
.section-intro-light h2 em { color: var(--lime); }
.section-intro-light > p:last-child { color: rgba(255, 255, 255, .62); }
.service-list { margin-top: clamp(70px, 8vw, 130px); border-top: 1px solid rgba(255, 255, 255, .2); }
.service { border-bottom: 1px solid rgba(255, 255, 255, .2); }
.service summary {
  min-height: 126px;
  display: grid;
  grid-template-columns: 74px minmax(340px, 1.3fr) minmax(230px, .7fr) 52px;
  gap: 28px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  transition: color .3s ease, padding .3s var(--ease);
}
.service summary::-webkit-details-marker, .faq-item summary::-webkit-details-marker { display: none; }
.service summary:hover { color: var(--lime); padding-right: 10px; }
.service-index { font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.service-title { font-size: clamp(28px, 3.1vw, 50px); line-height: 1; letter-spacing: -.05em; }
.service-short { justify-self: end; color: rgba(255, 255, 255, .55); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.expand { position: relative; width: 48px; height: 48px; display: block; justify-self: end; border: 1px solid rgba(255, 255, 255, .36); border-radius: 50%; }
.expand::before, .expand::after { position: absolute; top: 50%; left: 50%; width: 14px; height: 1px; content: ''; background: currentColor; transform: translate(-50%, -50%); transition: transform .35s var(--ease); }
.expand::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] > summary .expand::after { transform: translate(-50%, -50%) rotate(0); }
.service[open] summary { color: var(--lime); }
.service-body {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(350px, 1.15fr) minmax(230px, .65fr);
  gap: clamp(36px, 6vw, 100px);
  padding: 12px 52px clamp(62px, 7vw, 110px) 102px;
}
.service-promise { max-width: 480px; font-size: clamp(20px, 2vw, 30px); line-height: 1.24; letter-spacing: -.035em; }
.service-tasks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 28px; list-style: none; border-top: 1px solid rgba(255, 255, 255, .2); }
.service-tasks li { padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .2); color: rgba(255, 255, 255, .78); font-size: 14px; }
.service-fit { padding-left: 24px; border-left: 1px solid rgba(255, 255, 255, .24); }
.service-fit span { color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.service-fit p { margin-top: 16px; color: rgba(255, 255, 255, .65); }

/* Signature system sequence */
.system-showcase { height: 100svh; color: var(--white); background: #090e21; }
.js .system-showcase { height: 380vh; }
.system-stage {
  --system-progress: 0;
  --system-fill: 0%;
  --ring-rotation: 0deg;
  --ring-rotation-neg: 0deg;
  --system-blue: 0;
  --visual-scale: 1;
  --result-y: 70px;
  --pointer-x: 70%;
  --pointer-y: 50%;
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
  background: #090e21;
}
.system-stage::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: '';
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(44, 72, 226, .23), transparent 34%);
  transition: background .18s linear;
}
.system-stage::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: '';
  opacity: var(--system-blue);
  background: var(--blue);
  will-change: opacity;
}
.system-grid-bg {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, transparent 4%, #000 35%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 4%, #000 35%, #000 100%);
}
.system-topline {
  position: absolute;
  z-index: 5;
  top: calc(var(--header-h) + 42px);
  right: var(--pad);
  left: var(--pad);
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}
.system-status { display: flex; align-items: center; gap: 10px; }
.system-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(223, 255, 130, .13); }
.system-copy {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: var(--pad);
  width: min(45vw, 680px);
  height: 340px;
  transform: translateY(-45%);
}
.system-statement { position: absolute; inset: 0; opacity: 0; transform: translate3d(0, 50px, 0); will-change: opacity, transform; }
.system-statement:first-child { opacity: 1; transform: none; }
.system-statement .eyebrow { margin-bottom: 30px; color: var(--lime); }
.system-statement h2 { font-size: clamp(48px, 5.3vw, 86px); line-height: .94; font-weight: 500; letter-spacing: -.065em; }
.system-statement h2 em { color: var(--lime); }
.system-visual {
  position: absolute;
  z-index: 3;
  top: 52%;
  right: 2.5vw;
  width: min(49vw, 760px);
  aspect-ratio: 1;
  opacity: 1;
  transform: translateY(-50%) scale(var(--visual-scale));
  transform-origin: center;
  will-change: opacity, transform;
}
.system-ring { position: absolute; border: 1px solid rgba(255, 255, 255, .17); border-radius: 50%; transform: rotate(var(--ring-rotation)); will-change: transform; }
.system-ring::before, .system-ring::after { position: absolute; width: 8px; height: 8px; content: ''; border-radius: 50%; background: var(--lime); box-shadow: 0 0 20px rgba(223, 255, 130, .65); }
.system-ring-outer { inset: 5%; border-style: dashed; }
.system-ring-outer::before { top: 16%; left: 8%; }
.system-ring-outer::after { right: 3%; bottom: 27%; }
.system-ring-inner { inset: 26%; border-color: rgba(255, 255, 255, .26); transform: rotate(var(--ring-rotation-neg)); }
.system-ring-inner::before { top: -4px; left: 50%; }
.system-ring-inner::after { right: 18%; bottom: 5%; }
.system-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: clamp(145px, 13vw, 205px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 22px;
  color: var(--navy);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(255, 255, 255, .06), 0 25px 80px rgba(0, 0, 0, .35);
  transform: translate(-50%, -50%) scale(var(--core-scale, .84));
  will-change: transform;
}
.system-core::after { position: absolute; inset: -18px; content: ''; border: 1px solid rgba(255, 255, 255, .18); border-radius: inherit; }
.system-core img { width: 56%; height: auto; }
.system-core span, .system-core b { font-size: 8px; line-height: 1; letter-spacing: .13em; }
.system-line { position: absolute; z-index: 1; top: 50%; left: 50%; width: 0; height: 1px; opacity: 0; background: linear-gradient(90deg, rgba(255, 255, 255, .65), rgba(255, 255, 255, .06)); transform-origin: 0 50%; will-change: width, opacity, transform; }
.system-line::after { position: absolute; top: -3px; right: 0; width: 7px; height: 7px; content: ''; border-radius: 50%; background: var(--lime); }
.system-card {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: clamp(122px, 12vw, 178px);
  height: clamp(76px, 7.5vw, 112px);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  gap: 2px 12px;
  align-items: center;
  padding: 15px;
  color: var(--navy);
  background: var(--card-color);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
  transform: translate(-50%, -50%);
  will-change: opacity, transform;
}
.system-card::before { position: absolute; inset: 5px; content: ''; border: 1px solid rgba(18, 25, 51, .18); pointer-events: none; }
.system-card > span { align-self: start; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.system-card strong { grid-column: 2; grid-row: 1 / 3; justify-self: end; font-size: clamp(15px, 1.35vw, 21px); letter-spacing: -.04em; writing-mode: vertical-rl; transform: rotate(180deg); }
.system-card small { align-self: end; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.system-card-orange { --card-color: var(--orange); transform: translate(-50%, -50%) translate(-250px, -170px) rotate(-8deg); }
.system-card-yellow { --card-color: var(--yellow); transform: translate(-50%, -50%) translate(240px, -160px) rotate(7deg); }
.system-card-green { --card-color: var(--green); transform: translate(-50%, -50%) translate(-245px, 170px) rotate(5deg); }
.system-card-cyan { --card-color: var(--cyan); transform: translate(-50%, -50%) translate(245px, 170px) rotate(-6deg); }
.system-result {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: var(--pad);
  width: min(1000px, calc(100% - var(--pad) * 2));
  opacity: 0;
  transform: translate3d(0, var(--result-y), 0) translateY(-46%);
  pointer-events: none;
  will-change: opacity, transform;
}
.system-result .eyebrow { margin-bottom: 28px; color: var(--lime); }
.system-result h2 { font-size: clamp(72px, 9.6vw, 156px); line-height: .84; font-weight: 500; letter-spacing: -.078em; }
.system-result h2 em { color: var(--lime); }
.system-result > p:not(.eyebrow) { max-width: 620px; margin-top: 30px; color: rgba(255, 255, 255, .75); font-size: clamp(16px, 1.35vw, 21px); }
.system-result a { width: min(340px, 100%); min-height: 52px; display: flex; align-items: center; justify-content: space-between; margin-top: 34px; padding: 0 18px; color: var(--navy); background: var(--lime); font-size: 12px; font-weight: 800; }
.system-progress { position: absolute; z-index: 7; left: var(--pad); bottom: 28px; display: grid; grid-template-columns: 150px auto auto auto; align-items: center; gap: 10px; color: rgba(255, 255, 255, .48); font-size: 9px; letter-spacing: .1em; }
.system-progress::before { grid-column: 1; grid-row: 1; height: 1px; content: ''; background: rgba(255, 255, 255, .25); }
.system-progress-fill { grid-column: 1; grid-row: 1; width: var(--system-fill); height: 1px; background: var(--lime); }
.system-progress b:first-of-type { color: var(--white); }
.system-progress i { font-style: normal; }
.system-scrollcue { position: absolute; z-index: 7; right: var(--pad); bottom: 27px; color: rgba(255, 255, 255, .5); font-size: 9px; font-weight: 800; letter-spacing: .12em; }

/* Editorial application stories */
.examples { padding-top: clamp(100px, 12vw, 190px); padding-bottom: clamp(100px, 12vw, 190px); background: var(--paper); }
.story-list { display: grid; gap: 18px; margin-top: clamp(80px, 10vw, 150px); }
.story {
  --story-accent: var(--orange);
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: .72fr 1.18fr .92fr;
  gap: clamp(32px, 5vw, 84px);
  padding: clamp(36px, 5vw, 78px);
  overflow: hidden;
  color: var(--ink);
  background: #f2eee8;
  border: 1px solid rgba(18, 25, 51, .12);
  isolation: isolate;
}
.story::before { position: absolute; z-index: -1; top: -35%; right: 16%; width: 460px; height: 460px; content: ''; border-radius: 50%; background: var(--story-accent); opacity: .13; filter: blur(2px); transition: transform .8s var(--ease); }
.story:hover::before { transform: translate3d(80px, 80px, 0) scale(1.35); }
.story-orange { --story-accent: var(--orange); background: #f5efe8; }
.story-yellow { --story-accent: var(--yellow); background: #f5f2e5; }
.story-green { --story-accent: var(--green); background: #ecf1e8; }
.story-cyan { --story-accent: var(--cyan); background: #e9f1f2; }
.story-number { position: absolute; right: -10px; bottom: -118px; z-index: -1; color: transparent; font-size: clamp(250px, 31vw, 510px); line-height: .8; font-weight: 800; letter-spacing: -.11em; -webkit-text-stroke: 1px rgba(18, 25, 51, .11); }
.story-meta { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.story-meta span:last-child { padding: 8px 10px; color: var(--ink); background: var(--story-accent); }
.story-main { align-self: center; }
.story-main h3 { font-size: clamp(42px, 5vw, 80px); line-height: .92; font-weight: 500; letter-spacing: -.065em; }
.story-main p { max-width: 610px; margin-top: 30px; font-size: clamp(16px, 1.3vw, 20px); }
.story-route { align-self: end; border-top: 1px solid rgba(18, 25, 51, .3); }
.story-route > div { padding: 18px 0; border-bottom: 1px solid rgba(18, 25, 51, .18); }
.story-route span { font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.story-route p { margin-top: 7px; color: var(--muted); font-size: 14px; }
.story-route > a { min-height: 50px; display: flex; align-items: center; justify-content: space-between; margin-top: 18px; font-size: 12px; font-weight: 800; }

/* Philosophy */
.approach { padding-top: clamp(90px, 10vw, 160px); padding-bottom: 50px; overflow: hidden; color: var(--white); background: var(--blue); }
.approach-top { display: flex; justify-content: space-between; gap: 30px; }
.approach-top > span { font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.approach-grid { display: grid; grid-template-columns: 1.45fr .72fr; gap: clamp(70px, 10vw, 170px); align-items: end; margin-top: clamp(80px, 10vw, 155px); }
.approach-grid h2 { font-size: clamp(60px, 7.4vw, 120px); line-height: .88; font-weight: 500; letter-spacing: -.07em; }
.approach-grid h2 em { color: var(--lime); }
.approach-grid > div > p { color: rgba(255, 255, 255, .74); }
.approach-grid .approach-large { margin-bottom: 25px; color: var(--white); font-size: clamp(21px, 2vw, 31px); line-height: 1.2; letter-spacing: -.035em; }
.approach-grid a { min-height: 48px; display: flex; align-items: center; justify-content: space-between; margin-top: 34px; padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, .45); font-size: 12px; font-weight: 800; }
.approach-words { width: max-content; display: flex; align-items: center; gap: clamp(28px, 4vw, 70px); margin-top: clamp(100px, 12vw, 190px); color: transparent; font-size: clamp(80px, 13vw, 210px); line-height: .8; font-weight: 800; letter-spacing: -.075em; -webkit-text-stroke: 1px rgba(255, 255, 255, .28); transform: translateX(var(--word-shift, 0px)); will-change: transform; }
.approach-words i { color: var(--lime); font-family: Georgia, serif; font-size: .5em; -webkit-text-stroke: 0; }

/* Process */
.process { --process-progress: 0%; position: relative; padding-top: clamp(110px, 13vw, 200px); padding-bottom: clamp(100px, 12vw, 190px); background: var(--paper); }
.process-track { position: absolute; top: 0; right: var(--pad); left: var(--pad); height: 3px; background: var(--line); }
.process-track span { display: block; width: var(--process-progress); height: 100%; background: var(--blue); }
.process-list { margin-top: clamp(80px, 10vw, 155px); list-style: none; border-top: 1px solid var(--ink); }
.process-list li {
  min-height: 190px;
  display: grid;
  grid-template-columns: 80px minmax(250px, .8fr) minmax(340px, 1.2fr) minmax(210px, .62fr);
  gap: clamp(20px, 3vw, 52px);
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.process-number, .process-phase { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.process-list h3 { margin-top: 9px; font-size: clamp(30px, 3.3vw, 54px); line-height: 1; font-weight: 500; letter-spacing: -.055em; }
.process-list p { color: var(--muted); }
.process-list strong { font-size: 10px; letter-spacing: .12em; }
.care { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 11vw, 190px); margin-top: clamp(100px, 12vw, 180px); padding: clamp(40px, 6vw, 90px); color: var(--white); background: var(--navy); }
.care h3 { margin-top: 38px; font-size: clamp(42px, 5vw, 78px); line-height: .93; font-weight: 500; letter-spacing: -.06em; }
.care > div:last-child > p { font-size: clamp(18px, 1.6vw, 24px); line-height: 1.3; }
.care ul { margin-top: 36px; list-style: none; border-top: 1px solid rgba(255, 255, 255, .24); }
.care li { padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .24); color: rgba(255, 255, 255, .72); }
.care small { display: block; margin-top: 28px; color: var(--lime); font-size: 11px; line-height: 1.45; text-transform: uppercase; letter-spacing: .08em; }

/* FAQ */
.faq { padding-top: clamp(100px, 12vw, 190px); padding-bottom: clamp(100px, 12vw, 190px); background: var(--soft); }
.faq-list { width: min(1020px, 100%); margin: clamp(80px, 10vw, 150px) 0 0 auto; border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { min-height: 100px; display: grid; grid-template-columns: 1fr 50px; gap: 20px; align-items: center; cursor: pointer; list-style: none; font-size: clamp(20px, 2vw, 31px); line-height: 1.2; letter-spacing: -.035em; }
.faq-item .expand { border-color: rgba(18, 25, 51, .28); }
.faq-answer { padding: 0 90px 34px 0; }
.faq-answer p { max-width: 750px; color: var(--muted); font-size: 17px; }

/* Contact + footer */
.contact { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(70px, 11vw, 180px); padding-top: clamp(100px, 12vw, 190px); padding-bottom: clamp(100px, 12vw, 190px); background: var(--lime); }
.contact h2 { margin-top: 50px; font-size: clamp(64px, 8vw, 132px); line-height: .86; font-weight: 500; letter-spacing: -.075em; }
.contact h2 em { color: var(--blue); }
.contact-side > p { font-size: clamp(20px, 2vw, 31px); line-height: 1.25; letter-spacing: -.035em; }
.contact-side ol { margin-top: 50px; list-style: none; border-top: 1px solid var(--ink); }
.contact-side li { min-height: 65px; display: flex; align-items: center; gap: 24px; border-bottom: 1px solid rgba(18, 25, 51, .35); font-weight: 700; }
.contact-side li span { font-size: 10px; letter-spacing: .16em; }
.contact-booking { min-height: 104px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; margin-top: 50px; padding: 24px; color: var(--white); background: var(--navy); transition: color .3s ease, background .3s ease, transform .3s var(--ease); }
.contact-booking:hover { color: var(--navy); background: var(--white); transform: translateY(-4px); }
.contact-booking strong, .contact-booking small { display: block; }
.contact-booking strong { font-size: 18px; }
.contact-booking small { margin-top: 9px; color: rgba(255, 255, 255, .65); }
.contact-booking:hover small { color: var(--muted); }
.contact-booking > b { font-size: 12px; white-space: nowrap; }
.footer { color: var(--white); background: var(--navy); }
.footer .brand-name { color: var(--white); }
.footer-top { min-height: 185px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, .18); }
.footer-top > p { justify-self: center; color: rgba(255, 255, 255, .65); }
.back-top { justify-self: end; font-size: 12px; font-weight: 800; }
.footer-directory { display: grid; grid-template-columns: repeat(3, 1fr); gap: 70px; padding: 70px 0 95px; }
.footer-directory > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-directory span { margin-bottom: 13px; color: rgba(255, 255, 255, .4); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.footer-directory a, .footer-directory p { color: rgba(255, 255, 255, .74); font-size: 14px; }
.footer-directory a:hover { color: var(--lime); }
.footer-bottom { min-height: 80px; display: flex; justify-content: space-between; align-items: center; gap: 30px; border-top: 1px solid rgba(255, 255, 255, .18); color: rgba(255, 255, 255, .42); font-size: 10px; letter-spacing: .06em; }
.footer-legal { display: flex; align-items: center; gap: 24px; margin: 0; }
.footer-legal a { color: rgba(255, 255, 255, .62); transition: color .2s ease; }
.footer-legal a:hover { color: var(--lime); }

/* Legal center */
.legal-body { --legal-x: 50vw; --legal-y: 50vh; background: #f3f4f7; }
.legal-body::before { position: fixed; z-index: -1; inset: 0; content: ''; pointer-events: none; background: radial-gradient(500px circle at var(--legal-x) var(--legal-y), rgba(37, 72, 239, .055), transparent 65%); }
.legal-progress { position: fixed; z-index: 220; top: 0; right: 0; left: 0; height: 4px; background: rgba(18, 25, 51, .08); }
.legal-progress span { height: 100%; display: block; background: linear-gradient(90deg, var(--orange), var(--yellow), var(--green), var(--cyan), var(--blue)); transform: scaleX(0); transform-origin: left; will-change: transform; }
.legal-header { position: relative; z-index: 10; width: min(calc(100% - 48px), 1380px); min-height: 96px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; margin: 0 auto; border-bottom: 1px solid rgba(18, 25, 51, .16); }
.legal-header-meta { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.legal-header-meta i { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(99, 181, 0, .12); }
.legal-back { justify-self: end; display: inline-flex; align-items: center; gap: 14px; font-size: 12px; font-weight: 800; }
.legal-back span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); background: var(--navy); transition: transform .3s var(--ease), background .3s ease; }
.legal-back:hover span { background: var(--blue); transform: rotate(45deg); }
.legal-main { width: min(calc(100% - 48px), 1380px); margin: 0 auto; padding: 32px 0 0; }
.legal-hero { position: relative; min-height: min(720px, calc(100svh - 132px)); display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr); grid-template-rows: 1fr auto; gap: 30px 60px; align-items: center; overflow: hidden; padding: clamp(48px, 7vw, 100px); color: var(--white); background: var(--navy); isolation: isolate; }
.legal-hero::before { position: absolute; z-index: -2; inset: 0; content: ''; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, #000, transparent 80%); }
.legal-hero::after { position: absolute; z-index: -1; top: -30%; right: -12%; width: 58%; aspect-ratio: 1; content: ''; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.018); }
.legal-hero-title { align-self: center; }
.legal-hero-title .eyebrow { margin-bottom: clamp(26px, 4vw, 58px); color: var(--lime); }
.legal-hero-title h1 { font-size: clamp(72px, 10vw, 156px); line-height: .8; font-weight: 500; letter-spacing: -.08em; }
.legal-hero-title h1 > span { color: var(--blue-bright); }
.legal-hero-title h1 em { color: var(--lime); }
.legal-hero-title > p:last-child { max-width: 610px; margin-top: 42px; color: rgba(255,255,255,.7); font-size: clamp(18px, 1.55vw, 24px); line-height: 1.35; }
.legal-hero-imprint { min-height: 610px; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); }
.legal-hero-imprint::after { top: -60%; right: -18%; width: 50%; opacity: .65; }
.imprint-identity { position: relative; width: min(100%, 390px); min-height: 390px; justify-self: end; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 38px; color: var(--navy); background: var(--white); box-shadow: 0 30px 70px rgba(0,0,0,.18); }
.imprint-identity::after { position: absolute; top: -90px; right: -95px; width: 230px; height: 230px; content: ''; border: 1px solid rgba(18,25,51,.12); border-radius: 50%; box-shadow: 0 0 0 42px rgba(18,25,51,.03), 0 0 0 84px rgba(18,25,51,.02); }
.imprint-spectrum { position: absolute; top: 0; right: 0; left: 0; height: 8px; display: grid; grid-template-columns: 1.1fr .8fr 1fr .9fr; }
.imprint-spectrum i:nth-child(1) { background: var(--orange); }.imprint-spectrum i:nth-child(2) { background: var(--yellow); }.imprint-spectrum i:nth-child(3) { background: var(--green); }.imprint-spectrum i:nth-child(4) { background: var(--cyan); }
.imprint-identity > span { position: absolute; top: 38px; left: 38px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.imprint-identity > strong { position: relative; z-index: 2; font-size: clamp(44px, 4.6vw, 66px); line-height: .84; font-weight: 500; letter-spacing: -.065em; }
.imprint-identity > p { position: relative; z-index: 2; margin-top: 28px; color: var(--muted); font-size: 14px; }
.imprint-identity > small { position: relative; z-index: 2; display: flex; align-items: center; gap: 9px; margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.imprint-identity > small i { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(99,181,0,.1); }
.legal-facts { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.legal-facts > div { min-height: 82px; display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 18px 24px; border-right: 1px solid rgba(255,255,255,.2); }
.legal-facts > div:last-child { border-right: 0; }
.legal-facts span { color: rgba(255,255,255,.4); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.legal-facts strong { font-size: 14px; font-weight: 700; }
.legal-facts strong i { width: 7px; height: 7px; display: inline-block; margin-right: 7px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 5px rgba(223,255,130,.12); }
.privacy-signal { position: relative; width: min(36vw, 470px); aspect-ratio: 1; justify-self: center; display: grid; place-items: center; }
.privacy-signal > div { position: relative; z-index: 2; width: 53%; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--blue); border-radius: 50%; box-shadow: 0 0 0 24px rgba(37,72,239,.16), 0 30px 80px rgba(0,0,0,.25); }
.privacy-signal small { margin-bottom: 18px; color: rgba(255,255,255,.6); font-size: 8px; letter-spacing: .12em; }
.privacy-signal strong { font-size: clamp(20px, 2.2vw, 34px); line-height: .9; letter-spacing: -.05em; }
.privacy-signal i { width: 9px; height: 9px; margin-top: 20px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 14px var(--lime); }
.signal-line { position: absolute; width: 45%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.45)); transform-origin: right; }
.signal-line::before { position: absolute; left: 0; top: -3px; width: 7px; height: 7px; content: ''; background: var(--cyan); border-radius: 50%; }
.signal-line-a { left: 0; top: 18%; transform: rotate(30deg); }.signal-line-b { right: 0; top: 26%; transform: rotate(145deg); }.signal-line-c { left: 3%; bottom: 16%; transform: rotate(-26deg); }.signal-line-d { right: 1%; bottom: 19%; transform: rotate(210deg); }
.legal-shell { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: clamp(44px, 7vw, 110px); padding: clamp(95px, 11vw, 170px) 0; }
.legal-index { position: sticky; top: 28px; height: max-content; }
.legal-index-head { display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.legal-index nav { display: flex; flex-direction: column; margin-top: 18px; }
.legal-index nav a { position: relative; display: grid; grid-template-columns: 34px 1fr; gap: 8px; align-items: center; min-height: 40px; color: var(--muted); font-size: 13px; transition: color .2s ease, transform .3s var(--ease); }
.legal-index nav a::before { position: absolute; left: -12px; width: 3px; height: 0; content: ''; background: var(--blue); transition: height .3s var(--ease); }
.legal-index nav a span { font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.legal-index nav a:hover, .legal-index nav a.is-active { color: var(--ink); transform: translateX(8px); }
.legal-index nav a.is-active::before { height: 18px; }
.legal-index > p { margin-top: 42px; color: var(--muted); font-size: 10px; line-height: 1.8; text-transform: uppercase; letter-spacing: .12em; }
.legal-index > p strong { color: var(--ink); }
.legal-content { min-width: 0; display: flex; flex-direction: column; gap: 22px; }
.legal-card { --card-accent: var(--blue); position: relative; scroll-margin-top: 28px; min-height: 390px; display: grid; grid-template-columns: 104px 1fr; gap: clamp(30px, 5vw, 82px); overflow: hidden; padding: clamp(40px, 6vw, 78px); background: var(--white); border: 1px solid rgba(18,25,51,.1); transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
.legal-card::before { position: absolute; top: 0; right: 0; left: 0; height: 6px; content: ''; background: var(--card-accent); transform: scaleX(.16); transform-origin: left; transition: transform .55s var(--ease); }
.legal-card::after { position: absolute; right: -80px; bottom: -120px; width: 300px; height: 300px; content: ''; border: 1px solid color-mix(in srgb, var(--card-accent) 20%, transparent); border-radius: 50%; transition: transform .75s var(--ease); }
.legal-card:hover { transform: translateY(-7px); box-shadow: 0 26px 65px rgba(18,25,51,.1); }
.legal-card:hover::before { transform: scaleX(1); }
.legal-card:hover::after { transform: scale(1.2); }
.legal-card-blue { --card-accent: var(--blue); }.legal-card-orange { --card-accent: var(--orange); }.legal-card-yellow { --card-accent: var(--yellow); }.legal-card-green { --card-accent: var(--green); }.legal-card-cyan { --card-accent: var(--cyan); }
.legal-card-dark { --card-accent: var(--lime); color: var(--white); background: var(--navy); }
.legal-card-number { color: var(--card-accent); font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.legal-card-copy { min-width: 0; max-width: 820px; }
.legal-card-copy .eyebrow { margin-bottom: 28px; color: var(--card-accent); }
.legal-card-copy h2 { margin-bottom: 34px; font-size: clamp(36px, 4.6vw, 68px); line-height: .95; font-weight: 500; letter-spacing: -.06em; }
.legal-card-copy p, .legal-card-copy address, .legal-card-copy li { color: var(--muted); font-size: 16px; font-style: normal; line-height: 1.65; }
.legal-card-copy p + p, .legal-card-copy p + address, .legal-card-copy address + p { margin-top: 17px; }
.legal-card-copy a:not(.legal-action) { color: var(--blue); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; overflow-wrap: anywhere; }
.legal-card-copy ul { margin: 20px 0 0 18px; }
.legal-card-copy li + li { margin-top: 8px; }
.legal-lead { color: var(--ink) !important; font-size: clamp(20px, 2vw, 28px) !important; line-height: 1.3 !important; letter-spacing: -.025em; }
.legal-card-dark .legal-card-copy p, .legal-card-dark .legal-card-copy li { color: rgba(255,255,255,.68); }
.legal-card-dark .legal-lead { color: var(--white) !important; }
.legal-code { display: inline-block; margin-top: 28px; padding: 13px 18px; color: var(--white); background: var(--navy); font-size: clamp(20px, 2.2vw, 30px); letter-spacing: .08em; }
.legal-action { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 15px 0; border-top: 1px solid var(--line); font-size: clamp(18px, 2vw, 26px); letter-spacing: -.03em; }
.legal-action:last-child { border-bottom: 1px solid var(--line); }
.legal-action small { display: block; margin-bottom: 4px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.legal-action b { width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); background: var(--card-accent); transition: transform .3s var(--ease); }
.legal-action:hover b { transform: rotate(45deg); }
.privacy-pulse, .encryption-mark { min-height: 64px; display: flex; align-items: center; gap: 14px; margin-top: 36px; padding: 0 18px; border: 1px solid rgba(255,255,255,.18); font-size: 9px; letter-spacing: .14em; }
.privacy-pulse i { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 0 rgba(223,255,130,.4); animation: legalPulse 2s infinite; }
.privacy-pulse strong { margin-left: auto; color: var(--lime); }
@keyframes legalPulse { 50% { box-shadow: 0 0 0 10px rgba(223,255,130,0); } }
.encryption-mark { color: var(--muted); border-color: var(--line); }
.encryption-mark span { padding-right: 14px; border-right: 1px solid var(--line); color: var(--ink); font-weight: 800; }
.encryption-mark i { width: 8px; height: 8px; background: var(--green); border-radius: 50%; }
.encryption-mark strong { margin-left: auto; }
.legal-ready .legal-card { opacity: 0; transform: translateY(38px); }
.legal-ready .legal-card.is-visible { opacity: 1; transform: translateY(0); transition: opacity .7s var(--ease), transform .8s var(--ease), box-shadow .55s var(--ease); }
.legal-ready .legal-card.is-visible:hover { transform: translateY(-7px); }
.legal-exit { position: relative; min-height: 520px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; margin-top: 16px; padding: clamp(55px, 8vw, 105px); color: var(--navy); background: var(--lime); }
.legal-exit::after { position: absolute; right: -5%; bottom: -45%; width: 48%; aspect-ratio: 1; content: ''; border: 1px solid rgba(18,25,51,.22); border-radius: 50%; box-shadow: 0 0 0 70px rgba(18,25,51,.04), 0 0 0 140px rgba(18,25,51,.025); }
.legal-exit h2 { margin-top: 34px; font-size: clamp(58px, 8vw, 120px); line-height: .84; font-weight: 500; letter-spacing: -.075em; }
.legal-exit h2 em { color: var(--blue); }
.legal-exit a { position: absolute; z-index: 2; right: clamp(40px, 8vw, 110px); bottom: clamp(40px, 7vw, 90px); min-width: 220px; min-height: 62px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; color: var(--white); background: var(--navy); font-size: 12px; font-weight: 800; transition: transform .3s var(--ease), background .3s ease; }
.legal-exit a:hover { background: var(--blue); transform: translateY(-4px); }
.legal-footer { min-height: 120px; display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 0; padding: 30px max(24px, calc((100vw - 1380px) / 2)); color: rgba(255,255,255,.55); background: var(--navy); font-size: 11px; letter-spacing: .04em; }
.legal-footer nav { display: flex; gap: 26px; }
.legal-footer a { color: rgba(255,255,255,.76); }
.legal-footer a:hover, .legal-footer a[aria-current="page"] { color: var(--lime); }

/* Reveal motion */
.js [data-reveal] { opacity: 0; transition: opacity .85s var(--ease), transform .95s var(--ease); }
.js [data-reveal="up"] { transform: translate3d(0, 54px, 0); }
.js [data-reveal="left"] { transform: translate3d(-54px, 0, 0); }
.js [data-reveal="right"] { transform: translate3d(54px, 0, 0); }
.js [data-reveal].is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

#ausgangspunkt, #leistungen, #system, #beispiele, #ablauf, #fragen, #kontakt, .service { scroll-margin-top: 105px; }

/* Tablet */
@media (max-width: 1100px) {
  :root { --pad: clamp(24px, 4vw, 48px); }
  .header { grid-template-columns: 1fr auto auto; }
  .nav { display: none; }
  .nav-cta { margin-left: auto; }
  .menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid rgba(18, 25, 51, .12);
    border-radius: 12px;
    background: rgba(255, 255, 255, .62);
    cursor: pointer;
  }
  .menu-toggle span { width: 20px; height: 1px; background: var(--navy); transition: transform .3s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    z-index: 95;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 120px var(--pad) 50px;
    color: var(--white);
    background: var(--navy);
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { min-height: 62px; display: flex; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, .2); font-size: clamp(28px, 5vw, 48px); line-height: 1; letter-spacing: -.045em; }
  .mobile-nav a:last-child { margin-top: 28px; padding: 0 20px; color: var(--navy); background: var(--lime); border: 0; border-radius: 14px; font-size: 16px; font-weight: 800; }
  .section-intro { grid-template-columns: 150px 1fr; }
  .section-intro h2 { grid-column: 2; }
  .section-intro > p:last-child { grid-column: 2; max-width: 560px; }
  .outcome-row { grid-template-columns: 60px minmax(230px, .8fr) 1fr 54px; gap: 20px; }
  .service summary { grid-template-columns: 52px 1fr 48px; }
  .service-short { display: none; }
  .service-body { grid-template-columns: 1fr 1.15fr; padding-left: 80px; }
  .service-fit { grid-column: 2; padding-top: 24px; padding-left: 0; border-top: 1px solid rgba(255, 255, 255, .24); border-left: 0; }
  .system-copy { width: 48vw; }
  .system-statement h2 { font-size: clamp(45px, 5.8vw, 68px); }
  .system-visual { right: -8vw; width: 59vw; }
  .story { grid-template-columns: .65fr 1.35fr; }
  .story-route { grid-column: 2; }
  .approach-grid { grid-template-columns: 1.2fr .8fr; gap: 60px; }
  .process-list li { grid-template-columns: 54px minmax(220px, .8fr) 1fr; }
  .process-list strong { grid-column: 3; }
}

@media (max-width: 800px) {
  :root { --header-h: 64px; }
  .header, .header.is-scrolled { top: 8px; width: calc(100% - 16px); min-height: 64px; padding: 8px 8px 8px 13px; border-radius: 16px; }
  .nav-cta { display: none; }
  .brand-symbol { width: 34px; height: 34px; }
  .brand-name { font-size: 13px; }
  .cinematic-intro { height: 235vh; }
  .intro-stage { min-height: 0; }
  .intro-media img { object-position: 62% 50%; }
  .intro-media::after { background: linear-gradient(90deg, rgba(8, 12, 28, .82), rgba(8, 12, 28, .3)), linear-gradient(0deg, rgba(8, 12, 28, .66), transparent 50%); }
  .intro-brandline { top: 95px; font-size: 8px; }
  .intro-state { display: none; }
  .intro-frame { top: 48%; width: calc(100% - var(--pad) * 2); }
  .intro-frame h1, .intro-frame h2 { font-size: clamp(43px, 12vw, 76px); line-height: .94; }
  .intro-final { top: 43%; }
  .intro-final > p:not(.eyebrow) { max-width: 500px; margin-top: 18px; font-size: 15px; }
  .intro-actions { flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 23px; }
  .intro-primary { width: min(100%, 330px); }
  .intro-rail { right: var(--pad); bottom: 92px; top: auto; flex-direction: row; transform: none; }
  .rail-step { flex-direction: column-reverse; gap: 6px; }
  .rail-step i, .rail-step.is-active i { width: 28px; }
  .intro-scroll { left: var(--pad); right: auto; bottom: 24px; }
  .intro-credit { display: none; }
  .service-strip { min-height: 64px; }
  .section-intro { display: block; }
  .section-intro h2 { margin-top: 34px; }
  .section-intro > p:last-child { max-width: 560px; margin-top: 28px; padding: 0; }
  .outcome-list { margin-top: 70px; }
  .outcome-row { grid-template-columns: 42px 1fr 48px; min-height: 150px; gap: 14px; }
  .outcome-name { font-size: clamp(29px, 7vw, 44px); }
  .outcome-copy { grid-column: 2 / 4; margin-top: -12px; padding-right: 58px; font-size: 14px; }
  .round-arrow { grid-column: 3; grid-row: 1; width: 46px; height: 46px; }
  .outcome-row:hover { padding-right: 10px; padding-left: 10px; }
  .service summary { grid-template-columns: 36px 1fr 46px; gap: 12px; min-height: 108px; }
  .service-title { font-size: clamp(25px, 6vw, 38px); }
  .service-body { grid-template-columns: 1fr; gap: 38px; padding: 10px 0 60px 48px; }
  .service-fit { grid-column: auto; }
  .service-tasks { grid-template-columns: 1fr; }
  .js .system-showcase { height: 340vh; }
  .system-stage { min-height: 0; }
  .system-topline { top: 96px; font-size: 8px; }
  .system-status { display: none; }
  .system-copy { top: 18%; width: calc(100% - var(--pad) * 2); height: 220px; transform: none; }
  .system-statement .eyebrow { margin-bottom: 18px; }
  .system-statement h2 { font-size: clamp(37px, 10.5vw, 58px); line-height: .94; }
  .system-visual { top: 65%; right: auto; left: 50%; width: min(96vw, 500px); transform: translate(-50%, -50%) scale(var(--visual-scale)); }
  .system-core { width: 126px; padding: 15px; }
  .system-card { width: 112px; height: 72px; padding: 11px; }
  .system-card strong { font-size: 13px; }
  .system-result { top: 46%; width: calc(100% - var(--pad) * 2); transform: translate3d(0, var(--result-y), 0) translateY(-50%); }
  .system-result .eyebrow { margin-bottom: 22px; }
  .system-result h2 { font-size: clamp(55px, 16vw, 80px); line-height: .86; }
  .system-result > p:not(.eyebrow) { margin-top: 24px; font-size: 15px; }
  .system-result a { margin-top: 25px; }
  .system-scrollcue { display: none; }
  .system-progress { grid-template-columns: 105px auto auto auto; }
  .story { min-height: 0; grid-template-columns: 1fr; gap: 52px; padding: 36px 28px; }
  .story-meta { min-height: 74px; flex-direction: row; }
  .story-main { align-self: auto; }
  .story-main h3 { font-size: clamp(39px, 10vw, 62px); }
  .story-route { grid-column: auto; }
  .story-number { right: -6px; bottom: -45px; font-size: 235px; }
  .approach-top { flex-direction: column; }
  .approach-grid { grid-template-columns: 1fr; gap: 65px; }
  .approach-grid h2 { font-size: clamp(55px, 14vw, 88px); }
  .approach-words { margin-top: 110px; font-size: 100px; }
  .process-list li { grid-template-columns: 44px 1fr; min-height: 0; gap: 20px 10px; padding: 36px 0; }
  .process-list li > p, .process-list strong { grid-column: 2; }
  .care { grid-template-columns: 1fr; gap: 65px; padding: 45px 28px; }
  .faq-list { margin-top: 75px; }
  .contact { grid-template-columns: 1fr; gap: 70px; }
  .contact h2 { margin-top: 34px; }
  .contact-booking { grid-template-columns: 1fr; gap: 20px; }
  .contact-booking > b { min-height: 44px; display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, .28); }
  .contact-booking:hover > b { border-color: rgba(18, 25, 51, .28); }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top > p { display: none; }
  .footer-directory { grid-template-columns: repeat(2, 1fr); }
  .footer-directory > div:last-child { grid-column: 1 / -1; }
  .legal-header { grid-template-columns: 1fr auto; }
  .legal-header-meta { display: none; }
  .legal-hero { min-height: 700px; grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 40px; }
  .legal-hero-imprint { min-height: 650px; grid-template-columns: minmax(0, 1fr) 300px; grid-template-rows: 1fr auto; }
  .legal-hero-imprint .legal-hero-title { align-self: center; }
  .imprint-identity { width: 300px; min-height: 330px; padding: 30px; }
  .imprint-identity > span { top: 30px; left: 30px; }
  .imprint-identity > strong { font-size: 49px; }
  .legal-hero-title { position: relative; z-index: 3; }
  .legal-hero-title h1 { font-size: clamp(70px, 16vw, 120px); }
  .privacy-signal { position: absolute; right: -8%; top: 21%; width: 52vw; max-width: 400px; opacity: .42; }
  .legal-facts { position: relative; z-index: 3; align-self: end; }
  .legal-shell { grid-template-columns: 1fr; }
  .legal-index { position: relative; top: auto; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
  .legal-index::-webkit-scrollbar { display: none; }
  .legal-index-head, .legal-index > p { display: none; }
  .legal-index nav { width: max-content; flex-direction: row; gap: 8px; margin: 0; }
  .legal-index nav a { min-height: 43px; grid-template-columns: auto auto; padding: 0 15px; background: var(--white); border: 1px solid var(--line); }
  .legal-index nav a::before { display: none; }
  .legal-index nav a:hover, .legal-index nav a.is-active { color: var(--white); background: var(--navy); transform: none; }
}

@media (max-width: 480px) {
  :root { --pad: 20px; }
  .intro-frame h1, .intro-frame h2 { font-size: clamp(39px, 11.8vw, 57px); }
  .intro-frame .eyebrow { margin-bottom: 16px; }
  .intro-final > p:not(.eyebrow) { font-size: 14px; }
  .intro-actions { margin-top: 18px; }
  .button { min-height: 48px; padding: 0 15px; }
  .intro-scroll span { display: none; }
  .strip-group span { padding: 0 22px; }
  .section-intro h2 { font-size: 43px; }
  .outcome-row { grid-template-columns: 36px 1fr 44px; }
  .outcome-copy { padding-right: 0; }
  .service summary { grid-template-columns: 29px 1fr 42px; }
  .service-index { font-size: 9px; }
  .service-body { padding-left: 41px; }
  .service-promise { font-size: 19px; }
  .system-copy { top: 17%; }
  .system-statement h2 { font-size: 38px; }
  .system-visual { top: 65%; width: 108vw; }
  .system-card { width: 98px; height: 66px; }
  .system-card strong { font-size: 11px; }
  .system-card small { font-size: 7px; }
  .system-result h2 { font-size: 56px; }
  .story { padding: 30px 22px; }
  .story-meta { display: grid; }
  .story-meta span:last-child { width: max-content; }
  .approach-grid h2 { font-size: 51px; }
  .process-list h3 { font-size: 31px; }
  .faq-item summary { min-height: 90px; font-size: 19px; }
  .faq-answer { padding-right: 5px; }
  .contact h2 { font-size: 59px; }
  .footer-top { min-height: 150px; }
  .back-top { font-size: 0; }
  .back-top span { font-size: 20px; }
  .footer-directory { grid-template-columns: 1fr; gap: 44px; }
  .footer-directory > div:last-child { grid-column: auto; }
  .footer-bottom { min-height: 110px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; }
  .footer-legal { gap: 18px; }
  .legal-header, .legal-main { width: calc(100% - 40px); }
  .legal-header .brand-symbol { width: 34px; height: 34px; }
  .legal-back { font-size: 0; }
  .legal-back span { font-size: 17px; }
  .legal-main { width: 100%; padding-top: 12px; }
  .legal-hero { min-height: calc(100svh - 108px); padding: 54px 20px 20px; }
  .legal-hero-imprint { min-height: auto; grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 38px; padding-bottom: 20px; }
  .legal-hero-imprint .legal-hero-title { padding-top: 18px; }
  .imprint-identity { width: 100%; min-height: 300px; justify-self: stretch; padding: 28px; }
  .imprint-identity > span { top: 28px; left: 28px; }
  .imprint-identity > strong { font-size: 47px; }
  .imprint-identity > p { margin-top: 22px; }
  .imprint-identity > small { margin-top: 20px; }
  .legal-hero::after { right: -70%; width: 130%; }
  .legal-hero-title .eyebrow { margin-bottom: 30px; }
  .legal-hero-title h1 { font-size: clamp(58px, 19vw, 88px); }
  .legal-hero-title > p:last-child { max-width: 92%; margin-top: 30px; font-size: 16px; }
  .privacy-signal { right: -30%; top: 31%; width: 84vw; }
  .legal-facts { grid-template-columns: 1fr; }
  .legal-facts > div { min-height: 58px; flex-direction: row; align-items: center; justify-content: space-between; padding: 12px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .legal-facts > div:last-child { border-bottom: 0; }
  .legal-shell { gap: 38px; padding: 70px 20px 90px; }
  .legal-card { min-height: 0; grid-template-columns: 1fr; gap: 35px; padding: 38px 22px 46px; }
  .legal-card::after { width: 190px; height: 190px; right: -85px; bottom: -105px; }
  .legal-card-copy .eyebrow { margin-bottom: 20px; }
  .legal-card-copy h2 { margin-bottom: 26px; font-size: 37px; }
  .legal-card-copy p, .legal-card-copy address, .legal-card-copy li { font-size: 15px; }
  .legal-card-number { order: 2; margin-top: -10px; }
  .legal-code { font-size: 18px; }
  .legal-action { font-size: 17px; }
  .privacy-pulse, .encryption-mark { align-items: flex-start; flex-wrap: wrap; padding: 15px; }
  .privacy-pulse strong, .encryption-mark strong { width: 100%; margin: 0; }
  .legal-exit { min-height: 500px; padding: 62px 20px 125px; }
  .legal-exit h2 { font-size: clamp(55px, 17vw, 80px); }
  .legal-exit a { right: 20px; bottom: 38px; left: 20px; }
  .legal-footer { min-height: 145px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 18px; }
}

@media (max-height: 620px) and (orientation: landscape) {
  .intro-stage { min-height: 100svh; }
  .intro-brandline { top: 88px; }
  .intro-frame { top: 43%; }
  .intro-frame h1, .intro-frame h2 { font-size: clamp(38px, 7vw, 64px); }
  .intro-final > p:not(.eyebrow) { margin-top: 12px; font-size: 13px; }
  .intro-actions { margin-top: 14px; }
  .intro-scroll { display: none; }
  .system-topline { top: 88px; }
  .system-copy { top: 25%; }
  .system-statement h2 { font-size: clamp(34px, 6.5vw, 52px); }
  .system-visual { top: 63%; width: min(65vw, 480px); }
  .system-result { top: 52%; }
  .system-result h2 { font-size: clamp(52px, 10vw, 82px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .cinematic-intro { height: 100svh; min-height: 620px; }
  .intro-frame { display: none; }
  .intro-final { display: block; opacity: 1 !important; transform: none !important; }
  .intro-rail, .intro-scroll { display: none; }
  .strip-track { animation: none; }
  .strip-group:not(:first-child) { display: none; }
  .js .system-showcase { height: auto; }
  .system-stage { position: relative; min-height: 760px; }
  .system-copy, .system-line, .system-card, .system-scrollcue { display: none; }
  .system-visual { right: auto; left: 50%; opacity: .28 !important; transform: translate(-50%, -50%) scale(1) !important; }
  .system-result { opacity: 1 !important; transform: translateY(-46%) !important; pointer-events: auto !important; }
  .system-stage::after { opacity: .82; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .legal-ready .legal-card { opacity: 1; transform: none; }
}
