:root {
  --page: min(100% - 128px, 1360px);
  --night: #111b50;
  --violet: #240f70;
  --electric-violet: #6846c7;
  --blue: #6d9eeb;
  --pale-blue: #e6efff;
  --lavender: #d9d1f4;
  --purple: #a88be8;
  --salmon: #e98f7b;
  --peach: #f2b58e;
  --orange: #ff8500;
  --cream: #f4ede3;
  --warm-white: #f8f7f3;
  --ink: #434343;
  --ink-blue: #171d4f;
  --serif: "Merriweather Display", Georgia, serif;
  --sans: "IBM Plex Sans", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html {
  background: var(--night);
}

body {
  color: var(--ink);
  background: var(--night);
}

body::before {
  inset: -14%;
  z-index: 78;
  opacity: .1;
  background-size: 190px 190px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: film-grain .9s steps(2) infinite;
}

@keyframes film-grain {
  0% { transform: translate3d(-1%, 1%, 0); }
  20% { transform: translate3d(1.5%, -.5%, 0); }
  40% { transform: translate3d(-.5%, -1.4%, 0); }
  60% { transform: translate3d(1%, 1.2%, 0); }
  80% { transform: translate3d(-1.4%, .4%, 0); }
  100% { transform: translate3d(.4%, -1%, 0); }
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(180deg,
      #10194b 0%,
      #233678 12%,
      #7458be 31%,
      #d8d0f1 46%,
      #f3ecdf 59%,
      #efaa91 74%,
      #7250b7 88%,
      #151b50 100%);
}

.page-services .page-shell {
  background:
    radial-gradient(ellipse at 12% 4%, rgba(255,255,255,.68), transparent 17%),
    radial-gradient(ellipse at 86% 18%, rgba(104,70,199,.46), transparent 22%),
    radial-gradient(ellipse at 8% 48%, rgba(169,200,255,.58), transparent 22%),
    radial-gradient(ellipse at 90% 70%, rgba(242,181,142,.62), transparent 24%),
    linear-gradient(180deg, #b8cff5 0%, #e8e8f8 18%, #c4b3e8 38%, #f3ecdf 57%, #e9a08e 75%, #5c3ca4 90%, #151b50 100%);
}

.page-about .page-shell {
  background:
    radial-gradient(ellipse at 86% 7%, rgba(242,181,142,.7), transparent 18%),
    radial-gradient(ellipse at 10% 22%, rgba(104,70,199,.58), transparent 25%),
    radial-gradient(ellipse at 88% 52%, rgba(233,143,123,.56), transparent 22%),
    linear-gradient(180deg, #4c348f 0%, #a88be8 22%, #eadde3 43%, #f4ede3 59%, #e99c84 76%, #6a48ae 90%, #151b50 100%);
}

.page-careers .page-shell {
  background:
    radial-gradient(ellipse at 80% 4%, rgba(255,255,255,.84), transparent 19%),
    radial-gradient(ellipse at 8% 30%, rgba(169,200,255,.62), transparent 22%),
    radial-gradient(ellipse at 86% 63%, rgba(242,181,142,.66), transparent 24%),
    linear-gradient(180deg, #cedbf5 0%, #eceaf8 23%, #d9d1f4 42%, #f4ede3 61%, #efa38e 78%, #6d4cb0 91%, #151b50 100%);
}

.environment {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.atmo-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .32;
  transform: translate3d(0, var(--parallax, 0), 0);
}

.atmo-light--one { width: 48vw; height: 48vw; top: 8%; left: -20vw; background: #8fc0ff; }
.atmo-light--two { width: 42vw; height: 42vw; top: 38%; right: -16vw; background: #f4b093; }
.atmo-light--three { width: 50vw; height: 50vw; top: 72%; left: 14vw; background: #7350c2; }

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

.edge-blur {
  z-index: 82;
  transition: none;
}

.edge-blur--top {
  height: 120px;
  background: linear-gradient(to bottom, rgba(17,27,80,.24), transparent);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.8) 44%, transparent 100%);
}

.edge-blur--bottom {
  height: 108px;
  background: linear-gradient(to top, rgba(17,27,80,.12), transparent);
  mask-image: linear-gradient(to top, #000 0%, rgba(0,0,0,.76) 43%, transparent 100%);
}

body.footer-visible .edge-blur--bottom {
  opacity: 1;
}

.site-header {
  top: 18px;
  width: max-content;
  max-width: calc(100% - 36px);
  color: white;
  transition: color 350ms ease, width 450ms var(--ease);
}

.site-header__inner {
  min-height: 58px;
  display: flex;
  grid-template-columns: none;
  align-items: center;
  justify-content: center;
  gap: 42px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  transition: gap 450ms var(--ease), padding 450ms var(--ease), background 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}

.site-header.scrolled .site-header__inner,
.site-header.menu-open .site-header__inner {
  gap: 25px;
  padding: 7px 9px 7px 12px;
  color: var(--ink-blue);
  background: rgba(248,247,243,.74);
  border-color: rgba(255,255,255,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 14px 46px rgba(17,27,80,.16);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.brand {
  position: relative;
  flex: 0 0 auto;
  height: 35px;
  min-width: 132px;
}

.brand img {
  position: absolute;
  left: 0;
  top: 50%;
  width: auto;
  /* Both logos share the same origin and switch without a transition. */
  transform: translateY(-50%);
  transition: none;
}

.brand-wordmark {
  height: 28px;
  filter: invert(1);
}

.brand-icon {
  height: 31px;
  opacity: 0;
  filter: grayscale(1) brightness(0) saturate(0);
}

.site-header.scrolled .brand,
.site-header.menu-open .brand {
  min-width: 34px;
}

.site-header.scrolled .brand-wordmark,
.site-header.menu-open .brand-wordmark {
  opacity: 0;
}

.site-header.scrolled .brand-icon,
.site-header.menu-open .brand-icon {
  opacity: 1;
}

.site-header.scrolled .brand img.brand-icon,
.site-header.menu-open .brand img.brand-icon,
.site-header.force-light .brand img.brand-icon {
  filter: grayscale(1) brightness(.13) saturate(0);
}

.site-nav {
  gap: 27px;
  font-size: 14px;
}

.site-nav a {
  opacity: .76;
}

.site-nav a[aria-current="page"]::after {
  bottom: -8px;
}

.header-actions {
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}

.language-switch a { opacity: .48; }
.language-switch a[aria-current="true"] { opacity: 1; }

.header-contact {
  min-height: 42px;
  padding: 0 17px;
  font-size: 13px;
}

.menu-toggle {
  background: rgba(255,255,255,.12);
}

.site-header.scrolled .menu-toggle,
.site-header.menu-open .menu-toggle {
  background: rgba(36,15,112,.07);
}

.mobile-menu {
  background: rgba(230,239,255,.96);
}

.language-note {
  top: 92px;
}

.hero,
.page-hero {
  min-height: 100svh;
  color: white;
  background: transparent;
  overflow: hidden;
}

.page-hero {
  min-height: min(82svh, 840px);
}

.hero::after,
.page-hero::after {
  display: none;
}

.hero-home__content {
  position: relative;
  z-index: 5;
  width: min(100% - 48px, 1150px);
  margin: 0 auto;
  padding: 144px 0 88px;
  text-align: center;
}

.hero-home h1,
.scene-hero h1 {
  max-width: 1150px;
  margin: 0 auto 28px;
  font-family: var(--serif);
  font-size: clamp(68px, 8.1vw, 120px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.hero-home p,
.scene-hero p {
  max-width: 690px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 4px;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
  font-weight: 600;
}

.text-link::after {
  content: "";
  flex: none;
  width: .9em;
  height: .9em;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 7 L13.2 18.2 L5.9 10.8 Z' fill='black' stroke='black' stroke-width='2.6' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 7 L13.2 18.2 L5.9 10.8 Z' fill='black' stroke='black' stroke-width='2.6' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 220ms ease;
}

.text-link:hover::after { transform: translate(2px, -2px); }

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

.starfield::before {
  content: "";
  position: absolute;
  inset: 4% 2% 0;
  opacity: .58;
  background:
    radial-gradient(circle at 8% 19%, rgba(255,255,255,.9) 0 1px, transparent 2px),
    radial-gradient(circle at 18% 62%, rgba(214,229,255,.8) 0 1.5px, transparent 3px),
    radial-gradient(circle at 27% 12%, rgba(255,255,255,.72) 0 1px, transparent 2.2px),
    radial-gradient(circle at 35% 78%, rgba(255,255,255,.7) 0 1px, transparent 2.5px),
    radial-gradient(circle at 43% 34%, rgba(205,221,255,.75) 0 1px, transparent 2px),
    radial-gradient(circle at 51% 8%, rgba(255,255,255,.72) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 69%, rgba(255,255,255,.82) 0 1.2px, transparent 2.8px),
    radial-gradient(circle at 66% 21%, rgba(255,255,255,.74) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 53%, rgba(218,227,255,.84) 0 1.4px, transparent 3px),
    radial-gradient(circle at 83% 15%, rgba(255,255,255,.7) 0 1px, transparent 2px),
    radial-gradient(circle at 89% 77%, rgba(255,255,255,.78) 0 1.2px, transparent 2.5px),
    radial-gradient(circle at 95% 41%, rgba(255,255,255,.62) 0 1px, transparent 2px),
    radial-gradient(circle at 12% 87%, rgba(255,255,255,.62) 0 1px, transparent 2.3px),
    radial-gradient(circle at 31% 47%, rgba(255,255,255,.62) 0 1px, transparent 2px),
    radial-gradient(circle at 71% 88%, rgba(255,255,255,.56) 0 1px, transparent 2px);
  filter: blur(.35px);
}

.founder-star {
  position: absolute;
  width: var(--star-size, 4px);
  height: var(--star-size, 4px);
  border-radius: 50%;
  background: rgba(255,255,255,.98);
  box-shadow: 0 0 7px 2px rgba(205,225,255,.72), 0 0 28px 9px rgba(109,158,235,.24);
  animation: star-breathe var(--star-speed, 7s) ease-in-out var(--star-delay, 0s) infinite;
}

.founder-star::before,
.founder-star::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  transform: translate(-50%, -50%);
}

.founder-star::before { width: calc(var(--star-size, 4px) * 8); height: 1px; }
.founder-star::after { width: 1px; height: calc(var(--star-size, 4px) * 7); }
.founder-star:nth-child(1)  { --star-size: 4px;   --star-speed: 8s;  --star-delay: -1.2s; left: 13%; top: 31%; }
.founder-star:nth-child(2)  { --star-size: 5px;   --star-speed: 11s; --star-delay: -4.4s; left: 28%; top: 69%; }
.founder-star:nth-child(3)  { --star-size: 3px;   --star-speed: 9s;  --star-delay: -2.1s; left: 47%; top: 18%; }
.founder-star:nth-child(4)  { --star-size: 5px;   --star-speed: 12s; --star-delay: -6.7s; left: 66%; top: 74%; }
.founder-star:nth-child(5)  { --star-size: 3.5px; --star-speed: 10s; --star-delay: -3.3s; left: 79%; top: 29%; }
.founder-star:nth-child(6)  { --star-size: 4px;   --star-speed: 7s;  --star-delay: -5.5s; left: 91%; top: 58%; }
.founder-star:nth-child(7)  { --star-size: 2.5px; --star-speed: 6.5s; --star-delay: -0.8s; left: 7%;  top: 54%; }
.founder-star:nth-child(8)  { --star-size: 3px;   --star-speed: 9.5s; --star-delay: -3.9s; left: 21%; top: 14%; }
.founder-star:nth-child(9)  { --star-size: 2.5px; --star-speed: 8.5s; --star-delay: -2.6s; left: 37%; top: 46%; }
.founder-star:nth-child(10) { --star-size: 4.5px; --star-speed: 13s;  --star-delay: -7.4s; left: 40%; top: 82%; }
.founder-star:nth-child(11) { --star-size: 2.5px; --star-speed: 7.5s; --star-delay: -1.9s; left: 55%; top: 63%; }
.founder-star:nth-child(12) { --star-size: 3px;   --star-speed: 10.5s; --star-delay: -5.1s; left: 61%; top: 9%;  }
.founder-star:nth-child(13) { --star-size: 3.5px; --star-speed: 9s;   --star-delay: -4.7s; left: 73%; top: 48%; }
.founder-star:nth-child(14) { --star-size: 2.5px; --star-speed: 6s;   --star-delay: -0.4s; left: 84%; top: 78%; }
.founder-star:nth-child(15) { --star-size: 3px;   --star-speed: 11.5s; --star-delay: -8.2s; left: 95%; top: 22%; }
.founder-star:nth-child(16) { --star-size: 2.5px; --star-speed: 8s;   --star-delay: -3.1s; left: 96%; top: 43%; }

@keyframes star-breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.72); }
}

.technical-veil {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: .28;
}

.technical-veil svg { width: 100%; height: 100%; }

.section {
  padding: 190px 0;
  background: transparent;
}

.section--compact { padding: 130px 0; }
.section--deep { padding: 240px 0; }

.container {
  width: var(--page);
}

.editorial-intro {
  max-width: 1060px;
  margin-bottom: 100px;
}

.editorial-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.editorial-intro h2,
.scene-heading,
.contact-composition h2 {
  margin: 0 0 28px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(54px, 6.5vw, 94px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.048em;
  text-wrap: balance;
}

.editorial-intro p {
  max-width: 690px;
  margin: 0;
  color: rgba(67,67,67,.76);
  font-size: 20px;
}

.editorial-intro.centered p { margin-inline: auto; }

.offer-scene {
  position: relative;
  min-height: 850px;
}

.page-home #what-we-do .editorial-intro h2,
.page-home #domains-home .editorial-intro h2,
.page-home #domains-home .domain-orbit h3 {
  color: white;
}

.page-home #what-we-do { padding-bottom: 100px; }
.page-home #domains-home { padding-top: 120px; }

.page-home #what-we-do .editorial-intro p,
.page-home #domains-home .editorial-intro p,
.page-home #domains-home .domain-orbit p {
  color: rgba(255,255,255,.74);
}

.page-home #domains-home .text-link {
  color: white;
}

.page-home #domains-home .system-scene::before {
  content: "";
  position: absolute;
  inset: -8% -4%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(17,27,80,.34), transparent 68%);
  pointer-events: none;
}

.offer {
  position: absolute;
  color: var(--ink-blue);
}

.offer h3 {
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 66px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.offer p { max-width: 490px; margin: 0 0 26px; color: rgba(67,67,67,.72); }

.offer--studio {
  left: 0;
  top: 0;
  width: 62%;
  padding: 68px 70px 260px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 54px;
  background: rgba(255,255,255,.58);
  box-shadow: inset 0 1px 0 white, 0 35px 90px rgba(36,15,112,.13);
  backdrop-filter: blur(18px);
}

.offer--mission {
  right: 0;
  bottom: 0;
  width: 53%;
  padding: 66px 64px 72px 180px;
  border-radius: 80px 36px 80px 36px;
  color: white;
  background: rgba(27,35,88,.9);
  box-shadow: 0 40px 100px rgba(17,27,80,.24);
}

.offer--mission h3 { color: white; }
.offer--mission p { color: rgba(255,255,255,.72); }

.mini-report-stack {
  position: absolute;
  left: 60px;
  bottom: -45px;
  width: 300px;
  height: 275px;
  transform: translateY(var(--parallax, 0));
}

.mini-report {
  position: absolute;
  inset: 0;
  padding: 28px;
  border-radius: 10px 24px 24px 10px;
  background: #faf9f5;
  border: 1px solid rgba(36,15,112,.13);
  box-shadow: 0 24px 54px rgba(36,15,112,.17);
}

.mini-report:nth-child(1) { transform: rotate(-9deg) translate(-22px, 7px); background: #dce8fa; }
.mini-report:nth-child(2) { transform: rotate(7deg) translate(26px, 8px); background: #eee8f6; }
.mini-report:nth-child(3) { display: flex; flex-direction: column; justify-content: space-between; }
.mini-report strong { font-family: var(--serif); font-size: 27px; font-weight: 300; line-height: 1.05; }
.mini-report span { font-family: var(--mono); font-size: 9px; color: rgba(36,15,112,.65); }

.mission-object {
  position: absolute;
  z-index: 2;
  left: -120px;
  top: 50%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  transform: translateY(calc(-50% + var(--parallax, 0px)));
  border: 1px solid rgba(255,255,255,.24);
  background:
    radial-gradient(circle at 50% 38%, #d9e5f7 0 17%, transparent 18%),
    radial-gradient(ellipse at 50% 83%, #6d9eeb 0 32%, transparent 33%),
    radial-gradient(circle, rgba(169,200,255,.28), rgba(17,27,80,.2) 70%);
  box-shadow: 0 28px 65px rgba(17,27,80,.32), inset 0 1px 0 rgba(255,255,255,.3);
}

.mission-object::before,
.mission-object::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(169,200,255,.32);
}

.mission-object::before { inset: -28px; }
.mission-object::after { inset: -56px; border-style: dashed; }

.system-scene {
  position: relative;
  min-height: 900px;
}

.system-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 370px;
  height: 370px;
  transform: translate(-50%, -50%);
  border-radius: 48% 52% 43% 57%;
  color: white;
  background:
    radial-gradient(circle at 34% 28%, rgba(169,200,255,.7), transparent 17%),
    linear-gradient(140deg, #1a275f, #6846c7);
  box-shadow: 0 45px 100px rgba(36,15,112,.24), inset 0 1px 0 rgba(255,255,255,.26);
  animation: core-drift 11s ease-in-out infinite;
}

.system-core::before {
  content: "";
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 28px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,.1) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(255,255,255,.1) 50%, transparent 51%);
  background-size: 30px 30px;
}

.system-core span {
  position: absolute;
  left: 50%;
  bottom: 45px;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 27px;
  white-space: nowrap;
}

@keyframes core-drift { 50% { transform: translate(-50%, calc(-50% - 7px)) rotate(1deg); } }

.domain-orbit {
  position: absolute;
  width: 330px;
  color: var(--ink-blue);
}

.domain-orbit h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.08;
}

.domain-orbit p { margin: 0; color: rgba(67,67,67,.72); font-size: 16px; }
.domain-orbit::before { content: ""; display: block; width: 72px; height: 1px; margin-bottom: 20px; background: currentColor; opacity: .28; }
.domain-orbit--embedded { left: 0; top: 7%; }
.domain-orbit--electronics { right: 0; top: 17%; }
.domain-orbit--ai { left: 6%; bottom: 6%; }
.domain-orbit--software { right: 3%; bottom: 2%; }

.system-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 71%;
  height: 63%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(36,15,112,.18);
  border-radius: 48% 52% 44% 56%;
  pointer-events: none;
}

.scope-scene {
  position: relative;
  min-height: 760px;
  color: white;
  border-radius: 70px 34px 70px 34px;
  background:
    radial-gradient(circle at 75% 25%, rgba(109,158,235,.42), transparent 25%),
    radial-gradient(circle at 12% 80%, rgba(168,139,232,.28), transparent 28%),
    rgba(17,27,80,.92);
  box-shadow: 0 45px 110px rgba(17,27,80,.24);
  overflow: hidden;
}

.scope-scene__intro {
  position: absolute;
  left: 7%;
  top: 10%;
  max-width: 680px;
}

.scope-scene__intro h2 { color: white; }
.scope-scene__intro p { color: rgba(255,255,255,.7); max-width: 610px; }

.scope-point {
  position: absolute;
  max-width: 280px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  font-size: 15px;
}

.scope-point strong { display: block; color: white; font-size: 17px; }
.scope-point--one { left: 8%; bottom: 12%; }
.scope-point--two { left: 36%; bottom: 21%; }
.scope-point--three { right: 8%; bottom: 10%; }
.scope-point--four { right: 6%; top: 27%; }
.scope-trace { position: absolute; inset: 0; opacity: .25; }

.situation-scenes {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: auto auto;
  gap: 28px;
}

.situation-scene {
  position: relative;
  min-height: 430px;
  padding: 46px;
  overflow: hidden;
  color: var(--ink-blue);
}

.situation-scene h3 {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(33px, 3.4vw, 48px);
  font-weight: 300;
  line-height: 1.1;
}

.situation-scene p { position: relative; z-index: 2; max-width: 440px; margin: 0; color: rgba(67,67,67,.7); font-size: 16px; }
.situation-scene--idea { grid-row: span 2; min-height: 890px; border-radius: 90px 34px 90px 34px; background: rgba(255,255,255,.6); box-shadow: inset 0 1px 0 white, 0 35px 90px rgba(36,15,112,.12); }
.situation-scene--review { border-radius: 34px 74px 34px 74px; background: rgba(230,239,255,.78); }
.situation-scene--problem { border-radius: 72px 34px; color: white; background: rgba(36,15,112,.88); }
.situation-scene--problem h3 { color: white; }
.situation-scene--problem p { color: rgba(255,255,255,.7); }
.situation-scene--capacity { grid-column: 1 / -1; min-height: 360px; padding-left: 44%; border-radius: 40px 90px; background: rgba(244,237,227,.76); }

.sketch-object,
.review-object,
.trace-object,
.capacity-object {
  position: absolute;
  pointer-events: none;
}

.sketch-object {
  left: 15%;
  bottom: 10%;
  width: 70%;
  height: 48%;
  transform: rotate(-6deg) translateY(var(--parallax, 0));
  border: 1px solid rgba(36,15,112,.16);
  border-radius: 10px 26px 26px 10px;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23240F70' stroke-width='2' opacity='.48'%3E%3Cpath d='M35 180 C80 75 135 210 195 105 S305 70 365 165'/%3E%3Crect x='55' y='42' width='88' height='54' rx='8'/%3E%3Ccircle cx='292' cy='72' r='31'/%3E%3Cpath d='M143 69 H245 M195 105 V185' stroke-dasharray='6 7'/%3E%3C/g%3E%3C/svg%3E") center/85% no-repeat,
    #fbfaf6;
  box-shadow: 0 28px 60px rgba(36,15,112,.14);
}

.review-object {
  right: -8%;
  bottom: -12%;
  width: 50%;
  aspect-ratio: 1;
  border-radius: 38%;
  border: 20px solid rgba(109,158,235,.2);
  box-shadow: 0 0 0 1px rgba(36,15,112,.16), inset 0 0 0 1px rgba(36,15,112,.16);
  transform: rotate(18deg);
}

.trace-object {
  right: -5%;
  bottom: 0;
  width: 58%;
  height: 42%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 85 H45 L62 31 90 118 122 58 148 85 H198 L212 40 236 112 272 68 296 85 H400' fill='none' stroke='%23A9C8FF' stroke-width='3'/%3E%3C/svg%3E") center/contain no-repeat;
}

.capacity-object {
  left: 7%;
  top: 50%;
  width: 28%;
  height: 70%;
  transform: translateY(-50%);
  border: 1px solid rgba(36,15,112,.18);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 26%, rgba(109,158,235,.55) 0 14%, transparent 15%),
    radial-gradient(ellipse at 50% 72%, rgba(36,15,112,.14) 0 29%, transparent 30%),
    rgba(255,255,255,.45);
}

.dual-process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.process-map {
  position: relative;
  min-height: 760px;
  padding: 58px;
  border-radius: 54px;
  overflow: hidden;
}

.process-map h3 {
  max-width: 470px;
  margin: 0;
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 300;
  line-height: 1.05;
}

.process-map--studio {
  background: rgba(255,255,255,.64);
  box-shadow: inset 0 1px 0 white, 0 30px 80px rgba(36,15,112,.12);
}

.process-map--mission {
  color: white;
  background: rgba(25,33,83,.9);
  box-shadow: 0 36px 90px rgba(17,27,80,.23);
}

.process-artifact {
  position: absolute;
  width: 190px;
  min-height: 120px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 40px rgba(36,15,112,.13);
  color: var(--ink-blue);
  transform: rotate(var(--rotate, 0deg));
}

.process-artifact strong { display: block; margin-bottom: 8px; font-family: var(--serif); font-size: 22px; font-weight: 300; }
.process-artifact span { color: rgba(67,67,67,.65); font-size: 12px; }
.process-artifact b { display: block; margin-bottom: 8px; color: var(--violet); font-family: var(--mono); font-size: 10px; font-weight: 400; }
.process-artifact:nth-of-type(1) { --rotate: -5deg; left: 8%; top: 30%; }
.process-artifact:nth-of-type(2) { --rotate: 4deg; right: 8%; top: 38%; }
.process-artifact:nth-of-type(3) { --rotate: -2deg; left: 18%; top: 57%; }
.process-artifact:nth-of-type(4) { --rotate: 5deg; right: 7%; bottom: 9%; }
.process-artifact:nth-of-type(5) { --rotate: -1deg; left: 8%; bottom: 5%; }
.process-map--mission .process-artifact { background: rgba(230,239,255,.92); }

.report-layout {
  gap: 100px;
}

.report-copy .section-title,
.report-copy h2 {
  margin-bottom: 26px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(50px, 5.6vw, 82px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.report-list {
  border-top: 0;
  gap: 10px 20px;
}

.report-mark,
.report-meta {
  text-transform: none;
  letter-spacing: 0;
}

.report-list li {
  padding: 12px 18px;
  border: 1px solid rgba(36,15,112,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.36);
}

.independence blockquote {
  max-width: 1080px;
  margin-inline: auto;
}

.independence p { font-size: 18px; }

.workbench-scene {
  position: relative;
  min-height: 720px;
  border-radius: 40px 90px 40px 90px;
  color: white;
  background:
    radial-gradient(circle at 27% 35%, rgba(109,158,235,.34), transparent 27%),
    rgba(17,27,80,.93);
  overflow: hidden;
  box-shadow: 0 45px 110px rgba(17,27,80,.25);
}

.workbench-copy {
  position: absolute;
  z-index: 4;
  right: 7%;
  top: 12%;
  width: 39%;
}

.workbench-copy h2 { color: white; font-family: var(--serif); font-size: clamp(45px, 5.4vw, 74px); font-weight: 300; line-height: 1.03; letter-spacing: -.04em; }
.workbench-copy p { color: rgba(255,255,255,.7); }
.bench-board { left: 8%; top: 25%; width: 43%; }
.analysis-sheet { position: absolute; left: 14%; bottom: -5%; width: 43%; height: 230px; transform: rotate(7deg); border-radius: 10px 20px 20px 10px; background: #faf9f5; box-shadow: 0 30px 70px rgba(0,0,0,.3); }
.analysis-sheet::after { content: ""; position: absolute; inset: 32px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 92 C40 92 48 28 94 28 S160 125 205 90 256 45 290 66 335 104 400 39' fill='none' stroke='%23240F70' stroke-width='3'/%3E%3C/svg%3E") center/contain no-repeat; }
.probe-line { position: absolute; left: 48%; bottom: 10%; width: 34%; height: 210px; border: 4px solid rgba(169,200,255,.48); border-left: 0; border-bottom: 0; border-radius: 0 100% 0 0; transform: rotate(-16deg); }

.contact-section {
  padding: 220px 0 150px;
}

.contact-composition {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  text-align: center;
}

.contact-composition__inner {
  position: relative;
  z-index: 3;
  max-width: 1080px;
}

.contact-composition h2 {
  font-size: clamp(60px, 7.5vw, 108px);
}

.contact-composition p {
  max-width: 690px;
  margin: 0 auto 36px;
  color: rgba(67,67,67,.75);
  font-size: 20px;
}

.contact-primary {
  min-height: 58px;
  padding-inline: 28px;
}

.contact-detail {
  position: absolute;
  padding: 18px 23px;
  border-radius: 999px;
  background: rgba(255,255,255,.54);
  box-shadow: inset 0 1px 0 white, 0 18px 45px rgba(36,15,112,.1);
  backdrop-filter: blur(14px);
  color: var(--ink-blue);
  font-size: 14px;
}

.contact-detail--email { left: 3%; top: 22%; }
.contact-detail--phone { right: 4%; top: 30%; }
.contact-detail--linkedin { left: 12%; bottom: 20%; }
.contact-detail--form { right: 8%; bottom: 15%; }

.contact-external-note { display: block; margin-top: 12px; color: rgba(67,67,67,.58); font-size: 13px; }

.site-footer {
  padding: 80px 0 140px;
  color: white;
  background: transparent;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  padding: 70px 0 120px;
}

.footer-column h2 {
  margin: 0 0 24px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
}

.footer-column a,
.footer-column span {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 10px 0;
  color: rgba(255,255,255,.68);
  font-size: 15px;
}

.footer-column a:hover { color: white; }

.footer-wordmark {
  padding: 30px 0 86px;
}

.footer-wordmark img {
  width: 100%;
  height: auto;
  filter: invert(1);
}

.footer-utility {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 50px;
  align-items: end;
  padding-top: 26px;
  color: rgba(255,255,255,.52);
  font-size: 12px;
}

.footer-utility__links { display: flex; gap: 22px; }
.footer-utility__links a { color: inherit; }
.footer-control { font-family: var(--mono); font-size: 9px; line-height: 1.7; text-align: right; }

.footer-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .08;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, transparent, black 35%);
}

.scene-hero {
  position: relative;
  min-height: min(82svh, 840px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
}

.scene-hero__content {
  position: relative;
  z-index: 4;
  width: var(--page);
  margin-inline: auto;
  padding: 130px 0 70px;
}

.scene-hero h1 {
  max-width: 920px;
  margin-inline: 0;
  font-size: clamp(60px, 6.5vw, 96px);
}

.scene-hero p {
  max-width: 650px;
  margin-inline: 0;
}

.scene-hero--light { color: var(--ink-blue); }
.scene-hero--light p { color: rgba(67,67,67,.75); }

.services-hero-objects {
  position: absolute;
  z-index: 2;
  right: 2%;
  top: 20%;
  width: 42%;
  height: 64%;
}

.services-hero-objects .mini-report-stack { left: 5%; bottom: 8%; transform: scale(1.12) rotate(-3deg); }
.services-mission-token { position: absolute; right: 5%; top: 8%; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle at 45% 32%, #fff 0 12%, transparent 13%), radial-gradient(ellipse at 50% 77%, rgba(36,15,112,.35) 0 30%, transparent 31%), rgba(255,255,255,.34); box-shadow: 0 30px 70px rgba(36,15,112,.16); }

.services-offers {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: start;
}

.service-offer {
  position: relative;
  min-height: 710px;
  padding: 64px;
  overflow: hidden;
}

.service-offer h2 { margin: 0 0 22px; font-family: var(--serif); font-size: clamp(48px, 5vw, 70px); font-weight: 300; line-height: 1.04; }
.service-offer p { max-width: 530px; color: rgba(67,67,67,.72); }
.service-offer ul { position: relative; z-index: 2; max-width: 470px; margin: 40px 0 0; padding: 0; list-style: none; }
.service-offer li { margin: 13px 0; }
.service-offer--studio { border-radius: 80px 36px; background: rgba(255,255,255,.62); box-shadow: inset 0 1px 0 white, 0 35px 90px rgba(36,15,112,.12); }
.service-offer--mission { margin-top: 110px; border-radius: 36px 80px; color: white; background: rgba(24,32,82,.9); box-shadow: 0 40px 100px rgba(17,27,80,.24); }
.service-offer--mission p { color: rgba(255,255,255,.7); }
.service-offer--mission h2 { color: white; }
.service-offer .mini-report-stack { left: 50%; bottom: -90px; transform: translateX(-50%) scale(.9); }
.service-offer .mission-object { left: auto; right: -55px; top: auto; bottom: -20px; transform: none; }

.domain-story {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
  padding: 100px 0;
}

.domain-story:nth-child(even) { grid-template-columns: 1.1fr .9fr; }
.domain-story:nth-child(even) .domain-story__visual { order: 2; }
.domain-story h2 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(48px, 5.2vw, 76px); font-weight: 300; line-height: 1.03; color: var(--ink-blue); }
.domain-story p { color: rgba(67,67,67,.73); }
.domain-story__questions { display: grid; gap: 14px; margin-top: 30px; }
.domain-story__questions span { display: block; padding-left: 18px; border-left: 1px solid rgba(36,15,112,.24); font-size: 15px; }

.domain-story__visual { position: relative; min-height: 450px; }
.visual-board, .visual-signal, .visual-model, .visual-code { position: absolute; left: 50%; top: 50%; width: 76%; aspect-ratio: 1.2; transform: translate(-50%, -50%) rotate(var(--visual-rotation, -6deg)); border-radius: 42px; box-shadow: 0 40px 90px rgba(36,15,112,.18); }
.visual-board { background: radial-gradient(circle, rgba(255,255,255,.7) 0 2px, transparent 3px) 14px 14px/34px 34px, linear-gradient(135deg, #16205a, #27377f); }
.visual-signal { --visual-rotation: 5deg; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 150 C45 150 55 42 112 42 S190 220 250 142 332 66 376 116 430 170 500 64' fill='none' stroke='%23240F70' stroke-width='4'/%3E%3C/svg%3E") center/82% no-repeat, #f8f7f3; }
.visual-model { --visual-rotation: -3deg; background: radial-gradient(circle at 20% 30%, #6846c7 0 12px, transparent 13px), radial-gradient(circle at 76% 24%, #6d9eeb 0 15px, transparent 16px), radial-gradient(circle at 58% 74%, #e98f7b 0 11px, transparent 12px), linear-gradient(145deg, #d9d1f4, #f4ede3); }
.visual-code { --visual-rotation: 4deg; background: repeating-linear-gradient(180deg, transparent 0 24px, rgba(169,200,255,.2) 25px 26px), #151d50; }
.visual-code::before { content: ""; position: absolute; inset: 16% 12%; background: repeating-linear-gradient(180deg, rgba(255,255,255,.65) 0 2px, transparent 2px 24px); mask-image: linear-gradient(90deg, black 0 65%, transparent 66%); }

.about-hero-facts {
  position: absolute;
  right: 5%;
  top: 18%;
  width: 42%;
  height: 68%;
}

.about-core { position: absolute; left: 50%; top: 50%; width: 250px; height: 330px; transform: translate(-50%, -50%) rotate(3deg); border-radius: 16px 34px 34px 16px; background: rgba(255,255,255,.7); box-shadow: 0 35px 90px rgba(36,15,112,.18); }
.about-core::before { content: "Heliades\A Systems"; white-space: pre; position: absolute; left: 28px; top: 32px; color: var(--ink-blue); font-family: var(--serif); font-size: 32px; line-height: 1.05; }
.fact-orbit { position: absolute; padding: 13px 17px; border-radius: 999px; color: var(--ink-blue); background: rgba(255,255,255,.56); box-shadow: 0 14px 35px rgba(36,15,112,.1); font-size: 13px; }
.fact-orbit:nth-of-type(1) { left: 0; top: 10%; }
.fact-orbit:nth-of-type(2) { right: 0; top: 20%; }
.fact-orbit:nth-of-type(3) { left: 2%; bottom: 17%; }
.fact-orbit:nth-of-type(4) { right: 4%; bottom: 8%; }

.founder-scene {
  position: relative;
  min-height: 1050px;
}

.founder-cutout {
  position: absolute;
  width: 28%;
  min-height: 380px;
  color: var(--ink-blue);
}

.founder-cutout:nth-child(1) { left: 0; top: 2%; }
.founder-cutout:nth-child(2) { left: 36%; top: 12%; }
.founder-cutout:nth-child(3) { right: 0; top: 0; }
.founder-cutout:nth-child(4) { left: 4%; bottom: 2%; }
.founder-cutout:nth-child(5) { left: 38%; bottom: 10%; }
.founder-cutout:nth-child(6) { right: 2%; bottom: 0; }
.founder-cutout__image { height: 280px; border-radius: 48% 52% 44% 56%; background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.92) 0 13%, transparent 14%), radial-gradient(ellipse at 50% 86%, rgba(36,15,112,.2) 0 31%, transparent 32%), linear-gradient(145deg, #d6e4f8, #d9d1f4 58%, #f2b58e); filter: drop-shadow(0 25px 35px rgba(36,15,112,.16)); }
.founder-cutout:nth-child(even) .founder-cutout__image { border-radius: 56% 44% 51% 49%; transform: rotate(2deg); }
.founder-cutout h3 { margin: 20px 0 4px; font-family: var(--serif); font-size: 30px; font-weight: 300; }
.founder-cutout p { margin: 0; color: rgba(67,67,67,.65); font-size: 14px; }

.careers-object {
  position: absolute;
  right: 7%;
  top: 17%;
  width: 38%;
  height: 68%;
}

.notebook { position: absolute; left: 5%; top: 14%; width: 62%; height: 68%; transform: rotate(-8deg); border-radius: 16px 38px 38px 16px; background: repeating-linear-gradient(180deg, transparent 0 32px, rgba(36,15,112,.1) 33px 34px), #faf8f2; box-shadow: 0 40px 90px rgba(36,15,112,.18); }
.notebook::before { content: "An open place\A for careful work"; white-space: pre; position: absolute; left: 12%; top: 13%; color: var(--ink-blue); font-family: var(--serif); font-size: 30px; line-height: 1.15; }
.bench-tool { position: absolute; right: 0; bottom: 4%; width: 38%; height: 50%; border-radius: 45px; background: linear-gradient(145deg, #17215a, #6846c7); box-shadow: 0 30px 70px rgba(36,15,112,.23); }
.bench-tool::before { content: ""; position: absolute; left: 50%; top: 22%; width: 48%; aspect-ratio: 1; transform: translateX(-50%); border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }

.no-roles-scene {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  border-radius: 80px 36px;
  background: rgba(255,255,255,.6);
  box-shadow: inset 0 1px 0 white, 0 36px 90px rgba(36,15,112,.12);
  text-align: center;
}
.no-roles-scene__inner { position: relative; z-index: 2; max-width: 720px; padding: 50px; }
.no-roles-scene h2 { margin: 0 0 22px; font-family: var(--serif); font-size: clamp(50px, 6vw, 82px); font-weight: 300; color: var(--ink-blue); }
.no-roles-scene p { color: rgba(67,67,67,.72); }
.empty-chair { position: absolute; left: 8%; bottom: 0; width: 180px; height: 240px; border: 18px solid rgba(36,15,112,.12); border-top-width: 90px; border-radius: 70px 70px 20px 20px; transform: rotate(-6deg); }

.profile-constellation {
  position: relative;
  min-height: 760px;
}
.profile-node { position: absolute; width: 300px; padding: 34px; color: var(--ink-blue); }
.profile-node h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 34px; font-weight: 300; }
.profile-node p { margin: 0; color: rgba(67,67,67,.68); font-size: 15px; }
.profile-node:nth-child(1) { left: 0; top: 6%; }
.profile-node:nth-child(2) { right: 3%; top: 0; }
.profile-node:nth-child(3) { left: 16%; bottom: 5%; }
.profile-node:nth-child(4) { right: 8%; bottom: 12%; }
.profile-core { position: absolute; left: 50%; top: 50%; width: 260px; height: 260px; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle at 42% 35%, rgba(255,255,255,.7), transparent 18%), linear-gradient(145deg, #6d9eeb, #6846c7); box-shadow: 0 35px 80px rgba(36,15,112,.22); }

.terms-sheet {
  max-width: 1000px;
  margin: 0 auto;
  padding: 68px;
  border-radius: 18px 44px 44px 18px;
  background: rgba(255,255,255,.67);
  box-shadow: 0 38px 90px rgba(36,15,112,.13);
}
.terms-sheet h2 { margin: 0 0 30px; font-family: var(--serif); font-size: clamp(48px, 5vw, 70px); font-weight: 300; color: var(--ink-blue); }
.terms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.terms-grid div { padding-top: 18px; border-top: 1px solid rgba(36,15,112,.18); }
.terms-grid strong { display: block; margin-bottom: 8px; font-size: 15px; color: var(--ink-blue); }
.terms-grid span { color: rgba(67,67,67,.68); font-size: 14px; }

.reveal {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(24px);
  transition: opacity 900ms var(--ease), filter 900ms var(--ease), transform 900ms var(--ease);
}
.reveal.is-visible { opacity: 1; filter: blur(0); transform: none; }
.reveal-group > * { opacity: 0; filter: blur(12px); transform: translateY(20px); transition: opacity 820ms var(--ease), filter 820ms var(--ease), transform 820ms var(--ease); }
.reveal-group.is-visible > * { opacity: 1; filter: blur(0); transform: none; }
.reveal-group.is-visible > *:nth-child(2) { transition-delay: 90ms; }
.reveal-group.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.reveal-group.is-visible > *:nth-child(4) { transition-delay: 270ms; }
.reveal-group.is-visible > *:nth-child(5) { transition-delay: 360ms; }
.reveal-group.is-visible > *:nth-child(6) { transition-delay: 450ms; }

.animations-paused *,
.animations-paused *::before,
.animations-paused *::after { animation-play-state: paused !important; }

@media (max-width: 1120px) {
  :root { --page: min(100% - 72px, 1360px); }
  .site-header__inner { gap: 27px; }
  .offer--studio { width: 67%; }
  .offer--mission { width: 57%; }
  .domain-orbit { width: 280px; }
  .scope-point--two { left: 31%; }
  .situation-scene--capacity { padding-left: 40%; }
  .process-map { padding: 42px; }
  .process-artifact { width: 170px; }
}

@media (max-width: 860px) {
  :root { --page: calc(100% - 44px); }
  .site-header { top: 12px; width: calc(100% - 24px); }
  .site-header__inner { justify-content: space-between; padding: 8px 10px 8px 14px; }
  .site-header.scrolled .site-header__inner,
  .site-header.menu-open .site-header__inner { padding-left: 12px; }
  .site-nav, .header-contact { display: none; }
  .brand { min-width: 122px; }
  .brand-wordmark { height: 25px; }
  .menu-toggle { display: block; }
  .mobile-menu { display: flex; }
  .hero-home h1,
  .scene-hero h1 { font-size: clamp(52px, 12.5vw, 78px); }
  .hero-home__content { padding-top: 125px; }
  .section { padding: 130px 0; }
  .section--deep { padding: 170px 0; }
  .editorial-intro { margin-bottom: 70px; }
  .editorial-intro h2,
  .scene-heading,
  .contact-composition h2 { font-size: clamp(46px, 10.8vw, 72px); }
  .offer-scene { min-height: auto; display: grid; gap: 28px; }
  .offer { position: relative; width: 100%; inset: auto; }
  .offer--studio { padding: 48px 38px 260px; }
  .offer--mission { padding: 260px 38px 48px; }
  .mission-object { left: 50%; top: 118px; transform: translate(-50%, -50%); }
  .mini-report-stack { left: 50%; transform: translateX(-50%); }
  .system-scene { min-height: 1080px; }
  .system-core { width: 280px; height: 280px; }
  .domain-orbit { width: 42%; }
  .domain-orbit--embedded { top: 0; }
  .domain-orbit--electronics { top: 12%; }
  .domain-orbit--ai { bottom: 8%; }
  .domain-orbit--software { bottom: 0; }
  .scope-scene { min-height: 920px; }
  .scope-scene__intro { right: 8%; }
  .scope-point { max-width: 250px; }
  .scope-point--one { left: 7%; bottom: 28%; }
  .scope-point--two { left: auto; right: 7%; bottom: 36%; }
  .scope-point--three { right: 7%; bottom: 8%; }
  .scope-point--four { left: 7%; right: auto; top: auto; bottom: 9%; }
  .situation-scenes { grid-template-columns: 1fr; }
  .situation-scene--idea { grid-row: auto; min-height: 680px; }
  .situation-scene--capacity { grid-column: auto; padding: 48px 40px 280px; }
  .capacity-object { left: 50%; top: auto; bottom: 15px; width: 55%; height: 240px; transform: translateX(-50%); }
  .dual-process { grid-template-columns: 1fr; }
  .process-map { min-height: 680px; }
  .report-layout { grid-template-columns: 1fr; gap: 30px; }
  .report-copy { order: 1; }
  .report-object { order: 2; }
  .workbench-scene { min-height: 930px; }
  .workbench-copy { left: 8%; right: 8%; top: 8%; width: auto; }
  .bench-board { left: 50%; top: 48%; width: 72%; transform: translate(-50%, -50%) rotate(-8deg); }
  .analysis-sheet { left: 18%; width: 64%; }
  .contact-composition { min-height: 920px; }
  .contact-detail--email { left: 4%; top: 12%; }
  .contact-detail--phone { right: 3%; top: 18%; }
  .contact-detail--linkedin { left: 3%; bottom: 13%; }
  .contact-detail--form { right: 2%; bottom: 7%; }
  .footer-columns { gap: 34px; }
  .footer-utility { grid-template-columns: 1fr; gap: 20px; }
  .footer-control { text-align: left; }
  .scene-hero { min-height: 78svh; }
  .services-hero-objects,
  .about-hero-facts,
  .careers-object { opacity: .42; right: -12%; width: 58%; }
  .services-offers { grid-template-columns: 1fr; }
  .service-offer--mission { margin-top: 0; }
  .domain-story,
  .domain-story:nth-child(even) { grid-template-columns: 1fr; gap: 20px; }
  .domain-story:nth-child(even) .domain-story__visual { order: 0; }
  .founder-scene { min-height: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px 30px; }
  .founder-cutout { position: relative; width: 100%; inset: auto !important; }
  .profile-node { width: 250px; }
}

@media (max-width: 560px) {
  :root { --page: calc(100% - 36px); }
  .edge-blur--top { height: 88px; }
  .edge-blur--bottom { height: 80px; }
  .site-header__inner { gap: 10px; }
  .site-header.scrolled .site-header__inner { gap: 8px; }
  .language-switch { font-size: 11px; }
  .brand { min-width: 112px; }
  .site-header.scrolled .brand { min-width: 32px; }
  .hero-home__content { width: calc(100% - 32px); }
  .hero-home h1,
  .scene-hero h1 { font-size: clamp(46px, 13.5vw, 58px); }
  .hero-home p,
  .scene-hero p { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: center; }
  .section { padding: 105px 0; }
  .section--deep { padding: 130px 0; }
  .editorial-intro h2,
  .scene-heading,
  .contact-composition h2 { font-size: clamp(42px, 11.5vw, 54px); }
  .editorial-intro p { font-size: 17px; }
  .offer--studio,
  .offer--mission { padding-inline: 26px; border-radius: 42px 24px; }
  .mini-report-stack { width: 240px; height: 230px; }
  .mission-object { width: 200px; height: 200px; }
  .system-scene { min-height: auto; display: grid; gap: 38px; }
  .system-core { position: relative; left: auto; top: auto; width: 250px; height: 250px; margin: 20px auto; transform: none; }
  .system-core span { white-space: normal; text-align: center; }
  .domain-orbit { position: relative; width: 100%; inset: auto; padding-inline: 12px; }
  .system-line { display: none; }
  .scope-scene { min-height: auto; padding: 46px 24px; border-radius: 42px 24px; }
  .scope-scene__intro,
  .scope-point { position: relative; inset: auto; max-width: none; margin-bottom: 18px; }
  .scope-scene__intro { margin-bottom: 48px; }
  .scope-point { border-radius: 26px; }
  .situation-scene { padding: 34px 26px; min-height: 420px; }
  .situation-scene--idea { min-height: 620px; }
  .situation-scene--capacity { padding-bottom: 250px; }
  .process-map { min-height: auto; padding: 38px 22px; }
  .process-map h3 { font-size: 40px; margin-bottom: 38px; }
  .process-artifact,
  .process-artifact:nth-of-type(n) { position: relative; width: 100%; min-height: 0; inset: auto; margin: 13px 0; transform: rotate(var(--rotate)); }
  .report-object { min-height: 500px; }
  .report-page { padding: 27px; }
  .report-list { grid-template-columns: 1fr; }
  .workbench-scene { min-height: 820px; border-radius: 28px 48px; }
  .workbench-copy { left: 26px; right: 26px; }
  .workbench-copy h2 { font-size: 44px; }
  .bench-board { width: 82%; }
  .analysis-sheet { left: 9%; width: 82%; }
  .contact-section { padding: 130px 0 100px; }
  .contact-composition { min-height: auto; display: block; text-align: left; }
  .contact-composition p { margin-inline: 0; }
  .contact-primary { width: 100%; }
  .contact-detail { position: relative; inset: auto; width: 100%; margin: 12px 0; border-radius: 22px; }
  .footer-columns { grid-template-columns: 1fr 1fr; padding-bottom: 70px; }
  .footer-column:nth-child(3) { grid-column: 1 / -1; }
  .footer-wordmark { padding: 30px 0 60px; }
  .footer-wordmark img { width: 100%; max-width: 100%; }
  .scene-hero__content { padding-top: 124px; }
  .services-hero-objects,
  .about-hero-facts,
  .careers-object {
    top: auto;
    right: -18%;
    bottom: 0;
    width: 78%;
    height: 36%;
    opacity: .42;
  }
  .scene-hero { min-height: 100svh; align-items: start; }
  .scene-hero__content { padding: 124px 0 286px; }
  .service-offer { min-height: 630px; padding: 44px 26px; }
  .service-offer h2 { font-size: 47px; }
  .domain-story { min-height: auto; padding: 70px 0; }
  .domain-story__visual { min-height: 340px; }
  .founder-scene { grid-template-columns: 1fr; }
  .founder-cutout__image { height: 320px; }
  .profile-constellation { min-height: auto; display: grid; gap: 20px; }
  .profile-node { position: relative; inset: auto !important; width: 100%; padding: 28px 12px; }
  .profile-core { position: relative; left: auto; top: auto; transform: none; margin: 0 auto 30px; }
  .terms-sheet { padding: 42px 24px; }
  .terms-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-group > * { opacity: 1; filter: none; transform: none; }
  [data-depth] { --parallax: 0px !important; }
}

@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .site-header.scrolled .site-header__inner,
  .site-header.menu-open .site-header__inner { background: rgba(248,247,243,.96); }
  .edge-blur { background: linear-gradient(to bottom, rgba(17,27,80,.08), transparent); }
}

/* Seamless day-cycle direction
   One continuous atmosphere: the night sky dissolves into warm paper, reading
   happens directly on it, and the page sets back into night at the footer. */

:root {
  --paper: #fbf9f3;
  --paper-soft: #f7f6f2;
  --paper-line: rgba(20, 28, 64, .14);
  --paper-muted: rgba(31, 35, 48, .68);
  --cobalt: #275ff5;
}

html,
body {
  background: #0d1644;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.page-shell,
.page-services .page-shell,
.page-about .page-shell,
.page-careers .page-shell {
  background: linear-gradient(180deg,
      #0e1543 0,
      #182a68 22svh,
      #2c4aa4 48svh,
      #4a6fc9 72svh,
      #7897d8 88svh,
      #b7b4e2 102svh,
      #e3cfc5 116svh,
      #f5eee0 132svh,
      var(--paper) 150svh,
      var(--paper) 100%);
}

.environment {
  inset: 0 0 auto;
  height: 210svh;
  opacity: .4;
  -webkit-mask-image: linear-gradient(180deg, #000 62%, transparent 96%);
  mask-image: linear-gradient(180deg, #000 62%, transparent 96%);
}

.edge-blur--top {
  height: 96px;
  background: linear-gradient(to bottom, rgba(17, 27, 80, .14), transparent);
}

.edge-blur--bottom {
  display: none;
}

.hero,
.page-hero,
.scene-hero,
.scene-hero--light {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  color: #fff;
  background: transparent;
}

.starfield,
.technical-veil {
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 96%);
  mask-image: linear-gradient(180deg, #000 55%, transparent 96%);
}

.scene-hero--light p,
.scene-hero p,
.hero-home p {
  color: rgba(255, 255, 255, .76);
}

.site-header,
.site-header.force-light {
  color: #fff;
}

.site-header.force-light .brand img.brand-wordmark {
  filter: invert(1);
}

.site-header.force-light:not(.scrolled):not(.menu-open) .brand-icon {
  filter: brightness(0) invert(1);
}

.site-header__inner {
  min-height: 54px;
}

.site-header.scrolled .site-header__inner,
.site-header.menu-open .site-header__inner {
  background: rgba(255, 255, 255, .88);
  border-color: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 38px rgba(10, 20, 63, .14);
}

.header-contact {
  background: #fff;
  color: var(--ink-blue);
}

.site-header.scrolled .header-contact,
.site-header.menu-open .header-contact {
  color: #fff;
  background: var(--cobalt);
}

/* Match the cobalt contact CTA: hover darkens to violet (the base rule would
   otherwise flip it to a white background with white, invisible text). */
.site-header.scrolled .header-contact:hover,
.site-header.menu-open .header-contact:hover {
  color: #fff;
  background: var(--violet);
}

.hero-home__content {
  width: min(100% - 48px, 1050px);
  padding-top: 156px;
}

.hero-home h1,
.scene-hero h1 {
  font-size: clamp(66px, 7.6vw, 112px);
  line-height: .98;
  letter-spacing: -.06em;
}

.hero-home p,
.scene-hero p {
  max-width: 620px;
}

.page-services .scene-hero h1 {
  max-width: 760px;
}

.page-services .services-hero-objects {
  right: -5%;
  width: 37%;
}

.page-services .services-hero-objects .mini-report-stack {
  transform: scale(.98) rotate(-3deg);
}

.page-about .scene-hero h1 {
  max-width: 800px;
}

.page-about .about-hero-facts {
  right: -4%;
  width: 35%;
  opacity: .7;
}

.page-about .about-core {
  width: 215px;
  height: 290px;
}

.page-careers .scene-hero h1 {
  max-width: 720px;
}

.page-careers .careers-object {
  right: -2%;
  width: 35%;
}

.hero .button,
.scene-hero .button:not(.button--dark) {
  color: var(--ink-blue);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 12px 38px rgba(4, 13, 48, .16);
}

.scene-hero .button--dark {
  color: var(--ink-blue);
  background: #fff;
  border-color: #fff;
}

main > .section,
main > .contact-section {
  position: relative;
  z-index: 2;
  color: var(--ink);
  background: transparent;
}

main > .hero + .section,
main > .scene-hero + .section {
  padding-top: clamp(150px, 24svh, 270px);
}

.section,
.section--deep,
.section--compact {
  padding-top: 150px;
  padding-bottom: 150px;
}

.editorial-intro {
  margin-bottom: 84px;
}

.editorial-intro h2,
.scene-heading,
.contact-composition h2,
.report-copy h2,
.independence blockquote,
.page-home #what-we-do .editorial-intro h2,
.page-home #domains-home .editorial-intro h2,
.page-home #domains-home .domain-orbit h3 {
  color: #171b2d;
}

.editorial-intro p,
.page-home #what-we-do .editorial-intro p,
.page-home #domains-home .editorial-intro p,
.page-home #domains-home .domain-orbit p,
.offer p,
.domain-orbit p,
.service-offer p,
.domain-story p,
.report-copy p,
.independence p {
  color: var(--paper-muted);
}

.page-home #domains-home .text-link {
  color: var(--ink-blue);
}

.page-home #what-we-do {
  padding-top: clamp(150px, 24svh, 270px);
  padding-bottom: 150px;
}

.page-home #domains-home {
  padding-top: 150px;
  padding-bottom: 150px;
}

.offer-scene {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

.offer {
  position: relative;
  inset: auto;
  width: auto;
  min-height: 640px;
  padding: 72px 58px 300px;
  color: var(--ink-blue);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.offer + .offer {
  border-left: 1px solid var(--paper-line);
}

.offer--mission {
  padding-left: 58px;
  color: var(--ink-blue);
  background: transparent;
}

.offer--mission h3 {
  color: var(--ink-blue);
}

.offer--mission p {
  color: var(--paper-muted);
}

.offer h3 {
  max-width: 470px;
  font-size: clamp(48px, 4.8vw, 72px);
}

.offer .mini-report-stack {
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%) rotate(-3deg);
}

.offer .mission-object {
  left: 50%;
  top: auto;
  bottom: 20px;
  width: 220px;
  height: 220px;
  transform: translateX(-50%);
}

.system-scene {
  min-height: 760px;
}

.system-scene::before,
.page-home #domains-home .system-scene::before {
  display: none;
}

.system-core {
  width: 320px;
  height: 320px;
  background:
    radial-gradient(circle at 32% 25%, rgba(255,255,255,.7), transparent 16%),
    linear-gradient(145deg, #17306f, #2c67ec);
  box-shadow: 0 35px 90px rgba(23, 48, 111, .2);
}

.domain-orbit::before {
  width: 38px;
  background: var(--cobalt);
  opacity: 1;
}

.domain-orbit {
  width: 290px;
}

.domain-orbit--embedded { left: 0; }
.domain-orbit--electronics { right: 0; }
.domain-orbit--ai { left: 0; }
.domain-orbit--software { right: -20px; }

.system-line {
  border-color: rgba(39, 95, 245, .2);
}

.situation-scenes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--paper-line);
}

.situation-scene,
.situation-scene--idea,
.situation-scene--review,
.situation-scene--problem,
.situation-scene--capacity {
  grid-column: auto;
  grid-row: auto;
  min-height: 420px;
  padding: 54px 48px;
  color: var(--ink-blue);
  border: 0;
  border-right: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.situation-scene:nth-child(even) {
  border-right: 0;
}

.situation-scene h3,
.situation-scene--problem h3 {
  color: var(--ink-blue);
}

.situation-scene p,
.situation-scene--problem p {
  color: var(--paper-muted);
}

.situation-scene--capacity {
  padding-left: 48px;
}

.sketch-object,
.review-object,
.trace-object,
.capacity-object {
  opacity: .7;
  transform: scale(.72);
  transform-origin: right bottom;
}

.report-section,
.page-services #report {
  background: transparent;
}

.report-layout {
  gap: clamp(60px, 8vw, 130px);
}

.report-page--front {
  background: #fff;
  box-shadow: 0 35px 90px rgba(17, 27, 80, .16);
}

.report-copy h2 {
  font-size: clamp(50px, 5.5vw, 78px);
}

/* Services: one white document, no competing offer cards. */
.services-offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

.service-offer,
.service-offer--studio,
.service-offer--mission {
  min-height: 760px;
  margin: 0;
  padding: 68px 54px 280px;
  color: var(--ink-blue);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-offer + .service-offer {
  border-left: 1px solid var(--paper-line);
}

.service-offer--mission h2,
.service-offer--mission p {
  color: inherit;
}

.service-offer li {
  padding: 10px 0;
  border-bottom: 1px solid var(--paper-line);
}

.service-offer .mission-object {
  right: 50%;
  bottom: 28px;
  transform: translateX(50%);
}

.domain-story,
.domain-story:nth-child(even) {
  min-height: 600px;
  padding: 100px 0;
  border-top: 1px solid var(--paper-line);
}

.domain-story:last-child {
  border-bottom: 1px solid var(--paper-line);
}

.domain-story__visual {
  min-height: 390px;
}

.domain-story__questions span {
  border-left-color: var(--cobalt);
}

.page-services .section:has(.dual-process) {
  background: transparent;
}

.process-map,
.process-map--studio,
.process-map--mission {
  color: var(--ink-blue);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* About and careers use loose physical compositions on the same white paper. */
.founder-cutout__image {
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.96) 0 13%, transparent 14%),
    radial-gradient(ellipse at 50% 86%, rgba(30,50,115,.16) 0 31%, transparent 32%),
    linear-gradient(145deg, #eef3fb, #e3e7ef 58%, #d9e3f8);
  filter: drop-shadow(0 22px 28px rgba(17, 27, 80, .12));
}

.terms-sheet,
.no-roles-scene {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.terms-sheet {
  padding: 0;
}

.empty-chair {
  border-color: rgba(39, 95, 245, .12);
}

.profile-core {
  background:
    radial-gradient(circle at 40% 32%, rgba(255,255,255,.8), transparent 16%),
    linear-gradient(145deg, #1f52c5, #5a86f4);
  box-shadow: 0 30px 75px rgba(28, 77, 187, .19);
}

.profile-node {
  padding: 30px 0;
}

/* Contact is the final large editorial statement, not another coloured panel. */
.contact-section {
  padding: 170px 0 150px;
}

.contact-primary,
.contact-composition .button--dark {
  color: #fff;
  background: var(--cobalt);
  border-color: var(--cobalt);
}

/* The page sets: paper drifts through dusk into night before the footer content. */
.site-footer {
  position: relative;
  z-index: 2;
  padding-top: clamp(430px, 55svh, 590px);
  color: rgba(255,255,255,.7);
  background: linear-gradient(180deg,
      var(--paper) 0,
      #f0ddca 120px,
      #d4a9bb 260px,
      #7c62b6 410px,
      #232a68 530px,
      #0d1644 640px);
}

.footer-column h2,
.footer-column a,
.footer-wordmark,
.footer-utility__links a {
  color: #fff;
}

.footer-column a,
.footer-column span {
  border-bottom-color: rgba(255,255,255,.12);
}

.footer-wordmark img {
  filter: brightness(0) invert(1);
}

.footer-utility {
  border-top-color: rgba(255,255,255,.18);
}

@media (max-width: 860px) {
  main > .hero + .section,
  main > .scene-hero + .section {
    padding-top: clamp(120px, 18svh, 200px);
  }

  .section,
  .section--deep,
  .section--compact,
  .page-home #what-we-do,
  .page-home #domains-home {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .page-home #what-we-do {
    padding-top: clamp(120px, 18svh, 200px);
  }

  .site-footer {
    padding-top: clamp(400px, 50svh, 520px);
    background: linear-gradient(180deg,
        var(--paper) 0,
        #f0ddca 110px,
        #d4a9bb 230px,
        #7c62b6 360px,
        #232a68 470px,
        #0d1644 570px);
  }

  .offer-scene,
  .services-offers {
    grid-template-columns: 1fr;
  }

  .offer + .offer,
  .service-offer + .service-offer {
    border-left: 0;
    border-top: 1px solid var(--paper-line);
  }

  .offer,
  .offer--mission,
  .service-offer,
  .service-offer--studio,
  .service-offer--mission {
    width: auto;
    min-height: 640px;
    padding: 54px 38px 270px;
  }

  .system-scene {
    min-height: 1020px;
  }

  .page-services .services-hero-objects,
  .page-about .about-hero-facts,
  .page-careers .careers-object {
    right: -12%;
    width: 58%;
    opacity: .38;
  }
}

@media (max-width: 560px) {
  .hero-home__content {
    padding-top: 132px;
  }

  .hero-home h1,
  .scene-hero h1 {
    font-size: clamp(46px, 13vw, 58px);
  }

  .page-about .scene-hero h1 {
    font-size: clamp(40px, 11.2vw, 47px);
    letter-spacing: -.055em;
  }

  .section,
  .section--deep,
  .section--compact,
  .page-home #what-we-do,
  .page-home #domains-home {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .page-home #what-we-do {
    padding-top: clamp(110px, 16svh, 170px);
  }

  .editorial-intro {
    margin-bottom: 52px;
  }

  .offer,
  .offer--mission,
  .service-offer,
  .service-offer--studio,
  .service-offer--mission {
    padding: 42px 24px 250px;
  }

  .system-scene {
    min-height: auto;
  }

  .situation-scenes {
    grid-template-columns: 1fr;
  }

  .situation-scene,
  .situation-scene--idea,
  .situation-scene--review,
  .situation-scene--problem,
  .situation-scene--capacity {
    min-height: 370px;
    padding: 38px 24px;
    border-right: 0;
  }

  .contact-section {
    padding: 100px 0;
  }

  .contact-composition h2 {
    font-size: clamp(44px, 12vw, 58px);
  }

  .site-footer {
    padding-top: 380px;
    background: linear-gradient(180deg,
        var(--paper) 0,
        #f0ddca 90px,
        #d4a9bb 190px,
        #7c62b6 300px,
        #232a68 390px,
        #0d1644 470px);
  }

  .page-services .services-hero-objects,
  .page-about .about-hero-facts,
  .page-careers .careers-object {
    top: auto;
    right: -18%;
    bottom: 0;
    width: 78%;
    height: 34%;
    opacity: .34;
  }
}

/* Index revamp layer
   Larger header, indigo icon in the pill, pill secondary links, cutout objects
   with scroll-driven motion, editorial home sections, centered contact, row footer. */

.site-header {
  top: 22px;
}

.site-header__inner {
  min-height: 64px;
  gap: 48px;
  padding: 10px 16px;
}

.site-nav {
  gap: 30px;
  font-size: 15px;
}

.brand {
  height: 40px;
  min-width: 152px;
}

.brand-wordmark {
  height: 32px;
}

.brand-icon {
  height: 30px;
  filter: none;
}

.header-contact {
  min-height: 46px;
  padding: 0 20px;
  font-size: 14px;
}

.language-switch {
  font-size: 13px;
}

.site-header.scrolled .site-header__inner,
.site-header.menu-open .site-header__inner {
  gap: 30px;
  padding: 9px 11px 9px 16px;
}

.site-header.scrolled .brand,
.site-header.menu-open .brand {
  min-width: 40px;
}

.site-header.scrolled .brand img.brand-icon,
.site-header.menu-open .brand img.brand-icon,
.site-header.force-light .brand img.brand-icon {
  filter: none;
}

.text-link {
  gap: 10px;
  min-height: 46px;
  padding: 0 21px;
  border: 1px solid rgba(23, 29, 79, .3);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: background 200ms ease, border-color 200ms ease;
}

.text-link:hover {
  background: rgba(23, 29, 79, .06);
  border-color: rgba(23, 29, 79, .6);
}

.hero .text-link,
.scene-hero .text-link {
  border-color: rgba(255, 255, 255, .45);
}

.hero .text-link:hover,
.scene-hero .text-link:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

/* Cutout objects: ambient float always, scroll-driven entrance where supported. */
.cutout {
  position: relative;
  transform: rotate(var(--tilt, 0deg));
}

.cutout img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 38px rgba(17, 27, 80, .22));
  animation: cutout-float 7.5s ease-in-out var(--float-delay, 0s) infinite alternate;
}

@keyframes cutout-float {
  from { transform: translateY(-5px) rotate(-.7deg); }
  to { transform: translateY(9px) rotate(1deg); }
}

@supports (animation-timeline: view()) {
  .cutout {
    animation: cutout-rise linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 85%;
  }
}

@keyframes cutout-rise {
  from { transform: translateY(110px) rotate(calc(var(--tilt, 0deg) - 6deg)); opacity: 0; }
  to { transform: translateY(0) rotate(var(--tilt, 0deg)); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .cutout,
  .cutout img {
    animation: none !important;
  }
}

.section-cta {
  display: flex;
  justify-content: center;
}

/* Contact: centered, details under the copy, then the intake button. */
.contact-composition {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: auto;
  text-align: center;
}

.contact-composition h2 {
  max-width: 1000px;
  margin-bottom: 26px;
  font-size: clamp(50px, 5.8vw, 88px);
}

.contact-composition p {
  max-width: 620px;
  margin: 0 0 52px;
  color: var(--paper-muted);
}

.contact-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 0 52px;
}

.contact-line {
  padding: 4px 10px;
  color: var(--ink-blue);
  font-size: 15px;
}

.contact-line--email {
  font-family: var(--serif);
  font-size: clamp(26px, 2.9vw, 40px);
  font-weight: 300;
  letter-spacing: -.02em;
}

a.contact-line:hover {
  color: var(--cobalt);
}

.contact-primary {
  min-height: 58px;
  padding-inline: 30px;
}

.contact-external-note {
  display: block;
  margin: 14px 0 0;
  color: rgba(67, 67, 67, .58);
  font-size: 13px;
}

/* Footer rows. */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px 44px;
  padding: 32px 0 58px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
}

.footer-nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.footer-reach {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 28px;
}

.footer-reach a,
.footer-reach span {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.footer-reach a:hover {
  color: #fff;
}

.footer-wordmark {
  padding: 22px 0 72px;
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 30px;
  padding-top: 24px;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
}

.footer-base a {
  color: rgba(255, 255, 255, .75);
}

.footer-base a:hover {
  color: #fff;
}

.footer-base__links {
  display: flex;
  gap: 22px;
}

.footer-ref {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: 58px;
    padding: 9px 11px 9px 15px;
  }

  .brand {
    height: 36px;
    min-width: 138px;
  }

  .brand-wordmark {
    height: 28px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding-bottom: 46px;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 124px;
  }

  .brand-wordmark {
    height: 25px;
  }

  .site-header.scrolled .brand,
  .site-header.menu-open .brand {
    min-width: 36px;
  }

  .brand-icon {
    height: 33px;
  }

  .contact-line--email {
    font-size: clamp(22px, 7.2vw, 30px);
  }

  .footer-base {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Home-page atmosphere and navigation polish. Grain now lives on the shared
   body::before so every page carries the same film texture. */
.edge-blur {
  display: block;
  height: 138px;
  opacity: 1;
  backdrop-filter: blur(38px) saturate(112%);
  -webkit-backdrop-filter: blur(38px) saturate(112%);
}

.page-home .edge-blur--top,
.page-about .edge-blur--top {
  background: linear-gradient(to bottom, rgba(13, 22, 68, .34), rgba(13, 22, 68, .08) 48%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .88) 42%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .88) 42%, transparent 100%);
}

.edge-blur--bottom,
body.footer-visible .edge-blur--bottom {
  background: linear-gradient(to top, rgba(13, 22, 68, .34), rgba(13, 22, 68, .08) 48%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, #000 0%, rgba(0, 0, 0, .88) 42%, transparent 100%);
  mask-image: linear-gradient(to top, #000 0%, rgba(0, 0, 0, .88) 42%, transparent 100%);
}

/* Starfield glow is shared by every night-sky hero (home and about). */
.starfield::before {
  opacity: .62;
  filter: blur(.75px);
}

.founder-star {
  filter: blur(.4px);
  box-shadow:
    0 0 8px 2px rgba(225, 236, 255, .7),
    0 0 26px 8px rgba(109, 158, 235, .2);
}

.founder-star:nth-child(2),
.founder-star:nth-child(5) {
  filter: blur(.85px);
  box-shadow:
    0 0 12px 4px rgba(238, 243, 255, .86),
    0 0 34px 13px rgba(128, 170, 248, .34),
    0 0 72px 28px rgba(104, 70, 199, .15);
}

.founder-star:nth-child(3) {
  filter: blur(1.05px);
  opacity: .8;
  box-shadow: 0 0 22px 9px rgba(213, 229, 255, .36);
}

.founder-star:nth-child(4) {
  box-shadow:
    0 0 10px 3px rgba(255, 255, 255, .84),
    0 0 42px 16px rgba(141, 179, 255, .38),
    0 0 90px 38px rgba(90, 105, 218, .13);
}

@media (min-width: 861px) {
  .site-header {
    width: min(calc(100% - 64px), 1320px);
    max-width: none;
    transition: width 500ms var(--ease), color 350ms ease;
  }

  .site-header.scrolled,
  .site-header.menu-open {
    width: min(calc(100% - 64px), 1080px);
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    justify-content: stretch;
    gap: 48px;
    width: 100%;
    padding-inline: 20px;
  }

  .site-header.scrolled .site-header__inner,
  .site-header.menu-open .site-header__inner {
    gap: 30px;
    padding: 9px 12px 9px 18px;
  }
}

.footer-base {
  display: grid;
  grid-template-columns: auto auto auto minmax(320px, 1fr);
  align-items: center;
  gap: 18px clamp(22px, 3vw, 48px);
}

.footer-cal,
.footer-cal__swatches {
  display: inline-flex;
  align-items: center;
}

.footer-cal {
  gap: 13px;
  color: rgba(255, 255, 255, .7);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
}

.footer-cal__swatches {
  gap: 6px;
}

.footer-cal__swatches i {
  width: 22px;
  height: 10px;
  border-radius: 2px;
}

.footer-cal__swatches i:nth-child(1) { background: #ff3441; }
.footer-cal__swatches i:nth-child(2) { background: #48239a; }
.footer-cal__swatches i:nth-child(3) { background: #ff8d21; }
.footer-cal__swatches i:nth-child(4) { background: #299adf; }
.footer-cal__swatches i:nth-child(5) { background: #26af45; }

.footer-privacy {
  justify-self: end;
  color: rgba(255, 255, 255, .68);
  text-align: right;
}

@media (max-width: 1120px) {
  .footer-base {
    grid-template-columns: auto 1fr auto;
  }

  .footer-privacy {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 700px) {
  .edge-blur {
    height: 96px;
    backdrop-filter: blur(28px) saturate(110%);
    -webkit-backdrop-filter: blur(28px) saturate(110%);
  }

  .footer-base {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-privacy {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
  }
}

/* Content v2: open scenes, drifting objects, no ruled lists.
   [data-speed] elements get --drift from site.js (element-relative parallax).
   The transform lives on .drift__layer so measurements never feed back. */

.drift__layer {
  transform: translateY(var(--drift, 0px));
  will-change: transform;
}

.scene {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
  margin-top: 30px;
}

.scene + .scene {
  margin-top: clamp(120px, 14vw, 210px);
}

.scene__objects {
  position: relative;
  min-height: 560px;
}

.scene--studio .drift--main {
  position: absolute;
  left: 0;
  top: 0;
  width: min(430px, 78%);
}

.scene--studio .drift--aux {
  position: absolute;
  right: 2%;
  bottom: -4%;
  width: min(260px, 48%);
}

.scene--mission {
  grid-template-columns: .92fr 1.08fr;
}

.scene--mission .scene__objects {
  display: flex;
  justify-content: center;
  min-height: 540px;
}

.scene--mission .drift--main {
  width: min(370px, 72%);
}

.scene__copy h3 {
  margin: 0 0 16px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(44px, 4.6vw, 66px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.scene__copy p {
  max-width: 470px;
  margin: 0 0 30px;
  color: var(--paper-muted);
}

.ghost-line {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: clamp(-70px, -5vw, -30px) 0;
  padding: 10px 0;
  pointer-events: none;
}

.ghost-line span {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(96px, 13vw, 200px);
  line-height: 1.15;
  letter-spacing: -.04em;
  color: rgba(23, 29, 79, .05);
  transform: translateX(2%);
}

.ghost-line--reverse span {
  transform: translateX(-16%);
}

.domain-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px clamp(40px, 14vw, 240px);
  align-items: start;
}

.domain-stage .editorial-intro {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(640px, 100%);
  margin: 70px 0;
  text-align: center;
}

.domain-spot {
  max-width: 340px;
}

.domain-spot .cutout {
  margin-bottom: 24px;
}

.domain-spot .cutout img {
  width: auto;
  max-width: 100%;
  max-height: 235px;
}

.domain-spot h3 {
  margin: 0 0 8px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 300;
  line-height: 1.1;
}

.domain-spot p {
  max-width: 300px;
  margin: 0;
  color: var(--paper-muted);
  font-size: 14.5px;
}

.domain-spot:nth-of-type(1) { justify-self: start; }
.domain-spot:nth-of-type(2) { justify-self: end; margin-top: 90px; }
.domain-spot:nth-of-type(3) { justify-self: start; margin-left: 4%; }
.domain-spot:nth-of-type(4) { justify-self: end; margin-top: 60px; }

#domains-home .section-cta {
  margin-top: 80px;
}

.moment {
  display: grid;
  align-items: center;
  gap: clamp(40px, 6vw, 110px);
  margin-top: clamp(90px, 10vw, 150px);
}

.moment--object-right {
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, .6fr);
}

.moment--object-left {
  grid-template-columns: minmax(240px, .6fr) minmax(0, 1.1fr);
}

.moment--object-left .moment__copy {
  order: 2;
}

.moment__copy h3 {
  max-width: 620px;
  margin: 0 0 14px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 300;
  line-height: 1.07;
  letter-spacing: -.03em;
}

.moment__copy p {
  max-width: 540px;
  margin: 0;
  color: var(--paper-muted);
}

.moment__object {
  display: flex;
  justify-content: center;
}

.moment__object .drift {
  width: min(300px, 100%);
}

.moment__object .cutout {
  display: flex;
  justify-content: center;
}

.moment__object .cutout img {
  width: auto;
  max-width: 100%;
  max-height: 270px;
}

.report-stage {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(56px, 7vw, 120px);
  align-items: center;
}

.report-stage .report-copy p.lead {
  margin-bottom: 34px;
}

.report-stage__visual {
  position: relative;
  display: flex;
  align-items: center;
}

.report-stage__visual .drift {
  flex: 0 0 auto;
  width: min(440px, 64%);
}

.report-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 0 clamp(-84px, -5vw, -36px);
  padding: 0;
  list-style: none;
}

.report-tag {
  align-self: flex-start;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--tag-bg, #e7e0f7);
  color: var(--ink-blue);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 16px 34px rgba(17, 27, 80, .09);
  transform: rotate(var(--tag-tilt, 0deg));
}

.report-tag:nth-child(even) { margin-left: 38px; }
.report-tag:nth-child(3) { margin-left: 10px; }
.report-tag:nth-child(5) { margin-left: 18px; }

/* Scroll-tied motion (progressive enhancement, never blocks scrolling). */
@supports (animation-timeline: view()) {
  .ghost-line span {
    animation: ghost-slide linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }

  .ghost-line--reverse span {
    animation-name: ghost-slide-reverse;
  }

  .report-tag {
    animation: tag-in linear both;
    animation-timeline: view();
    animation-range: entry var(--tag-start, 0%) entry 85%;
  }

  .scene__copy h3,
  .moment__copy h3 {
    transform-origin: left bottom;
    animation: heading-grow linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 70%;
  }

  .contact-composition h2 {
    animation: heading-grow-center linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
}

@keyframes ghost-slide {
  from { transform: translateX(3%); }
  to { transform: translateX(-12%); }
}

@keyframes ghost-slide-reverse {
  from { transform: translateX(-16%); }
  to { transform: translateX(1%); }
}

@keyframes tag-in {
  from { transform: translateX(-34px) rotate(0deg); opacity: 0; }
  to { transform: translateX(0) rotate(var(--tag-tilt, 0deg)); opacity: 1; }
}

@keyframes heading-grow {
  from { transform: scale(.94); opacity: .3; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes heading-grow-center {
  from { transform: scale(.95) translateY(20px); opacity: .35; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .ghost-line span,
  .report-tag,
  .scene__copy h3,
  .moment__copy h3,
  .contact-composition h2,
  .drift__layer {
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 1120px) {
  .scene__objects {
    min-height: 470px;
  }

  .scene--studio .drift--main {
    width: min(360px, 74%);
  }

  .domain-stage {
    gap: 40px clamp(32px, 6vw, 90px);
  }
}

@media (max-width: 860px) {
  .scene,
  .scene--mission {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .scene + .scene {
    margin-top: 110px;
  }

  .scene--mission .scene__copy {
    order: 2;
  }

  .scene__objects {
    min-height: 0;
  }

  .scene--studio .drift--main {
    position: static;
    width: min(320px, 70%);
  }

  .scene--studio .drift--aux {
    right: 0;
    bottom: -30px;
    width: min(220px, 44%);
  }

  .scene--mission .scene__objects {
    justify-content: flex-start;
    min-height: 0;
  }

  .scene--mission .drift--main {
    width: min(290px, 62%);
  }

  .ghost-line {
    margin: -20px 0;
  }

  .ghost-line span {
    font-size: clamp(64px, 17vw, 120px);
  }

  .domain-stage .editorial-intro {
    margin: 40px 0;
  }

  .moment,
  .moment--object-left,
  .moment--object-right {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 100px;
  }

  .moment--object-left .moment__copy {
    order: 0;
  }

  .moment__object {
    order: -1;
    justify-content: flex-start;
  }

  .moment__object .cutout img {
    max-height: 220px;
  }

  .report-stage {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .report-stage__visual {
    display: block;
  }

  .report-stage__visual .drift {
    width: min(380px, 88%);
  }

  .report-tags {
    flex-flow: row wrap;
    gap: 12px;
    margin: 32px 0 0;
  }

  .report-tag,
  .report-tag:nth-child(even),
  .report-tag:nth-child(3),
  .report-tag:nth-child(5) {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .domain-stage {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .domain-stage .editorial-intro {
    margin: 20px 0;
  }

  .domain-spot:nth-of-type(2),
  .domain-spot:nth-of-type(4) {
    margin-top: 0;
  }

  .domain-spot:nth-of-type(2),
  .domain-spot:nth-of-type(3),
  .domain-spot:nth-of-type(4) {
    justify-self: start;
    margin-left: 0;
  }

  .scene__copy h3 {
    font-size: clamp(38px, 10.5vw, 48px);
  }

  .moment__copy h3 {
    font-size: clamp(30px, 8.5vw, 40px);
  }
}

/* Home v3 compact editorial system. */
@media (min-width: 861px) {
  /* Wide, edge-to-edge bar at the top of the page. */
  .site-header {
    width: min(calc(100% - 64px), 1240px);
  }

  /* Condenses into the narrower pill once the page is scrolled. */
  .site-header.scrolled,
  .site-header.menu-open {
    width: min(calc(100% - 64px), 850px);
  }

  .site-header__inner {
    gap: 26px;
    padding-inline: 22px;
  }

  .site-header.scrolled .site-header__inner,
  .site-header.menu-open .site-header__inner {
    gap: 26px;
    padding-inline: 14px;
  }
}

.home-section {
  position: relative;
  padding: clamp(82px, 8vw, 112px) 0;
}

.home-wrap {
  width: min(calc(100% - 64px), 1120px);
  margin-inline: auto;
}

.home-heading {
  max-width: 920px;
  margin-bottom: clamp(68px, 8vw, 104px);
}

.home-heading h2 {
  max-width: 920px;
  margin: 0 0 28px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(52px, 6.2vw, 82px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.048em;
  text-wrap: balance;
}

.home-heading p {
  max-width: 650px;
  margin: 0;
  color: rgba(67, 67, 67, .76);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.55;
}

.home-about {
  padding: clamp(118px, 11vw, 156px) 0 clamp(70px, 7vw, 96px);
  color: var(--ink-blue);
}

.home-about .home-heading p,
.home-about .home-offer p {
  color: rgba(67, 67, 67, .74);
}

.home-about .home-heading h2,
.home-about .home-offer h3,
.home-about .text-link {
  color: var(--ink-blue);
}

.home-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}

.home-offer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  min-height: 0;
  padding: 0;
}

.home-offer__copy {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.home-offer h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.home-offer p {
  max-width: 520px;
  margin: 0 0 22px;
  font-size: 16px;
}

.home-offer__cutouts {
  position: relative;
  order: -1;
  min-height: 310px;
}

.home-cutout {
  position: absolute;
}

.home-cutout--report {
  left: 4%;
  top: 0;
  width: min(350px, 82%);
}

.home-cutout--loupe {
  right: 7%;
  bottom: 2%;
  z-index: 2;
  width: min(150px, 36%);
}

.home-cutout--badge {
  left: 50%;
  top: 50%;
  width: min(285px, 72%);
  transform: translate(-50%, -50%);
}

.home-domains {
  padding: clamp(72px, 7vw, 96px) 0 clamp(90px, 9vw, 124px);
}

.domain-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(70px, 9vw, 120px) clamp(28px, 5vw, 72px);
  align-items: start;
}

.domain-feature {
  grid-column: span 6;
  max-width: 470px;
}

.domain-feature--iot,
.domain-feature--electronics {
  justify-self: end;
  margin-top: 90px;
}

.domain-feature--embedded {
  margin-left: 7%;
}

.domain-feature--software {
  grid-column: 4 / span 6;
  justify-self: center;
  width: 100%;
}

.domain-feature h3 {
  margin: 0 0 7px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(31px, 3.35vw, 46px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.035em;
}

.domain-feature p {
  max-width: 540px;
  margin: 0;
  color: rgba(67, 67, 67, .72);
  font-size: 15px;
}

.domain-feature__cutout {
  position: relative;
  display: flex;
  justify-content: center;
  height: clamp(190px, 22vw, 270px);
  margin-bottom: 26px;
}

.domain-feature__cutout .drift,
.domain-feature__cutout .drift__layer,
.domain-feature__cutout .cutout {
  height: 100%;
}

.domain-feature__cutout img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.home-inline-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.home-presence {
  padding: clamp(48px, 5vw, 84px) 0;
  overflow: hidden;
}

/* Full-bleed dark relief map. It runs off the right edge of the screen with
   glowing France sitting on the horizontal centre line, and the copy floats
   over the open Atlantic on the left. */
.presence-map {
  position: relative;
  width: 100vw;
  /* Full-bleed via margins, not transform: the .reveal class already animates
     transform, so a layout transform here would be clobbered on reveal. */
  margin-left: calc(50% - 50vw);
  height: clamp(500px, 50vw, 780px);
}

.presence-map__media {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  /* ~77vw so glowing France lands on the horizontal centre while the right
     edge stays flush with the screen. */
  width: min(77vw, 1180px);
  /* Fade the top and bottom edges into the page so there is no hard cut. */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.presence-map__layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
  transition: opacity 520ms ease;
}

/* Default: France in focus (glowing). On hover it cross-fades to the plain
   relief. Pure opacity, no movement. */
.presence-map__focus { opacity: 1; }
.presence-map__plain { opacity: 0; }

.presence-map:hover .presence-map__focus,
.presence-map:focus-within .presence-map__focus { opacity: 0; }

.presence-map:hover .presence-map__plain,
.presence-map:focus-within .presence-map__plain { opacity: 1; }

.presence-map__copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(28px, calc(50% - 560px));
  width: min(40vw, 400px);
  transform: translateY(-50%);
  color: var(--ink-blue);
}

.presence-map__copy h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -.035em;
  color: var(--ink-blue);
}

.presence-map__copy p {
  margin: 0 0 26px;
  max-width: 34ch;
  color: var(--paper-muted);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.56;
}

.presence-map__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
}

.presence-map__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--paper-muted);
  font-size: 12px;
}

.presence-map__stat b {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--ink-blue);
}

.page-home .contact-section {
  padding: clamp(110px, 11vw, 156px) 0 clamp(100px, 10vw, 142px);
}

.page-home .contact-composition {
  width: min(calc(100% - 64px), 1040px);
}

.page-home .contact-composition h2 {
  max-width: 900px;
  font-size: clamp(50px, 6.3vw, 82px);
}

.page-home .contact-composition p {
  margin-bottom: 38px;
}

.page-home .contact-lines {
  margin-bottom: 38px;
}

@supports (animation-timeline: view()) {
  .home-heading h2,
  .home-offer h3,
  .domain-feature h3 {
    transform-origin: left bottom;
    animation: heading-grow linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 72%;
  }

  .domain-feature__cutout {
    animation: home-object-arrive linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 75%;
  }
}

@keyframes home-object-arrive {
  from { opacity: .25; transform: translateY(28px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 860px) {
  .home-wrap,
  .page-home .contact-composition {
    width: min(calc(100% - 40px), 680px);
  }

  .home-offers {
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .home-offer {
    width: min(100%, 560px);
  }

  .home-offer:nth-child(2) {
    justify-self: end;
  }

  .home-offer__cutouts {
    min-height: 280px;
  }

  .domain-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 84px 44px;
  }

  .domain-feature,
  .domain-feature--software {
    grid-column: auto;
    width: auto;
  }

  .domain-feature--iot,
  .domain-feature--electronics {
    margin-top: 60px;
  }

  .domain-feature--embedded {
    margin-left: 0;
  }

  .domain-feature--software {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 360px);
  }

  /* Map: stack the copy above a full-width map band instead of overlaying. */
  .presence-map {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 26px;
  }

  .presence-map__copy {
    position: static;
    transform: none;
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    padding-inline: 24px;
    margin: 0;
  }

  .presence-map__copy::before { display: none; }

  .presence-map__copy p { max-width: 46ch; }

  .presence-map__media {
    position: relative;
    inset: auto;
    right: auto;
    width: 100%;
    height: clamp(320px, 64vw, 520px);
  }

  .presence-map__layer { object-position: 40% 58%; }
}

@media (max-width: 560px) {
  .home-section {
    padding-block: 92px;
  }

  .home-wrap,
  .page-home .contact-composition {
    width: min(calc(100% - 32px), 520px);
  }

  .home-heading {
    margin-bottom: 58px;
  }

  .home-heading h2 {
    font-size: clamp(42px, 12.8vw, 60px);
  }

  .home-offer {
    gap: 22px;
  }

  .home-offer h3 {
    font-size: clamp(36px, 10.5vw, 46px);
  }

  .home-offer__cutouts {
    min-height: 190px;
  }

  .home-cutout--report { width: min(245px, 90%); }
  .home-cutout--loupe { width: min(110px, 42%); }
  .home-cutout--badge { width: min(210px, 78%); }

  .domain-gallery {
    grid-template-columns: 1fr;
    gap: 78px;
  }

  .domain-feature,
  .domain-feature--software {
    grid-column: auto;
    justify-self: start;
    width: 100%;
  }

  .domain-feature--iot,
  .domain-feature--electronics {
    margin-top: 0;
  }

  .domain-feature__cutout {
    height: 190px;
  }

  .presence-map__media {
    height: clamp(300px, 74vw, 420px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-heading h2,
  .home-offer h3,
  .domain-feature h3,
  .domain-feature__cutout {
    animation: none !important;
    transform: none !important;
  }
}

/* ============================================================
   Home index rework: centered titles, paper cards, bubble
   cluster, framed map, editorial contact. (2026-07-21)
   ============================================================ */

/* Centered big titles across home sections. */
.home-heading {
  margin-inline: auto;
  margin-bottom: clamp(42px, 4.5vw, 60px);
  text-align: center;
}
.home-heading h2 {
  margin-inline: auto;
  transform-origin: center bottom;
}
.home-heading p {
  margin-inline: auto;
}

.home-section {
  padding-block: clamp(58px, 5.5vw, 78px);
}

.page-home #what-we-do {
  padding-top: clamp(82px, 7vw, 104px);
  padding-bottom: clamp(52px, 5vw, 70px);
}

.page-home #domains-home,
.home-presence {
  padding-top: clamp(54px, 5vw, 72px);
  padding-bottom: clamp(54px, 5vw, 72px);
}

.contact-section {
  padding-block: clamp(72px, 7vw, 98px);
}

/* ---- Section 1: real material cutouts with live, responsive content. ---- */
.doc-cards {
  --p: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 44px);
  /* start (not stretch): Safari collapses an aspect-ratio grid item to 0 when
     it is stretched, which broke both cards there. */
  align-items: start;
  width: min(100%, 840px);
  margin-inline: auto;
  perspective: 1400px;
}

.doc-card {
  position: relative;
  min-height: 0;
  padding: 0;
  aspect-ratio: 2 / 3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: var(--ink-blue);
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.doc-card__content {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.doc-card--report .doc-card__content {
  inset: 22% 18% 19% 24%;
}

.doc-card--badge .doc-card__content {
  inset: 47.5% 19.5% 22.5% 19.5%;
}

.doc-card[data-side="left"] {
  transform-origin: right center;
  transform:
    translateX(calc((var(--p) - 1) * 160px))
    translateY(calc((1 - var(--p)) * 46px))
    rotate(calc((var(--p) - 1) * 14deg))
    scale(calc(0.9 + 0.1 * var(--p)));
  opacity: var(--p);
}

.doc-card[data-side="right"] {
  transform-origin: left center;
  transform:
    translateX(calc((1 - var(--p)) * 160px))
    translateY(calc((1 - var(--p)) * 46px))
    rotate(calc((1 - var(--p)) * 14deg))
    scale(calc(0.9 + 0.1 * var(--p)));
  opacity: var(--p);
}

.doc-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(12px, 1.5vw, 18px);
}

.doc-card__logo {
  display: block;
  width: 116px;
  height: auto;
}

.doc-card__tag {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(23, 29, 79, .06);
  color: rgba(23, 29, 79, .62);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .04em;
}

.doc-card h3 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 39px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.doc-card p {
  margin: 0 0 12px;
  color: var(--paper-muted);
  font-size: clamp(11px, .95vw, 13px);
  line-height: 1.42;
}

.doc-card .text-link {
  margin-top: auto;
  align-self: center;
}

/* Design office = a clean technical-study page printed on the paper stack. */
.doc-card--report {
  background-image: url("assets/materials/report-paper-v3.webp");
}

.report {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
}

.report__masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: clamp(16px, 2.2vw, 26px);
}

.doc-card--report .report__logo {
  width: clamp(84px, 9vw, 104px);
  height: auto;
}

.doc-card--report .report__kind {
  color: rgba(23, 29, 79, .5);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .02em;
}

.doc-card--report .report__title {
  margin: 0 0 clamp(9px, 1.2vw, 13px);
  font-family: var(--serif);
  font-size: clamp(25px, 2.6vw, 35px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--ink-blue);
}

.doc-card--report .report__lead {
  margin: 0 0 clamp(18px, 2.4vw, 26px);
  color: var(--paper-muted);
  font-size: clamp(11px, .95vw, 13px);
  line-height: 1.46;
}

.report__index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 14px);
}

.report__index li {
  display: flex;
  align-items: baseline;
  gap: 11px;
  color: var(--ink-blue);
  font-size: clamp(11px, .95vw, 13px);
  line-height: 1.2;
}

.report__index li span {
  flex: none;
  color: var(--violet);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .02em;
}

/* Engineering services = live badge typography inside a real holder. */
.doc-card--badge {
  margin-top: 30px;
  background-image: url("assets/materials/badge-holder-current.webp");
}

.doc-card--badge .doc-card__head { margin-bottom: 5px; }
.doc-card--badge .doc-card__logo { width: 82px; }
.doc-card--badge .doc-card__tag { padding: 3px 6px; font-size: 6px; }
.doc-card--badge h3 { margin-bottom: 6px; font-size: clamp(19px, 1.9vw, 25px); line-height: .98; }
.doc-card--badge p { margin-bottom: 7px; font-size: clamp(9px, .8vw, 11px); line-height: 1.22; }
.doc-card--badge .doc-card__id { gap: 3px; margin-bottom: 7px; }
.doc-card--badge .doc-card__barcode { height: 15px; }
.doc-card--badge .doc-card__idno { font-size: 6px; letter-spacing: .12em; }
.doc-card--badge .text-link { min-height: 34px; padding-inline: 14px; font-size: 10px; }

/* Badge ID block: a real scan strip and reference, like a printed access card. */
.doc-card__id {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.doc-card__barcode {
  display: block;
  height: 22px;
  background:
    repeating-linear-gradient(90deg,
      #171d4f 0, #171d4f 1px, transparent 1px, transparent 3px,
      #171d4f 3px, #171d4f 5px, transparent 5px, transparent 6px,
      #171d4f 6px, #171d4f 7px, transparent 7px, transparent 10px);
  opacity: .82;
}

.doc-card__idno {
  color: rgba(23, 29, 79, .62);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .04em;
}

.doc-card--report .text-link {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 12px;
}

/* One centered editorial line bridging the two engagement models. */
.engagement-copy {
  width: min(100%, 680px);
  margin: clamp(30px, 3.4vw, 48px) auto 0;
  text-align: center;
}

.engagement-copy p {
  margin: 0;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(21px, 2.1vw, 28px);
  font-weight: 300;
  line-height: 1.32;
  letter-spacing: -.02em;
}

/* ---- Section 2: one-shot expansion when the cluster crosses its trigger. ---- */
.home-domains .home-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bubble-cluster {
  position: relative;
  width: 100%;
  height: 700px;
  margin-bottom: clamp(20px, 2.5vw, 34px);
}

.bubble-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #3a2b93, #171d4f 74%);
  box-shadow: 0 40px 80px -30px rgba(23, 29, 79, .7), inset 0 1px 0 rgba(255, 255, 255, .18);
}

.bubble-center h2 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.03em;
  text-align: center;
}

.bubble-field {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  width: 152px;
  text-align: center;
  will-change: transform, opacity;
  transform: translate(-50%, -50%) scale(.25);
  opacity: 0;
  transition:
    transform 900ms cubic-bezier(.22, 1, .36, 1),
    opacity 360ms ease;
}

.bubble-cluster.is-expanded .bubble-field {
  transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(1);
  opacity: 1;
  transition-delay: var(--bubble-delay, 0ms);
}

.bubble-field__disc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--object-width, 190px);
  height: var(--object-height, 155px);
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform 900ms cubic-bezier(.22, 1, .36, 1);
}

.bubble-field__disc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 16px rgba(23, 29, 79, .22));
  will-change: transform;
}

.bubble-cluster.is-expanded .bubble-field__disc {
  transform: rotate(var(--object-rotate, 0deg));
}

.bubble-cluster.is-expanded .bubble-field__disc img {
  animation: field-object-float var(--float-duration, 6s) ease-in-out var(--float-delay, 0s) infinite alternate;
}

@keyframes field-object-float {
  from { transform: translateY(-5px) rotate(-.45deg); }
  to { transform: translateY(7px) rotate(.45deg); }
}

.bubble-field__label {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -.01em;
  color: var(--ink-blue);
}

.bubble-field--ai { --bubble-delay: 0ms; --object-width: 160px; --object-height: 160px; }
.bubble-field--iot { --bubble-delay: 45ms; --object-width: 186px; --object-height: 158px; }
.bubble-field--electronics { --bubble-delay: 90ms; --object-width: 220px; --object-height: 150px; }
.bubble-field--embedded { --bubble-delay: 135ms; --object-width: 190px; --object-height: 158px; }
.bubble-field--software { --bubble-delay: 180ms; --object-width: 205px; --object-height: 158px; }

.bubble-note {
  max-width: 720px;
  margin: 0 auto;
  color: var(--paper-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  text-align: center;
}

.home-domains .home-inline-link {
  justify-content: center;
  margin-top: 22px;
}

/* ---- Section 3: framed presence map ---- */
.presence {
  width: min(100%, 780px);
  margin-inline: auto;
}

.presence__frame {
  position: relative;
  aspect-ratio: 1.75;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(158deg, #eef1fb 0%, #e4eaf7 55%, #e9e2f0 100%);
  box-shadow: 0 46px 90px -46px rgba(23, 29, 79, .6), inset 0 0 0 1px rgba(23, 29, 79, .06);
}

/* The map projection places France low and left, so we pan/zoom the source
   to centre Western Europe rather than crop to Scandinavia. */
.presence__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 90%;
  filter: saturate(1.12) contrast(1.04);
}

.presence__pin {
  position: absolute;
  left: 43%;
  top: 79%;
  width: 0;
  height: 0;
}

.presence__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--salmon);
  box-shadow: 0 0 0 4px rgba(233, 143, 123, .3), 0 6px 14px rgba(23, 29, 79, .35);
}

.presence__ping {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid var(--salmon);
  animation: presence-ping 2.8s ease-out infinite;
}

@keyframes presence-ping {
  0% { opacity: .7; transform: translate(-50%, -50%) scale(1); }
  70%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(4.6); }
}

.presence__flag {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--ink-blue);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  box-shadow: 0 10px 24px -8px rgba(23, 29, 79, .6);
}

.presence__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(26px, 6vw, 78px);
  margin-top: clamp(22px, 3vw, 32px);
}

.presence__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  color: var(--paper-muted);
  font-size: 13px;
}

.presence__stat b {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink-blue);
}

/* ---- Contact ---- */
.contact-section {
  position: relative;
}

.contact-compose {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 64px), 880px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-compose h2 {
  max-width: 860px;
  margin: 0 0 24px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.contact-compose > p {
  max-width: 580px;
  margin: 0 0 32px;
  color: var(--paper-muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 34px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  background: rgba(23, 29, 79, .06);
  color: var(--ink-blue);
  font-size: 15px;
  transition: background 200ms ease, color 200ms ease;
}

.chip-ico {
  flex: none;
  width: 17px;
  height: 17px;
  opacity: .8;
}

a.contact-chip:hover {
  background: rgba(23, 29, 79, .11);
  color: var(--cobalt);
}

.contact-primary {
  min-height: 60px;
  padding-inline: 34px;
  font-size: 15px;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .page-home #what-we-do,
  .page-home #domains-home,
  .home-presence {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .doc-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(100%, 460px);
  }

  .doc-card,
  .doc-card[data-side="left"],
  .doc-card[data-side="right"] {
    min-height: 0;
    transform: none !important;
    opacity: 1 !important;
  }

  .doc-card--badge {
    margin-top: 0;
  }

  .doc-card--report .report__masthead { gap: 10px; margin-bottom: 14px; }
  .doc-card--report .report__logo { width: 104px; }
  .doc-card--report .report__kind { font-size: 10px; }
  .doc-card--report .report__lead { margin-bottom: 16px; font-size: 12px; }
  .doc-card--report .report__index { gap: 11px; }
  .doc-card--report .report__index li { font-size: 12px; }
  .doc-card--report .text-link {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .doc-card--badge .doc-card__head { margin-bottom: 4px; }
  .doc-card--badge h3 { margin-bottom: 4px; font-size: 18px; }
  .doc-card--badge p { margin-bottom: 6px; font-size: 9px; line-height: 1.22; }
  .doc-card--badge .doc-card__id { margin-bottom: 6px; }
  .doc-card--badge .doc-card__barcode { height: 13px; }
  .doc-card--badge .text-link { min-height: 34px; padding-inline: 12px; font-size: 9px; }

  .engagement-copy {
    width: min(100%, 460px);
    margin-top: 26px;
  }

  .engagement-copy p {
    font-size: clamp(18px, 5vw, 22px);
  }

  .bubble-cluster {
    height: auto;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 28px 20px;
    padding: 4px 0;
  }

  .bubble-center {
    position: static;
    order: 0;
    flex: 0 0 100%;
    width: 100%;
    max-width: 210px;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto 8px;
    transform: none;
  }

  .bubble-field {
    position: static;
    order: 1;
    width: 118px;
    transform: none !important;
    opacity: 1 !important;
  }

  .bubble-field__disc {
    width: 140px;
    height: 110px;
  }
}

@media (max-width: 560px) {
  .presence__frame {
    aspect-ratio: 1.02;
    border-radius: 26px;
  }
  .presence__flag { font-size: 10px; }
  .contact-chips { gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .presence__ping {
    animation: none !important;
  }
  .doc-card,
  .doc-card[data-side="left"],
  .doc-card[data-side="right"],
  .bubble-field {
    opacity: 1 !important;
    transform: none !important;
  }
  .bubble-field {
    transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) !important;
  }
  .bubble-field__disc {
    transform: rotate(var(--object-rotate, 0deg)) !important;
  }
  .bubble-field__disc img {
    animation: none !important;
  }
}

/* Shared V3 page system. The index is the visual reference for every page. */

.page-simple .page-shell {
  color: var(--ink);
  background: var(--paper);
}

.page-simple .environment {
  display: none;
}

.page-simple .edge-blur--top {
  background: linear-gradient(to bottom, rgba(251, 249, 243, .84), transparent);
}

.page-simple .site-header {
  color: var(--ink-blue);
}

.page-simple .brand-wordmark,
.page-simple .brand-icon,
.page-simple .site-header.force-light .brand-wordmark,
.page-simple .site-header.force-light .brand-icon {
  filter: none !important;
}

.page-simple main,
.page-about-new main {
  position: relative;
  z-index: 2;
}

.simple-page-title {
  width: min(calc(100% - 64px), 1000px);
  margin-inline: auto;
  padding: clamp(190px, 18vw, 245px) 0 clamp(58px, 7vw, 90px);
  text-align: center;
}

.simple-page-title h1 {
  margin: 0 0 28px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(72px, 9vw, 122px);
  font-weight: 300;
  line-height: .96;
  letter-spacing: -.06em;
}

.simple-page-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--paper-muted);
  font-size: clamp(18px, 1.65vw, 21px);
  line-height: 1.55;
}

.simple-section {
  padding: clamp(58px, 6vw, 84px) 0;
}

.simple-section--first {
  padding-top: 28px;
}

.simple-wrap {
  width: min(calc(100% - 64px), 1120px);
  margin-inline: auto;
}

.simple-heading {
  max-width: 850px;
  margin: 0 auto clamp(52px, 5.5vw, 76px);
  text-align: center;
}

.simple-heading h2 {
  margin: 0 0 24px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.048em;
  text-wrap: balance;
}

.simple-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--paper-muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

/* Legal notice and privacy prose ------------------------------------ */
.legal-prose {
  width: min(calc(100% - 64px), 820px);
  margin-inline: auto;
}

.legal-prose__block {
  margin-bottom: clamp(40px, 5vw, 60px);
}

.legal-prose__block:last-child {
  margin-bottom: 0;
}

.legal-prose h2 {
  margin: 0 0 18px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.legal-prose h3 {
  margin: 28px 0 10px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.2;
}

.legal-prose p {
  max-width: 68ch;
  margin: 0 0 16px;
  color: var(--paper-muted);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.72;
}

.legal-prose p:last-child {
  margin-bottom: 0;
}

.legal-prose a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(36, 15, 112, .38);
  transition: text-decoration-color 200ms ease;
}

.legal-prose a:hover {
  text-decoration-color: var(--violet);
}

.legal-prose .legal-note {
  color: rgba(31, 35, 48, .5);
  font-family: var(--mono);
  font-size: 13.5px;
}

.legal-identity {
  display: grid;
  gap: 15px 0;
  margin: 22px 0 0;
}

.legal-identity > div {
  display: grid;
  grid-template-columns: minmax(150px, 210px) 1fr;
  gap: 3px 28px;
  align-items: baseline;
}

.legal-identity dt {
  margin: 0;
  color: rgba(31, 35, 48, .58);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.5;
}

.legal-identity dd {
  margin: 0;
  color: var(--ink-blue);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.5;
}

@media (max-width: 560px) {
  .legal-identity > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.service-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 8vw, 120px);
  max-width: 980px;
  margin-inline: auto;
  align-items: start;
}

.service-type {
  text-align: center;
}

.service-types--text {
  max-width: 1050px;
}

.service-type h2 {
  margin: 0 0 18px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -.04em;
}

.service-type p {
  margin: 0 auto 18px;
  color: var(--paper-muted);
  line-height: 1.6;
}

.service-type__result {
  color: var(--ink-blue) !important;
  font-size: 15px;
}

.domain-stack {
  max-width: 940px;
  margin-inline: auto;
}

.domain-copy {
  margin-bottom: clamp(94px, 10vw, 148px);
  text-align: center;
}

.domain-copy:last-child {
  margin-bottom: 0;
}

.domain-copy h3 {
  margin: 0 0 24px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(44px, 5.2vw, 70px);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -.04em;
}

.domain-copy > p {
  max-width: 800px;
  margin: 0 auto 42px;
  color: var(--paper-muted);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
}

.domain-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 58px) clamp(36px, 7vw, 76px);
  max-width: 860px;
  margin-inline: auto;
}

.domain-details h4 {
  margin: 0 0 8px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 300;
  line-height: 1.1;
}

.domain-details p {
  margin: 0;
  color: var(--paper-muted);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
}

.profile-grid,
.mission-grid,
.working-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(52px, 7vw, 96px) clamp(44px, 8vw, 120px);
  max-width: 960px;
  margin-inline: auto;
}

.profile-copy,
.mission-copy {
  text-align: center;
}

.profile-copy:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 440px;
  margin-inline: auto;
}

.profile-copy h3,
.mission-copy h3 {
  margin: 0 0 14px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.profile-copy p,
.mission-copy p {
  margin: 0;
  color: var(--paper-muted);
  line-height: 1.6;
}

.working-grid {
  max-width: 900px;
}

.career-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 390px;
  margin-top: 22px;
}

.career-image img {
  width: min(72%, 440px);
  transform: rotate(-5deg);
  filter: drop-shadow(0 30px 30px rgba(23, 29, 79, .18));
}

.page-about-new .page-shell {
  background: var(--paper);
}

.about-index-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.about-index-hero__copy {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 64px), 1120px);
  margin-inline: auto;
  padding: 150px 0 100px;
}

.about-index-hero h1 {
  max-width: 790px;
  margin: 0 0 28px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(68px, 8vw, 116px);
  font-weight: 300;
  line-height: .97;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.about-index-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.about-index-hero__objects {
  position: absolute;
  z-index: 2;
  right: max(2%, calc((100vw - 1320px) / 2));
  top: 16%;
  width: min(36vw, 520px);
  height: 72%;
  pointer-events: none;
}

.about-index-hero__objects figure,
.about-junction-visual figure,
.team-objects figure {
  position: absolute;
  margin: 0;
}

.about-index-hero__objects figure:nth-child(1) { left: 0; top: 3%; width: 57%; transform: rotate(-7deg); }
.about-index-hero__objects figure:nth-child(2) { right: 0; top: 32%; width: 47%; transform: rotate(7deg); }
.about-index-hero__objects figure:nth-child(3) { left: 16%; bottom: 0; width: 56%; transform: rotate(-3deg); }

.about-index-hero__objects img,
.about-junction-visual img,
.team-objects img {
  width: 100%;
  filter: drop-shadow(0 24px 28px rgba(8, 14, 50, .3));
}

.about-introduction {
  padding-top: clamp(120px, 14vw, 190px);
}

.about-junction {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.about-junction-visual {
  position: relative;
  min-height: 540px;
}

.about-junction-visual::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #3a2b93, #171d4f 74%);
  box-shadow: 0 40px 80px -30px rgba(23, 29, 79, .55);
}

.about-junction-visual figure { width: 54%; }
.about-junction-visual figure:first-child { left: 0; top: 8%; transform: rotate(-7deg); }
.about-junction-visual figure:last-child { right: 0; bottom: 5%; transform: rotate(6deg); }

.about-junction-copy h2,
.about-mission h2,
.about-team-copy h2 {
  margin: 0 0 24px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.048em;
  text-wrap: balance;
}

.about-junction-copy p,
.about-team-copy p {
  max-width: 600px;
  color: var(--paper-muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
}

.about-mission {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.about-mission h2 {
  font-size: clamp(52px, 7vw, 90px);
}

.about-mission p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--paper-muted);
  font-size: clamp(17px, 1.5vw, 20px);
}

.strength-bubbles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 68px);
  max-width: 920px;
  margin-inline: auto;
}

.strength-bubble {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 32% 26%, rgba(109, 158, 235, .72), transparent 24%), #171d4f;
  text-align: center;
  box-shadow: 0 34px 60px -32px rgba(23, 29, 79, .55);
}

.strength-bubble:nth-child(even) {
  transform: translateY(52px);
  background: radial-gradient(circle at 35% 28%, rgba(216, 208, 242, .52), transparent 26%), #291775;
}

.strength-bubble h3 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 300;
  line-height: 1.05;
}

.strength-bubble p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.55;
}

.about-team {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.team-objects {
  position: relative;
  min-height: 500px;
}

.team-objects figure { width: 42%; }
.team-objects figure:nth-child(1) { left: 0; top: 4%; transform: rotate(-7deg); }
.team-objects figure:nth-child(2) { right: 0; top: 18%; transform: rotate(6deg); }
.team-objects figure:nth-child(3) { left: 28%; bottom: 0; transform: rotate(-2deg); }

.contact-note {
  display: block;
  margin-top: 14px;
  color: var(--paper-muted);
  font-size: 13px;
}

.career-openings {
  padding: 0 0 clamp(84px, 9vw, 128px);
}

.career-openings .simple-wrap {
  width: min(calc(100% - 64px), 900px);
}

.career-openings__heading {
  margin-bottom: clamp(42px, 5vw, 64px);
  text-align: center;
}

.career-openings__heading h2 {
  margin: 0 0 14px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.career-openings__heading p,
.career-openings__status p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 16px;
  line-height: 1.65;
}

.career-openings__status {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 700px;
  margin-inline: auto;
}

.career-openings__count {
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(88px, 12vw, 148px);
  font-weight: 300;
  line-height: .8;
  letter-spacing: -.06em;
}

.career-openings__status h3 {
  margin: 0 0 10px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.08;
}

@media (max-width: 860px) {
  .service-types,
  .about-junction,
  .about-team {
    grid-template-columns: 1fr;
  }

  .service-types {
    max-width: 600px;
    gap: 72px;
  }

  .about-index-hero__objects {
    right: -12%;
    width: 55vw;
    opacity: .56;
  }

  .about-junction-visual,
  .team-objects {
    min-height: 440px;
  }

  .about-team-copy {
    text-align: center;
  }

  .about-team-copy p {
    margin-inline: auto;
  }

}

@media (max-width: 560px) {
  .simple-page-title {
    width: calc(100% - 36px);
    padding: 148px 0 50px;
  }

  .simple-page-title h1 {
    font-size: clamp(58px, 20vw, 78px);
  }

  .simple-wrap,
  .about-index-hero__copy {
    width: calc(100% - 36px);
  }

  .simple-section {
    padding-block: 50px;
  }

  .simple-section--first {
    padding-top: 18px;
  }

  .career-openings {
    padding-bottom: 76px;
  }

  .career-openings .simple-wrap {
    width: calc(100% - 36px);
  }

  .career-openings__status {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .simple-heading {
    margin-bottom: 42px;
  }

  .simple-heading h2,
  .about-junction-copy h2,
  .about-mission h2,
  .about-team-copy h2 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .domain-details,
  .profile-grid,
  .mission-grid,
  .working-grid,
  .strength-bubbles {
    grid-template-columns: 1fr;
  }

  .domain-copy {
    margin-bottom: 88px;
  }

  .domain-copy > p {
    margin-bottom: 34px;
  }

  .domain-details {
    gap: 28px;
  }

  .profile-copy:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .profile-grid,
  .mission-grid,
  .working-grid {
    gap: 50px;
  }

  .career-image {
    min-height: 300px;
  }

  .about-index-hero {
    min-height: 100svh;
    align-items: start;
  }

  .about-index-hero__copy {
    padding: 142px 0 300px;
  }

  .about-index-hero h1 {
    font-size: clamp(52px, 15vw, 68px);
  }

  .about-index-hero__objects {
    right: -18%;
    top: auto;
    bottom: 2%;
    width: 82vw;
    height: 38%;
    opacity: .62;
  }

  .about-introduction {
    padding-top: 100px;
  }

  .about-junction-visual,
  .team-objects {
    min-height: 330px;
  }

  .strength-bubble,
  .strength-bubble:nth-child(even) {
    min-height: 300px;
    transform: none;
  }

}

@media (prefers-reduced-motion: reduce) {
  .about-index-hero__objects img,
  .about-junction-visual img,
  .team-objects img,
  .career-image img {
    animation: none !important;
  }
}

/* About page. A continuous founding archive built from the Home components. */

.page-about-new .page-shell {
  background: linear-gradient(180deg,
    #0e1543 0,
    #182a68 34svh,
    #4a6fc9 70svh,
    #aebbe0 100svh,
    #eadfd9 124svh,
    var(--paper) 154svh,
    var(--paper) 100%);
}

.about-home-hero {
  min-height: 100svh;
  background: transparent;
}

.about-home-hero .hero-home__content {
  width: min(calc(100% - 64px), 1120px);
}

.about-home-hero h1 {
  max-width: 1020px;
}

.about-origin,
.about-founders-section,
.about-presence,
.page-about-new .contact-section {
  position: relative;
  background: transparent;
}

.about-origin,
.about-founders-section,
.about-presence {
  scroll-margin-top: 112px;
}

.about-origin {
  padding-top: clamp(94px, 9vw, 132px);
}

.about-origin .home-heading {
  max-width: 900px;
}

/* The name / Greek myth --------------------------------------------- */
.about-myth {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  width: min(100%, 1060px);
  margin: 0 auto clamp(96px, 11vw, 148px);
}

.about-myth__text {
  max-width: 580px;
}

.about-myth__text h2 {
  margin: 0 0 26px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.about-myth__text p {
  margin: 0 0 20px;
  color: var(--paper-muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.7;
}

.about-myth__text p:last-child {
  margin-bottom: 0;
}

.about-myth__scene {
  justify-self: center;
  width: min(100%, 460px);
}

/* Parallax myth scene: the sun sets behind the poplars on scroll.
   --p (0 -> 1) is driven by site.js as the scene rises through the viewport;
   base --p:0 is the static/reduced-motion state (sun up). */
.myth-scene {
  --p: 0;
  --sun-set: 232px;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
}

.myth-scene img,
.myth-scene__glow {
  position: absolute;
  will-change: transform;
}

.myth-scene__glow {
  z-index: 0;
  left: 12%;
  top: -8%;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 186, 92, .55), rgba(255, 173, 120, .18) 45%, rgba(255, 173, 120, 0) 70%);
  transform: translateY(calc(var(--p) * var(--sun-set)));
}

.myth-sun {
  z-index: 1;
  left: 27%;
  top: 1%;
  width: 46%;
  height: auto;
  transform: translateY(calc(var(--p) * var(--sun-set)));
}

.myth-tree {
  bottom: 0;
  height: auto;
}

/* Back tree line (a group of poplars in one image) drifts slowly, as one. */
.myth-tree--back {
  z-index: 2;
  left: 50%;
  width: 66%;
  opacity: .97;
  transform: translate(-50%, calc(var(--p) * 9px));
}

/* Foreground poplars move independently. */
.myth-tree--left {
  z-index: 4;
  left: 0;
  width: 30%;
  transform: translate(calc(var(--p) * -5px), calc(var(--p) * -9px));
}

.myth-tree--right {
  z-index: 5;
  right: -2%;
  width: 50%;
  transform: translate(calc(var(--p) * 6px), calc(var(--p) * -13px));
}

.about-story {
  width: min(100%, 780px);
  margin-inline: auto;
  text-align: center;
}

.about-story h3 {
  margin: 0 0 24px;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.about-story p {
  max-width: 690px;
  margin: 0 auto 22px;
  color: var(--paper-muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.68;
}

.about-story p:last-child {
  margin-bottom: 0;
}

.about-founders-section {
  padding-top: clamp(82px, 8vw, 118px);
}

.about-founders-section .home-heading {
  max-width: 900px;
}

.about-founders-section .home-heading p {
  max-width: 720px;
}

.founder-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 58px) clamp(14px, 2vw, 28px);
  align-items: start;
  width: min(100%, 1000px);
  margin-inline: auto;
  padding-block: 16px 34px;
  perspective: 1500px;
}

.founder-object {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  opacity: 0;
  transform: translate3d(var(--founder-x), var(--founder-y), 0) rotate(calc(var(--founder-angle) * 2.1)) scale(.84);
  transform-origin: 50% 65%;
  transition: opacity 620ms ease var(--founder-delay), transform 980ms cubic-bezier(.2, .82, .2, 1) var(--founder-delay), filter 980ms ease var(--founder-delay);
  filter: blur(6px);
  will-change: transform, opacity, filter;
}

.founder-object__mount {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

.founder-object:nth-child(2),
.founder-object:nth-child(5) {
  margin-top: clamp(42px, 5vw, 72px);
}

.founder-gallery.is-visible .founder-object {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(var(--founder-angle)) scale(1);
  filter: blur(0);
}

.founder-gallery.is-visible.is-settled .founder-object {
  transition: transform 120ms ease;
}

.founder-gallery.is-visible.is-settled .founder-object:hover {
  z-index: 3;
  transform: translate3d(0, -12px, 40px) rotate(0) scale(1.025);
}

.founder-object__frame {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(28, 26, 76, .16));
}

.founder-object__portrait {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #faf5ef 0%, #e9e6f0 48%, #d7ddee 100%);
  box-shadow: inset 0 0 0 1px rgba(30, 35, 89, .08);
}

.founder-object--purple-ornate .founder-object__portrait {
  inset: 16.4% 25.5% 17.2%;
}

.founder-object--blue-ornate .founder-object__portrait {
  inset: 18.9% 28.2% 20% 27.1%;
}

.founder-object--orange .founder-object__portrait {
  inset: 12.2% 24.5% 17.4%;
}

.founder-object--ivory .founder-object__portrait {
  inset: 17% 23.6% 17.2%;
}

.founder-object--silver .founder-object__portrait {
  inset: 19% 28.5% 20%;
}

.founder-object--graphite .founder-object__portrait {
  inset: 17.8% 30% 20.2%;
}

.founder-object__portrait::before,
.founder-object__portrait::after {
  content: "";
  position: absolute;
  width: 130%;
  height: 1px;
  background: rgba(42, 48, 119, .12);
}

.founder-object__portrait::before {
  transform: rotate(37deg);
}

.founder-object__portrait::after {
  transform: rotate(-37deg);
}

.founder-object__portrait img {
  position: relative;
  z-index: 1;
  width: 24%;
  height: auto;
  opacity: .24;
}

.founder-object__portrait img.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.founder-plaque {
  position: relative;
  width: 78%;
  aspect-ratio: 1180 / 520;
  margin: -7% auto 0;
  filter: drop-shadow(0 15px 15px rgba(28, 26, 76, .12));
}

.founder-plaque > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.founder-plaque > span {
  position: absolute;
  z-index: 1;
  inset: 18% 12% 17%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: var(--ink-blue);
  text-align: center;
}

.founder-plaque strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: clamp(12px, 1.25vw, 17px);
  font-weight: 300;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.founder-plaque small {
  overflow: hidden;
  margin-top: 3px;
  color: var(--paper-muted);
  font-size: clamp(8px, .78vw, 10px);
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-presence {
  padding-top: clamp(88px, 9vw, 132px);
}

.about-presence .presence-map {
  width: min(calc(100% - 64px), 1120px);
  height: clamp(450px, 42vw, 590px);
  margin-inline: auto;
}

.about-presence .presence-map__media {
  top: 50%;
  right: 0;
  bottom: auto;
  width: min(48vw, 590px);
  height: auto;
  aspect-ratio: 1;
  transform: translateY(-50%);
  -webkit-mask-image: none;
  mask-image: none;
}

.about-presence .presence-map__layer {
  object-fit: contain;
  object-position: 50% 50%;
  transition: none;
}

.about-presence .presence-map:hover .presence-map__focus,
.about-presence .presence-map:focus-within .presence-map__focus {
  opacity: 1;
}

.about-presence .presence-map__stats {
  gap: 18px 34px;
}

.about-map-pin {
  position: absolute;
  z-index: 3;
  left: var(--pin-x);
  top: var(--pin-y);
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translate(-6px, -6px);
  color: #fff;
  pointer-events: none;
}

.about-map-pin i {
  display: block;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 2px 10px rgba(9, 15, 57, .55);
}

.about-map-pin b {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 1px 5px rgba(9, 15, 57, .9);
}

@media (max-width: 860px) {
  .about-home-hero .hero-home__content {
    width: min(calc(100% - 40px), 720px);
  }

  .about-myth {
    grid-template-columns: 1fr;
    gap: clamp(24px, 6vw, 40px);
    justify-items: center;
    text-align: center;
    max-width: 640px;
  }

  .about-myth__scene {
    order: -1;
    width: min(78%, 340px);
  }

  .myth-scene {
    --sun-set: 172px;
  }

  .founder-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 680px);
  }

  .founder-object:nth-child(2),
  .founder-object:nth-child(5) {
    margin-top: 36px;
  }

  .founder-object:nth-child(3),
  .founder-object:nth-child(6) {
    margin-top: -16px;
  }

  .about-presence .presence-map {
    width: min(calc(100% - 40px), 720px);
    height: auto;
  }

  .about-presence .presence-map__media {
    position: relative;
    inset: auto;
    width: min(72vw, 520px);
    height: auto;
    margin-inline: auto;
    transform: none;
  }
}

@media (max-width: 560px) {
  .page-about-new .page-shell {
    background: linear-gradient(180deg,
      #0e1543 0,
      #203776 34svh,
      #728dcc 72svh,
      #d4d5e5 100svh,
      var(--paper) 128svh,
      var(--paper) 100%);
  }

  .about-home-hero .hero-home__content {
    width: calc(100% - 36px);
  }

  .about-home-hero h1 {
    font-size: clamp(54px, 16vw, 72px);
  }

  .founder-gallery {
    gap: 2px;
    width: calc(100% + 28px);
    margin-left: -14px;
  }

  .founder-object:nth-child(2),
  .founder-object:nth-child(5) {
    margin-top: 28px;
  }

  .founder-object:nth-child(3),
  .founder-object:nth-child(6) {
    margin-top: -8px;
  }

  .founder-object {
    --founder-x: 0px !important;
  }

  .founder-plaque {
    width: 86%;
    margin-top: -4%;
  }

  .founder-plaque strong {
    font-size: 10px;
  }

  .founder-plaque small {
    font-size: 7px;
  }

  .about-presence .presence-map__media {
    width: min(88vw, 390px);
  }

  .about-presence .presence-map__stats {
    gap: 14px 20px;
  }

  .about-map-pin {
    gap: 5px;
  }

  .about-map-pin i {
    width: 9px;
    height: 9px;
    border-width: 2px;
  }

  .about-map-pin b {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .founder-object,
  .founder-gallery.is-visible .founder-object,
  .founder-gallery.is-visible.is-settled .founder-object:hover {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* V3 field system: shared app-icon placeholders and a compact Home grid. */

.home-fields-heading {
  max-width: 900px;
}

.home-fields-heading p {
  max-width: 700px;
}

.home-field-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  width: 100%;
}

.home-field {
  flex: 0 1 calc(33.333% - 12px);
  min-width: 0;
  min-height: 250px;
  padding: clamp(25px, 2.8vw, 34px);
  border: 1px solid rgba(23, 29, 79, .12);
  border-radius: 18px;
  color: var(--ink-blue);
  background: rgba(255, 255, 255, .22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .44);
  transition: transform 280ms var(--ease), border-color 280ms ease, background 280ms ease;
}

.home-field:hover,
.home-field:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(36, 15, 112, .3);
  background: rgba(255, 255, 255, .38);
}

.home-field__heading,
.domain-copy__title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-field__heading {
  margin-bottom: 22px;
}

.field-app-icon {
  display: block;
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  object-fit: cover;
  filter: drop-shadow(0 12px 17px rgba(23, 29, 79, .2));
  transition: transform 320ms var(--ease), filter 320ms ease;
}

.home-field:hover .field-app-icon,
.home-field:focus-visible .field-app-icon {
  transform: scale(1.045) rotate(-1.5deg);
  filter: drop-shadow(0 15px 20px rgba(23, 29, 79, .26));
}

.home-field h3 {
  margin: 0;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(26px, 2.45vw, 35px);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -.035em;
}

.home-field p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Services and Careers keep their page title and contact centred; all working
   content below the intro follows one strong left edge. */
.page-services .simple-page-title,
.page-careers .simple-page-title,
.page-legal .simple-page-title,
.page-privacy .simple-page-title {
  padding-top: clamp(138px, 12vw, 168px);
}

.page-services .simple-heading,
.page-careers .simple-heading {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.page-services .simple-heading p,
.page-careers .simple-heading p {
  margin-right: 0;
  margin-left: 0;
}

.page-services .service-types,
.page-services .domain-stack,
.page-services .working-grid {
  margin-right: 0;
  margin-left: 0;
}

.page-services .service-types {
  max-width: 1120px;
}

.page-services .service-type,
.page-services .domain-copy,
.page-services .mission-copy {
  text-align: left;
}

.page-services .service-type p {
  margin-right: 0;
  margin-left: 0;
}

.page-services .domain-stack {
  max-width: 1020px;
}

.page-services .domain-copy {
  scroll-margin-top: 120px;
}

.domain-copy__title {
  margin-bottom: 26px;
}

.domain-copy__title .field-app-icon {
  width: 88px;
  height: 88px;
  border-radius: 21px;
}

.domain-copy__title h3 {
  margin: 0;
}

.domain-copy__intro {
  max-width: 900px;
  margin-bottom: 46px;
}

.domain-copy__intro p {
  margin: 0 0 16px;
  color: var(--paper-muted);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.68;
}

.domain-copy__intro p:last-child {
  margin-bottom: 0;
}

.page-services .domain-details {
  max-width: 940px;
  margin-right: 0;
  margin-left: 0;
}

.page-careers .career-openings__heading {
  text-align: left;
}

.page-careers .career-openings__status {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

@media (max-width: 860px) {
  .home-field {
    flex-basis: calc(50% - 9px);
  }

  .page-services .service-types {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .home-field {
    flex-basis: 100%;
    min-height: 0;
  }

  .field-app-icon {
    width: 66px;
    height: 66px;
    border-radius: 16px;
  }

  .domain-copy__title {
    align-items: center;
    gap: 15px;
  }

  .domain-copy__title .field-app-icon {
    width: 64px;
    height: 64px;
    border-radius: 15px;
  }

  .domain-copy__title h3 {
    font-size: clamp(37px, 11vw, 52px);
  }

  .page-services .simple-page-title,
  .page-careers .simple-page-title,
  .page-legal .simple-page-title,
  .page-privacy .simple-page-title {
    padding-top: 120px;
  }

  .page-careers .career-openings__status {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-field,
  .home-field:hover,
  .home-field:focus-visible,
  .home-field .field-app-icon,
  .home-field:hover .field-app-icon,
  .home-field:focus-visible .field-app-icon {
    transform: none;
    transition: none;
  }
}

/* Mobile refinement pass.
   Keep the desktop composition unchanged while making short and narrow
   screens denser, easier to tap and safe in landscape. */
@media (max-width: 860px) {
  .edge-blur {
    display: none !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .mobile-menu {
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: max(104px, calc(env(safe-area-inset-top) + 92px));
    padding-bottom: max(34px, calc(env(safe-area-inset-bottom) + 24px));
    overscroll-behavior: contain;
  }

  .mobile-menu nav {
    margin-block: auto 0;
  }

  .mobile-menu .button {
    flex: 0 0 auto;
    margin-top: 28px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    box-sizing: border-box;
    justify-content: center;
    width: 100%;
  }

  .doc-card {
    container-type: inline-size;
  }

  .doc-card--badge .doc-card__content {
    inset: 46.5% 17% 21.5%;
  }

  .doc-card--report .report__logo {
    width: clamp(86px, 30cqw, 104px);
  }

  .doc-card--report .report__kind {
    font-size: clamp(9px, 2.8cqw, 10px);
  }

  .doc-card--report .report__title {
    font-size: clamp(24px, 8cqw, 30px);
  }

  .doc-card--report .report__lead,
  .doc-card--report .report__index li {
    font-size: clamp(11px, 3.5cqw, 13px);
  }

  .doc-card--report .report__index li span {
    font-size: clamp(9px, 2.9cqw, 10px);
  }

  .doc-card--report .text-link {
    font-size: clamp(10px, 3.2cqw, 11px);
  }

  .doc-card--badge .doc-card__logo {
    width: clamp(78px, 25cqw, 90px);
  }

  .doc-card--badge .doc-card__tag {
    font-size: clamp(7px, 2.2cqw, 8px);
  }

  .doc-card--badge h3 {
    margin-bottom: 3px;
    font-size: clamp(18px, 6cqw, 23px);
  }

  .doc-card--badge p {
    margin-bottom: 4px;
    font-size: clamp(10px, 3.25cqw, 12px);
    line-height: 1.16;
  }

  .doc-card--badge .doc-card__head {
    margin-bottom: 3px;
  }

  .doc-card--badge .doc-card__id {
    margin-bottom: 4px;
  }

  .doc-card--badge .doc-card__barcode {
    height: 11px;
  }

  .doc-card--badge .doc-card__idno {
    font-size: clamp(7px, 2.2cqw, 8px);
  }

  .doc-card--badge .text-link {
    min-height: 30px;
    font-size: clamp(10px, 3.1cqw, 11px);
  }

  .founder-object {
    container-type: inline-size;
  }

  .founder-plaque strong {
    font-size: clamp(12px, 4.5cqw, 15px);
  }

  .founder-plaque small {
    font-size: clamp(8.5px, 3cqw, 10px);
  }
}

@media (max-width: 560px) {
  .site-header {
    top: max(10px, env(safe-area-inset-top));
    width: calc(100% - 20px);
    max-width: none;
  }

  .site-header__inner {
    min-height: 58px;
    padding: 7px 8px 7px 13px;
  }

  .site-header.scrolled .site-header__inner,
  .site-header.menu-open .site-header__inner {
    padding: 7px 8px 7px 11px;
  }

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

  .language-switch {
    min-height: 44px;
    gap: 2px;
  }

  .lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 27px;
    min-height: 44px;
  }

  .hero-home__content,
  .about-home-hero .hero-home__content {
    box-sizing: border-box;
    width: calc(100% - 32px);
    padding: 112px 0 38px;
  }

  .hero-home h1,
  .about-home-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(42px, 12vw, 54px);
    line-height: .98;
  }

  .hero-home p,
  .about-home-hero p {
    margin-bottom: 24px;
    font-size: clamp(15px, 4.25vw, 17px);
    line-height: 1.45;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    min-height: 48px;
  }

  .home-heading {
    margin-bottom: 48px;
  }

  .home-heading h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .home-field {
    padding: 24px;
  }

  .contact-compose {
    width: calc(100% - 32px);
  }

  .contact-compose h2 {
    font-size: clamp(40px, 11.5vw, 54px);
  }

  .contact-chips {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .contact-chip {
    box-sizing: border-box;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    padding: 13px 18px;
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .simple-page-title {
    padding-top: 116px;
    padding-bottom: 40px;
  }

  .simple-page-title p,
  .simple-heading p {
    font-size: 16px;
    line-height: 1.5;
  }

  .page-services .simple-page-title,
  .page-careers .simple-page-title,
  .page-legal .simple-page-title,
  .page-privacy .simple-page-title {
    padding-top: 116px;
  }

  .site-footer {
    padding-top: 230px;
    background: linear-gradient(180deg,
        var(--paper) 0,
        #f0ddca 56px,
        #d4a9bb 112px,
        #7c62b6 180px,
        #232a68 245px,
        #0d1644 315px);
  }
}

@media (max-width: 340px) {
  .page-home #what-we-do {
    overflow: hidden;
  }

  .doc-cards {
    position: relative;
    left: 50%;
    width: 343px;
    max-width: none;
    margin-left: 0;
    transform: translateX(-50%);
  }

  .doc-card--report .doc-card__content {
    inset: 20% 14% 16% 21%;
  }

  .doc-card--report .report__masthead {
    margin-bottom: 10px;
  }

  .doc-card--report .report__lead {
    margin-bottom: 10px;
  }

  .doc-card--report .report__index {
    gap: 7px;
  }

  .doc-card--report .text-link {
    min-height: 34px;
  }

}

@media (max-width: 560px) and (max-height: 620px) {
  .hero,
  .about-home-hero {
    min-height: 100svh;
  }

  .hero-home__content,
  .about-home-hero .hero-home__content {
    padding-top: 98px;
    padding-bottom: 24px;
  }

  .hero-home h1,
  .about-home-hero h1 {
    margin-bottom: 16px;
    font-size: clamp(40px, 11.5vw, 50px);
  }

  .hero-home p,
  .about-home-hero p {
    margin-bottom: 20px;
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.4;
  }

  .hero-actions .text-link {
    display: none;
  }
}

@media (max-width: 860px) and (max-height: 500px) {
  .mobile-menu {
    padding: max(82px, calc(env(safe-area-inset-top) + 76px)) 24px
      max(18px, env(safe-area-inset-bottom));
  }

  .mobile-menu nav {
    width: min(100%, 620px);
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 32px;
  }

  .mobile-menu nav a {
    padding: 3px 0;
    font-size: clamp(34px, 8.5vh, 44px);
  }

  .mobile-menu .button {
    width: min(100%, 620px);
    margin: 14px auto 0;
    min-height: 46px;
  }
}

/* Mobile map crop and the standalone not-found page. */
.page-404 .page-shell,
.page-404 main {
  min-height: 100svh;
}

.page-404 main {
  display: grid;
  align-items: center;
}

.not-found {
  box-sizing: border-box;
  width: 100%;
  padding: 150px 32px 80px;
}

.not-found__content {
  width: min(100%, 1040px);
  margin-inline: auto;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  color: var(--ink-blue);
  font-family: var(--serif);
  font-size: clamp(72px, 8vw, 118px);
  font-weight: 300;
  line-height: .94;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.not-found p {
  max-width: 660px;
  margin: 30px auto 0;
  color: var(--paper-muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  text-wrap: balance;
}

.not-found__cta {
  min-width: 190px;
  min-height: 58px;
  margin-top: 34px;
  padding-inline: 30px;
  color: #fff;
  background: var(--cobalt);
  border-color: var(--cobalt);
  box-shadow: 0 18px 34px rgba(39, 95, 245, .2);
}

@media (max-width: 860px) {
  .page-home .presence-map__layer {
    top: -28px;
    bottom: auto;
    height: calc(100% + 28px);
    object-position: 40% 0%;
  }

  .not-found {
    padding: 122px 20px 52px;
  }

  .not-found h1 {
    font-size: clamp(54px, 15vw, 78px);
    line-height: .97;
  }

  .not-found p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.5;
  }

  .not-found__cta {
    box-sizing: border-box;
    width: min(100%, 360px);
    min-height: 54px;
    margin-top: 30px;
  }
}

@media (max-width: 360px) {
  .not-found h1 {
    font-size: 50px;
  }
}
