/* ============================================================
   WEBURL — design system
   Structure: warm paper base / ink text / one accent (switchable)
   Type: Gilroy (sans, 200–900) + Martian Mono (captions, brackets)
   ============================================================ */

@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-200.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("fonts/rubik-latin-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Martian Mono";
  src: url("fonts/martian-mono-latin-ext.woff2") format("woff2");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fbf2ee;
  --surface: #ffffff;
  --ink: #0d0d0d;
  --ink-soft: #57504b;
  --mono-grey: #7a736e;
  --line: rgba(13, 13, 13, 0.16);
  --line-strong: rgba(13, 13, 13, 0.28);

  --accent: #cd0402;
  --accent-deep: #a80302;
  --accent-ink: #ffffff;
  --accent-tint: #f7e2dd;

  --dark-bg: #14110f;
  --dark-card: #1d1a18;
  --dark-line: rgba(251, 242, 238, 0.16);
  --dark-text: #fbf2ee;
  --dark-soft: #b7aca4;
  --dark-mono: #948a83;

  --font-sans: "Gilroy", "Rubik", -apple-system, system-ui, sans-serif;
  --font-mono: "Martian Mono", ui-monospace, monospace;

  --gutter: 40px;
  --header-h: 76px;
  --radius: 0;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-accent="blue"] { --accent: #0a3db6; --accent-deep: #082f8c; --accent-tint: #e2e9f6; }
html[data-accent="green"] { --accent: #017d25; --accent-deep: #01621d; --accent-tint: #dcefe1; }

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s var(--ease);
}
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
img, svg { display: block; }
[hidden] { display: none !important; }
::selection { background: var(--accent); color: #fff; }

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

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 100;
  background: var(--ink); color: var(--bg);
  padding: 10px 16px; transform: translateY(-200%);
  transition: transform 0.2s;
}
.skip-link:focus { transform: none; }

.mono { font-family: var(--font-mono); font-size: 13px; line-height: 1.7; font-weight: 400; letter-spacing: 0.01em; }
.mono.bracket { color: var(--mono-grey); white-space: nowrap; }

.accent { color: var(--accent); transition: color 0.35s var(--ease); }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 30px; font-size: 16px; line-height: 1;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), transform 0.15s var(--ease), box-shadow 0.25s;
}
.button-accent { background: var(--accent); color: var(--accent-ink); }
.button-accent:hover { background: var(--accent-deep); }
.button-accent:active { transform: translateY(1px); }

.link-underline {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
  transition: text-decoration-color 0.25s, color 0.25s;
}
.link-underline:hover { color: var(--accent); }

.section-inner { padding: 96px var(--gutter); position: relative; }
.section-line { border-top: 1px solid var(--line); }

h2 { font-size: clamp(30px, 3.6vw, 52px); font-weight: 500; line-height: 1.08; letter-spacing: -0.025em; max-width: 22ch; }
h3 { font-weight: 500; letter-spacing: -0.015em; }

.metric-num { color: var(--accent); font-weight: 500; letter-spacing: -0.02em; transition: color 0.35s var(--ease); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 40px;
  height: var(--header-h);
  padding: 0 var(--gutter);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease), box-shadow 0.3s;
}
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--line), 0 12px 32px -18px rgba(13, 13, 13, 0.25); }

.header-col { display: flex; align-items: center; gap: 28px; }
.header-left { justify-self: start; }
.header-right { justify-self: end; gap: 18px; }

/* theme dots */
.theme-switch { display: flex; align-items: center; }
.theme-dot {
  width: 44px; height: 44px; display: grid; place-items: center;
}
.theme-dot span {
  width: 9px; height: 9px; border-radius: 50%;
  transition: box-shadow 0.2s, transform 0.2s;
}
.theme-dot-red span { background: #cd0402; }
.theme-dot-blue span { background: #0a3db6; }
.theme-dot-green span { background: #017d25; }
.theme-dot:hover span { transform: scale(1.35); }
.theme-dot.is-active span { box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px rgba(13, 13, 13, 0.45); }

/* nav */
.main-nav { display: flex; gap: 24px; }
.main-nav a {
  font-size: 16px; line-height: 1; position: relative; padding: 6px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); }

/* wordmark */
.wordmark { justify-self: center; display: inline-flex; align-items: center; }
.wordmark-img { height: 34px; width: auto; display: block; }
.wordmark-footer .wordmark-img { height: 46px; }

/* language switch */
.lang-switch { display: flex; border: 1px solid var(--line); }
.lang-switch button {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  padding: 8px 10px; color: var(--ink-soft);
  transition: color 0.2s, background 0.2s;
}
.lang-switch button + button { border-left: 1px solid var(--line); }
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.is-active { background: var(--ink); color: var(--bg); }

.header-cta { padding: 14px 22px; font-size: 15px; }

/* burger */
.menu-toggle { display: none; width: 44px; height: 44px; position: relative; }
.menu-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--ink);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--header-h) 0 auto 0; z-index: 39;
  background: var(--bg); border-bottom: 1px solid var(--line);
  padding: 24px var(--gutter) 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu nav a { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.mobile-languages { display: flex; border: 1px solid var(--line); align-self: flex-start; }
.mobile-languages button { font-family: var(--font-mono); font-size: 12px; padding: 10px 14px; color: var(--ink-soft); }
.mobile-languages button + button { border-left: 1px solid var(--line); }
.mobile-languages button.is-active { background: var(--ink); color: var(--bg); }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(220px, .82fr) minmax(360px, 1.55fr) minmax(280px, .86fr);
  gap: clamp(20px, 2.6vw, 44px);
  padding: 96px var(--gutter);
  min-height: calc(100svh - var(--header-h));
  align-items: center;
  overflow: hidden;
}
.hero h1 {
  font-size: clamp(30px, 2.4vw + 8px, 44px);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.03em;
  max-width: 22ch;
}
.hero h1 .accent { white-space: nowrap; }
.hero-motion {
  position: relative;
  width: 100%;
  height: clamp(300px, 38vw, 520px);
  min-width: 0;
  isolation: isolate;
  cursor: crosshair;
  opacity: 0;
  transform: scale(.965);
  animation: hero-motion-in .5s var(--ease) .12s forwards;
}
.hero-motion::before {
  content: "";
  position: absolute;
  inset: 11% 4% 12%;
  background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent) 11%, transparent), transparent 64%);
  filter: blur(18px);
  opacity: .76;
  pointer-events: none;
}
.hero-motion-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  touch-action: pan-y;
}
.hero-globe-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  touch-action: pan-y;
}
.hero-globe-video {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: var(--globe-size, 0px);
  height: var(--globe-size, 0px);
  object-fit: cover;
  border-radius: 50%;
  clip-path: circle(50%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity .12s linear;
  pointer-events: none;
}
.hero-motion.is-globe-ready { cursor: crosshair; }
.hero-motion.is-globe-ready { background-image: none; }
.hero-motion.is-globe-fallback {
  background: url("img/logo.png") center / min(74%, 660px) auto no-repeat;
}
.hero-motion-label {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 3%;
  transform: translateX(-50%);
  color: var(--mono-grey);
  font-size: 9px;
  letter-spacing: .14em;
  white-space: nowrap;
  opacity: .72;
  pointer-events: none;
}
@keyframes hero-motion-in { to { opacity: 1; transform: none; } }
.hero-stats-col { justify-self: end; width: min(360px, 100%); padding-bottom: 6px; }
.hero-metric .metric-num { font-size: clamp(40px, 3.5vw, 56px); display: block; line-height: 1; }
.hero-metric .mono { margin-top: 10px; color: var(--mono-grey); }
.hero-rule { height: 1px; background: var(--line); margin: 26px 0 22px; }
.hero-sub { margin-top: 18px; }
.hero-sub strong { display: block; font-size: 24px; font-weight: 500; letter-spacing: -0.015em; }
.hero-sub .mono { margin-top: 4px; color: var(--mono-grey); }
.hero-stats-col > .bracket { margin-bottom: 4px; }

/* ---------- situations ---------- */
.situation-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 56px;
}
.situation-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px 30px 34px;
  display: flex; flex-direction: column; min-height: 340px;
  position: relative;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.situation-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -24px rgba(13, 13, 13, 0.28);
}
.card-num { color: var(--mono-grey); font-size: 12px; }
.situation-card h3 { font-size: 26px; line-height: 1.12; margin-top: 26px; transition: color 0.3s; }
.situation-card:hover h3 { color: var(--accent); }
.card-body { color: var(--ink-soft); margin-top: 14px; font-size: 15.5px; }
.card-metric { margin-top: auto; padding-top: 34px; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.card-metric .metric-num { font-size: 30px; line-height: 1; }
.card-metric .mono { color: var(--mono-grey); font-size: 12px; flex: 1; min-width: 150px; }
.card-link {
  margin-top: 18px; font-size: 15px;
  text-decoration: underline; text-decoration-color: var(--accent);
  text-decoration-thickness: 1.5px; text-underline-offset: 6px;
  width: fit-content;
  transition: color 0.25s;
}
.card-link::after { content: " →"; }
.situation-card:hover .card-link { color: var(--accent); }

/* ---------- solutions ---------- */
.solutions-head {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  margin-bottom: 30px;
}
.solutions-head .bracket { white-space: normal; }
.solutions-count {
  color: var(--mono-grey); font-size: 12px;
  border: 1px solid var(--line); padding: 4px 10px;
}
.solution-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.solution-chips a {
  display: inline-flex; align-items: baseline; gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 14px;
  font-size: 16px; line-height: 1.45;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s;
}
.solution-chips a .mono { color: var(--mono-grey); font-size: 11px; white-space: nowrap; transition: color 0.25s; }
.solution-chips a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.solution-chips a:hover .mono { color: var(--accent); }

/* ---------- process (dark) ---------- */
.section-dark { background: var(--dark-bg); color: var(--dark-text); }
.section-dark h2 { color: var(--dark-text); }
.section-dark .bracket { color: var(--dark-mono); }

.process-track {
  display: flex; align-items: center; gap: 18px;
  margin: 52px 0 26px;
}
.process-rail {
  flex: 1; position: relative; height: 1px;
  background: var(--dark-line);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.process-rail i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--dark-text);
  position: relative; top: -3px; left: 0;
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.process-step {
  background: var(--dark-card);
  border: 1px solid var(--dark-line);
  padding: 26px 24px 28px;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.process-step:hover { border-color: var(--accent); transform: translateY(-4px); }
.process-step header { margin-bottom: 18px; }
.process-step .card-num { color: var(--dark-mono); }
.process-step h3 { font-size: 20px; line-height: 1.15; margin-top: 6px; }
.step-body { color: var(--dark-soft); font-size: 15px; margin-bottom: 22px; }
.process-step > .bracket { font-size: 11px; white-space: normal; }
.step-result { font-size: 15px; margin: 10px 0 16px; }
.step-list {
  border-top: 1px solid var(--dark-line);
  padding-top: 16px; margin-top: auto;
  display: flex; flex-direction: column; gap: 8px;
  color: var(--dark-mono); font-size: 12px;
}
.process-foot { margin-top: 48px; font-size: 17px; display: flex; gap: 12px; flex-wrap: wrap; align-items: baseline; }
.process-foot .link-underline { color: var(--dark-text); }
.process-foot .link-underline:hover { color: var(--accent); }

/* ---------- contact ---------- */
.contact { background: var(--accent-tint); transition: background 0.35s var(--ease); }
.contact-grid {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, 1fr); gap: 60px;
  align-items: start;
}
.contact-title { color: var(--accent); margin-top: 26px; transition: color 0.35s var(--ease); }
.contact-lead { margin-top: 24px; max-width: 46ch; font-size: 17px; color: var(--ink-soft); }
.contact-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.contact-lines { margin-top: 34px; display: flex; gap: 30px; flex-wrap: wrap; }
.contact-lines .mono { font-size: 14px; }

.after-list { border-top: 1px solid var(--line-strong); }
.after-list > li {
  display: flex; gap: 18px; align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-strong);
}
.after-list strong { display: block; font-size: 19px; font-weight: 500; letter-spacing: -0.01em; }
.after-list strong .metric-num { font-size: inherit; }
.after-list p { color: var(--ink-soft); font-size: 14.5px; margin-top: 5px; }
.after-list .card-num { flex: none; }

/* ---------- notes (media) ---------- */
.notes-head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.notes-head h2 { max-width: 24ch; }
.notes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.note-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 26px 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.note-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.note-card h3 { font-size: 21px; line-height: 1.2; font-weight: 500; letter-spacing: -0.014em; transition: color 0.2s; }
.note-card:hover h3 { color: var(--accent); }
.note-meta { display: flex; gap: 14px; color: var(--mono-grey); }
.note-meta .mono { font-size: 12px; }

@media (max-width: 880px) {
  .notes-grid { grid-template-columns: 1fr; }
}

/* ---------- blog & article ---------- */
.blog-list h1 { margin-top: 22px; max-width: 18ch; }
.notes-grid-blog { margin-top: 52px; }
.note-card-cover { padding: 0; overflow: hidden; }
.note-cover {
  aspect-ratio: 16 / 7;
  background: var(--dark-bg);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.note-cover-num {
  font-family: var(--font-mono); font-weight: 200;
  font-size: clamp(64px, 8vw, 110px); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  transition: transform 0.35s var(--ease);
}
.note-card-cover:hover .note-cover-num { transform: scale(1.08); }
.note-cover-tag { position: absolute; left: 14px; bottom: 10px; color: var(--dark-mono); font-size: 10.5px; letter-spacing: 0.05em; }
.note-card-cover h3 { padding: 22px 24px 6px; }
.note-card-cover .note-meta { padding: 0 24px 22px; margin-top: auto; }

.article-back { display: inline-block; margin-bottom: 34px; font-size: 13px; }
.article-head { max-width: 880px; }
.article-head .note-meta { color: var(--mono-grey); margin-bottom: 22px; }
.article-head h1 { font-size: clamp(30px, 3.4vw, 48px); font-weight: 500; line-height: 1.08; letter-spacing: -0.025em; }
.article-lead { margin-top: 24px; font-size: 19px; line-height: 1.5; color: var(--ink-soft); max-width: 60ch; }
.article-body {
  max-width: 68ch; margin-top: 52px; padding-top: 40px;
  border-top: 1px solid var(--line-strong);
}
.article-body p { margin-bottom: 22px; font-size: 17px; line-height: 1.65; }
.article-body p strong { font-weight: 600; }
.article-next { margin-top: 64px; }
.article-next .note-card { max-width: 560px; padding: 22px 26px; gap: 8px; }

@media (max-width: 880px) {
  .article-head h1 { font-size: clamp(26px, 7vw, 34px); }
}

/* ---------- footer (dark) ---------- */
.site-footer { background: var(--dark-bg); color: var(--dark-text); }
.site-footer .section-inner { padding-top: 72px; padding-bottom: 40px; }
.wordmark-footer .wordmark-svg { width: 236px; }

.footer-cols {
  display: grid; grid-template-columns: minmax(0, 2fr) minmax(160px, 1fr) minmax(200px, 1fr);
  gap: 40px;
  border-top: 1px solid var(--dark-line);
  margin-top: 56px; padding-top: 44px;
}
.site-footer .bracket { color: var(--dark-mono); margin-bottom: 20px; white-space: normal; }
.footer-sol-grid { columns: 2; column-gap: 32px; }
.footer-sol-grid a, .footer-links-col a, .footer-addr {
  display: block; padding: 7px 0; font-size: 15.5px; color: #d9d0ca;
  break-inside: avoid;
  transition: color 0.2s;
}
.footer-links-col { display: flex; flex-direction: column; }
.footer-sol-grid a:hover, .footer-links-col a:hover { color: var(--accent); }
.footer-addr { color: var(--dark-mono); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap;
  margin-top: 64px; padding-top: 26px;
  border-top: 1px solid var(--dark-line);
  color: var(--dark-mono);
  font-size: 13px;
}
.footer-bottom .bracket { margin: 0; }
.footer-copy { font-family: var(--font-mono); font-size: 12px; flex: 1 1 460px; text-align: right; }

/* ---------- modal ---------- */
.modal { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(13, 13, 13, 0.55); animation: fade 0.25s var(--ease); }
.modal-panel {
  position: relative; background: var(--bg);
  width: min(560px, 100%);
  padding: 44px 44px 40px;
  border-top: 4px solid var(--accent);
  box-shadow: 0 40px 90px -30px rgba(13, 13, 13, 0.5);
  animation: rise 0.35s var(--ease);
}
@keyframes fade { from { opacity: 0; } }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } }
.modal-close {
  position: absolute; top: 10px; right: 14px;
  font-size: 30px; line-height: 1; padding: 6px 10px; color: var(--ink-soft);
  transition: color 0.2s;
}
.modal-close:hover { color: var(--accent); }
.modal-panel h2 { font-size: clamp(26px, 3vw, 36px); margin-top: 18px; }
.modal-form { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.modal-form label { display: flex; flex-direction: column; gap: 8px; }
.modal-form label span { font-family: var(--font-mono); font-size: 11px; color: var(--mono-grey); letter-spacing: 0.04em; }
.modal-form input, .modal-form textarea {
  font: inherit; color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 13px 16px; border-radius: 0;
  transition: border-color 0.2s;
  resize: vertical;
}
.modal-form input:focus, .modal-form textarea:focus { outline: none; border-color: var(--accent); }
.modal-form input[aria-invalid="true"], .modal-form textarea[aria-invalid="true"] { border-color: #b00000; box-shadow: 0 0 0 2px rgba(176,0,0,.12); }
.field-error { min-height: 1.2em; margin-top: 6px; color: #9e0000; font-size: 12px; line-height: 1.3; }
.modal-form input.is-invalid { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.modal-form .button { align-self: flex-start; }
.modal-direct { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }
.modal-success strong { display: block; font-size: 24px; font-weight: 500; margin-bottom: 8px; }
.modal-success p { color: var(--ink-soft); }

/* ---------- privacy note ---------- */
.privacy-note {
  position: fixed; left: var(--gutter); bottom: 24px; z-index: 50;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -24px rgba(13, 13, 13, 0.35);
  max-width: 560px;
  padding: 22px 24px;
  display: flex; align-items: center; gap: 24px;
  font-size: 14.5px; color: var(--ink-soft);
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.privacy-note .button { padding: 13px 24px; font-size: 14px; flex: none; }
.privacy-note.is-hidden { opacity: 0; transform: translateY(16px); pointer-events: none; }

/* ---------- fab ---------- */
.fab {
  position: fixed; right: 32px; bottom: 32px; z-index: 45;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--surface); color: var(--accent);
  display: grid; place-items: center;
  box-shadow: 0 10px 32px -8px rgba(13, 13, 13, 0.35);
  transition: transform 0.35s var(--ease), color 0.35s, box-shadow 0.3s;
}
.fab svg { width: 24px; height: 24px; transition: transform 0.35s var(--ease); }
.fab:hover { transform: scale(1.08); }
.fab:hover svg { transform: translate(2px, -2px); }

/* ---------- reveal ---------- */
.reveal { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js-motion .reveal:not(.is-visible) { opacity: .72; transform: translateY(18px); }
.js-motion .blog-note.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }
.situation-grid .reveal:nth-child(2), .process-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.situation-grid .reveal:nth-child(3), .process-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.process-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.solution-chips .reveal:nth-child(n+2) { transition-delay: 0.03s; }
.solution-chips .reveal:nth-child(n+4) { transition-delay: 0.06s; }
.solution-chips .reveal:nth-child(n+7) { transition-delay: 0.09s; }
.solution-chips .reveal:nth-child(n+10) { transition-delay: 0.12s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  :root { --gutter: 28px; }
  .wordmark-img { height: 30px; }
  .header-col { gap: 18px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-rail { display: none; }
  .process-track { justify-content: space-between; }
  .hero { grid-template-columns: minmax(190px, .8fr) minmax(320px, 1.25fr) minmax(240px, .85fr); }
}

@media (max-width: 880px) {
  .main-nav, .lang-switch { display: none; }
  .menu-toggle { display: block; }
  .site-header { grid-template-columns: auto 1fr auto; gap: 16px; }
  .wordmark { justify-self: start; }
  .header-cta { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 62px; align-items: start; gap: 28px; min-height: 0; }
  .hero-motion { grid-row: 2; height: clamp(280px, 66vw, 440px); width: min(720px, 100%); justify-self: center; }
  .hero-stats-col { grid-row: 3; }
  .hero-stats-col { justify-self: start; }
  .situation-grid { grid-template-columns: 1fr; }
  .situation-card { min-height: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: 1fr; gap: 36px; }
  .footer-sol-grid { columns: 1; }
  .privacy-note { left: 16px; right: 16px; bottom: 16px; max-width: none; flex-direction: column; align-items: stretch; gap: 14px; }
  .fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .section-inner { padding: 64px var(--gutter); }
  .modal-panel { padding: 34px 26px 30px; }
}

@media (max-width: 520px) {
  :root { --gutter: 18px; --header-h: 64px; }
  .theme-dot { width: 34px; height: 34px; }
  .wordmark-img { height: 26px; }
  .wordmark-footer .wordmark-img { height: 38px; }
  .hero-motion { height: 250px; width: calc(100% + 20px); margin-left: -10px; }
  .process-grid { grid-template-columns: 1fr; }
  .contact-actions .button { width: 100%; }
  .contact-lines { flex-direction: column; gap: 14px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

/* ============================================================
   WEBURL / SIGNAL EDITION — 2026 redesign
   Editorial Belgian grid, kinetic signal graphics, tactile type.
   ============================================================ */

:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --ink: #0b0b0b;
  --ink-soft: #545454;
  --mono-grey: #747474;
  --line: rgba(11, 11, 11, .14);
  --line-strong: rgba(11, 11, 11, .3);
  --dark-bg: #0b0b0b;
  --dark-card: #141414;
  --gutter: clamp(18px, 3.25vw, 52px);
  --header-h: 88px;
  --page-max: 1560px;
}

body {
  background:
    radial-gradient(circle at 12% 4%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 25rem),
    var(--bg);
  overflow-x: clip;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: .032;
  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)' opacity='.9'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.section-inner { width: min(100%, var(--page-max)); margin-inline: auto; padding: clamp(92px, 10vw, 164px) var(--gutter) clamp(112px, 12vw, 190px); }
.section-line { border-top: 0; }
.section-line::before {
  content: "";
  display: block;
  width: calc(100% - var(--gutter) * 2);
  max-width: calc(var(--page-max) - var(--gutter) * 2);
  height: 1px;
  margin: auto;
  background: var(--line);
}
h2 { font-size: clamp(42px, 5vw, 78px); line-height: .98; font-weight: 540; letter-spacing: -.055em; text-wrap: balance; }
h3, p { text-wrap: pretty; }
.mono { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.bracket { text-transform: uppercase; }

/* floating masthead */
.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  width: calc(100% - 28px);
  max-width: calc(var(--page-max) - 28px);
  height: 62px;
  transform: translateX(-50%);
  padding: 0 16px 0 12px;
  border: 1px solid rgba(23, 19, 16, .13);
  border-radius: 8px;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  box-shadow: inset 0 1px rgba(255,255,255,.6), 0 12px 42px rgba(87, 46, 32, .07);
  transition: width .5s var(--ease), background .3s, box-shadow .3s;
}
.site-header.is-scrolled { width: min(920px, calc(100% - 28px)); background: color-mix(in srgb, var(--surface) 92%, transparent); box-shadow: 0 18px 54px rgba(87,46,32,.13); }
.site-header .wordmark-img { height: 28px; }
.header-left { gap: 22px; }
.main-nav { gap: 18px; }
.main-nav a { font-size: 13px; }
.theme-dot { width: 25px; height: 32px; }
.theme-switch { display: flex; }
.theme-dot span { width: 7px; height: 7px; }
.lang-switch { border: 0; gap: 2px; }
.lang-switch button { border: 0 !important; padding: 7px 8px; }
.lang-switch button.is-active { background: var(--accent); color: #fff; }
.header-cta { padding: 12px 17px; font-size: 13px; }

/* hero: full reference-scale WebGL stage */
.hero {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  min-height: 100dvh;
  padding: 77px var(--gutter) 119px;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) 38% minmax(250px, 1fr);
  grid-template-rows: 1fr;
  gap: clamp(24px, 3.3vw, 52px);
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(62vw, 920px);
  height: min(46vw, 650px);
  right: -4vw;
  top: 9%;
  background: url("img/grand-place-engraving-v2.webp") center / contain no-repeat;
  opacity: .12;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(34vw, 470px);
  aspect-ratio: 1;
  right: 13%;
  top: 18%;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 12px, rgba(184,154,98,.13) 13px 14px);
  mask-image: radial-gradient(circle, #000 0 45%, transparent 72%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 2; }
.hero-title-col { grid-column: 1; grid-row: 1; position: relative; z-index: 3; align-self: center; }
.hero-kicker { color: var(--mono-grey); margin: 0 0 18px 4px; }
.hero h1 { max-width: 9ch; font-size: clamp(42px, 4.35vw, 68px); line-height: .93; font-weight: 560; letter-spacing: -.057em; text-wrap: balance; }
.hero h1 .accent { display: block; width: fit-content; margin: 9px 0 0; white-space: normal; color: var(--accent); font-weight: 420; font-style: normal; }
.hero-motion {
  position: absolute;
  z-index: 1;
  inset: 77px 0 119px;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  border: 0;
  pointer-events: none;
}
.hero-motion::before { inset: 3% 22%; opacity: .18; filter: blur(38px); }
.hero-motion-label { left: 50%; bottom: 7px; transform: translateX(-50%); }
.hero-stats-col {
  grid-column: 3;
  grid-row: 1;
  z-index: 3;
  width: min(300px, 100%);
  justify-self: end;
  align-self: center;
  padding: 25px;
  color: #fff;
  background: var(--accent);
  box-shadow: 18px 18px 0 color-mix(in srgb, var(--accent) 18%, transparent);
  transform: rotate(1.2deg);
}
.hero-stats-col > * { transform: rotate(-1.2deg); }
.hero-metric .metric-num { color: #fff; font-size: clamp(60px, 6vw, 92px); letter-spacing: -.07em; }
.hero-metric .mono, .hero-stats-col .mono, .hero-stats-col > .bracket { color: rgba(255,255,255,.7); }
.hero-rule { background: rgba(255,255,255,.3); }
.hero-sub { display: grid; grid-template-columns: .7fr 1.3fr; align-items: baseline; gap: 12px; border-top: 1px solid rgba(255,255,255,.22); padding-top: 13px; }
.hero-sub strong { font-size: 18px; }

/* situations: editorial mosaic, not three equal cards */
.situations { position: relative; overflow: hidden; }
.situations::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -4vw;
  bottom: -13%;
  width: min(38vw, 530px);
  height: min(62vw, 820px);
  background: url("img/manneken-pis-historic-cc0.webp") center 30% / cover no-repeat;
  opacity: .18;
  filter: sepia(1) saturate(.58) contrast(.82) brightness(1.1);
  mix-blend-mode: multiply;
  mask-image: radial-gradient(ellipse 74% 68% at 50% 42%, #000 24%, rgba(0,0,0,.72) 58%, transparent 88%);
  pointer-events: none;
}
.situations .section-inner { position: relative; z-index: 1; }
.situations .section-inner { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(42px, 8vw, 130px); }
.situations h2 { position: sticky; top: 120px; }
.situation-grid { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.situation-card { min-height: 390px; border: 0; background: var(--surface); padding: 28px; box-shadow: none; }
.situation-card:first-child { grid-column: 1 / -1; min-height: 340px; }
.situation-card:hover { transform: none; box-shadow: none; background: color-mix(in srgb, var(--surface) 87%, var(--accent)); }
.situation-card h3 { font-size: clamp(26px, 2.4vw, 38px); }
.situation-card::after { content: "↗"; position: absolute; right: 26px; top: 22px; font-size: 24px; color: var(--accent); transform: rotate(0); transition: transform .3s var(--ease); }
.situation-card:hover::after { transform: rotate(45deg); }

/* services become a typographic index */
.solutions { counter-reset: services; }
.solutions { position: relative; overflow: hidden; }
.solutions::before {
  content: "";
  position: absolute;
  right: -12vw;
  top: 7%;
  width: min(46vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .55;
  background:
    repeating-radial-gradient(circle, transparent 0 16px, rgba(184,154,98,.11) 17px 18px),
    radial-gradient(circle, rgba(184,154,98,.08), transparent 68%);
  pointer-events: none;
}
.solutions::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -5vw;
  bottom: -4%;
  width: min(31vw, 450px);
  height: min(48vw, 690px);
  background: url("img/bruges-belfry-engraving-v2.webp") center bottom / contain no-repeat;
  opacity: .08;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.solutions .section-inner { position: relative; z-index: 1; }
.solutions-head { margin-bottom: 56px; align-items: flex-end; }
.solutions-head .bracket { font-size: 13px; }
.solutions-count { border: 0; font-size: clamp(46px, 6vw, 88px); line-height: .8; color: var(--accent); }
.solution-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; border-top: 1px solid var(--line-strong); }
.solution-chips li { counter-increment: services; border-bottom: 1px solid var(--line); }
.solution-chips a { position: relative; width: 100%; min-height: 92px; padding: 24px 50px 22px 44px; border: 0; background: transparent; justify-content: space-between; font-size: clamp(19px, 1.8vw, 28px); line-height: 1.05; }
.solution-chips a::before { content: counter(services, decimal-leading-zero); position: absolute; left: 0; top: 28px; font: 10px var(--font-mono); color: var(--mono-grey); }
.solution-chips a::after { content: "↗"; position: absolute; right: 2px; top: 24px; color: var(--accent); opacity: 0; transform: translate(-8px, 8px); transition: .25s var(--ease); }
.solution-chips a:hover { transform: none; color: var(--accent); }
.solution-chips a:hover::after { opacity: 1; transform: none; }

/* technical base / full outsourcing campaign */
.outsourcing {
  margin: 0 var(--gutter) clamp(10px, 1vw, 18px);
  background: var(--dark-bg);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.outsourcing::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 70% 24%, #000, transparent 70%);
}
.outsourcing::after {
  content: none;
}
.outsourcing-marquee {
  overflow: hidden;
  background: var(--accent);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.outsourcing-marquee div {
  width: max-content;
  padding: 11px 0 10px;
  font: 500 11px/1 var(--font-mono);
  letter-spacing: .08em;
  word-spacing: .65em;
  animation: outsourcing-marquee 28s linear infinite;
}
@keyframes outsourcing-marquee { to { transform: translateX(-50%); } }
.outsourcing .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
  gap: clamp(56px, 8vw, 130px);
  position: relative;
  z-index: 1;
  padding-top: clamp(90px, 9vw, 145px);
  padding-bottom: clamp(88px, 10vw, 158px);
}
.outsourcing-intro { align-self: center; }
.outsourcing-intro, .outsourcing-lead { min-width: 0; }
.outsourcing .bracket { color: rgba(255,255,255,.48); }
.outsourcing-intro h2 { margin-top: 27px; max-width: 13ch; }
.outsourcing-lead { margin-top: 32px; max-width: 57ch; color: rgba(255,255,255,.68); font-size: clamp(17px, 1.35vw, 21px); line-height: 1.55; }

.tech-core {
  position: relative;
  min-height: 530px;
  aspect-ratio: 1;
  align-self: center;
  justify-self: end;
  width: min(100%, 590px);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.tech-core::before, .tech-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.tech-core::before { inset: 8%; border: 1px dashed rgba(255,255,255,.15); animation: core-spin 35s linear infinite; }
.tech-core::after { inset: 25%; background: radial-gradient(circle, rgba(205,4,2,.28), rgba(205,4,2,.04) 52%, transparent 53%); filter: blur(1px); }
.core-orbit { position: absolute; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; }
.core-orbit-a { inset: 16%; animation: core-spin 18s linear infinite; }
.core-orbit-b { inset: 29%; border-color: color-mix(in srgb, var(--accent) 74%, transparent); animation: core-spin 12s linear infinite reverse; }
.core-orbit i { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 7px rgba(205,4,2,.12), 0 0 26px rgba(205,4,2,.6); }
.core-orbit-a i:nth-child(1) { left: 11%; top: 17%; }
.core-orbit-a i:nth-child(2) { right: -5px; top: 50%; }
.core-orbit-a i:nth-child(3) { left: 29%; bottom: 2%; background: #fff; box-shadow: 0 0 0 7px rgba(255,255,255,.08); }
.core-orbit-b i:nth-child(1) { left: -5px; top: 52%; }
.core-orbit-b i:nth-child(2) { right: 16%; top: 10%; background: #fff; box-shadow: 0 0 0 7px rgba(255,255,255,.08); }
.core-pulse { position: absolute; width: 32%; aspect-ratio: 1; border: 1px solid var(--accent); border-radius: 50%; animation: core-pulse 2.8s var(--ease) infinite; }
.core-name { position: relative; z-index: 2; width: 29%; aspect-ratio: 1; border-radius: 50%; background: var(--accent); display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 0 80px rgba(205,4,2,.28); }
.core-name strong { font-size: clamp(20px, 2.2vw, 34px); line-height: 1; letter-spacing: -.04em; }
.core-name .mono { margin-top: 8px; color: rgba(255,255,255,.65); font-size: 7px; }
.core-label { position: absolute; color: rgba(255,255,255,.54); font-size: 9px; }
.core-label::before { content: ""; display: inline-block; width: 24px; height: 1px; margin-right: 8px; vertical-align: middle; background: var(--accent); }
.core-label-a { left: 0; top: 25%; }
.core-label-b { right: 0; top: 34%; }
.core-label-c { left: 4%; bottom: 25%; }
.core-label-d { right: 5%; bottom: 17%; }
@keyframes core-spin { to { transform: rotate(360deg); } }
@keyframes core-pulse { 0%,100% { transform: scale(.94); opacity: .35; } 50% { transform: scale(1.25); opacity: .9; } }

.outsourcing-capabilities {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.16);
  margin-top: 18px;
}
.outsourcing-capabilities li {
  min-height: 265px;
  padding: 28px 30px 34px;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.outsourcing-capabilities li:nth-child(2), .outsourcing-capabilities li:nth-child(4) { transform: translateY(42px); }
.outsourcing-capabilities li::after { content: "+"; position: absolute; right: 25px; bottom: 10px; color: rgba(255,255,255,.08); font-size: 100px; font-weight: 200; transition: transform .5s var(--ease), color .3s; }
.outsourcing-capabilities li:hover { background: #fff; color: var(--ink); }
.outsourcing-capabilities li:hover::after { color: var(--accent); transform: rotate(45deg); }
.outsourcing-capabilities .mono { color: var(--accent); }
.outsourcing-capabilities h3 { margin-top: 55px; max-width: 13ch; font-size: clamp(27px, 2.4vw, 39px); line-height: 1; }
.outsourcing-capabilities p { margin-top: 18px; max-width: 48ch; color: rgba(255,255,255,.58); line-height: 1.55; transition: color .3s; }
.outsourcing-capabilities li:hover p { color: var(--ink-soft); }

.outsourcing-offer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(48px, 8vw, 130px);
  margin-top: 92px;
  padding: clamp(34px, 5vw, 74px);
  background: var(--accent);
  color: #fff;
  position: relative;
}
.outsourcing-offer::before { content: "OUTSOURCE"; position: absolute; right: -1vw; bottom: -2.5vw; color: rgba(255,255,255,.08); font-size: clamp(60px, 11vw, 180px); font-weight: 650; letter-spacing: -.08em; line-height: .8; }
.outsourcing-offer > div { position: relative; z-index: 1; }
.outsourcing-offer .bracket { color: rgba(255,255,255,.62); }
.outsourcing-offer h3 { margin-top: 24px; font-size: clamp(32px, 4vw, 62px); line-height: .98; letter-spacing: -.045em; max-width: 15ch; }
.outsourcing-offer p:not(.bracket) { font-size: clamp(16px, 1.4vw, 20px); line-height: 1.55; color: rgba(255,255,255,.75); max-width: 48ch; }
.outsourcing-link { display: inline-flex; gap: 18px; align-items: center; margin-top: 35px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.65); font-weight: 500; }
.outsourcing-link span { transition: transform .3s var(--ease); }
.outsourcing-link:hover span { transform: translate(5px, -5px); }

/* complete service universe: sticky narrative + original technical diagrams */
.service-universe {
  position: relative;
  overflow: clip;
  background: #f8f7f5;
  color: var(--ink);
}
.service-universe::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(10,10,10,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}
.service-universe > * { position: relative; z-index: 1; }
.service-universe-head { padding-bottom: 64px; }
.service-universe-title {
  display: grid;
  grid-template-columns: minmax(0,1.18fr) minmax(320px,.82fr);
  gap: clamp(42px,8vw,130px);
  align-items: end;
  margin-top: 30px;
}
.service-universe-title h2 { max-width: 12ch; font-size: clamp(52px,7.3vw,112px); line-height: .88; letter-spacing: -.065em; text-wrap: balance; }
.service-universe-title p { max-width: 54ch; font-size: clamp(17px,1.35vw,21px); line-height: 1.55; color: var(--ink-soft); }
.mission-proof {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  margin-top: 68px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
.mission-proof span { min-height: 112px; padding: 18px; background: #f8f7f5; display: flex; flex-direction: column; justify-content: space-between; }
.mission-proof strong { color: var(--accent); font: 500 11px/1 var(--font-mono); }
.mission-proof i { max-width: 16ch; font-style: normal; font-size: 15px; line-height: 1.25; }
.service-scroll {
  display: grid;
  grid-template-columns: minmax(390px,.88fr) minmax(480px,1.12fr);
  gap: clamp(56px,8vw,128px);
  padding-top: 0;
  padding-bottom: 120px;
  align-items: start;
}
.service-chapters { min-width: 0; }
.service-chapter {
  min-height: min(72svh,720px);
  padding: clamp(70px,9vh,110px) 0 58px;
  border-top: 1px solid var(--line-strong);
  opacity: .3;
  transform: translateX(-18px);
  transition: opacity .45s var(--ease), transform .6s var(--ease);
}
.service-chapter:first-child { border-top-color: var(--accent); }
.service-chapter.is-active { opacity: 1; transform: none; }
.service-chapter-kicker { color: var(--accent); }
.service-chapter h3 { margin-top: 25px; max-width: 15ch; font-size: clamp(34px,4vw,64px); line-height: .95; letter-spacing: -.047em; text-wrap: balance; }
.service-chapter > p:not(.service-chapter-kicker) { margin-top: 24px; max-width: 55ch; color: var(--ink-soft); font-size: 17px; line-height: 1.55; }
.service-chapter ul { margin-top: 38px; max-width: 650px; border-top: 1px solid var(--line); }
.service-chapter li { position: relative; padding: 13px 22px 13px 20px; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.35; }
.service-chapter li::before { content: ""; position: absolute; left: 1px; top: 20px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.service-model-stage {
  position: sticky;
  top: 88px;
  height: calc(100svh - 128px);
  min-height: 590px;
  overflow: hidden;
  align-self: start;
  isolation: isolate;
  background: #101211;
  border: 0;
  box-shadow: 0 24px 72px rgba(14,14,14,.18);
}
.service-model-stage::before,
.service-model-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.service-model-stage::before { display: none; }
.service-model-stage::after { display: none; }
.service-model-canvas { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; display: block; opacity: 0; transition: opacity .8s ease-out; }
.service-model-stage.is-3d-ready .service-model-canvas { opacity: 1; }
.service-sculpture-fallback .service-model-canvas { opacity: 0 !important; }
.service-sculpture-fallback .service-model-stage { background-color: #0e0e0e; }
.service-system-telemetry { position: absolute; z-index: 3; top: 29px; left: 31px; color: #d4d4d2; font-size: 10px; letter-spacing: .06em; }
.service-system-telemetry span:first-child::before { content: ""; display: inline-block; width: 17px; height: 1px; margin: 0 10px 3px 0; background: #e00d0a; }
.service-model-label { position: absolute; z-index: 3; left: 31px; right: 100px; bottom: 27px; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.service-model-label span { color: #e00d0a; font-size: 14px; }
.service-model-label strong { max-width: 27ch; text-align: right; color: #f1f0ec; font: 500 14px/1.35 var(--font-sans); transition: opacity .25s, transform .25s; }
.service-model-stage.is-changing .service-model-label strong { animation: model-label-in .7s var(--ease); }
.service-mobile-visual { display: none; }
@keyframes model-label-in { 0% { opacity: 0; transform: translateY(8px); } 100% { opacity: 1; transform: none; } }
.article-language-note { margin-bottom: 28px; color: var(--accent); }
.mission-manifesto {
  margin-bottom: clamp(10px,1vw,18px);
  padding: clamp(64px,8vw,120px);
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(50px,8vw,130px);
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
  color: #fff;
}
.mission-manifesto::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 28%, rgba(205,4,2,.26), transparent 35%); pointer-events: none; }
.mission-code { grid-column: 1/-1; color: var(--accent); font-size: clamp(12px,1.3vw,18px); letter-spacing: .14em; }
.mission-copy,.mission-detail { position: relative; z-index: 1; }
.mission-copy .bracket { color: rgba(255,255,255,.48); }
.mission-copy h2 { margin-top: 25px; max-width: 11ch; font-size: clamp(45px,5.7vw,86px); line-height: .9; letter-spacing: -.06em; }
.mission-detail { align-self: end; }
.mission-detail > p:first-child { max-width: 53ch; color: rgba(255,255,255,.72); font-size: clamp(17px,1.35vw,21px); line-height: 1.58; }
.mission-night { margin-top: 35px; max-width: 30ch; font-size: clamp(25px,2.4vw,38px); line-height: 1.03; letter-spacing: -.035em; }
.mission-confidential { margin-top: 38px; padding: 13px 0; border-block: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.58); line-height: 1.5; }
.mission-detail .button { margin-top: 31px; }

/* continuous dark chapter */
.process { margin: 0 var(--gutter); border-radius: 2px; position: relative; overflow: hidden; }
.process::before { content: "WEBURL"; position: absolute; right: -2vw; top: -5vw; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.08); font-size: 22vw; font-weight: 700; letter-spacing: -.09em; line-height: 1; }
.process .section-inner { position: relative; z-index: 1; }
.process-track { margin: 64px 0 18px; }
.process-grid { gap: 0; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--dark-line); }
.process-step { min-height: 490px; border: 0; border-right: 1px solid var(--dark-line); background: transparent; padding: 28px 24px 34px 0; margin-right: 24px; }
.process-step:last-child { border-right: 0; margin-right: 0; }
.process-step:hover { transform: translateY(-8px); border-color: var(--accent); }
.process-step h3 { font-size: clamp(23px, 2vw, 31px); }
.step-list { background: rgba(255,255,255,.035); padding: 16px; }

/* notes as a horizontal publication strip */
.notes { position: relative; overflow: hidden; }
.notes::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -7vw;
  top: 2%;
  width: min(53vw, 780px);
  height: min(37vw, 540px);
  background: url("img/tournai-cathedral-engraving-v2.webp") center / contain no-repeat;
  opacity: .075;
  mix-blend-mode: multiply;
  mask-image: linear-gradient(to left, #000 25%, transparent 92%);
  pointer-events: none;
}
.notes .section-inner { position: relative; z-index: 1; }
.notes-head h2 { max-width: 15ch; }
.notes-grid { grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.note-card { min-height: 310px; border: 0; background: var(--surface); padding: 24px; }
.note-card:nth-child(even) { background: color-mix(in srgb, var(--surface) 82%, var(--accent)); }
.note-card:hover { transform: translateY(-8px); box-shadow: 0 20px 0 color-mix(in srgb, var(--accent) 12%, transparent); }
.note-card h3 { font-size: clamp(20px, 1.8vw, 28px); }
.note-meta { margin-top: auto; }

/* contact is the chromatic climax */
.contact { margin: 0 var(--gutter); background: var(--accent); color: #fff; overflow: hidden; position: relative; }
.contact::after { content: "@"; position: absolute; right: -3vw; bottom: -13vw; font-size: 40vw; line-height: 1; font-weight: 600; color: rgba(255,255,255,.075); }
.contact::before { display: none; }
.contact .section-inner { position: relative; z-index: 1; }
.contact-grid { grid-template-columns: 1.4fr .8fr; }
.contact-title, .contact .bracket, .contact-lead, .contact-lines a, .contact .link-underline { color: #fff; }
.contact-title { font-size: clamp(56px, 8vw, 118px); max-width: 8ch; }
.contact-lead { color: rgba(255,255,255,.76); }
.contact .button-accent { background: #fff; color: var(--accent); }
.after-list { border-color: rgba(255,255,255,.35); }
.after-list > li { border-color: rgba(255,255,255,.28); }
.after-list p { color: rgba(255,255,255,.68); }
.contact .card-num { color: rgba(255,255,255,.6); }

/* footer and secondary pages */
.site-footer { margin-top: 0; }
.site-footer .section-inner { padding-top: 90px; }
.footer-cols { grid-template-columns: 1.5fr .5fr .65fr; }
.blog-list, .article { padding-top: 112px; min-height: 75dvh; }
.blog-list { position: relative; }
.blog-list::before, .article::before { content: ""; position: absolute; inset: 88px 0 auto; height: 42vw; max-height: 590px; background-image: url("img/bruges-belfry-engraving-v2.webp"), repeating-radial-gradient(circle at 80% 30%, transparent 0 20px, rgba(184,154,98,.11) 21px 22px); background-position: 88% 16%, center; background-size: min(37vw, 520px) auto, auto; background-repeat: no-repeat, repeat; opacity: .38; mask-image: linear-gradient(to left, #000, transparent 82%); pointer-events: none; }
.blog-list h1 { position: relative; font-size: clamp(58px, 9vw, 138px); line-height: .87; letter-spacing: -.07em; max-width: 10ch; }
.notes-grid-blog { grid-template-columns: repeat(2, 1fr); gap: 1px; position: relative; }
.notes-grid-blog .note-card { min-height: 520px; }
.note-cover { aspect-ratio: 16 / 8.2; background: var(--accent); }
.note-cover::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, transparent 0 18px, rgba(255,255,255,.16) 19px 20px); transform: translateX(-12%); transition: transform .8s var(--ease); }
.note-card-cover:hover .note-cover::before { transform: translateX(12%); }
.note-cover-num { color: transparent; -webkit-text-stroke-color: rgba(255,255,255,.8); }
.article-inner { display: grid; grid-template-columns: minmax(0, .65fr) minmax(520px, 1fr); column-gap: clamp(50px, 10vw, 170px); }
.article-back { grid-column: 1 / -1; }
.article-head { position: sticky; top: 120px; align-self: start; }
.article-head h1 { font-size: clamp(46px, 5.5vw, 82px); line-height: .94; letter-spacing: -.055em; }
.article-body { margin: 100px 0 0; padding-top: 30px; }
.article-next { grid-column: 2; }

.privacy-note { border: 0; box-shadow: 0 20px 60px rgba(87,46,32,.14); }
.fab { border: 1px solid var(--line); box-shadow: 0 14px 42px rgba(87,46,32,.18); }

@media (max-width: 1100px) {
  .hero { grid-template-columns: minmax(240px,1fr) 32% minmax(250px,.9fr); }
  .situations .section-inner { grid-template-columns: 1fr; }
  .situations h2 { position: static; max-width: 16ch; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .notes-grid { grid-template-columns: 1fr 1fr; }
  .article-inner { grid-template-columns: 1fr; }
  .article-head { position: static; }
  .article-body, .article-next { grid-column: 1; }
  .outsourcing .section-inner { grid-template-columns: minmax(0, 1fr); }
  .tech-core { justify-self: center; width: min(620px, 100%); }
  .service-scroll { grid-template-columns: minmax(340px,.9fr) minmax(420px,1.1fr); gap: 42px; }
}

@media (max-width: 880px) {
  :root { --header-h: 76px; }
  .site-header { top: 8px; width: calc(100% - 16px); }
  .site-header.is-scrolled { width: calc(100% - 16px); }
  .header-left { order: 2; }
  .theme-switch { display: none; }
  .hero { min-height: auto; padding: 126px 18px 58px; grid-template-columns: 1fr; grid-template-rows: auto min(92vw,60svh) auto; gap: 24px; overflow: hidden; }
  .hero-title-col { grid-column: 1; grid-row: 1; }
  .hero h1 { max-width: 10ch; font-size: clamp(48px,13vw,84px); }
  .hero h1 .accent { margin-left: 0; }
  .hero::before { width: 110vw; height: 72vw; right: -42vw; top: 15%; opacity: .075; }
  .hero::after { width: 70vw; right: -24vw; top: 22%; opacity: .65; }
  .hero-motion { position: relative; inset: auto; grid-column: 1; grid-row: 2; width: calc(100% + 36px); margin-left: -18px; height: min(92vw,60svh); min-height: 0; }
  .hero-motion-label { bottom: 0; }
  .hero-stats-col { grid-column: 1; grid-row: 3; width: min(430px, calc(100% - 14px)); margin-left: auto; }
  .situation-grid { grid-template-columns: 1fr; }
  .situation-card:first-child { grid-column: 1; }
  .solution-chips { grid-template-columns: 1fr; }
  .process { margin: 0 8px; }
  .outsourcing { margin-inline: 8px; }
  .outsourcing-offer { grid-template-columns: 1fr; }
  .contact { margin: 0 8px; }
  .contact-grid { grid-template-columns: 1fr; }
  .notes-grid-blog { grid-template-columns: 1fr; }
  .notes-grid-blog .note-card { min-height: 430px; }
  .footer-cols { grid-template-columns: 1fr; }
  .situations::after { width: 76vw; height: 118vw; left: -34vw; bottom: -3%; opacity: .13; }
  .solutions::after { width: 62vw; height: 96vw; left: -31vw; opacity: .055; }
  .notes::after { width: 92vw; height: 65vw; right: -46vw; opacity: .055; }
  .service-universe-title { grid-template-columns: 1fr; gap: 28px; }
  .mission-proof { grid-template-columns: 1fr 1fr; }
  .service-scroll { grid-template-columns: 1fr; gap: 24px; padding-bottom: 70px; }
  .service-model-stage { position: relative; top: auto; order: -1; height: min(104vw,560px); min-height: 390px; }
  .service-chapter { min-height: 0; opacity: 1; transform: none; padding: 65px 0 52px; }
  .mission-manifesto { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero { padding-inline: 18px; }
  .hero h1 { font-size: clamp(47px, 14.2vw, 72px); }
  .hero-kicker { font-size: 8px; }
  .hero-motion { margin-left: -18px; width: calc(100% + 36px); height: min(92vw,60svh); }
  .hero-stats-col { padding: 22px; }
  .hero-sub { grid-template-columns: 1fr; gap: 3px; }
  .situation-grid, .notes-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .tech-core { min-height: 350px; }
  .outsourcing .section-inner { padding-inline: 18px; }
  .outsourcing-intro h2 { font-size: clamp(40px, 12.2vw, 58px); }
  .outsourcing-lead { overflow-wrap: anywhere; }
  .outsourcing .bracket { white-space: normal; }
  .core-label { font-size: 7px; }
  .core-label::before { width: 12px; }
  .outsourcing-capabilities { grid-template-columns: 1fr; }
  .outsourcing-capabilities li, .outsourcing-capabilities li:nth-child(2), .outsourcing-capabilities li:nth-child(4) { transform: none; min-height: 235px; }
  .outsourcing-capabilities h3 { margin-top: 38px; }
  .outsourcing-offer { margin-top: 42px; padding: 28px 22px 38px; }
  .process-step { min-height: 410px; border-right: 0; border-bottom: 1px solid var(--dark-line); margin: 0; padding-right: 0; }
  .notes-grid-blog .note-card { min-height: 390px; }
  .contact-title { font-size: 15vw; }
  .footer-copy { text-align: left; }
  .service-universe-head,.service-scroll { padding-inline: 18px; }
  .service-universe-title h2 { font-size: clamp(46px,13vw,68px); }
  .mission-proof { grid-template-columns: 1fr; }
  .service-model-stage { min-height: 350px; }
  .service-chapter h3 { font-size: clamp(34px,10vw,50px); }
  .mission-manifesto { margin-inline: 8px; padding: 48px 22px 58px; }
  .mission-copy h2 { font-size: clamp(44px,12.5vw,64px); }
}

/* ============================================================
   WEBURL / SPATIAL SYSTEM V3
   One collision-safe grid from wide desktop to narrow mobile.
   ============================================================ */

:root {
  --section-pad-top: clamp(68px, 5.7vw, 90px);
  --section-pad-bottom: clamp(78px, 7vw, 112px);
  --panel-gap: clamp(28px, 4vw, 64px);
}

html { scroll-padding-top: 94px; }
main > section[id] { scroll-margin-top: 92px; }
.section-inner {
  padding-top: var(--section-pad-top);
  padding-bottom: var(--section-pad-bottom);
}
.situations { background: rgba(255,255,255,.36); }
.solutions { background: color-mix(in srgb, var(--bg) 91%, #ddd9d4); }
.notes { background: rgba(255,255,255,.28); }

/* The interaction caption is a real grid item now, never laid over the globe. */
.hero-motion-label {
  position: absolute;
  z-index: 4;
  left: 50%;
  right: auto;
  top: auto;
  bottom: 52px;
  width: max-content;
  max-width: calc(100% - var(--gutter) * 2);
  padding: 7px 10px 6px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(-50%);
  line-height: 1.25;
  text-align: center;
}

/* Keep editorial cards filled but remove artificial holes from displaced rows. */
.outsourcing-capabilities li:nth-child(2),
.outsourcing-capabilities li:nth-child(4) { transform: none; }
.service-chapter { min-height: min(66svh, 650px); }
.service-scroll { padding-top: 0; padding-bottom: clamp(78px, 7vw, 112px); }
.process-step { min-height: 455px; }
.note-card { min-height: 290px; }

@media (min-width: 1181px) {
  .hero { overflow: clip; }
  .situations .section-inner { align-items: start; }
  .situation-grid { align-self: start; }
}

/* Tablet and compact desktop: explicit rows replace the unsafe 3-column overlay. */
@media (max-width: 1180px) {
  :root { --gutter: clamp(24px, 3.3vw, 38px); }

  .hero {
    min-height: auto;
    padding: 110px var(--gutter) 72px;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 310px);
    grid-template-rows: auto min(68vw, 620px) auto;
    column-gap: clamp(32px, 5vw, 64px);
    row-gap: 30px;
    align-items: start;
  }
  .hero-title-col { grid-column: 1; grid-row: 1; align-self: center; }
  .hero h1 { max-width: 10ch; font-size: clamp(54px, 6.6vw, 78px); }
  .hero-stats-col {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    align-self: start;
  }
  .hero-motion {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    grid-row: 2;
    width: calc(100% + var(--gutter) * 2);
    height: min(68vw, 620px);
    margin-left: calc(var(--gutter) * -1);
  }
  .hero-motion-label {
    position: static;
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: center;
    transform: none;
    margin-top: -12px;
  }

  .situations .section-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .situations h2 { position: static; max-width: 16ch; }
  .situation-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .situation-card,
  .situation-card:first-child { grid-column: auto; min-height: 330px; }

  .outsourcing .section-inner { gap: 48px; }
  .tech-core { min-height: 470px; width: min(540px, 74vw); }
  .outsourcing-offer { margin-top: 54px; }

  .service-universe-title h2 { font-size: clamp(56px, 8.6vw, 94px); }
  .process-step { min-height: 420px; }
}

/* Narrow tablets: media becomes its own block; text cards never collide with it. */
@media (max-width: 960px) {
  :root {
    --section-pad-top: clamp(70px, 9vw, 90px);
    --section-pad-bottom: clamp(78px, 10vw, 104px);
  }

  .service-universe-title { grid-template-columns: 1fr; gap: 28px; }
  .service-universe-title p { max-width: 62ch; }
  .service-scroll { grid-template-columns: 1fr; gap: 30px; }
  .service-model-stage {
    position: relative;
    top: auto;
    order: -1;
    width: 100%;
    height: min(62vw, 520px);
    min-height: 410px;
  }
  .service-chapters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 1px;
    background: var(--line);
  }
  .service-chapter {
    min-height: 0;
    padding: 40px 34px 44px;
    border: 0;
    background: color-mix(in srgb, #f8f7f5 95%, var(--accent));
    opacity: 1;
    transform: none;
  }
  .service-chapter:nth-child(4n+2),
  .service-chapter:nth-child(4n+3) { background: #fff; }
  .service-chapter h3 { font-size: clamp(31px, 4.8vw, 48px); }
  .service-chapter ul { margin-top: 30px; }
  .mission-manifesto { grid-template-columns: 1fr; gap: 38px; }

  .article-inner { row-gap: 42px; }
  .article-body { margin-top: 0; }
}

@media (max-width: 760px) {
  :root {
    --gutter: 18px;
    --section-pad-top: 64px;
    --section-pad-bottom: 76px;
  }

  .section-line::before { width: calc(100% - 36px); }
  .site-header { height: 62px; }

  .hero {
    padding: 118px 18px 54px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto min(92vw, 60svh) auto auto;
    row-gap: 0;
  }
  .hero-title-col { grid-column: 1; grid-row: 1; }
  .hero h1 { max-width: 9.6ch; font-size: clamp(47px, 14.2vw, 76px); }
  .hero-motion {
    grid-column: 1;
    grid-row: 2;
    width: calc(100% + 36px);
    height: min(92vw, 60svh);
    margin: 0 0 0 -18px;
  }
  .hero-motion-label {
    grid-column: 1;
    grid-row: 3;
    max-width: 100%;
    margin: 15px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    white-space: normal;
  }
  .hero-stats-col {
    grid-column: 1;
    grid-row: 4;
    width: 100%;
    margin: 34px 0 0;
    padding: 21px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 18px;
    transform: none;
    box-shadow: 9px 9px 0 color-mix(in srgb, var(--accent) 15%, transparent);
  }
  .hero-stats-col > * { transform: none; }
  .hero-metric {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(255,255,255,.28);
  }
  .hero-metric .metric-num { font-size: clamp(66px, 20vw, 88px); }
  .hero-metric .mono { max-width: 15ch; margin: 0 0 7px; text-align: right; }
  .hero-rule { display: none; }
  .hero-stats-col > .bracket { grid-column: 1 / -1; margin: 0; }
  .hero-sub { display: block; margin: 0; padding: 14px 0 2px; border-top: 1px solid rgba(255,255,255,.22); }
  .hero-sub + .hero-sub { padding-left: 15px; border-left: 1px solid rgba(255,255,255,.22); }
  .hero-sub strong { font-size: 17px; }

  .situations .section-inner { gap: 38px; }
  .situations h2 { max-width: 12ch; }
  .situation-grid { grid-template-columns: 1fr; }
  .situation-card,
  .situation-card:first-child {
    min-height: 250px;
    padding: 24px 22px 26px;
  }
  .situation-card h3 { margin-top: 20px; }
  .card-metric { padding-top: 24px; }

  .solutions-head { margin-bottom: 34px; }
  .solution-chips { gap: 0; }
  .solution-chips a {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    gap: 7px;
    min-height: 76px;
    padding: 18px 42px 17px 36px;
    font-size: clamp(18px, 5.7vw, 24px);
  }
  .solution-chips a .mono { font-size: 10px; }
  .solution-chips a::before { top: 22px; }
  .solution-chips a::after { top: 18px; opacity: .5; transform: none; }

  .outsourcing { margin-inline: 8px; }
  .outsourcing .section-inner { padding-inline: 18px; gap: 34px; }
  .outsourcing-intro h2 { max-width: 11ch; }
  .tech-core { min-height: 0; width: min(100%, 390px); aspect-ratio: 1; }
  .outsourcing-capabilities { grid-template-columns: 1fr; margin-top: 6px; }
  .outsourcing-capabilities li,
  .outsourcing-capabilities li:nth-child(2),
  .outsourcing-capabilities li:nth-child(4) { min-height: 210px; padding: 24px 22px 28px; }
  .outsourcing-capabilities h3 { margin-top: 32px; }
  .outsourcing-offer { margin-top: 28px; padding: 30px 22px 36px; gap: 30px; }

  .service-universe-head,
  .service-scroll { padding-inline: 18px; }
  .service-universe .bracket { white-space: normal; }
  .service-universe-head { padding-bottom: 42px; }
  .service-universe-title h2 { font-size: clamp(45px, 13vw, 66px); }
  .mission-proof { grid-template-columns: 1fr 1fr; margin-top: 42px; }
  .mission-proof span { min-height: 96px; }
  .service-model-stage { height: min(92vw, 390px); min-height: 310px; }
  .service-model-label { right: 74px; }
  .service-chapters { grid-template-columns: 1fr; gap: 10px; padding: 0; background: transparent; }
  .service-chapter {
    padding: 32px 23px 34px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.78);
  }
  .service-chapter:nth-child(even) { background: color-mix(in srgb, #fff 91%, var(--accent)); }
  .service-chapter h3 { font-size: clamp(33px, 9.8vw, 49px); }
  .service-chapter > p:not(.service-chapter-kicker) { font-size: 16px; }
  .service-chapter li { padding-right: 4px; }
  .mission-manifesto { margin-inline: 8px; padding: 48px 22px 56px; }

  .process { margin-inline: 8px; }
  .process .section-inner { padding-inline: 20px; }
  .process-track { margin-top: 38px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step {
    min-height: 0;
    margin: 0;
    padding: 34px 0 38px;
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }
  .process-step:hover { transform: none; }
  .process-step header { display: grid; grid-template-columns: 34px 1fr; align-items: start; }
  .process-step h3 { margin-top: 0; }
  .step-list { margin-top: 24px; }

  .notes-head { align-items: flex-start; margin-bottom: 34px; }
  .notes-grid { grid-template-columns: 1fr; }
  .note-card { min-height: 230px; padding: 23px; }

  .contact { margin-inline: 8px; }
  .contact .section-inner { padding-inline: 20px; }
  .contact-grid { gap: 56px; }
  .contact-title { font-size: clamp(48px, 14vw, 70px); }
  .contact-actions { align-items: flex-start; gap: 24px; }
  .contact-actions .button { width: 100%; }
  .fab { display: none; }

  .site-footer .section-inner { padding: 68px 18px 34px; }
  .footer-cols { gap: 42px; }
  .footer-sol-grid { columns: 1; }

  .blog-list,
  .article { padding-top: 94px; }
  .blog-list h1 { font-size: clamp(54px, 17vw, 86px); }
  .notes-grid-blog .note-card { min-height: 340px; }
  .article-head h1 { font-size: clamp(44px, 12vw, 64px); }
  .article-body { padding-top: 0; }
}

@media (max-width: 380px) {
  .hero { padding-inline: 16px; }
  .hero-motion { width: calc(100% + 32px); margin-left: -16px; }
  .hero-stats-col { grid-template-columns: 1fr; }
  .hero-sub + .hero-sub { padding-left: 0; border-left: 0; }
  .mission-proof { grid-template-columns: 1fr; }
  .service-model-label { left: 16px; right: 16px; }
  .service-model-label strong { max-width: 18ch; font-size: 9px; }
}

/* ============================================================
   WEBURL / FIELD JOURNAL
   An editorial index with its own rhythm, not a repeated card grid.
   ============================================================ */
.blog-page { background: #f7f7f5; }
.blog-page .blog-list {
  min-height: 0;
  padding-top: 92px;
  overflow: clip;
  isolation: isolate;
}
.blog-page .blog-list::before {
  inset: 0;
  height: 100%;
  max-height: none;
  background-image:
    linear-gradient(rgba(13,13,13,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,13,13,.045) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .56;
  mask-image: linear-gradient(to bottom, #000 0, transparent 38%, #000 72%, transparent 100%);
  z-index: -1;
}
.blog-editorial { padding-top: clamp(38px, 4.6vw, 72px); }
.blog-mast {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
  min-height: min(690px, calc(100svh - 138px));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.blog-mast-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: clamp(42px, 6vw, 88px) clamp(32px, 5vw, 76px) clamp(44px, 5.5vw, 78px) 0;
}
.blog-page .blog-list h1 {
  max-width: 8.8ch;
  margin-top: auto;
  font-size: clamp(64px, 7.75vw, 116px);
  font-weight: 430;
  line-height: .88;
  letter-spacing: -.072em;
  text-wrap: balance;
}
.blog-deck {
  max-width: 48ch;
  margin-top: clamp(30px, 4vw, 56px);
  padding-left: clamp(32px, 7vw, 110px);
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.42;
}
.blog-topics {
  margin-top: 28px;
  padding-left: clamp(32px, 7vw, 110px);
  color: var(--accent);
  font-size: 9px;
  line-height: 1.5;
}
.blog-signal {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  background: #101010;
  color: #fff;
}
.blog-signal::before {
  content: "";
  position: absolute;
  width: 64%;
  aspect-ratio: 1;
  right: -22%;
  top: -14%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(255,255,255,.025), 0 0 0 88px rgba(255,255,255,.018);
  animation: blog-signal-breathe 8s ease-in-out infinite alternate;
}
.blog-signal::after {
  content: "";
  position: absolute;
  left: 0;
  top: 54%;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform-origin: left;
  animation: blog-scan 5.6s var(--ease) infinite;
}
.blog-signal-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.075) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(135deg, #000, transparent 80%);
}
.blog-signal-issue { position: absolute; top: 28px; left: 30px; color: rgba(255,255,255,.58); font-size: 9px; }
.blog-signal-mark {
  position: absolute;
  left: 4%;
  bottom: -15%;
  color: transparent;
  font-size: clamp(330px, 33vw, 520px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.13em;
  -webkit-text-stroke: 1px rgba(255,255,255,.32);
  transform: scaleX(1.16);
}
.blog-signal-ring { position: absolute; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; }
.blog-signal-ring-a { width: 210px; height: 210px; right: 14%; top: 28%; animation: blog-orbit 13s linear infinite; }
.blog-signal-ring-b { width: 92px; height: 92px; right: 34%; top: 44%; border-color: color-mix(in srgb, var(--accent) 82%, transparent); animation: blog-orbit 8s linear infinite reverse; }
.blog-signal-dot { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.blog-signal-dot-a { top: 27%; left: 19%; animation: blog-dot 6s ease-in-out infinite alternate; }
.blog-signal-dot-b { top: 67%; right: 17%; animation: blog-dot 4.5s ease-in-out .7s infinite alternate-reverse; }
.blog-signal-dot-c { width: 4px; height: 4px; bottom: 16%; left: 43%; background: #fff; animation: blog-dot 7s ease-in-out 1.2s infinite alternate; }
.blog-signal-coordinate { position: absolute; right: 28px; bottom: 25px; color: rgba(255,255,255,.56); font-size: 9px; text-align: right; }

.blog-index-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 0 25px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--mono-grey);
  font-size: 10px;
}
.blog-index {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-left: 1px solid var(--line-strong);
}
.blog-note {
  position: relative;
  display: grid;
  grid-template-rows: minmax(260px, .9fr) auto;
  min-width: 0;
  min-height: 500px;
  overflow: hidden;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(255,255,255,.74);
  transition: color .35s var(--ease), background .35s var(--ease);
}
.blog-note:nth-of-type(1) { grid-column: 1 / span 8; min-height: 660px; grid-template-columns: minmax(0, 1.13fr) minmax(300px, .87fr); grid-template-rows: 1fr; }
.blog-note:nth-of-type(2) { grid-column: 9 / span 4; min-height: 660px; background: var(--accent); color: #fff; }
.blog-note:nth-of-type(3), .blog-note:nth-of-type(4) { grid-column: span 6; min-height: 480px; }
.blog-note-visual { position: relative; min-height: 260px; overflow: hidden; background: #e9e9e5; }
.blog-note-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, currentColor 0 1.2px, transparent 1.4px);
  background-size: 10px 10px;
  color: rgba(13,13,13,.28);
  mask-image: radial-gradient(circle at 58% 48%, #000 0 32%, transparent 67%);
  transition: transform .9s var(--ease);
}
.blog-note:nth-of-type(2) .blog-note-visual { background: #101010; color: #fff; }
.blog-note:nth-of-type(3) .blog-note-visual { background: #dcdcd7; }
.blog-note:nth-of-type(3) .blog-note-visual::before { background-size: 7px 7px; transform: skewX(-12deg) scale(1.2); }
.blog-note:nth-of-type(4) .blog-note-visual { background: var(--accent); }
.blog-note:nth-of-type(4) .blog-note-visual::before { color: rgba(255,255,255,.58); mask-image: linear-gradient(108deg, transparent 22%, #000 22% 56%, transparent 56%); }
.blog-note-number {
  position: absolute;
  left: 20px;
  bottom: -14%;
  color: transparent;
  font-size: clamp(150px, 17vw, 250px);
  font-weight: 560;
  line-height: 1;
  letter-spacing: -.09em;
  -webkit-text-stroke: 1px currentColor;
  opacity: .65;
  transition: transform .8s var(--ease), opacity .35s;
}
.blog-note:nth-of-type(2) .blog-note-number,
.blog-note:nth-of-type(4) .blog-note-number { color: transparent; -webkit-text-stroke-color: rgba(255,255,255,.78); }
.blog-note-axis { position: absolute; left: 9%; right: 8%; top: 42%; height: 1px; background: currentColor; opacity: .34; transform: rotate(-7deg); }
.blog-note-orbit { position: absolute; width: min(42%, 210px); aspect-ratio: 1; top: 13%; right: 10%; border: 1px solid currentColor; border-radius: 50%; opacity: .34; }
.blog-note-orbit::before { content: ""; position: absolute; width: 9px; height: 9px; top: 8%; left: 18%; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 10px color-mix(in srgb, var(--accent) 12%, transparent); }
.blog-note:nth-of-type(2) .blog-note-orbit::before,
.blog-note:nth-of-type(4) .blog-note-orbit::before { background: #fff; box-shadow: 0 0 0 10px rgba(255,255,255,.14); }
.blog-note-copy { position: relative; display: flex; flex-direction: column; padding: clamp(24px, 3vw, 40px); }
.blog-note-top { display: flex; justify-content: space-between; gap: 20px; color: var(--mono-grey); font-size: 9px; }
.blog-note:nth-of-type(2) .blog-note-top { color: rgba(255,255,255,.68); }
.blog-note h2 { max-width: 15ch; margin: 42px 0 60px; font-size: clamp(30px, 3vw, 47px); line-height: 1.02; letter-spacing: -.045em; text-wrap: balance; }
.blog-note:nth-of-type(2) h2 { font-size: clamp(31px, 3.35vw, 48px); }
.blog-note-meta { display: grid; grid-template-columns: 1fr auto auto; align-items: end; gap: 16px; margin-top: auto; padding-top: 20px; border-top: 1px solid currentColor; font-size: 9px; }
.blog-note:nth-of-type(2) .blog-note-meta { border-color: rgba(255,255,255,.4); }
.blog-note:hover { background: #fff; }
.blog-note:nth-of-type(2):hover { background: var(--accent-deep); }
.blog-note:hover .blog-note-visual::before { transform: scale(1.16) rotate(4deg); }
.blog-note:nth-of-type(3):hover .blog-note-visual::before { transform: skewX(-12deg) scale(1.36) translateX(3%); }
.blog-note:hover .blog-note-number { transform: translate3d(8px,-10px,0); opacity: .92; }

.blog-dispatch {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: clamp(48px, 8vw, 130px);
  margin-top: clamp(76px, 9vw, 130px);
  padding: clamp(50px, 6.5vw, 94px);
  overflow: hidden;
  background: #101010;
  color: #fff;
}
.blog-dispatch::after { content: "W"; position: absolute; right: -1%; bottom: -30%; color: transparent; font-size: clamp(250px, 30vw, 480px); font-weight: 700; line-height: 1; -webkit-text-stroke: 1px rgba(255,255,255,.11); pointer-events: none; }
.blog-dispatch .bracket { color: rgba(255,255,255,.58); }
.blog-dispatch h2 { position: relative; z-index: 1; max-width: 12ch; margin-top: 55px; font-size: clamp(43px, 5.3vw, 78px); line-height: .96; letter-spacing: -.055em; }
.blog-dispatch-action { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; }
.blog-dispatch-action p { max-width: 38ch; color: rgba(255,255,255,.7); font-size: 18px; line-height: 1.5; }
.blog-dispatch .button-light { margin-top: 38px; background: #fff; color: #101010; }
.blog-dispatch .button-light:hover { background: var(--accent); color: #fff; }

@keyframes blog-scan { 0%, 12% { transform: scaleX(0); opacity: 0; } 34%, 78% { transform: scaleX(1); opacity: 1; } 100% { transform: scaleX(1); opacity: 0; } }
@keyframes blog-orbit { to { transform: rotate(360deg); } }
@keyframes blog-dot { to { transform: translate3d(42px,-18px,0); } }
@keyframes blog-signal-breathe { to { transform: scale(1.1) translate3d(-12px,16px,0); } }

@media (max-width: 1080px) {
  .blog-mast { grid-template-columns: minmax(0, 1fr) minmax(350px, .74fr); }
  .blog-page .blog-list h1 { font-size: clamp(62px, 8.6vw, 96px); }
  .blog-note:nth-of-type(1) { grid-column: 1 / span 8; grid-template-columns: 1fr; grid-template-rows: minmax(300px, 1fr) auto; }
  .blog-note:nth-of-type(2) { grid-column: 9 / span 4; }
}

@media (max-width: 820px) {
  .blog-page .blog-list { padding-top: 78px; }
  .blog-mast { grid-template-columns: 1fr; min-height: 0; }
  .blog-mast-copy { min-height: 570px; padding-right: 0; }
  .blog-page .blog-list h1 { font-size: clamp(58px, 12.5vw, 92px); }
  .blog-deck, .blog-topics { padding-left: clamp(26px, 8vw, 70px); }
  .blog-signal { min-height: min(78vw, 550px); }
  .blog-index { grid-template-columns: 1fr; border-left: 1px solid var(--line-strong); }
  .blog-note:nth-of-type(n) { grid-column: 1; min-height: 0; grid-template-columns: minmax(260px, .86fr) minmax(0, 1.14fr); grid-template-rows: minmax(390px, auto); }
  .blog-note h2, .blog-note:nth-of-type(2) h2 { font-size: clamp(31px, 5.7vw, 46px); }
  .blog-dispatch { grid-template-columns: 1fr; }
  .blog-dispatch-action { padding-left: clamp(0px, 11vw, 90px); }
}

@media (max-width: 600px) {
  .blog-editorial { padding-inline: 16px; padding-bottom: 84px; }
  .blog-mast-copy { min-height: 500px; padding-top: 36px; padding-bottom: 44px; }
  .blog-page .blog-list h1 { max-width: 9.3ch; font-size: clamp(52px, 16.2vw, 76px); }
  .blog-deck { margin-top: 28px; padding-left: 26px; font-size: 16px; }
  .blog-topics { padding-left: 26px; font-size: 8px; }
  .blog-signal { min-height: 390px; }
  .blog-signal-mark { bottom: -5%; font-size: 295px; }
  .blog-signal-ring-a { width: 170px; height: 170px; }
  .blog-index-head { align-items: flex-start; }
  .blog-index-head p { max-width: 25ch; }
  .blog-note:nth-of-type(n) { display: grid; grid-template-columns: 1fr; grid-template-rows: 250px auto; }
  .blog-note-copy { min-height: 330px; padding: 23px 21px 25px; }
  .blog-note h2, .blog-note:nth-of-type(2) h2 { margin: 35px 0 48px; font-size: clamp(29px, 9.3vw, 40px); }
  .blog-note-number { font-size: 155px; }
  .blog-note-meta { gap: 10px; }
  .blog-dispatch { gap: 52px; margin-top: 72px; padding: 42px 22px 52px; }
  .blog-dispatch h2 { margin-top: 34px; font-size: clamp(42px, 12vw, 58px); }
  .blog-dispatch-action { padding-left: 0; }
  .blog-dispatch-action p { font-size: 16px; }
  .blog-dispatch .button-light { width: 100%; }
}

@media (max-width: 960px) {
  .service-model-stage { display: none; }
  .service-mobile-visual {
    display: block;
    position: relative;
    width: 100%;
    height: clamp(290px, 86vw, 420px);
    margin: 28px 0 8px;
    overflow: hidden;
    background: #101211;
    border: 0;
  }
  .service-mobile-visual canvas { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
  .service-mobile-visual .service-model-canvas { z-index: 2; opacity: 1; }
  .service-sculpture-fallback .service-mobile-visual .service-model-canvas { opacity: 0; }
  .service-chapter { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .blog-signal::before, .blog-signal::after, .blog-signal-ring, .blog-signal-dot { animation: none; }
}

@media (max-width: 600px) {
  .service-system-telemetry { top: 12px; right: 12px; gap: 6px; font-size: 6px; }
  .service-model-hint { top: 12px; left: 12px; max-width: 15ch; font-size: 6px; }
  .service-model-label { left: 12px; right: 12px; bottom: 12px; gap: 12px; }
  .service-model-label strong { max-width: 24ch; font-size: 8px; }
  .privacy-note { padding: 12px 14px; gap: 8px; flex-direction: row; font-size: 12px; line-height: 1.25; }
  .privacy-note .button { padding: 10px 12px; font-size: 12px; }
}

/* Service stories: each chapter has its own literal 3D object and matching fallback. */
.service-model-stage,
.service-mobile-visual {
  background-color: #101214;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.service-sculpture-fallback .service-model-stage[data-scene="equipment"], .service-sculpture-fallback .service-mobile-visual[data-scene="equipment"] { background-image: url("service-references/equipment.jpg"); }
.service-sculpture-fallback .service-model-stage[data-scene="support"], .service-sculpture-fallback .service-mobile-visual[data-scene="support"] { background-image: url("service-references/support.jpg"); }
.service-sculpture-fallback .service-model-stage[data-scene="network"], .service-sculpture-fallback .service-mobile-visual[data-scene="network"] { background-image: url("service-references/network.jpg"); }
.service-sculpture-fallback .service-model-stage[data-scene="ai"], .service-sculpture-fallback .service-mobile-visual[data-scene="ai"] { background-image: url("service-references/automation.jpg"); }
.service-sculpture-fallback .service-model-stage[data-scene="product"], .service-sculpture-fallback .service-mobile-visual[data-scene="product"] { background-image: url("service-references/product.jpg"); }
.service-sculpture-fallback .service-model-stage[data-scene="operations"], .service-sculpture-fallback .service-mobile-visual[data-scene="operations"] { background-image: url("service-references/operations.jpg"); }
.service-scene-poster { z-index: 1; }
.service-sculpture-fallback .service-scene-poster { display: none; }
.service-model-controls {
  position: absolute;
  z-index: 4;
  top: 22px;
  right: 22px;
  display: flex;
  gap: 6px;
}
.service-model-control {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #f5f3ee;
  background: rgba(16, 18, 20, .64);
  border: 1px solid rgba(245, 243, 238, .45);
  border-radius: 50%;
  font: 400 20px/1 var(--font-sans);
  cursor: pointer;
  transition: background .18s ease-out, border-color .18s ease-out, transform .18s ease-out;
}
.service-model-control:hover,
.service-model-control:focus-visible { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.service-model-control:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.service-model-control:disabled { opacity: .35; cursor: default; }
.service-model-control:disabled:hover { background: rgba(16, 18, 20, .64); border-color: rgba(245, 243, 238, .45); transform: none; }
@media (max-width: 960px) {
  .service-mobile-visual { background-size: cover; }
  .service-mobile-visual.is-3d-active .service-scene-poster { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .service-model-control { transition: none; }
}

/* legal/studio pages */
.article-body h2 { margin: 52px 0 18px; font-size: clamp(20px, 2vw, 26px); font-weight: 600; letter-spacing: -0.015em; }
.article-body h2:first-child { margin-top: 0; }
.article-body ul { margin: 0 0 22px; padding-left: 0; list-style: none; }
.article-body li { position: relative; padding: 6px 0 6px 22px; font-size: 16px; line-height: 1.55; color: var(--ink-soft); }
.article-body li::before { content: ""; position: absolute; left: 2px; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.article-body .legal-meta { font-size: 13px; }
.article-body a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.article-body .legal-id { border: 1px solid var(--line); border-radius: 12px; padding: 22px 26px; margin: 0 0 26px; }
.article-body .legal-id li { padding-top: 8px; padding-bottom: 8px; }

/* ============================================================
   WEBURL / NANO BANANA GRID — approved 2026 concept
   The existing masthead is intentionally left untouched.
   ============================================================ */

.home-page {
  --nb-bg: #f6f4ee;
  --nb-ink: #090909;
  --nb-muted: #575551;
  --nb-line: rgba(9, 9, 9, .17);
  --nb-line-strong: rgba(9, 9, 9, .58);
  --nb-red-soft: color-mix(in srgb, var(--accent) 18%, var(--nb-bg));
  color: var(--nb-ink);
  background-color: var(--nb-bg);
  background-image: linear-gradient(90deg, rgba(9, 9, 9, .075) 1px, transparent 1px);
  background-size: calc((min(100vw, var(--page-max)) - (var(--gutter) * 2)) / 12) 100%;
  background-position: center top;
}
.home-page::before { opacity: .045; }
.home-page main { overflow: clip; }
.home-page .section-inner {
  width: min(100%, var(--page-max));
  padding: clamp(76px, 7vw, 108px) var(--gutter) clamp(88px, 8vw, 126px);
}
.home-page h2 {
  max-width: 21ch;
  font-size: clamp(42px, 4.25vw, 64px);
  font-weight: 560;
  line-height: .96;
  letter-spacing: -.055em;
}
.home-page .section-line::before {
  width: min(calc(100% - var(--gutter) * 2), calc(var(--page-max) - var(--gutter) * 2));
  background: var(--nb-line-strong);
}
.home-page .button { border-radius: 2px; box-shadow: none; }
.home-page .button:hover { transform: translateY(-2px); }

/* Hero — three-zone translation of the approved desktop render. */
.home-page .hero {
  width: min(100%, var(--page-max));
  min-height: min(820px, 100dvh);
  margin: 0 auto;
  padding: 118px var(--gutter) 42px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 1fr;
  gap: 0;
  align-items: center;
  overflow: visible;
}
.home-page .hero::before,
.home-page .hero::after { content: none; }
.home-page .hero-title-col {
  grid-column: 1 / 6;
  grid-row: 1;
  align-self: center;
  padding-right: clamp(24px, 3vw, 46px);
}
.home-page .hero-kicker {
  margin: 0 0 22px;
  color: var(--nb-ink);
  font-size: 9px;
  letter-spacing: .065em;
}
.home-page .hero h1 {
  max-width: 10ch;
  font-size: clamp(48px, 4.35vw, 66px);
  font-weight: 580;
  line-height: .96;
  letter-spacing: -.06em;
  text-wrap: balance;
}
.home-page .hero h1 .accent {
  display: block;
  width: auto;
  margin: 8px 0 0;
  color: var(--accent);
  font-weight: 470;
  line-height: .96;
}
.home-page .hero-motion {
  position: relative;
  inset: auto;
  grid-column: 6 / 11;
  grid-row: 1;
  justify-self: center;
  width: clamp(390px, 34vw, 500px);
  height: clamp(390px, 34vw, 500px);
  min-height: 0;
  margin: 0;
  pointer-events: auto;
}
.home-page .hero-motion::before { content: none; }
.home-page .hero-globe-canvas { filter: contrast(1.16); }
.home-page .hero-motion.is-globe-ready .hero-globe-video {
  opacity: .62 !important;
  filter: saturate(.72) contrast(1.03);
}
.home-page .hero-motion-label { display: none; }
.home-page .hero-discover { display: none; }
.home-page .hero-stats-col {
  grid-column: 11 / 13;
  grid-row: 1;
  align-self: center;
  justify-self: stretch;
  width: 100%;
  padding: 0 0 0 clamp(16px, 1.7vw, 26px);
  color: var(--nb-ink);
  background: transparent;
  border-left: 1px solid color-mix(in srgb, var(--accent) 74%, transparent);
  box-shadow: none;
  transform: none;
}
.home-page .hero-stats-col > * { transform: none; }
.home-page .hero-metric,
.home-page .hero-sub { position: relative; padding-top: 23px; }
.home-page .hero-metric::before,
.home-page .hero-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 9px;
  border-block: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  background: linear-gradient(90deg, var(--accent) 0 22%, transparent 22% 31%, var(--nb-red-soft) 31% 100%);
}
.home-page .hero-metric .metric-num {
  color: var(--nb-ink);
  font-size: clamp(48px, 4.4vw, 66px);
  font-weight: 560;
  letter-spacing: -.065em;
}
.home-page .hero-metric .mono,
.home-page .hero-stats-col .mono,
.home-page .hero-stats-col > .bracket {
  color: var(--nb-ink);
  font: 400 12px/1.22 var(--font-sans);
  letter-spacing: -.01em;
  text-transform: none;
}
.home-page .hero-rule,
.home-page .hero-stats-col > .bracket { display: none; }
.home-page .hero-sub {
  display: block;
  margin-top: 21px;
  padding-bottom: 0;
  border: 0;
}
.home-page .hero-sub strong {
  display: block;
  font-size: clamp(18px, 1.75vw, 27px);
  font-weight: 560;
  line-height: 1;
}
.home-page .hero-sub .mono { margin-top: 5px; }

/* Situations — open editorial columns, never cards. */
.home-page .situations,
.home-page .solutions,
.home-page .notes { background: transparent; }
.home-page .situations::after,
.home-page .solutions::before,
.home-page .solutions::after,
.home-page .notes::after { content: none; }
.home-page .situations .section-inner {
  display: block;
  padding-top: 32px;
}
.home-page .situations h2 {
  position: static;
  max-width: 20ch;
  margin-bottom: clamp(34px, 4vw, 58px);
}
.home-page .situation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  background: transparent;
  border-top: 1px solid var(--nb-line-strong);
  border-bottom: 1px solid var(--nb-line-strong);
}
.home-page .situation-card,
.home-page .situation-card:first-child {
  grid-column: auto;
  min-height: 255px;
  padding: 24px clamp(20px, 2.3vw, 34px) 26px 0;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--nb-line);
  box-shadow: none;
}
.home-page .situation-card + .situation-card { padding-left: clamp(20px, 2.3vw, 34px); }
.home-page .situation-card:last-child { border-right: 0; padding-right: 0; }
.home-page .situation-card::after {
  right: 21px;
  top: 20px;
  color: var(--accent);
  font-size: 18px;
}
.home-page .situation-card:hover { transform: none; background: transparent; }
.home-page .situation-card h3 {
  max-width: 16ch;
  margin-top: 50px;
  font-size: clamp(25px, 2.25vw, 34px);
  line-height: 1;
}
.home-page .situation-card .card-body {
  max-width: 39ch;
  margin-top: 20px;
  color: var(--nb-muted);
  line-height: 1.42;
}
.home-page .card-metric { margin-top: auto; padding-top: 24px; }
.home-page .card-metric .metric-num { font-size: 22px; }
.home-page .card-link { color: var(--accent); }

/* Solutions — the Nano Banana two-column typographic index. */
.home-page .solutions-head {
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 72px);
}
.home-page .solutions-head > div { max-width: 980px; }
.home-page .solutions-title {
  max-width: 19ch;
  margin-top: 24px;
  font-size: clamp(44px, 5.15vw, 78px);
}
.home-page .solutions-count { display: none; }
.home-page .solution-chips {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(24px, 3vw, 46px);
  background: transparent;
  border-top: 1px solid var(--nb-line-strong);
}
.home-page .solution-chips li { border-bottom: 1px solid var(--nb-line-strong); }
.home-page .solution-chips a {
  min-height: 72px;
  padding: 18px 48px 17px 44px;
  background: transparent;
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.08;
}
.home-page .solution-chips a::before { top: 25px; color: var(--nb-ink); }
.home-page .solution-chips a::after { top: 20px; opacity: 1; transform: none; }
.home-page .solution-chips a .mono {
  max-width: 11ch;
  color: var(--nb-ink);
  font-size: 9px;
  text-align: right;
}

/* Outsourcing — open bands and one compact red statement. */
.home-page .outsourcing {
  margin: 0;
  color: var(--nb-ink);
  background: transparent;
}
.home-page .outsourcing::before,
.home-page .outsourcing::after,
.home-page .outsourcing-marquee,
.home-page .tech-core { display: none; }
.home-page .outsourcing .section-inner {
  display: block;
  padding-top: clamp(76px, 7vw, 108px);
  padding-bottom: clamp(88px, 8vw, 126px);
}
.home-page .outsourcing .bracket { color: var(--nb-ink); }
.home-page .outsourcing-intro { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(36px, 6vw, 92px); align-items: end; }
.home-page .outsourcing-intro .bracket { grid-column: 1 / -1; }
.home-page .outsourcing-intro h2 {
  max-width: 16ch;
  margin-top: 25px;
  font-size: clamp(44px, 5vw, 76px);
}
.home-page .outsourcing-lead {
  max-width: 54ch;
  margin: 25px 0 4px;
  color: var(--nb-muted);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.48;
}
.home-page .outsourcing-capabilities {
  display: block;
  margin-top: clamp(52px, 6vw, 86px);
  background: transparent;
  border-top: 1px solid var(--nb-line-strong);
}
.home-page .outsourcing-capabilities li,
.home-page .outsourcing-capabilities li:nth-child(n) {
  min-height: 0;
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(120px, .34fr) minmax(260px, .9fr) minmax(300px, 1.25fr);
  gap: clamp(22px, 3vw, 48px);
  align-items: baseline;
  color: var(--nb-ink);
  background: transparent;
  border-bottom: 1px solid var(--nb-line-strong);
  transform: none;
}
.home-page .outsourcing-capabilities li::after { content: none; }
.home-page .outsourcing-capabilities li:hover { color: var(--nb-ink); background: transparent; }
.home-page .outsourcing-capabilities .mono { color: var(--nb-ink); }
.home-page .outsourcing-capabilities h3 {
  max-width: none;
  margin: 0;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 450;
  line-height: 1;
}
.home-page .outsourcing-capabilities p,
.home-page .outsourcing-capabilities li:hover p {
  max-width: 58ch;
  margin: 0;
  color: var(--nb-muted);
  line-height: 1.38;
}
.home-page .outsourcing-offer {
  width: min(560px, 46%);
  margin: 0 0 0 auto;
  padding: 22px 25px 26px;
  display: block;
  color: #fff;
  background: var(--accent);
}
.home-page .outsourcing-offer::before { content: none; }
.home-page .outsourcing-offer .bracket { color: rgba(255,255,255,.72); }
.home-page .outsourcing-offer h3 {
  max-width: 24ch;
  margin-top: 12px;
  font-size: clamp(24px, 2.25vw, 34px);
  line-height: 1.02;
}
.home-page .outsourcing-offer p:not(.bracket) { margin-top: 20px; font-size: 15px; line-height: 1.42; }
.home-page .outsourcing-link { margin-top: 22px; }

/* Complete service coverage — compact index plus the existing 3D scene. */
.home-page .service-universe {
  color: var(--nb-ink);
  background: transparent;
}
.home-page .service-universe::before { content: none; }
.home-page .service-universe-head { padding-bottom: 48px; }
.home-page .service-universe-title {
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, .8fr);
  gap: clamp(38px, 6vw, 90px);
  margin-top: 22px;
}
.home-page .service-universe-title h2 {
  max-width: 15ch;
  font-size: clamp(44px, 5vw, 76px);
  line-height: .95;
}
.home-page .service-universe-title p { color: var(--nb-muted); }
.home-page .mission-proof {
  margin-top: 48px;
  gap: 0;
  background: transparent;
  border: 1px solid var(--nb-line-strong);
}
.home-page .mission-proof span {
  min-height: 86px;
  padding: 15px;
  background: transparent;
  border-right: 1px solid var(--nb-line);
}
.home-page .mission-proof span:last-child { border-right: 0; }
.home-page .service-scroll {
  grid-template-columns: minmax(0, 2fr) minmax(300px, .72fr);
  gap: clamp(24px, 3vw, 44px);
  padding-top: 0;
  padding-bottom: clamp(78px, 7vw, 112px);
}
.home-page .service-chapters { border-top: 1px solid var(--nb-line-strong); }
.home-page .service-chapter,
.home-page .service-chapter.is-active {
  min-height: 0;
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(105px, .3fr) minmax(260px, 1fr) minmax(260px, 1fr);
  gap: clamp(20px, 2.5vw, 38px);
  align-items: start;
  opacity: 1;
  transform: none;
  background: transparent;
  border-top: 0;
  border-bottom: 1px solid var(--nb-line-strong);
}
.home-page .service-chapter:first-child { border-top: 0; }
.home-page .service-chapter-kicker { color: var(--accent); }
.home-page .service-chapter h3 {
  max-width: 20ch;
  margin: 0;
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 450;
  line-height: 1.03;
}
.home-page .service-chapter > p:not(.service-chapter-kicker) {
  max-width: 49ch;
  margin: 0;
  color: var(--nb-muted);
  font-size: 14px;
  line-height: 1.42;
}
.home-page .service-chapter ul { display: none; }
.home-page .service-model-stage {
  position: sticky;
  top: 96px;
  width: 100%;
  height: min(62vh, 540px);
  min-height: 430px;
  background: #101214;
  box-shadow: none;
}
.home-page .mission-manifesto {
  width: min(calc(100% - var(--gutter) * 2), calc(var(--page-max) - var(--gutter) * 2));
  margin: 0 auto clamp(78px, 7vw, 112px);
  padding: clamp(44px, 5vw, 72px) 0;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 6vw, 90px);
  color: var(--nb-ink);
  background: transparent;
  border-block: 1px solid var(--nb-line-strong);
}
.home-page .mission-manifesto::before { content: none; }
.home-page .mission-code { color: var(--accent); }
.home-page .mission-copy .bracket,
.home-page .mission-confidential { color: var(--nb-muted); }
.home-page .mission-copy h2 {
  max-width: 15ch;
  font-size: clamp(40px, 4.2vw, 62px);
}
.home-page .mission-detail > p:first-child { color: var(--nb-muted); }
.home-page .mission-night { font-size: clamp(22px, 2vw, 30px); }
.home-page .mission-confidential { border-color: var(--nb-line); }

/* Method — four open grid columns, exactly like the approved section render. */
.home-page .process,
.home-page .section-dark {
  margin: 0;
  color: var(--nb-ink);
  background: transparent;
  border-radius: 0;
}
.home-page .process::before { content: none; }
.home-page .section-dark h2 { color: var(--nb-ink); }
.home-page .section-dark .bracket { color: var(--nb-muted); }
.home-page .process h2 { max-width: 22ch; }
.home-page .process-track { margin: 45px 0 48px; }
.home-page .process-track .bracket { color: var(--nb-muted); }
.home-page .process-rail { height: 1px; background: var(--accent); }
.home-page .process-rail i {
  width: 10px;
  height: 10px;
  background: var(--nb-bg);
  border: 2px solid var(--accent);
  box-shadow: none;
}
.home-page .process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 0;
}
.home-page .process-step {
  min-height: 430px;
  margin: 0;
  padding: 28px clamp(18px, 2vw, 28px) 0 0;
  color: var(--nb-ink);
  background: transparent;
  border: 0;
  border-top: 8px solid var(--accent);
  border-right: 1px solid var(--nb-line);
}
.home-page .process-step + .process-step { padding-left: clamp(18px, 2vw, 28px); }
.home-page .process-step:last-child { border-right: 0; padding-right: 0; }
.home-page .process-step:hover { transform: none; border-top-color: var(--accent); }
.home-page .process-step header { min-height: 92px; }
.home-page .process-step .card-num { color: var(--nb-ink); font-size: 23px; }
.home-page .process-step h3 {
  margin-top: 6px;
  font-size: clamp(24px, 2.2vw, 33px);
  font-weight: 540;
  line-height: 1;
}
.home-page .step-body { min-height: 90px; color: var(--nb-muted); }
.home-page .process-step > .bracket { color: var(--accent); }
.home-page .step-result { min-height: 55px; }
.home-page .step-list {
  margin-top: auto;
  padding: 0;
  gap: 0;
  color: var(--nb-ink);
  background: transparent;
  border-top: 1px solid var(--nb-line-strong);
}
.home-page .step-list li { padding: 9px 0; border-bottom: 1px solid var(--nb-line); }
.home-page .process-foot { border-color: var(--nb-line-strong); }
.home-page .process-foot .link-underline { color: var(--nb-ink); }

/* Notes — one open publication strip. */
.home-page .notes-head { align-items: end; margin-bottom: clamp(42px, 5vw, 68px); }
.home-page .notes-head h2 { max-width: 19ch; }
.home-page .notes-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  border-top: 1px solid var(--nb-line-strong);
  border-bottom: 1px solid var(--nb-line-strong);
}
.home-page .note-card,
.home-page .note-card:nth-child(even) {
  min-height: 330px;
  padding: 22px clamp(18px, 2vw, 28px) 24px 0;
  color: var(--nb-ink);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--nb-line);
  box-shadow: none;
}
.home-page .note-card + .note-card { padding-left: clamp(18px, 2vw, 28px); }
.home-page .note-card:last-child { border-right: 0; padding-right: 0; }
.home-page .note-card::after {
  content: "→";
  margin-top: auto;
  color: var(--accent);
  font-size: 34px;
  transition: transform .25s var(--ease);
}
.home-page .note-card:hover { transform: none; background: transparent; box-shadow: none; }
.home-page .note-card:hover::after { transform: translateX(8px); }
.home-page .note-card h3 {
  margin-top: 18px;
  font-size: clamp(23px, 2.15vw, 32px);
  line-height: 1.04;
}
.home-page .note-meta { order: -1; margin: 0; color: var(--nb-ink); }

/* Contact and footer — warm white ending, compact red actions. */
.home-page .contact {
  margin: 0;
  color: var(--nb-ink);
  background: transparent;
}
.home-page .contact::before,
.home-page .contact::after { content: none; }
.home-page .contact .section-inner { border-top: 1px solid var(--nb-line-strong); }
.home-page .contact-grid { grid-template-columns: 1.05fr .95fr; gap: clamp(48px, 7vw, 110px); }
.home-page .contact-title,
.home-page .contact .bracket,
.home-page .contact-lead,
.home-page .contact-lines a,
.home-page .contact .link-underline { color: var(--nb-ink); }
.home-page .contact-title {
  max-width: 15ch;
  margin-top: 24px;
  font-size: clamp(44px, 5vw, 74px);
}
.home-page .contact-lead { max-width: 49ch; color: var(--nb-muted); }
.home-page .contact .button-accent { color: #fff; background: var(--accent); }
.home-page .after-list { border-color: var(--nb-line-strong); }
.home-page .after-list > li {
  min-height: 92px;
  align-items: center;
  border-color: var(--nb-line-strong);
}
.home-page .after-list .card-num {
  min-width: 76px;
  color: var(--accent);
  font: 520 clamp(34px, 3.4vw, 52px)/1 var(--font-sans);
  letter-spacing: -.05em;
}
.home-page .after-list strong { font-size: clamp(24px, 2.4vw, 36px); line-height: 1; }
.home-page .after-list p { color: var(--nb-muted); }

@media (max-width: 1180px) {
  .home-page .hero {
    min-height: 770px;
    padding-top: 120px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 1fr;
  }
  .home-page .hero-title-col { grid-column: 1 / 6; }
  .home-page .hero-motion {
    position: relative;
    grid-column: 5 / 11;
    grid-row: 1;
    width: clamp(340px, 39vw, 450px);
    height: clamp(340px, 39vw, 450px);
    margin: 0;
  }
  .home-page .hero-stats-col { grid-column: 10 / 13; grid-row: 1; }
  .home-page .hero h1 { font-size: clamp(45px, 5vw, 60px); }
  .home-page .outsourcing-intro { grid-template-columns: 1fr; gap: 14px; }
  .home-page .outsourcing-lead { margin-top: 0; }
  .home-page .service-scroll { grid-template-columns: minmax(0, 1.6fr) minmax(270px, .75fr); }
}

@media (max-width: 880px) {
  .home-page {
    background-size: calc((100vw - 36px) / 6) 100%;
  }
  .home-page .section-inner { padding-inline: 18px; }
  .home-page .hero {
    min-height: auto;
    padding: 112px 18px 58px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    row-gap: 34px;
    align-items: start;
  }
  .home-page .hero-title-col {
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 0;
  }
  .home-page .hero h1 {
    max-width: 11.8ch;
    font-size: clamp(40px, 9.2vw, 62px);
    line-height: .98;
  }
  .home-page .hero-motion {
    grid-column: 1 / 4;
    grid-row: 2;
    justify-self: start;
    align-self: center;
    width: clamp(210px, 38vw, 300px);
    height: clamp(210px, 38vw, 300px);
    margin: 0;
  }
  .home-page .hero-stats-col {
    grid-column: 4 / -1;
    grid-row: 2;
    align-self: center;
    margin: 0;
    padding: 0 0 0 14px;
    display: block;
    color: var(--nb-ink);
    background: transparent;
    border-left: 1px solid color-mix(in srgb, var(--accent) 72%, transparent);
    box-shadow: none;
  }
  .home-page .hero-metric { display: block; border: 0; }
  .home-page .hero-metric .metric-num { font-size: clamp(37px, 7vw, 54px); }
  .home-page .hero-metric .mono { margin: 3px 0 0; text-align: left; }
  .home-page .hero-sub,
  .home-page .hero-sub + .hero-sub { margin-top: 16px; padding: 21px 0 0; border: 0; }
  .home-page .hero-sub strong { font-size: clamp(17px, 3.6vw, 24px); }
  .home-page .hero-discover {
    grid-column: 1 / -1;
    grid-row: 3;
    display: block;
    width: 100%;
    padding: 17px 0 0;
    color: var(--nb-ink);
    border-top: 1px solid color-mix(in srgb, var(--accent) 72%, transparent);
  }
  .home-page .situation-grid,
  .home-page .solution-chips,
  .home-page .notes-grid { grid-template-columns: 1fr; }
  .home-page .situation-card,
  .home-page .situation-card:first-child,
  .home-page .situation-card + .situation-card,
  .home-page .note-card,
  .home-page .note-card:nth-child(n),
  .home-page .note-card + .note-card {
    min-height: 0;
    padding: 22px 0 26px;
    border-right: 0;
    border-bottom: 1px solid var(--nb-line-strong);
  }
  .home-page .situation-card:last-child,
  .home-page .note-card:last-child { border-bottom: 0; }
  .home-page .situation-card h3 { margin-top: 28px; }
  .home-page .solution-chips { gap: 0; }
  .home-page .outsourcing-capabilities li,
  .home-page .outsourcing-capabilities li:nth-child(n) {
    grid-template-columns: 64px 1fr;
    gap: 12px 18px;
  }
  .home-page .outsourcing-capabilities p { grid-column: 2; }
  .home-page .outsourcing-offer { width: 100%; }
  .home-page .service-universe-title { grid-template-columns: 1fr; }
  .home-page .mission-proof { grid-template-columns: 1fr 1fr; }
  .home-page .mission-proof span:nth-child(2) { border-right: 0; }
  .home-page .mission-proof span:nth-child(-n+2) { border-bottom: 1px solid var(--nb-line); }
  .home-page .service-scroll { grid-template-columns: 1fr; }
  .home-page .service-model-stage { display: block; position: relative; top: auto; order: -1; height: min(68vw, 460px); min-height: 330px; }
  .home-page .service-chapter,
  .home-page .service-chapter.is-active {
    grid-template-columns: 82px 1fr;
    gap: 12px 18px;
  }
  .home-page .service-chapter > p:not(.service-chapter-kicker) { grid-column: 2; }
  .home-page .mission-manifesto { grid-template-columns: 1fr; width: calc(100% - 36px); }
  .home-page .process-grid { grid-template-columns: 1fr 1fr; }
  .home-page .process-step { min-height: 390px; }
  .home-page .process-step:nth-child(2) { border-right: 0; }
  .home-page .process-step:nth-child(n+3) { margin-top: 36px; }
  .home-page .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .home-page { background-size: calc((100vw - 36px) / 4) 100%; }
  .home-page h2 { font-size: clamp(34px, 9.5vw, 46px); }
  .home-page .hero {
    padding-top: 104px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 30px;
  }
  .home-page .hero-kicker { font-size: 7px; }
  .home-page .hero h1 {
    max-width: 11.4ch;
    font-size: clamp(35px, 10.6vw, 48px);
    letter-spacing: -.055em;
  }
  .home-page .hero-motion {
    grid-column: 1 / 3;
    width: clamp(170px, 48vw, 230px);
    height: clamp(170px, 48vw, 230px);
  }
  .home-page .hero-stats-col { grid-column: 3 / -1; padding-left: 10px; }
  .home-page .hero-metric,
  .home-page .hero-sub,
  .home-page .hero-sub + .hero-sub { padding-top: 17px; margin-top: 12px; }
  .home-page .hero-metric { margin-top: 0; }
  .home-page .hero-metric::before,
  .home-page .hero-sub::before { height: 7px; }
  .home-page .hero-metric .metric-num { font-size: clamp(31px, 9vw, 42px); }
  .home-page .hero-metric .mono,
  .home-page .hero-sub .mono { font-size: 9px; line-height: 1.25; }
  .home-page .hero-sub strong { font-size: clamp(15px, 4vw, 19px); }
  .home-page .situations h2 { max-width: 14ch; }
  .home-page .solutions-title { font-size: clamp(38px, 10.7vw, 50px); }
  .home-page .solution-chips a { min-height: 68px; padding-left: 34px; font-size: 19px; }
  .home-page .outsourcing-intro h2,
  .home-page .service-universe-title h2 { font-size: clamp(37px, 10.4vw, 50px); }
  .home-page .outsourcing-capabilities li,
  .home-page .outsourcing-capabilities li:nth-child(n) { grid-template-columns: 46px 1fr; }
  .home-page .outsourcing-capabilities h3 { font-size: 24px; }
  .home-page .mission-proof { grid-template-columns: 1fr; }
  .home-page .mission-proof span,
  .home-page .mission-proof span:nth-child(n) { border-right: 0; border-bottom: 1px solid var(--nb-line); }
  .home-page .mission-proof span:last-child { border-bottom: 0; }
  .home-page .service-model-stage { min-height: 300px; height: 78vw; }
  .home-page .service-chapter,
  .home-page .service-chapter.is-active { grid-template-columns: 1fr; gap: 9px; padding: 22px 0; }
  .home-page .service-chapter > p:not(.service-chapter-kicker) { grid-column: 1; }
  .home-page .mission-manifesto { width: calc(100% - 36px); padding-block: 42px; }
  .home-page .mission-copy h2 { font-size: clamp(36px, 10.3vw, 48px); }
  .home-page .process-track { display: none; }
  .home-page .process-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .home-page .process-step,
  .home-page .process-step + .process-step,
  .home-page .process-step:nth-child(n+3) {
    min-height: 0;
    margin: 0;
    padding: 26px 0 32px;
    border-right: 0;
    border-bottom: 1px solid var(--nb-line-strong);
  }
  .home-page .process-step header,
  .home-page .step-body,
  .home-page .step-result { min-height: 0; }
  .home-page .contact-title { font-size: clamp(40px, 11vw, 52px); }
  .home-page .after-list .card-num { min-width: 54px; font-size: 34px; }
  .home-page .after-list strong { font-size: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-motion.is-globe-ready .hero-globe-video { opacity: .28 !important; }
}

/* Wordmark follows the accent switcher: the PNG is used as an alpha mask
   and painted with --accent (red / blue / green). */
.wordmark { position: relative; }
.wordmark .wordmark-img { opacity: 0; }
.wordmark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--accent);
  -webkit-mask: url("img/logo.png") center / contain no-repeat;
  mask: url("img/logo.png") center / contain no-repeat;
  transition: background-color .35s var(--ease);
  pointer-events: none;
}
@media (forced-colors: active) {
  .wordmark .wordmark-img { opacity: 1; }
  .wordmark::after { content: none; }
}

/* Wordmark follows the accent switcher: the PNG is used as an alpha mask
   and painted with --accent (red / blue / green). */
.wordmark { position: relative; }
.wordmark .wordmark-img { opacity: 0; }
.wordmark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--accent);
  -webkit-mask: url("img/logo.png") center / contain no-repeat;
  mask: url("img/logo.png") center / contain no-repeat;
  transition: background-color .35s var(--ease);
  pointer-events: none;
}
@media (forced-colors: active) {
  .wordmark .wordmark-img { opacity: 1; }
  .wordmark::after { content: none; }
}

/* footer legal strip (all pages) */
.footer-legal { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: baseline; padding: 22px 0; margin-top: 28px; border-top: 1px solid color-mix(in srgb, currentColor 16%, transparent); }
.footer-legal-id { max-width: 70ch; font-size: 13px; line-height: 1.5; opacity: .72; }
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; }
.footer-legal-links a { border-bottom: 1px solid transparent; transition: border-color .2s, color .2s; }
.footer-legal-links a:hover { border-color: var(--accent); color: var(--accent); }


/* footer owl — IBCSC emblem, sits in the empty band right of the footer wordmark.
   Absolutely positioned so the footer keeps its original height. */
.footer-top { position: relative; }
.footer-owl { position: absolute; right: 0; bottom: -42px; margin: 0; height: 166px; aspect-ratio: 363 / 520; pointer-events: none; }
.footer-owl img { display: block; width: 100%; height: 100%; object-fit: contain; filter: brightness(1.9) saturate(1.25) contrast(1.05) drop-shadow(0 0 18px rgba(80, 170, 255, .18)); opacity: .95; }
@media (max-width: 900px) {
  .footer-owl { bottom: -18px; height: 104px; }
}

/* homepage footer = same black footer as every other page */
.home-page .site-footer .section-inner { padding-top: 90px; padding-bottom: 40px; }
@media (max-width: 760px) {
  .home-page .site-footer .section-inner { padding: 68px 18px 34px; }
}

/* footer payment methods (Mollie · Bancontact · Visa · Mastercard) */
.footer-pay { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid color-mix(in srgb, currentColor 16%, transparent); }
.footer-pay .bracket { margin: 0; }
.footer-pay-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer-pay-via { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; opacity: .85; }
.footer-pay-via img { display: block; height: 22px; width: auto; }
.footer-pay-methods { display: flex; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-pay-methods li { display: grid; place-items: center; width: 62px; height: 40px; padding: 6px 8px; background: #fff; border-radius: 5px; }
.footer-pay-methods img { display: block; max-width: 100%; max-height: 100%; width: auto; height: auto; }
@media (max-width: 760px) {
  .footer-pay { align-items: flex-start; }
  .footer-pay-row { gap: 16px; }
}
