@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/roboto-slab-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #0a0a0a;
  --ink-2: #151515;
  --ink-3: #202020;
  --paper: #f5f5f2;
  --paper-2: #efefeb;
  --paper-3: #e5e5df;
  --white: #ffffff;
  --muted-dark: #a9a9a9;
  --muted-mid: #6d6d6d;
  --muted-light: #5a5a5a;
  --line-dark: rgba(255,255,255,.12);
  --line-dark-2: rgba(255,255,255,.08);
  --line-light: rgba(10,10,10,.10);
  --line-light-2: rgba(10,10,10,.06);
  --shadow-xl: 0 40px 100px rgba(0,0,0,.18);
  --shadow-lg: 0 28px 64px rgba(0,0,0,.12);
  --shadow-md: 0 18px 38px rgba(0,0,0,.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1240px, calc(100vw - 42px));
  --font-display: "Roboto Slab", Georgia, serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--ink); color: var(--white); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.page-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .032;
  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 72px 72px;
  mix-blend-mode: difference;
}
.ambient-orb,
.cursor-glow {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}
.ambient-orb {
  filter: blur(80px);
  opacity: .12;
  background: radial-gradient(circle, rgba(255,255,255,.9), transparent 70%);
}
.orb-a { width: 360px; height: 360px; top: -90px; left: -80px; }
.orb-b { width: 500px; height: 500px; right: -160px; top: 20%; opacity: .08; }
.cursor-glow {
  width: 500px;
  height: 500px;
  left: 0;
  top: 0;
  opacity: .08;
  filter: blur(110px);
  background: #fff;
  transform: translate(-50%, -50%);
}
.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 120;
  pointer-events: none;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,.4), rgba(255,255,255,.92));
  transition: width .12s linear;
}

.container { width: var(--container); margin-inline: auto; position: relative; z-index: 1; }
.section-dark { color: var(--white); background: var(--ink); }
.section-light { color: var(--ink); background: var(--paper); }
.section-cream { color: var(--ink); background: linear-gradient(180deg, #ecece7, #e4e4dd); }

h1, h2, h3, .brand, .nav-link, .nav-trigger, .header-cta, .mobile-panel nav a {
  font-family: var(--font-display);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-top: 14px;
  color: var(--white);
  background: transparent;
  pointer-events: none;
}
.site-header .header-shell,
.site-header .mobile-panel { pointer-events: auto; }
.header-shell {
  width: min(1320px, calc(100vw - 24px));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(10,10,10,.7);
  box-shadow: 0 14px 44px rgba(0,0,0,.18);
  backdrop-filter: blur(18px) saturate(115%);
  transition: background .28s ease, border-color .28s ease, color .28s ease, box-shadow .28s ease, transform .28s ease;
}
.site-header.is-scrolled .header-shell {
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border-color: rgba(10,10,10,.10);
  box-shadow: 0 18px 58px rgba(0,0,0,.12);
}
.header-inner {
  min-height: 72px;
  padding: 0 12px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.04em;
  white-space: nowrap;
}
.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 14px;
}
.brand-dot { color: #8d8d8d; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
  padding: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.045);
}
.site-header.is-scrolled .desktop-nav {
  border-color: rgba(10,10,10,.08);
  background: rgba(10,10,10,.035);
}
.nav-group { position: relative; }
.nav-link,
.nav-trigger {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.015em;
  opacity: .78;
  cursor: pointer;
  transition: opacity .18s ease, background .18s ease, transform .18s ease;
}
.nav-link:hover,
.nav-trigger:hover,
.nav-group.is-active .nav-trigger {
  opacity: 1;
  background: rgba(255,255,255,.08);
}
.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-trigger:hover,
.site-header.is-scrolled .nav-group.is-active .nav-trigger {
  background: rgba(10,10,10,.065);
}
.nav-chevron {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .22s ease;
}
.nav-group:hover .nav-chevron,
.nav-group:focus-within .nav-chevron,
.nav-group.is-active .nav-chevron { transform: translateY(3px) rotate(225deg); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.text-link {
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 700;
  opacity: .78;
}
.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.site-header.is-scrolled .menu-toggle {
  border-color: rgba(10,10,10,.14);
  background: rgba(10,10,10,.04);
}
.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 1.5px;
  margin-left: -8px;
  background: currentColor;
  transition: transform .24s ease;
}
.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
.mobile-panel { display: none; }

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(760px, calc(100vw - 30px));
  padding: 12px;
  color: var(--ink);
  border: 1px solid rgba(10,10,10,.10);
  border-radius: 24px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 32px 90px rgba(0,0,0,.20);
  transform: translate(-50%, 12px) scale(.985);
  transform-origin: top center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.mega-menu-products { width: min(680px, calc(100vw - 30px)); }
.mega-menu-tools { width: min(820px, calc(100vw - 30px)); }
.nav-group:hover .mega-menu,
.nav-group:focus-within .mega-menu,
.nav-group.is-active .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}
.mega-menu-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 14px 18px;
  border-bottom: 1px solid rgba(10,10,10,.10);
}
.mega-menu-head > div span,
.mobile-menu-label,
.section-label,
.eyebrow,
.product-kicker,
.tool-tag,
.community-meta,
.tool-index,
.menu-number,
.mobile-panel nav a span,
.newsletter-form label,
.footer-grid h3,
.form-note {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .10em;
}
.mega-menu-head > div span,
.mobile-menu-label { color: #777; font-size: 9px; }
.mega-menu-head > div strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.03em;
}
.mega-menu-head > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 0;
}
.menu-card {
  min-height: 116px;
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  gap: 12px;
  align-items: start;
  padding: 17px;
  border: 1px solid rgba(10,10,10,.08);
  border-radius: 16px;
  background: linear-gradient(180deg, #f7f7f4, #f0f0ed);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.menu-card:hover {
  transform: translateY(-2px);
  border-color: rgba(10,10,10,.16);
  background: var(--white);
}
.menu-copy { display: block; }
.menu-copy strong,
.menu-copy small { display: block; }
.menu-copy strong { font-size: 14px; letter-spacing: -.02em; }
.menu-copy small { margin-top: 7px; color: #6b6b6b; font-size: 10px; line-height: 1.45; }
.menu-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
}
.menu-arrow {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(10,10,10,.14);
  border-radius: 50%;
  font-size: 10px;
  transition: transform .18s ease;
}
.menu-card:hover .menu-arrow { transform: rotate(45deg); }
.mega-menu-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 4px 2px;
  border-top: 1px solid rgba(10,10,10,.10);
}
.mega-menu-foot span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #efefeb;
  color: #6a6a6a;
  font-family: var(--font-mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 18px; font-size: 13px; }
.header-cta,
.button-accent,
.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(10,10,10,.06);
}
.button-accent:hover,
.button-light:hover,
.header-cta:hover { background: #ecece9; }
.site-header.is-scrolled .header-cta { color: var(--white); background: var(--ink); box-shadow: none; }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: #1a1a1a; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.03); }
.button-ghost:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
}
.arrow-link span { transition: transform .18s ease; }
.arrow-link:hover span { transform: translateX(5px); }

.hero {
  position: relative;
  min-height: 940px;
  padding: 174px 0 42px;
  overflow: hidden;
  background: radial-gradient(circle at 85% 18%, rgba(255,255,255,.10), transparent 28%),
              radial-gradient(circle at 0% 100%, rgba(255,255,255,.04), transparent 36%),
              var(--ink);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(480px, 1fr);
  align-items: center;
  gap: 74px;
}
.eyebrow, .section-label { color: #757575; font-size: 11px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c0c0c0;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 6px rgba(255,255,255,.09);
}
.hero h1,
.intro-content h2,
.section-heading h2,
.principles-sticky h2,
.newsletter h2,
.product-copy h3,
.community-card h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -.06em;
}
.hero h1 {
  margin-top: 24px;
  max-width: 740px;
  font-size: clamp(62px, 7.5vw, 116px);
  line-height: .92;
}
.hero h1 span { color: #9f9f9f; }
.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: #bdbdbd;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
  color: #9b9b9b;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.8);
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}
.metric-chip {
  padding: 16px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.metric-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  font-size: 16px;
}
.metric-chip small { display: block; color: #9e9e9e; font-size: 11px; }
.metric-chip strong { display: block; margin-top: 2px; font-size: 28px; line-height: 1; }

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.hero-glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}
.ring-a { width: 560px; height: 560px; }
.ring-b {
  width: 420px;
  height: 420px;
  border-style: dashed;
  animation: spin 32s linear infinite;
}
.visual-card-main {
  position: relative;
  width: min(100%, 610px);
  min-height: 395px;
  padding: 0 20px 20px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  box-shadow: 0 50px 100px rgba(0,0,0,.34);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
}
.visual-card-main::before,
.visual-side-panel::before,
.tool-card::before,
.community-card::before,
.product-ui::before,
.signal-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.09), transparent 26%);
  opacity: .8;
}
.window-bar {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.window-bar span { width: 8px; height: 8px; border-radius: 50%; background: #737373; }
.window-bar span:first-child { background: #fff; }
.window-bar small { margin-left: auto; color: #9b9b9b; font-family: var(--font-mono); font-size: 10px; }
.visual-card-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
  margin-top: 16px;
}
.code-stack,
.mini-graph {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(0,0,0,.14);
}
.code-line {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 6px;
  padding-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.line-number { color: #727272; }
.code-line code { color: #d7d7d7; }
.code-line b { color: #ffffff; font-weight: 500; }
.graph-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #d3d3d3;
  font-size: 11px;
}
.graph-head small { color: #818181; font-size: 9px; }
.graph-bars {
  height: 118px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-top: 18px;
}
.graph-bars i {
  flex: 1;
  min-height: 20px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.28));
  animation: pulseBars 4s ease-in-out infinite;
}
.graph-bars i:nth-child(1) { height: 30%; animation-delay: .1s; }
.graph-bars i:nth-child(2) { height: 44%; animation-delay: .2s; }
.graph-bars i:nth-child(3) { height: 56%; animation-delay: .3s; }
.graph-bars i:nth-child(4) { height: 78%; animation-delay: .4s; }
.graph-bars i:nth-child(5) { height: 62%; animation-delay: .5s; }
.graph-bars i:nth-child(6) { height: 86%; animation-delay: .6s; }
.graph-bars i:nth-child(7) { height: 74%; animation-delay: .7s; }
.graph-bars i:nth-child(8) { height: 94%; animation-delay: .8s; }
.flow-row {
  margin-top: 16px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
}
.flow-node {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  color: #cacaca;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.flow-node.active { color: var(--ink); background: var(--white); border-color: var(--white); }
.flow-arrow { color: #7b7b7b; }
.approval-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 15px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: #dfdfdf;
  font-size: 11px;
}
.approval-row > div { display: flex; align-items: center; gap: 9px; }
.pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(255,255,255,.10);
  animation: livePulse 2.4s ease-in-out infinite;
}
.approval-row button,
.ui-topbar button,
.activity-strip button {
  border: 0;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.floating-card,
.visual-side-panel {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(16,16,16,.78);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
.floating-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  border-radius: 18px;
  color: #ececec;
}
.floating-card small,
.visual-side-panel small { display: block; color: #8d8d8d; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.floating-card strong,
.visual-side-panel strong { display: block; margin-top: 4px; font-size: 13px; }
.floating-card-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  font-size: 12px;
}
.floating-card-top { top: 60px; right: -10px; animation: float 5.2s ease-in-out infinite; }
.floating-card-bottom { bottom: 72px; left: -10px; animation: float 6s 1s ease-in-out infinite reverse; }
.visual-side-panel {
  right: -18px;
  bottom: 12px;
  width: 190px;
  padding: 16px;
  border-radius: 20px;
  animation: float 6.8s ease-in-out infinite;
}
.side-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.side-panel-head span {
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #d9d9d9;
  font-family: var(--font-mono);
  font-size: 8px;
  text-transform: uppercase;
}
.side-stat-list { display: grid; gap: 12px; margin-top: 14px; }
.side-stat-list div { display: flex; justify-content: space-between; gap: 10px; }
.side-stat-list b { font-size: 12px; }
.signal-trace {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 16px;
  height: 54px;
}
.signal-trace span {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.25));
  animation: pulseBars 3.4s ease-in-out infinite;
}
.signal-trace span:nth-child(1) { height: 40%; }
.signal-trace span:nth-child(2) { height: 72%; animation-delay: .2s; }
.signal-trace span:nth-child(3) { height: 54%; animation-delay: .4s; }

.marquee-wrap {
  margin-top: 96px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  color: #b6b6b6;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.marquee-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.8);
}

.signals { padding: 140px 0 50px; }
.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.signal-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(10,10,10,.09);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(241,241,237,.95));
  box-shadow: 0 20px 48px rgba(0,0,0,.06);
  overflow: hidden;
}
.signal-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 18px;
}
.signal-card h3 { margin: 24px 0 10px; font-size: 28px; line-height: 1.1; letter-spacing: -.04em; }
.signal-card p { margin: 0; color: var(--muted-light); }

.intro { padding: 110px 0 110px; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  align-items: start;
}
.intro-content h2,
.section-heading h2,
.principles-sticky h2,
.newsletter h2 { font-size: clamp(44px, 5vw, 76px); line-height: 1.02; }
.intro-content p {
  max-width: 790px;
  margin: 32px 0 0;
  color: var(--muted-light);
  font-size: clamp(19px, 1.9vw, 27px);
  line-height: 1.55;
}

.products { padding: 30px 0 150px; }
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .72fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 58px;
}
.section-heading h2 { margin-top: 16px; }
.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted-light);
  font-size: 17px;
  line-height: 1.75;
}
.product-feature {
  position: relative;
  min-height: 700px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 54px;
  align-items: center;
  margin-top: 24px;
  padding: 72px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff, #ecece8);
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0,0,0,.08);
}
.product-feature-alt { margin-top: 32px; background: linear-gradient(180deg, #dfdfdb, #d3d3cf); }
.product-feature::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -100px;
  bottom: -160px;
  border-radius: 50%;
  border: 52px solid rgba(10,10,10,.04);
}
.product-kicker { color: rgba(10,10,10,.48); font-size: 10px; }
.product-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -.05em;
}
.product-logo span {
  display: inline-grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
}
.product-copy h3 {
  max-width: 520px;
  margin: 34px 0 22px;
  font-size: clamp(36px, 3.8vw, 58px);
  line-height: 1.04;
}
.product-copy > p { max-width: 540px; margin: 0; color: rgba(10,10,10,.68); font-size: 17px; }
.feature-list {
  list-style: none;
  margin: 34px 0 38px;
  padding: 0;
  border-top: 1px solid rgba(10,10,10,.12);
}
.feature-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(10,10,10,.12);
}
.feature-list span { color: rgba(10,10,10,.48); font-size: 9px; }
.feature-list strong { display: block; font-size: 14px; }
.feature-list small { display: block; margin-top: 4px; color: #666; font-size: 12px; line-height: 1.5; }
.inline-actions { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }

.product-ui {
  position: relative;
  min-height: 530px;
  border: 1px solid rgba(10,10,10,.10);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(0,0,0,.15);
  transform-style: preserve-3d;
}
.octonous-ui {
  display: grid;
  grid-template-columns: 68px 1fr;
  background: rgba(255,255,255,.80);
}
.ui-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-right: 1px solid #deded9;
  background: var(--ink);
}
.mini-logo,
.sidebar-avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-weight: 800;
}
.mini-logo { color: var(--ink); background: var(--white); }
.sidebar-avatar { margin-top: auto; color: var(--white); background: #555; font-size: 11px; }
.ui-sidebar > span {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid #444;
}
.ui-sidebar .side-active { background: rgba(255,255,255,.14); border-color: var(--white); }
.ui-canvas {
  padding: 22px;
  background: #f5f5f2;
  background-image: radial-gradient(#d0d0cc 1px, transparent 1px);
  background-size: 16px 16px;
}
.ui-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px 18px;
  border-bottom: 1px solid #e0e0dc;
  color: #202020;
  font-size: 13px;
  font-weight: 800;
}
.workflow { position: relative; min-height: 360px; }
.workflow-node {
  position: absolute;
  width: 145px;
  padding: 13px;
  border: 1px solid #d9d9d5;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 30px rgba(10,10,10,.08);
  animation: nodeFloat 5s ease-in-out infinite;
}
.workflow-node:nth-of-type(1) { animation-delay: .2s; }
.workflow-node:nth-of-type(3) { animation-delay: .8s; }
.workflow-node:nth-of-type(5) { animation-delay: 1.4s; }
.workflow-node:nth-of-type(7) { animation-delay: 2s; }
.workflow-node small,
.workflow-node strong,
.workflow-node span { display: block; }
.workflow-node small { color: #777; font-family: var(--font-mono); font-size: 8px; text-transform: uppercase; }
.workflow-node strong { margin-top: 8px; color: #1d1d1d; font-size: 12px; }
.workflow-node span { margin-top: 4px; color: #7a7a7a; font-size: 9px; }
.node-input { top: 58px; left: 7%; }
.node-source { top: 202px; left: 20%; }
.node-ai { top: 72px; right: 20%; }
.node-review { top: 218px; right: 3%; }
.connector {
  position: absolute;
  height: 2px;
  background: #a6a6a6;
  transform-origin: left center;
}
.connector::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  border-left: 6px solid #a6a6a6;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.connector-a { width: 95px; top: 145px; left: 23%; transform: rotate(51deg); }
.connector-b { width: 140px; top: 245px; left: 47%; transform: rotate(-38deg); }
.connector-c { width: 98px; top: 156px; right: 9%; transform: rotate(64deg); }
.activity-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border: 1px solid #e0e0dc;
  border-radius: 12px;
  background: rgba(255,255,255,.85);
  color: #6a6a6a;
  font-size: 9px;
}
.activity-strip button { margin-left: auto; background: #efefeb; }
.otari-ui {
  padding: 28px;
  background: linear-gradient(180deg, #121212, #0a0a0a);
  color: var(--white);
}
.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.dashboard-top small,
.dashboard-top strong { display: block; }
.dashboard-top small { color: #8a8a8a; font-size: 9px; }
.dashboard-top strong { margin-top: 4px; font-size: 15px; }
.health-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  color: #c2c2c2;
  font-size: 9px;
}
.health-pill span { width: 7px; height: 7px; border-radius: 50%; background: var(--white); }
.metric-grid-two {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.metric {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
}
.metric small,
.metric strong,
.metric span { display: block; }
.metric small { color: #868686; font-size: 9px; }
.metric strong { margin-top: 8px; font-size: 22px; }
.metric span { margin-top: 3px; color: #b1b1b1; font-size: 8px; }
.chart-panel {
  margin-top: 16px;
  padding: 17px 17px 4px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.02);
}
.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chart-head strong { font-size: 11px; }
.chart-head span { color: #7f7f7f; font-size: 8px; }
.chart-panel svg { width: 100%; height: 180px; margin-top: 6px; }
.provider-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}
.provider-row span {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  color: #aeaeae;
  font-size: 8px;
}
.provider-row i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
}
.provider-row b { float: right; color: var(--white); }

.tools {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: radial-gradient(circle at 88% 12%, rgba(255,255,255,.08), transparent 28%), var(--ink);
}
.section-heading-light .section-label { color: #8c8c8c; }
.section-heading-light > p { color: #b0b0b0; }
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.tool-card {
  position: relative;
  min-height: 400px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.tool-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.26);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: 0 20px 54px rgba(0,0,0,.22);
}
.tool-card-featured {
  grid-column: span 2;
  min-height: 460px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #ecece8);
  border-color: transparent;
}
.tool-card-featured:hover { background: linear-gradient(180deg, #ffffff, #f0f0ec); }
.tool-top { display: flex; justify-content: space-between; align-items: center; }
.tool-index { color: rgba(255,255,255,.46); font-size: 10px; }
.tool-card-featured .tool-index { color: rgba(10,10,10,.46); }
.tool-arrow {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  opacity: .5;
  transition: transform .18s ease;
}
.tool-card:hover .tool-arrow { transform: rotate(45deg); }
.tool-tag { margin-bottom: 9px; color: #959595; font-size: 9px; }
.tool-card-featured .tool-tag { color: rgba(10,10,10,.48); }
.tool-card h3 { margin: 0; font-size: 30px; line-height: 1.08; letter-spacing: -.045em; }
.tool-card p { margin: 14px 0 0; color: #b2b2b2; font-size: 14px; }
.tool-card-featured p { color: rgba(10,10,10,.66); }
.stack-graphic {
  width: 260px;
  height: 160px;
  position: relative;
  margin: 0 auto;
}
.stack-graphic span {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: rgba(255,255,255,.18);
  transform: rotate(45deg);
  animation: stackFloat 6s ease-in-out infinite;
}
.stack-graphic span:nth-child(1) { left: 10px; top: 18px; animation-delay: .1s; }
.stack-graphic span:nth-child(2) { left: 75px; top: 18px; animation-delay: .3s; }
.stack-graphic span:nth-child(3) { left: 42px; top: 50px; background: var(--ink); animation-delay: .5s; }
.stack-graphic span:nth-child(4) { left: 108px; top: 50px; border-style: dashed; animation-delay: .7s; }
.tool-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 130px;
  font-family: var(--font-mono);
  font-size: 28px;
}
.tool-symbol span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  color: var(--white);
  font-size: 15px;
}
.tool-card-featured .tool-symbol span { border-color: rgba(10,10,10,.18); color: var(--ink); }
.shield-symbol { font-size: 68px; position: relative; }
.shield-symbol span {
  position: absolute;
  border: 0;
  font-size: 18px;
}

.principles { padding: 150px 0; }
.principles-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 90px;
  align-items: start;
}
.principles-sticky {
  position: sticky;
  top: 110px;
}
.principles-sticky p {
  max-width: 420px;
  margin: 22px 0 30px;
  color: var(--muted-light);
  font-size: 18px;
}
.principle-list { display: grid; gap: 18px; }
.principle-item {
  display: grid;
  grid-template-columns: 42px 1fr 56px;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(10,10,10,.13);
}
.principle-item:last-child { border-bottom: 1px solid rgba(10,10,10,.13); }
.principle-item > span { padding-top: 7px; color: rgba(10,10,10,.48); font-size: 10px; }
.principle-item h3 { margin: 0; font-size: 30px; letter-spacing: -.04em; }
.principle-item p { margin: 10px 0 0; color: var(--muted-light); }
.principle-item i {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(10,10,10,.14);
  font-style: normal;
}

.community { padding: 150px 0; }
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.community-card {
  position: relative;
  min-height: 670px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease;
}
.community-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(0,0,0,.16);
}
.community-card-blueprints {
  background: linear-gradient(180deg, #7c7c7c, #5f5f5f);
  color: var(--white);
}
.community-card-github {
  background: linear-gradient(180deg, #171717, #0b0b0b);
  color: var(--white);
}
.community-meta { display: flex; justify-content: space-between; font-size: 9px; opacity: .62; }
.community-card h3 { max-width: 580px; font-size: clamp(34px, 4vw, 52px); line-height: 1.04; }
.community-card p { max-width: 540px; margin: 18px 0 25px; color: rgba(255,255,255,.72); }
.card-link { font-weight: 800; font-size: 13px; }
.blueprint-visual {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.bp-grid {
  position: absolute;
  inset: 15px;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 20px 20px;
}
.bp-card {
  position: relative;
  z-index: 2;
  width: 135px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  animation: float 6.4s ease-in-out infinite;
}
.bp-card:nth-child(2) { animation-delay: .2s; }
.bp-card:nth-child(4) { animation-delay: .6s; }
.bp-card:nth-child(6) { animation-delay: 1s; }
.bp-card small,
.bp-card strong { display: block; }
.bp-card small { color: rgba(255,255,255,.58); font-family: var(--font-mono); font-size: 8px; }
.bp-card strong { margin-top: 8px; font-size: 12px; }
.bp-b { transform: translateY(-45px); background: var(--white); color: var(--ink); }
.bp-b small { color: rgba(10,10,10,.5); }
.bp-line {
  position: absolute;
  z-index: 1;
  left: 28%;
  top: 54%;
  width: 26%;
  height: 1px;
  background: rgba(255,255,255,.6);
  transform: rotate(-16deg);
}
.bp-line::after,
.bp-line-two::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  border-left: 6px solid white;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}
.bp-line-two { left: 55%; top: 43%; transform: rotate(19deg); }
.github-visual {
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  font-family: var(--font-mono);
}
.terminal-line { color: #ddd; font-size: 11px; }
.terminal-line span { color: var(--white); }
.terminal-line.muted { margin-top: 9px; color: #727272; }
.contribution-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 6px;
}
.contribution-grid i {
  aspect-ratio: 1;
  border-radius: 2px;
  background: rgba(255,255,255,.12);
  animation: gridBlink 5s ease-in-out infinite;
}
.contribution-grid i:nth-child(3n) { background: rgba(255,255,255,.34); animation-delay: .2s; }
.contribution-grid i:nth-child(5n) { background: rgba(255,255,255,.72); animation-delay: .45s; }
.contribution-grid i:nth-child(7n) { background: rgba(255,255,255,.92); animation-delay: .7s; }

.newsletter {
  padding: 120px 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #ecece8);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 90px;
  align-items: center;
}
.newsletter-copy .section-label { color: rgba(10,10,10,.55); }
.newsletter h2 { margin-top: 18px; }
.newsletter-copy p { max-width: 560px; margin: 24px 0 0; color: rgba(10,10,10,.66); font-size: 17px; }
.newsletter-form label { display: block; margin-bottom: 10px; font-size: 10px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}
.form-row input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 21px;
}
.form-row input::placeholder { color: rgba(10,10,10,.38); }
.form-note { margin: 12px 0 0; color: rgba(10,10,10,.52); font-size: 10px; }
.form-message { min-height: 24px; margin-top: 10px; font-weight: 800; font-size: 12px; }

.site-footer { padding: 95px 0 34px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand-footer { font-size: 31px; }
.brand-footer .brand-mark { width: 38px; height: 38px; }
.footer-top p { max-width: 520px; margin: 0; color: #b3b3b3; font-size: 18px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr .8fr;
  gap: 40px;
  padding: 64px 0;
}
.footer-grid h3 { margin: 0 0 18px; color: #7c7c7c; font-size: 9px; }
.footer-grid a { display: block; width: fit-content; margin-top: 11px; color: #d4d4d4; font-size: 13px; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #818181;
  font-size: 10px;
}
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.reveal,
.reveal-soft {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal-soft { transition-duration: 1s; }
.reveal.is-visible,
.reveal-soft.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(255,255,255,.10); }
  50% { box-shadow: 0 0 0 10px rgba(255,255,255,.03); }
}
@keyframes pulseBars {
  0%, 100% { opacity: .8; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.08); }
}
@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes stackFloat {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-8px); }
}
@keyframes gridBlink {
  0%, 100% { opacity: .8; }
  50% { opacity: 1; }
}

@media (max-width: 1120px) {
  :root { --container: min(100% - 34px, 980px); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-visual { width: min(100%, 720px); margin-inline: auto; }
  .section-heading,
  .intro-grid,
  .principles-grid,
  .newsletter-inner,
  .product-feature { grid-template-columns: 1fr; }
  .section-heading { gap: 24px; }
  .product-feature { padding: 54px; }
  .product-copy { max-width: 720px; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 28px, 760px); --radius-xl: 28px; }
  .desktop-nav, .desktop-only { display: none; }
  .menu-toggle { display: inline-block; }
  .mobile-panel {
    display: block;
    position: fixed;
    inset: 0;
    z-index: -1;
    padding: 106px 0 28px;
    color: var(--ink);
    background: rgba(245,245,242,.99);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
  }
  .mobile-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-panel-inner { min-height: calc(100vh - 136px); display: flex; flex-direction: column; }
  .mobile-panel nav { display: grid; margin-top: 18px; border-top: 1px solid rgba(10,10,10,.14); }
  .mobile-panel nav a {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(10,10,10,.14);
    font-size: clamp(28px, 8vw, 48px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.05em;
  }
  .mobile-panel nav a span { color: #888; font-size: 9px; letter-spacing: 0; }
  .mobile-panel nav a i { font-style: normal; font-size: 16px; }
  .mobile-menu-footer {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
    padding-top: 28px;
  }
  .mobile-menu-footer p { margin: 0; color: #666; font-size: 13px; }
  .hero { min-height: auto; padding-top: 142px; }
  .hero h1 { font-size: clamp(54px, 12vw, 88px); }
  .hero-metrics,
  .signal-grid,
  .community-grid,
  .newsletter-inner,
  .section-heading,
  .intro-grid,
  .principles-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 560px; }
  .visual-side-panel { right: 0; }
  .signals,
  .products,
  .tools,
  .principles,
  .community { padding: 100px 0; }
  .tool-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tool-card-featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top, .footer-bottom { display: grid; }
}

@media (max-width: 560px) {
  :root { --container: min(100% - 22px, 520px); }
  .header-inner { min-height: 70px; padding-inline: 12px; }
  .brand { font-size: 18px; }
  .hero { padding-top: 126px; }
  .hero h1 { font-size: 50px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 12px 18px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-visual { min-height: 430px; margin-top: 18px; }
  .ring-a { width: 360px; height: 360px; }
  .ring-b { width: 280px; height: 280px; }
  .floating-card,
  .visual-side-panel { display: none; }
  .visual-card-main { min-height: 320px; padding: 0 12px 12px; border-radius: 22px; }
  .window-bar { height: 46px; }
  .visual-card-grid { grid-template-columns: 1fr; }
  .code-line { font-size: 10px; }
  .mini-graph { display: none; }
  .flow-row { padding: 14px 8px; gap: 5px; }
  .flow-node { padding: 7px; font-size: 7px; }
  .approval-row { font-size: 8px; }
  .marquee-wrap { margin-top: 54px; }
  .section-heading h2,
  .intro-content h2,
  .principles-sticky h2,
  .newsletter h2 { font-size: 40px; }
  .signal-card,
  .tool-card,
  .community-card,
  .product-feature { padding: 22px; }
  .product-feature { grid-template-columns: 1fr; }
  .product-copy h3 { font-size: 35px; }
  .product-ui { min-height: 410px; border-radius: 20px; }
  .octonous-ui { grid-template-columns: 48px 1fr; }
  .ui-canvas { padding: 13px; }
  .workflow-node { width: 108px; padding: 9px; }
  .node-input { left: 2%; }
  .node-source { left: 5%; }
  .node-ai { right: 2%; }
  .node-review { right: 0; }
  .connector { display: none; }
  .metric-grid-two,
  .provider-row,
  .tool-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .tool-card-featured { grid-column: auto; }
  .stack-graphic { transform: scale(.82); }
  .principle-item { grid-template-columns: 35px 1fr; }
  .principle-item i { display: none; }
  .community-card { min-height: 560px; }
  .blueprint-visual { min-height: 240px; transform: scale(.82); margin-inline: -35px; }
  .github-visual { min-height: 230px; padding: 18px; }
  .contribution-grid { grid-template-columns: repeat(10, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .form-row .button { width: 100%; margin-top: 12px; }
  .mobile-menu-footer { grid-template-columns: 1fr; }
  .footer-bottom div { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .cursor-glow, .ambient-orb { display: none; }
  .reveal, .reveal-soft { opacity: 1; transform: none; }
}

/* =========================================================
   V4 — Apple-like minimal premium refinement
   ========================================================= */
:root {
  --paper: #fbfbf8;
  --paper-2: #f3f3ef;
  --paper-3: #ecece7;
  --ink: #0b0b0b;
  --ink-2: #111111;
  --ink-3: #1a1a1a;
  --muted-dark: #989898;
  --muted-mid: #737373;
  --muted-light: #616161;
  --shadow-xl: 0 42px 110px rgba(0,0,0,.14);
  --shadow-lg: 0 28px 70px rgba(0,0,0,.10);
  --shadow-md: 0 16px 38px rgba(0,0,0,.08);
  --radius-xl: 38px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1260px, calc(100vw - 56px));
}

body { background: linear-gradient(180deg, #fbfbf8, #f6f6f2); }
.page-grid { opacity: .02; background-size: 88px 88px; }
.ambient-orb { filter: blur(110px); opacity: .08; }
.orb-a { width: 420px; height: 420px; top: -120px; left: -120px; }
.orb-b { width: 560px; height: 560px; top: 12%; right: -190px; opacity: .06; }
.cursor-glow { opacity: .05; filter: blur(130px); }

.header-shell {
  border-color: rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(18,18,18,.62);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
  backdrop-filter: blur(24px) saturate(125%);
}
.site-header.is-scrolled .header-shell {
  background: rgba(255,255,255,.84);
  border-color: rgba(10,10,10,.08);
  box-shadow: 0 14px 44px rgba(0,0,0,.08);
}
.header-inner { min-height: 70px; padding: 0 14px 0 20px; }
.brand { font-size: 19px; letter-spacing: -.05em; }
.brand-mark { width: 30px; height: 30px; border-radius: 999px; }
.desktop-nav {
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}
.nav-link, .nav-trigger {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
}
.text-link { font-size: 12px; }
.button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
}
.button-small { min-height: 42px; padding: 0 18px; }
.button-accent, .button-light, .header-cta {
  background: linear-gradient(180deg, #ffffff, #f2f2ee);
}
.button-dark { background: linear-gradient(180deg, #171717, #0a0a0a); }
.mega-menu {
  border-radius: 30px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 80px rgba(0,0,0,.14);
}
.menu-card {
  min-height: 122px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fafaf7, #f2f2ef);
}
.menu-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(180deg, #121212, #2a2a2a);
}

.hero {
  min-height: 980px;
  padding-top: 184px;
  background:
    radial-gradient(circle at 82% 16%, rgba(255,255,255,.12), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,.06), transparent 32%),
    linear-gradient(180deg, #0c0c0d 0%, #080808 100%);
}
.hero-grid { gap: 88px; }
.hero h1 { max-width: 760px; font-size: clamp(68px, 7.2vw, 118px); letter-spacing: -.075em; }
.hero h1 span { color: #b7b7b7; }
.hero-lead { max-width: 670px; color: #c4c4c4; }
.hero-proof { opacity: .88; }
.hero-metrics { gap: 16px; margin-top: 42px; }
.metric-chip {
  padding: 18px;
  border-radius: 22px;
  border-color: rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
}
.metric-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
}
.visual-card-main {
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.05));
  box-shadow: 0 40px 100px rgba(0,0,0,.30);
}
.window-bar { height: 60px; }
.code-stack, .mini-graph { border-radius: 22px; background: rgba(0,0,0,.18); }
.flow-row { border-radius: 20px; }
.flow-node { border-radius: 12px; }
.approval-row { border-radius: 18px; }
.floating-card, .visual-side-panel {
  border-radius: 24px;
  background: rgba(20,20,20,.72);
  box-shadow: 0 26px 60px rgba(0,0,0,.18);
}
.visual-side-panel { width: 200px; }

.signals { padding-top: 150px; }
.signal-card {
  border-radius: 30px;
  border-color: rgba(10,10,10,.07);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,245,240,.96));
  box-shadow: 0 18px 40px rgba(0,0,0,.05);
}
.signal-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, #1a1a1a, #090909);
}
.signal-card h3 { font-size: 30px; }

.section-heading h2,
.intro-content h2,
.principles-sticky h2,
.newsletter h2 { letter-spacing: -.07em; }
.intro { padding-top: 100px; }

.product-feature {
  gap: 60px;
  padding: 82px;
  border-radius: 40px;
  background: linear-gradient(180deg, #ffffff, #f0f0ec);
  box-shadow: 0 20px 60px rgba(0,0,0,.06);
}
.product-feature-alt { background: linear-gradient(180deg, #f0f0ec, #e2e2dd); }
.product-ui { border-radius: 34px; box-shadow: 0 28px 80px rgba(0,0,0,.14); }
.octonous-ui { background: rgba(255,255,255,.88); }
.ui-canvas { background: linear-gradient(180deg, #f6f6f3, #f0f0ec); }
.workflow-node { border-radius: 16px; }
.otari-ui { background: linear-gradient(180deg, #141414, #090909); }
.metric { border-radius: 18px; }
.chart-panel, .provider-row span { border-radius: 18px; }

.tools {
  background:
    radial-gradient(circle at 86% 12%, rgba(255,255,255,.10), transparent 24%),
    linear-gradient(180deg, #0c0c0c 0%, #070707 100%);
}
.tool-card {
  border-radius: 30px;
  border-color: rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.tool-card-featured {
  background: linear-gradient(180deg, #ffffff, #efefea);
}
.tool-symbol span { border-radius: 14px; }

.principles { padding: 160px 0; }
.principle-item { padding: 28px 0; }
.principle-item i {
  border-radius: 16px;
  background: rgba(255,255,255,.5);
}

.community-card {
  border-radius: 40px;
}
.community-card-blueprints {
  background: linear-gradient(180deg, #6f6f6f, #4b4b4b);
}
.community-card-github {
  background: linear-gradient(180deg, #151515, #070707);
}
.bp-card, .github-visual { border-radius: 20px; }

.newsletter {
  background: linear-gradient(180deg, #ffffff, #f1f1ed);
}
.form-row input { font-family: var(--font-display); letter-spacing: -.03em; }

@media (max-width: 860px) {
  :root { --container: min(100% - 30px, 760px); }
  .header-shell { border-radius: 24px; }
  .hero { padding-top: 146px; }
  .product-feature { padding: 42px 34px; }
}

@media (max-width: 560px) {
  :root { --container: min(100% - 22px, 520px); }
  .header-shell { border-radius: 20px; }
  .brand-mark { border-radius: 50%; }
  .hero { padding-top: 128px; }
  .hero h1 { font-size: 54px; }
  .signal-card, .tool-card, .community-card, .product-feature { border-radius: 26px; }
  .product-feature { padding: 26px 22px; }
  .product-ui, .visual-card-main { border-radius: 24px; }
}

/* =========================================================
   V5 — Stronger Apple-inspired landing hero
   ========================================================= */
.hero-light .site-header { color: var(--ink); }
.hero-light .header-shell {
  border-color: rgba(10,10,10,.07);
  background: rgba(255,255,255,.76);
  box-shadow: 0 12px 36px rgba(0,0,0,.07);
}
.hero-light .desktop-nav {
  border-color: rgba(10,10,10,.06);
  background: rgba(10,10,10,.025);
}
.hero-light .nav-link:hover,
.hero-light .nav-trigger:hover,
.hero-light .nav-group.is-active .nav-trigger { background: rgba(10,10,10,.06); }
.hero-light .header-cta { color: #fff; background: #0b0b0b; box-shadow: none; }
.hero-light .menu-toggle { border-color: rgba(10,10,10,.13); background: rgba(10,10,10,.03); }

.hero-apple {
  position: relative;
  min-height: 1180px;
  padding: 174px 0 86px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 25%, rgba(255,255,255,1) 0%, rgba(255,255,255,.78) 25%, transparent 60%),
    linear-gradient(180deg, #fbfbf8 0%, #f4f4f0 62%, #ecece7 100%);
}
.hero-apple-aura {
  position: absolute;
  width: 980px;
  height: 640px;
  left: 50%;
  top: 95px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.95), rgba(255,255,255,.2) 45%, transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}
.hero-apple-grid {
  position: absolute;
  inset: 0;
  opacity: .025;
  background-image:
    linear-gradient(rgba(10,10,10,.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,.55) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 78%, transparent 100%);
}
.hero-apple-intro {
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}
.hero-apple-badge {
  width: fit-content;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(10,10,10,.08);
  border-radius: 999px;
  color: #5e5e5e;
  background: rgba(255,255,255,.66);
  box-shadow: 0 8px 26px rgba(0,0,0,.04);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 0 5px rgba(10,10,10,.06);
}
.hero-apple h1 {
  max-width: 1060px;
  margin: 30px auto 0;
  font-size: clamp(66px, 8.2vw, 126px);
  line-height: .94;
  letter-spacing: -.078em;
  text-wrap: balance;
}
.hero-apple h1 span {
  display: inline-block;
  color: #8a8a8a;
  background: linear-gradient(180deg, #4e4e4e 0%, #a3a3a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-apple-intro > p {
  max-width: 760px;
  margin: 30px auto 0;
  color: #686868;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.58;
  letter-spacing: -.025em;
}
.hero-apple-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}
.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #222;
  font-size: 14px;
  font-weight: 800;
}
.hero-text-link span { transition: transform .2s ease; }
.hero-text-link:hover span { transform: translateX(5px); }

.hero-device-wrap {
  --hero-lift: 0px;
  --hero-scale: 1;
  position: relative;
  margin-top: 92px;
  padding-inline: 34px;
  transform: translateY(var(--hero-lift)) scale(var(--hero-scale));
  transform-origin: top center;
  transition: transform .12s linear;
  will-change: transform;
}
.hero-device-shadow {
  position: absolute;
  width: 72%;
  height: 100px;
  left: 14%;
  bottom: -28px;
  border-radius: 50%;
  background: rgba(0,0,0,.16);
  filter: blur(44px);
  opacity: .55;
}
.hero-device {
  position: relative;
  min-height: 670px;
  border: 1px solid rgba(10,10,10,.10);
  border-radius: 34px;
  background: rgba(255,255,255,.86);
  box-shadow:
    0 42px 100px rgba(0,0,0,.14),
    0 4px 12px rgba(0,0,0,.05),
    inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter: blur(20px) saturate(110%);
  overflow: hidden;
  transform-style: preserve-3d;
}
.hero-device::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.45), transparent 16%);
}
.device-topbar {
  position: relative;
  z-index: 2;
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(10,10,10,.08);
  background: rgba(255,255,255,.72);
}
.device-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.device-logo {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(180deg, #222, #090909);
  font-family: var(--font-mono);
  font-size: 13px;
}
.device-brand small,
.device-brand strong { display: block; }
.device-brand small { color: #8a8a8a; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.device-brand strong { margin-top: 2px; font-size: 12px; }
.device-tabs {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(10,10,10,.04);
}
.device-tabs span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #767676;
  font-size: 9px;
  font-weight: 700;
}
.device-tabs .is-active {
  color: #111;
  background: #fff;
  box-shadow: 0 5px 14px rgba(0,0,0,.06);
}
.device-user {
  justify-self: end;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #111;
  font-size: 9px;
  font-weight: 800;
}
.device-user span { display: none; }
.device-layout {
  display: grid;
  grid-template-columns: 68px 1fr;
  min-height: 596px;
}
.device-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-right: 1px solid rgba(10,10,10,.07);
  background: rgba(249,249,246,.7);
}
.side-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 12px;
  color: #8a8a8a;
  background: transparent;
}
.side-icon svg,
.stat-icon svg,
.node-icon svg,
.float-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.side-icon svg path:first-child:only { fill: none; }
.side-icon.is-active {
  color: #fff;
  background: #111;
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
}
.side-icon:first-child svg path { fill: currentColor; stroke: none; }
.device-main { padding: 32px; background: linear-gradient(180deg, #fbfbf9, #f5f5f1); }
.device-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.device-heading small { color: #888; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.device-heading h2 {
  max-width: 580px;
  margin: 6px 0 0;
  font-size: clamp(25px, 2.25vw, 38px);
  line-height: 1.08;
  letter-spacing: -.05em;
}
.new-workflow {
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #111;
  font-size: 10px;
  font-weight: 800;
}
.new-workflow span { font-size: 15px; font-weight: 400; }
.device-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.device-stat-grid article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(10,10,10,.07);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 28px rgba(0,0,0,.035);
}
.stat-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #111;
  background: #f0f0ec;
}
.device-stat-grid small,
.device-stat-grid strong,
.device-stat-grid em { display: block; }
.device-stat-grid small { color: #888; font-size: 8px; }
.device-stat-grid strong { margin-top: 3px; font-size: 20px; line-height: 1.1; }
.device-stat-grid em { margin-top: 3px; color: #777; font-size: 8px; font-style: normal; }
.device-content-grid {
  display: grid;
  grid-template-columns: 1.24fr .76fr;
  gap: 14px;
  margin-top: 14px;
}
.device-panel {
  padding: 18px;
  border: 1px solid rgba(10,10,10,.07);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 32px rgba(0,0,0,.035);
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.panel-head small,
.panel-head strong { display: block; }
.panel-head small { color: #8a8a8a; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.panel-head strong { margin-top: 4px; font-size: 12px; }
.panel-head > span:not(.live-pill) { color: #888; font-size: 8px; }
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  color: #555;
  background: #f0f0ec;
  font-family: var(--font-mono);
  font-size: 7px;
  text-transform: uppercase;
}
.live-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #111;
  animation: livePulse 2.4s ease-in-out infinite;
}
.workflow-track {
  position: relative;
  min-height: 224px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.track-line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, #c9c9c4, #888, #c9c9c4);
}
.track-node {
  position: relative;
  z-index: 1;
  min-height: 116px;
  padding: 13px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(10,10,10,.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,.05);
  animation: nodeFloat 5s ease-in-out infinite;
}
.track-node:nth-child(3) { animation-delay: .45s; }
.track-node:nth-child(4) { animation-delay: .9s; }
.track-node:nth-child(5) { animation-delay: 1.35s; }
.track-node.is-primary { color: #fff; background: #111; }
.node-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #111;
  background: #f1f1ed;
}
.track-node.is-primary .node-icon { color: #fff; background: rgba(255,255,255,.12); }
.track-node small { margin-top: 9px; color: #888; font-size: 7px; text-transform: uppercase; letter-spacing: .07em; }
.track-node.is-primary small { color: #aaa; }
.track-node b { margin-top: 3px; font-size: 9px; }
.approval-card {
  min-height: 58px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 16px;
  background: #f1f1ed;
}
.approval-card > div { display: flex; align-items: center; gap: 10px; }
.approval-avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #111;
  font-size: 9px;
  font-weight: 800;
}
.approval-card p { margin: 0; }
.approval-card strong,
.approval-card small { display: block; }
.approval-card strong { font-size: 9px; }
.approval-card small { margin-top: 2px; color: #7d7d7d; font-size: 7px; }
.approval-card button {
  border: 0;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: #111;
  font-size: 8px;
  font-weight: 800;
}
.apple-chart {
  position: relative;
  height: 212px;
  margin-top: 10px;
  overflow: hidden;
}
.apple-chart::before {
  content: "";
  position: absolute;
  inset: 22px 0 8px;
  background-image: linear-gradient(rgba(10,10,10,.06) 1px, transparent 1px);
  background-size: 100% 42px;
}
.apple-chart svg { position: relative; z-index: 1; width: 100%; height: 100%; }
.chart-point {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.point-a { left: 35%; top: 50%; }
.point-b { left: 66%; top: 30%; }
.point-c { right: 8%; top: 13%; }
.provider-legend { display: grid; gap: 7px; }
.provider-legend span { color: #707070; font-size: 8px; }
.provider-legend i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #111;
}
.provider-legend span:nth-child(2) i { opacity: .55; }
.provider-legend span:nth-child(3) i { opacity: .25; }
.provider-legend b { float: right; color: #111; }
.hero-float-card {
  position: absolute;
  z-index: 4;
  min-width: 196px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(10,10,10,.08);
  border-radius: 19px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 20px 46px rgba(0,0,0,.10);
  backdrop-filter: blur(14px);
}
.hero-float-left { left: -6px; bottom: 104px; animation: float 6s ease-in-out infinite; }
.hero-float-right { right: -6px; top: 92px; animation: float 5.4s .7s ease-in-out infinite reverse; }
.float-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: #111;
}
.hero-float-card small,
.hero-float-card strong { display: block; }
.hero-float-card small { color: #838383; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.hero-float-card strong { margin-top: 3px; font-size: 11px; }
.hero-apple-proof {
  margin-top: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  color: #777;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.hero-apple-proof i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #aaa;
}

@media (max-width: 1100px) {
  .hero-apple { padding-top: 158px; }
  .hero-device-wrap { padding-inline: 0; }
  .hero-device { min-height: 630px; }
  .device-content-grid { grid-template-columns: 1fr; }
  .insight-panel { display: none; }
  .hero-float-right { right: 10px; }
  .hero-float-left { left: 10px; }
}

@media (max-width: 860px) {
  .hero-apple { min-height: auto; padding: 140px 0 76px; }
  .hero-apple h1 { font-size: clamp(56px, 12vw, 88px); }
  .hero-device-wrap { margin-top: 66px; }
  .device-tabs { display: none; }
  .device-topbar { grid-template-columns: 1fr auto; }
  .device-user { grid-column: 2; }
  .device-main { padding: 24px; }
  .device-stat-grid { grid-template-columns: 1fr 1fr; }
  .device-stat-grid article:last-child { display: none; }
  .hero-float-card { display: none; }
}

@media (max-width: 560px) {
  .hero-apple { padding-top: 126px; }
  .hero-apple-badge { font-size: 7px; padding: 7px 10px; }
  .hero-apple h1 { margin-top: 24px; font-size: 50px; }
  .hero-apple-intro > p { margin-top: 24px; font-size: 17px; }
  .hero-apple-actions { display: grid; gap: 15px; }
  .hero-apple-actions .button { width: 100%; }
  .hero-text-link { justify-content: center; }
  .hero-device-wrap { margin-top: 54px; }
  .hero-device { min-height: 500px; border-radius: 24px; }
  .device-topbar { min-height: 62px; padding: 0 14px; }
  .device-layout { grid-template-columns: 48px 1fr; min-height: 438px; }
  .device-sidebar { gap: 10px; padding-top: 16px; }
  .side-icon { width: 32px; height: 32px; border-radius: 10px; }
  .device-main { padding: 16px; }
  .device-heading h2 { font-size: 24px; }
  .new-workflow { display: none; }
  .device-stat-grid { grid-template-columns: 1fr; margin-top: 18px; }
  .device-stat-grid article:nth-child(2) { display: none; }
  .device-content-grid { margin-top: 10px; }
  .device-panel { padding: 13px; border-radius: 18px; }
  .workflow-track { min-height: 246px; grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .track-line { display: none; }
  .track-node { min-height: 105px; }
  .approval-card { display: none; }
  .hero-apple-proof { margin-top: 48px; gap: 12px; }
  .hero-apple-proof span:nth-of-type(3),
  .hero-apple-proof span:nth-of-type(4),
  .hero-apple-proof i:nth-of-type(3) { display: none; }
}

/* V6 — One-page AI agent consulting storytelling updates */
.desktop-nav-simple {
  border-radius: 999px;
}
.signal-icon svg,
.float-icon svg,
.stat-icon svg,
.node-icon svg,
.side-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.signal-icon {
  color: var(--white);
}
.signal-card .signal-icon svg {
  width: 26px;
  height: 26px;
}
.footer-grid-onepager {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hero-apple-intro p,
.section-heading > p,
.intro-content p,
.product-copy > p,
.newsletter-copy p {
  max-width: 60ch;
}
.onepager-consulting .hero-text-link,
.onepager-consulting .arrow-link,
.onepager-consulting .card-link {
  font-weight: 800;
}
@media (max-width: 860px) {
  .footer-grid-onepager {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid-onepager {
    grid-template-columns: 1fr;
  }
  .signal-card .signal-icon svg { width: 22px; height: 22px; }
}


/* V7 — it-governance.net branding and sector imagery */
.brand-logo {
  display: block;
  width: auto;
  height: 32px;
  max-width: 260px;
  object-fit: contain;
}
.brand.brand-footer .brand-logo {
  height: 38px;
  max-width: 320px;
}
.device-logo {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #111, #3a3a3a);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}
.industries-section { padding: 150px 0; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.industry-card {
  position: relative;
  grid-column: span 4;
  min-height: 360px;
  overflow: hidden;
  border-radius: 32px;
  background: #111;
  box-shadow: 0 18px 48px rgba(0,0,0,.10);
}
.industry-card-wide { grid-column: span 6; min-height: 420px; }
.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.55) 100%);
}
.industry-card:hover img { transform: scale(1.04); }
.industry-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 28px;
  color: #fff;
}
.industry-overlay span {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.78);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .10em;
}
.industry-overlay h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.06;
  letter-spacing: -.05em;
}
.industry-overlay p {
  max-width: 46ch;
  margin: 12px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 1120px) {
  .industry-card,
  .industry-card-wide { grid-column: span 6; }
}
@media (max-width: 860px) {
  .brand-logo { height: 28px; max-width: 210px; }
  .industry-card,
  .industry-card-wide { grid-column: span 12; min-height: 340px; }
}
@media (max-width: 560px) {
  .brand-logo { height: 22px; max-width: 170px; }
  .brand.brand-footer .brand-logo { height: 26px; }
  .industry-card,
  .industry-card-wide { min-height: 300px; border-radius: 26px; }
  .industry-overlay { padding: 20px; }
  .industry-overlay h3 { font-size: 26px; }
}

.brand-image-only { gap: 0; }
.brand-image-only .brand-logo { display:block; }


/* V8 — sharper marketing copy + industry slider */
.section-heading-slider {
  align-items: end;
}
.section-heading-aside {
  display: grid;
  gap: 20px;
  justify-items: start;
}
.industry-slider-controls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}
.slider-control {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #161616, #050505);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: transform .25s ease, opacity .25s ease, background .25s ease;
}
.slider-control:hover { transform: translateY(-1px); }
.slider-control:disabled {
  opacity: .38;
  cursor: default;
  transform: none;
}
.slider-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 72px;
  justify-content: center;
  padding: 0 6px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
}
.slider-status i { font-style: normal; color: var(--muted-mid); }
.industry-slider { overflow: hidden; }
.industry-slider-viewport {
  overflow: hidden;
  width: 100%;
}
.industry-track {
  display: flex;
  gap: 18px;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.industry-slide {
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 420px;
}
.industry-slide .industry-overlay h3 {
  max-width: 12ch;
}
.hero-apple-intro h1,
.section-heading h2,
.intro-content h2,
.product-copy h3,
.principles-sticky h2,
.newsletter h2 {
  text-wrap: balance;
}
.product-copy h3 { max-width: 12ch; }
@media (max-width: 1120px) {
  .industry-slide {
    flex-basis: calc((100% - 18px) / 2);
  }
}
@media (max-width: 860px) {
  .section-heading-slider {
    align-items: start;
  }
  .section-heading-aside {
    width: 100%;
  }
  .industry-slider-controls {
    margin-top: 4px;
  }
}
@media (max-width: 700px) {
  .industry-slide {
    flex-basis: 100%;
    min-height: 340px;
  }
  .slider-control {
    width: 42px;
    height: 42px;
  }
}

/* V9 — broader solution storytelling, smaller headlines, stronger motion */
.products .container {
  width: min(1480px, calc(100vw - 48px));
}
.products .section-heading {
  width: min(1240px, 100%);
  margin-inline: auto;
}
.product-feature {
  grid-template-columns: minmax(420px, .92fr) minmax(620px, 1.18fr);
  gap: 64px;
  min-height: 720px;
  padding: 68px 72px;
}
.product-copy {
  max-width: 620px;
}
.product-logo {
  font-size: 29px;
}
.product-copy h3 {
  max-width: 15ch;
  margin: 30px 0 20px;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.03;
  letter-spacing: -.055em;
}
.product-copy > p {
  max-width: 610px;
  font-size: 16px;
  line-height: 1.7;
}
.feature-list {
  margin-top: 30px;
}
.feature-list li {
  grid-template-columns: 34px minmax(0, 1fr);
  padding: 16px 0;
}
.feature-list strong {
  font-size: 14px;
  line-height: 1.35;
}
.feature-list small {
  max-width: 58ch;
  font-size: 12px;
  line-height: 1.55;
}
.product-ui {
  min-height: 560px;
}
.product-feature::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 30%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
  transform: rotate(12deg) translateX(-160%);
  opacity: 0;
}
.product-feature.is-visible::before {
  animation: solutionSheen 1.25s .35s cubic-bezier(.22,1,.36,1) both;
}
.product-feature.is-visible .product-copy > * {
  animation: solutionTextIn .72s cubic-bezier(.22,1,.36,1) both;
}
.product-feature.is-visible .product-copy > *:nth-child(1) { animation-delay: .08s; }
.product-feature.is-visible .product-copy > *:nth-child(2) { animation-delay: .14s; }
.product-feature.is-visible .product-copy > *:nth-child(3) { animation-delay: .2s; }
.product-feature.is-visible .product-copy > *:nth-child(4) { animation-delay: .27s; }
.product-feature.is-visible .product-copy > *:nth-child(5) { animation-delay: .34s; }
.product-feature.is-visible .product-copy > *:nth-child(6) { animation-delay: .42s; }
.product-feature.is-visible .product-ui {
  animation: solutionMockupIn .95s .18s cubic-bezier(.22,1,.36,1) both;
}
.product-feature.is-visible .feature-list li {
  animation: solutionRowIn .58s cubic-bezier(.22,1,.36,1) both;
}
.product-feature.is-visible .feature-list li:nth-child(1) { animation-delay: .38s; }
.product-feature.is-visible .feature-list li:nth-child(2) { animation-delay: .46s; }
.product-feature.is-visible .feature-list li:nth-child(3) { animation-delay: .54s; }
.product-feature.is-visible .chart-panel path:last-child {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: solutionLineDraw 1.8s .72s ease forwards;
}
.product-feature.is-visible .metric {
  animation: metricLift .65s cubic-bezier(.22,1,.36,1) both;
}
.product-feature.is-visible .metric:nth-child(1) { animation-delay: .42s; }
.product-feature.is-visible .metric:nth-child(2) { animation-delay: .50s; }
.product-feature.is-visible .metric:nth-child(3) { animation-delay: .58s; }

@keyframes solutionTextIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes solutionRowIn {
  from { opacity: 0; transform: translateX(-14px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes solutionMockupIn {
  from { opacity: 0; transform: perspective(1200px) translateY(28px) scale(.965); }
  to { opacity: 1; transform: perspective(1200px) translateY(0) scale(1); }
}
@keyframes solutionLineDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes metricLift {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes solutionSheen {
  0% { opacity: 0; transform: rotate(12deg) translateX(-160%); }
  25% { opacity: .65; }
  100% { opacity: 0; transform: rotate(12deg) translateX(620%); }
}

@media (max-width: 1280px) {
  .product-feature {
    grid-template-columns: minmax(370px, .9fr) minmax(540px, 1.1fr);
    gap: 48px;
    padding: 58px;
  }
}
@media (max-width: 1120px) {
  .products .container { width: min(100% - 34px, 980px); }
  .product-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .product-copy { max-width: 760px; }
  .product-copy h3 { max-width: 18ch; }
}
@media (max-width: 560px) {
  .products .container { width: min(100% - 22px, 520px); }
  .product-feature { padding: 28px 22px; gap: 34px; }
  .product-copy h3 {
    font-size: 34px;
    max-width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .product-feature.is-visible::before,
  .product-feature.is-visible .product-copy > *,
  .product-feature.is-visible .product-ui,
  .product-feature.is-visible .feature-list li,
  .product-feature.is-visible .chart-panel path:last-child,
  .product-feature.is-visible .metric {
    animation: none !important;
  }
}


/* V10 — reduced headline scale, contact details, and real subpages */
.hero-apple-intro h1 {
  font-size: clamp(46px, 5.25vw, 78px);
  line-height: .98;
  letter-spacing: -.065em;
}
.section-heading h2,
.intro-content h2,
.principles-sticky h2,
.newsletter h2 {
  font-size: clamp(34px, 3.7vw, 56px);
  line-height: 1.04;
  letter-spacing: -.06em;
}
.product-copy h3 {
  font-size: clamp(29px, 2.25vw, 39px);
  line-height: 1.07;
  max-width: 18ch;
}
.signal-card h3,
.tool-card h3,
.principle-item h3 {
  font-size: clamp(23px, 2vw, 29px);
}
.industry-overlay h3 {
  font-size: clamp(25px, 2.2vw, 32px);
}
.community-card h3 {
  font-size: clamp(30px, 3.5vw, 45px);
}
.contact-quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 30px;
}
.contact-quick-links a {
  padding: 17px 18px;
  border: 1px solid rgba(10,10,10,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  transition: transform .2s ease, background .2s ease;
}
.contact-quick-links a:hover { transform: translateY(-2px); background: #fff; }
.contact-quick-links span,
.contact-quick-links strong { display:block; }
.contact-quick-links span {
  color: var(--muted-light);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.contact-quick-links strong { margin-top: 7px; font-size: 14px; }

/* Shared standalone pages */
.subpage-body { background: #f7f7f3; }
.subpage-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  padding-top: 14px;
}
.subpage-nav-shell {
  width: min(1180px, calc(100vw - 28px));
  min-height: 68px;
  margin-inline: auto;
  padding: 0 14px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(10,10,10,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 14px 44px rgba(0,0,0,.08);
  backdrop-filter: blur(20px);
}
.subpage-nav { display:flex; align-items:center; gap:8px; }
.subpage-nav a {
  padding: 10px 14px;
  border-radius:999px;
  font-family:var(--font-display);
  font-size:13px;
  font-weight:600;
}
.subpage-nav a:hover { background: rgba(10,10,10,.06); }
.subpage-main { padding: 105px 0 110px; }
.subpage-hero {
  padding: 90px 0 70px;
  text-align:center;
}
.subpage-hero .section-label { display:block; margin-bottom:18px; }
.subpage-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.065em;
}
.subpage-hero p {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted-light);
  font-size: 18px;
  line-height: 1.7;
}
.subpage-grid {
  display:grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap:20px;
}
.subpage-card {
  padding: 32px;
  border: 1px solid rgba(10,10,10,.08);
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 38px rgba(0,0,0,.05);
}
.subpage-card h2,
.subpage-card h3 {
  margin:0;
  font-size: clamp(25px,2.4vw,34px);
  line-height:1.1;
  letter-spacing:-.045em;
}
.subpage-card p,
.subpage-card li { color: var(--muted-light); }
.subpage-card ul { margin:18px 0 0; padding-left:20px; }
.subpage-card li + li { margin-top:8px; }
.contact-detail-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-bottom:22px;
}
.contact-detail {
  padding:24px;
  border-radius:22px;
  background:#111;
  color:#fff;
}
.contact-detail span,
.contact-detail strong { display:block; }
.contact-detail span { color:#aaa; font-family:var(--font-mono); font-size:9px; text-transform:uppercase; letter-spacing:.09em; }
.contact-detail strong { margin-top:9px; font-size:15px; line-height:1.5; }
.legal-layout {
  display:grid;
  grid-template-columns: minmax(220px,.35fr) minmax(0,1fr);
  gap:50px;
  align-items:start;
}
.legal-toc {
  position:sticky;
  top:110px;
  padding:24px;
  border-radius:22px;
  background:#111;
  color:#fff;
}
.legal-toc a { display:block; padding:8px 0; color:#bbb; font-size:13px; }
.legal-copy { display:grid; gap:18px; }
.legal-block {
  padding:28px;
  border:1px solid rgba(10,10,10,.08);
  border-radius:24px;
  background:#fff;
}
.legal-block h2 { margin:0 0 14px; font-size:28px; letter-spacing:-.04em; }
.legal-block h3 { margin:22px 0 8px; font-size:20px; }
.legal-block p,
.legal-block li { color:#555; line-height:1.75; }
.legal-note {
  padding:18px 20px;
  border-radius:16px;
  background:#ecece7;
  color:#555;
  font-size:13px;
}
.subpage-footer { padding:44px 0; background:#0a0a0a; color:#fff; }
.subpage-footer-inner { display:flex; justify-content:space-between; gap:30px; align-items:center; }
.subpage-footer-links { display:flex; flex-wrap:wrap; gap:18px; color:#aaa; font-size:12px; }

@media (max-width: 860px) {
  .hero-apple-intro h1 { font-size: clamp(42px, 9vw, 64px); }
  .contact-quick-links,
  .subpage-grid,
  .contact-detail-grid,
  .legal-layout { grid-template-columns:1fr; }
  .legal-toc { position:static; }
  .subpage-nav { display:none; }
  .subpage-hero { padding-top:60px; }
}
@media (max-width: 560px) {
  .hero-apple-intro h1 { font-size: 40px; }
  .section-heading h2,
  .intro-content h2,
  .principles-sticky h2,
  .newsletter h2 { font-size: 34px; }
  .product-copy h3 { font-size: 29px; }
  .subpage-nav-shell { border-radius:22px; }
  .subpage-main { padding-top:80px; }
  .subpage-card,
  .legal-block { padding:22px; }
  .subpage-footer-inner { display:grid; }
}


/* V11 — refined headline sizing, story stats, real forms, and better footer */
.hero-apple-intro h1 {
  max-width: 980px;
  font-size: clamp(40px, 4.65vw, 70px);
  line-height: 1.06;
  letter-spacing: -.06em;
  padding-bottom: .08em;
}
.hero-apple-intro h1 span {
  display: inline-block;
  padding-bottom: .06em;
}
.hero-apple-intro p {
  max-width: 920px;
  margin-inline: auto;
  font-size: clamp(18px, 1.9vw, 22px);
}
.section-heading h2,
.intro-content h2,
.principles-sticky h2,
.newsletter h2 {
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
}
.intro-content h2 { max-width: 12ch; }
.product-copy h3 {
  font-size: clamp(26px, 2vw, 36px);
  line-height: 1.1;
}
.hero-apple-intro,
.intro-grid-expanded,
.newsletter-inner {
  max-width: 1240px;
}
.intro-grid-expanded {
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 36px;
}
.intro-content { max-width: 1060px; }
.intro-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.intro-stat {
  padding: 22px 20px;
  border: 1px solid rgba(10,10,10,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 10px 26px rgba(0,0,0,.04);
}
.intro-stat strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -.05em;
}
.intro-stat span:last-child {
  display: block;
  color: var(--muted-light);
  font-size: 13px;
  line-height: 1.6;
}
.section-label-light { color: rgba(255,255,255,.65); }
.site-footer-cta .footer-cta-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  padding: 46px 0 38px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.site-footer-cta .footer-cta-block h2 {
  margin: 12px 0 10px;
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -.055em;
}
.site-footer-cta .footer-cta-block p {
  max-width: 62ch;
  color: rgba(255,255,255,.72);
}
.footer-top { display:none; }
.footer-grid { padding-top: 32px; }
.contact-detail-grid-two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.subpage-grid-contact { grid-template-columns: .95fr 1.05fr; align-items: start; }
.subpage-grid-about { grid-template-columns: repeat(2,minmax(0,1fr)); }
.subpage-card-form,
.subpage-card-stats { overflow: hidden; }
.contact-note-box {
  margin-top: 22px;
  padding: 20px;
  border-radius: 18px;
  background: #f1f1ed;
}
.contact-note-box strong {
  display:block;
  margin-bottom:8px;
  font-size: 15px;
}
.real-contact-form {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}
.form-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.compact-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.field-group { display: grid; gap: 9px; }
.field-group label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted-mid);
  font-family: var(--font-mono);
}
.real-contact-form input,
.real-contact-form textarea {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid rgba(10,10,10,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  font: inherit;
  color: var(--ink);
}
.real-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.real-contact-form input:focus,
.real-contact-form textarea:focus {
  outline: none;
  border-color: rgba(10,10,10,.35);
  box-shadow: 0 0 0 4px rgba(10,10,10,.06);
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted-light);
  font-size: 13px;
  line-height: 1.6;
}
.checkbox-row input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 1px;
  padding: 0;
  border-radius: 6px;
}
.checkbox-row a { text-decoration: underline; }
.form-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.form-actions-row .form-note {
  margin: 0;
  max-width: 38ch;
}
.intro-stats-subpage {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}
.subpage-footer-inner .button { flex-shrink: 0; }
.subpage-footer-inner p { color: rgba(255,255,255,.72); margin-top: 8px; }
@media (max-width: 1120px) {
  .intro-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .subpage-grid-contact { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .hero-apple-intro h1 { font-size: clamp(36px, 8vw, 56px); }
  .section-heading h2,
  .intro-content h2,
  .principles-sticky h2,
  .newsletter h2 { font-size: clamp(28px, 7vw, 40px); }
  .intro-grid-expanded { grid-template-columns: 1fr; }
  .intro-stats,
  .intro-stats-subpage,
  .form-field-grid,
  .compact-grid,
  .contact-detail-grid-two { grid-template-columns: 1fr; }
  .site-footer-cta .footer-cta-block { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 560px) {
  .hero-apple-intro h1 { font-size: 34px; }
  .product-copy h3 { font-size: 25px; }
  .intro-stat { padding: 18px; }
}

.subpage-hero h1 {
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.04;
}
.subpage-card h2,
.subpage-card h3 {
  font-size: clamp(22px, 2vw, 31px);
}


/* V12 — centered footer, redesigned impact metrics, contact person */
.hero-apple-intro h1 {
  max-width: 1040px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.04;
  padding-bottom: .12em;
}
.hero-apple-intro h1 span {
  color: #8b8b8b;
  padding-bottom: .10em;
}
.impact-section { padding-bottom: 130px; }
.impact-stage {
  position: relative;
  margin-top: 68px;
  padding: 38px;
  overflow: hidden;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 12%, rgba(255,255,255,.14), transparent 22%),
    linear-gradient(135deg, #161616, #080808 72%);
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
}
.impact-stage::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -330px;
  right: -100px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
  animation: impactOrbit 18s linear infinite;
}
.impact-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.05) 46%, transparent 65%);
  transform: translateX(-120%);
}
.impact-stage.is-visible::after { animation: impactSweep 1.5s .3s ease-out forwards; }
.impact-stage-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  gap: 50px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.impact-kicker {
  color: rgba(255,255,255,.58);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.impact-stage-head h3 {
  max-width: 16ch;
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.impact-stage-head p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.7;
}
.impact-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.impact-metric {
  position: relative;
  min-height: 260px;
  padding: 28px 26px 18px;
  border-right: 1px solid rgba(255,255,255,.10);
  opacity: 0;
  transform: translateY(22px);
}
.impact-metric:last-child { border-right: 0; }
.impact-stage.is-visible .impact-metric {
  animation: metricReveal .75s cubic-bezier(.2,.75,.2,1) forwards;
}
.impact-stage.is-visible .impact-metric:nth-child(2) { animation-delay: .10s; }
.impact-stage.is-visible .impact-metric:nth-child(3) { animation-delay: .20s; }
.impact-stage.is-visible .impact-metric:nth-child(4) { animation-delay: .30s; }
.impact-index {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.55);
  font-family: var(--font-mono);
  font-size: 9px;
}
.impact-metric-value {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-top: 35px;
  font-family: var(--font-display);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.07em;
}
.impact-metric-value sup {
  margin-top: 4px;
  color: rgba(255,255,255,.62);
  font-family: var(--font-sans);
  font-size: .34em;
  font-weight: 700;
}
.impact-metric h4 {
  margin: 22px 0 8px;
  font-size: 15px;
}
.impact-metric p {
  margin: 0;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  line-height: 1.65;
}
.impact-stage-subpage { margin-top: 28px; }
.impact-metrics-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-person-mini {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(10,10,10,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.58);
}
.contact-person-mini img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 18px;
  filter: grayscale(1);
}
.contact-person-mini span,
.contact-person-mini strong,
.contact-person-mini small { display: block; }
.contact-person-mini span { color: var(--muted-mid); font-family: var(--font-mono); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.contact-person-mini strong { margin-top: 4px; font-size: 14px; }
.contact-person-mini small { margin-top: 2px; color: var(--muted-light); font-size: 11px; }
.site-footer-cta .footer-cta-block {
  max-width: 1050px;
  margin: 0 auto;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding: 54px 0 46px;
}
.site-footer-cta .footer-cta-block h2 { max-width: 900px; }
.site-footer-cta .footer-cta-block p { max-width: 700px; margin-inline: auto; }
.site-footer-cta .footer-grid {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}
.site-footer-cta .footer-grid a { margin-inline: auto; }
.site-footer-cta .footer-bottom {
  max-width: 1080px;
  margin-inline: auto;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.contact-page-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 24px;
  align-items: start;
}
.contact-person-card {
  overflow: hidden;
  border: 1px solid rgba(10,10,10,.08);
  border-radius: 30px;
  background: #111;
  color: #fff;
  box-shadow: 0 20px 55px rgba(0,0,0,.12);
}
.contact-person-image-wrap { aspect-ratio: 1 / .84; overflow: hidden; }
.contact-person-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: grayscale(1) contrast(1.04);
  transition: transform .55s ease;
}
.contact-person-card:hover img { transform: scale(1.035); }
.contact-person-copy { padding: 30px; }
.contact-person-copy .section-label { color: rgba(255,255,255,.54); }
.contact-person-copy h2,
.about-lead-copy h2 {
  margin: 12px 0 5px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -.05em;
}
.contact-role {
  margin: 0 0 20px !important;
  color: #9d9d9d !important;
  font-weight: 700;
}
.contact-person-copy > p { color: rgba(255,255,255,.66); }
.contact-person-actions { display: grid; gap: 9px; margin-top: 24px; }
.contact-person-actions a {
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.05);
}
.contact-person-actions span,
.contact-person-actions strong { display: block; }
.contact-person-actions span { color: rgba(255,255,255,.50); font-family: var(--font-mono); font-size: 8px; text-transform: uppercase; }
.contact-person-actions strong { margin-top: 4px; font-size: 13px; }
.contact-form-card { padding: 34px; }
.form-honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
.about-lead-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 24px;
}
.about-lead-image,
.about-lead-copy {
  border-radius: 30px;
  overflow: hidden;
}
.about-lead-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(1) contrast(1.04);
}
.about-lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
  background: #fff;
  border: 1px solid rgba(10,10,10,.08);
}
.about-lead-copy > p:not(.contact-role) { color: var(--muted-light); font-size: 17px; line-height: 1.75; }
.about-lead-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.subpage-footer-inner {
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.subpage-footer-links { justify-content: center; }
@keyframes metricReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes impactSweep {
  to { transform: translateX(120%); }
}
@keyframes impactOrbit {
  to { transform: rotate(360deg); }
}
@media (max-width: 1120px) {
  .impact-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .impact-metric:nth-child(2) { border-right: 0; }
  .impact-metric:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.10); }
  .contact-page-layout,
  .about-lead-section { grid-template-columns: 1fr; }
  .about-lead-image img { min-height: 420px; }
}
@media (max-width: 860px) {
  .impact-stage { padding: 28px; }
  .impact-stage-head { grid-template-columns: 1fr; gap: 18px; }
  .impact-metrics-three { grid-template-columns: 1fr; }
  .impact-metrics-three .impact-metric { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); }
  .impact-metrics-three .impact-metric:last-child { border-bottom: 0; }
}
@media (max-width: 620px) {
  .hero-apple-intro h1 { font-size: 38px; }
  .impact-stage { padding: 22px; border-radius: 26px; }
  .impact-metrics { grid-template-columns: 1fr; }
  .impact-metric,
  .impact-metric:nth-child(2),
  .impact-metric:nth-child(-n+2) { min-height: 220px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); }
  .impact-metric:last-child { border-bottom: 0; }
  .impact-metric-value { font-size: 56px; }
  .contact-person-mini { grid-template-columns: 56px 1fr; }
  .contact-person-mini img { width: 56px; height: 56px; }
  .about-lead-copy,
  .contact-person-copy,
  .contact-form-card { padding: 24px; }
  .about-lead-image img { min-height: 360px; }
}

/* V13 — simplified impact, process flow, and footer */
.impact-section { padding-bottom: 120px; }
.impact-simple {
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(0, 2.2fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: end;
  margin-top: 72px;
  padding-top: 46px;
  border-top: 1px solid rgba(10,10,10,.15);
}
.impact-simple-intro h3 {
  margin: 12px 0 18px;
  font-size: clamp(31px, 3vw, 48px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.impact-simple-intro p { max-width: 370px; margin: 0; color: #6d6d6d; font-size: 15px; line-height: 1.7; }
.impact-simple .impact-kicker { color: #777; }
.impact-metrics-simple {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 0;
}
.impact-metrics-simple .impact-metric {
  min-height: 0;
  padding: 0 24px 3px;
  border: 0;
  border-left: 1px solid rgba(10,10,10,.13);
  color: var(--ink);
  opacity: 1;
  transform: none;
}
.impact-metrics-simple .impact-metric:first-child { padding-left: 0; border-left: 0; }
.impact-metrics-simple .impact-metric-value {
  color: var(--ink);
  font-size: clamp(45px, 5vw, 72px);
  line-height: .94;
  letter-spacing: -.065em;
}
.impact-metrics-simple .impact-metric-value sup { color: #777; font-size: .34em; }
.impact-metrics-simple .impact-metric h4 { margin-top: 18px; color: #505050; font-size: 12px; font-family: var(--font-sans); letter-spacing: .01em; }

.tools { padding: 130px 0; overflow: hidden; }
.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 72px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.process-flow::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 20%;
  height: 2px;
  background: #fff;
  box-shadow: 0 0 24px rgba(255,255,255,.45);
}
.process-step {
  position: relative;
  min-height: 390px;
  padding: 42px 30px 34px;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: background .25s ease, transform .25s ease;
}
.process-step:first-child { border-left: 1px solid rgba(255,255,255,.12); }
.process-step:hover { background: rgba(255,255,255,.055); transform: translateY(-6px); }
.process-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 88px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.025));
  box-shadow: inset 0 1px rgba(255,255,255,.12), 0 18px 40px rgba(0,0,0,.2);
}
.process-icon svg { width: 40px; height: 40px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.process-number { position: absolute; top: 46px; right: 27px; color: #777; font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; }
.process-step h3 { margin: 0; font-size: clamp(23px, 2vw, 31px); letter-spacing: -.045em; }
.process-step p { margin: 15px 0 0; color: #a6a6a6; font-size: 13px; line-height: 1.65; }
.process-close {
  display: grid;
  grid-template-columns: auto minmax(60px, 1fr) auto auto;
  gap: 20px;
  align-items: center;
  padding: 26px 0 0;
  color: #777;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.process-close i { height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.1), rgba(255,255,255,.45)); }
.process-close strong { color: #fff; font-weight: 500; }
.process-close a { margin-left: 28px; padding: 13px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 100px; color: #fff; transition: background .2s ease; }
.process-close a:hover { background: rgba(255,255,255,.1); }
.process-close b { margin-left: 8px; }

.site-footer-cta { padding-top: 46px; }
.site-footer-cta .footer-cta-redesign {
  min-height: 390px;
  padding: clamp(40px, 7vw, 90px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 34px;
  background: radial-gradient(circle at 85% 15%, rgba(255,255,255,.1), transparent 32%), #111;
}
.site-footer-cta .footer-cta-redesign h2 { font-size: clamp(42px, 6vw, 78px); line-height: .98; }
.footer-brand-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding: 70px 0 42px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { display: block; width: min(290px, 70vw); }
.footer-brand img { width: 100%; filter: invert(1) grayscale(1) brightness(2); }
.footer-brand-row p { max-width: 480px; justify-self: end; margin: 0; color: #999; font-size: 14px; line-height: 1.7; }
.site-footer-cta .footer-grid-redesign { grid-template-columns: repeat(3, 1fr); padding: 44px 0 60px; text-align: left; }
.site-footer-cta .footer-grid-redesign > div { align-items: flex-start; }
.site-footer-cta .footer-grid-redesign a { margin-inline: 0; }
.site-footer-cta .footer-bottom { text-align: left; }

@media (max-width: 1050px) {
  .impact-simple { grid-template-columns: 1fr; }
  .process-flow { grid-template-columns: repeat(2, 1fr); border-top: 0; }
  .process-flow::before { display: none; }
  .process-step { min-height: 340px; border-top: 1px solid rgba(255,255,255,.15); }
  .process-step:last-child { grid-column: span 2; min-height: 280px; }
}
@media (max-width: 700px) {
  .impact-section { padding-bottom: 86px; }
  .impact-simple { gap: 40px; margin-top: 48px; padding-top: 34px; }
  .impact-metrics-simple { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .impact-metrics-simple .impact-metric,
  .impact-metrics-simple .impact-metric:nth-child(2),
  .impact-metrics-simple .impact-metric:nth-child(-n+2) { min-height: 0; padding: 0 15px; border: 0; border-left: 1px solid rgba(10,10,10,.13); }
  .impact-metrics-simple .impact-metric:nth-child(odd) { padding-left: 0; border-left: 0; }
  .tools { padding: 90px 0; }
  .process-flow { grid-template-columns: 1fr; margin-top: 48px; }
  .process-step, .process-step:last-child { grid-column: auto; min-height: 0; padding: 28px 0; border: 0; border-top: 1px solid rgba(255,255,255,.15); }
  .process-icon { width: 62px; height: 62px; margin: 0 0 26px; border-radius: 18px; }
  .process-icon svg { width: 34px; }
  .process-number { top: 32px; right: 2px; }
  .process-close { grid-template-columns: auto 1fr auto; }
  .process-close a { grid-column: 1 / -1; margin: 8px 0 0; text-align: center; }
  .footer-brand-row { grid-template-columns: 1fr; padding: 54px 0 34px; }
  .footer-brand-row p { justify-self: start; }
  .site-footer-cta .footer-grid-redesign { grid-template-columns: 1fr; gap: 35px; }
}

.about-contact-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
  padding: 40px;
  border: 1px solid rgba(10,10,10,.08);
  border-radius: 30px;
  background: #fff;
}
.about-contact-copy h2 {
  margin: 12px 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -.055em;
}
.about-contact-copy p { color: var(--muted-light); }
.about-contact-form { margin-top: 0; }
@media (max-width: 860px) { .about-contact-section { grid-template-columns: 1fr; padding: 28px; } }

/* Story layout refinement */
.impact-section .intro-content { max-width: none; }
.impact-section .intro-content h2 {
  max-width: none;
  font-size: clamp(46px, 5.2vw, 78px);
  line-height: 1.02;
}
.impact-section .intro-content > p { max-width: 1020px; }
.impact-section .impact-metrics-simple {
  width: 100%;
  margin-top: 64px;
  padding-top: 42px;
  border-top: 1px solid rgba(10,10,10,.15);
}

@media (max-width: 860px) {
  .impact-section .intro-content h2 { font-size: clamp(42px, 9vw, 68px); }
  .impact-section .impact-metrics-simple { margin-top: 46px; padding-top: 32px; }
}

/* V13 quality pass — spacing, accessibility, and responsive resilience */
html { overflow-x: clip; }
body { overflow-wrap: break-word; }
button, a, input, textarea { -webkit-tap-highlight-color: transparent; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #6f9cff;
  outline-offset: 4px;
}
.button, .slider-control, .menu-toggle { min-height: 44px; }

/* Pull the industries closer to the core story while preserving breathing room. */
.principles { padding-bottom: clamp(76px, 7vw, 105px); }
.industries-section { padding: clamp(76px, 7vw, 105px) 0 clamp(95px, 9vw, 135px); }
.industries-section .section-heading { margin-bottom: clamp(38px, 5vw, 62px); }
.industry-slider-viewport { border-radius: 32px; }
.industry-slide { isolation: isolate; }
.industry-card::after {
  background: linear-gradient(180deg, rgba(0,0,0,.04) 12%, rgba(0,0,0,.16) 42%, rgba(0,0,0,.82) 100%);
}
.industry-overlay { padding: clamp(22px, 2.3vw, 34px); }
.industry-overlay h3 { text-wrap: balance; }
.slider-control { width: 48px; height: 48px; }

/* Keep every major section rhythmically consistent at intermediate widths. */
.signals,
.intro,
.products,
.tools,
.principles,
.industries-section,
.newsletter { scroll-margin-top: 92px; }
.section-heading { column-gap: clamp(38px, 7vw, 96px); }
.section-heading > p { line-height: 1.7; }
.product-feature,
.footer-cta-redesign { isolation: isolate; }
.product-feature { overflow: hidden; }
.product-ui { max-width: 100%; }
.real-contact-form input,
.real-contact-form textarea { width: 100%; }
.footer-bottom > span { max-width: 68ch; }

@media (max-width: 1120px) {
  .section-heading > p { max-width: 720px; }
  .principles-sticky { position: static; }
  .industry-slide { min-height: 390px; }
  .newsletter-inner { gap: 58px; }
  .footer-bottom { align-items: start; }
}

@media (max-width: 860px) {
  .signals { padding: 88px 0 42px; }
  .intro { padding: 82px 0; }
  .products { padding: 20px 0 100px; }
  .tools { padding: 92px 0; }
  .principles { padding: 92px 0 68px; }
  .industries-section { padding: 68px 0 92px; }
  .newsletter { padding: 92px 0; }
  .industry-slider-viewport { border-radius: 26px; }
  .industry-overlay p { max-width: 52ch; }
  .newsletter-inner { gap: 48px; }
  .footer-bottom { gap: 24px; }
}

@media (max-width: 560px) {
  :root { --container: min(100% - 28px, 520px); }
  .section-label { letter-spacing: .08em; }
  .section-heading h2,
  .impact-section .intro-content h2,
  .principles-sticky h2,
  .newsletter h2 { font-size: clamp(35px, 10.5vw, 46px); line-height: 1.04; }
  .section-heading > p,
  .intro-content > p { font-size: 17px; line-height: 1.62; }
  .impact-section .intro-content h2 br { display: none; }
  .impact-metrics-simple .impact-metric-value { font-size: clamp(43px, 15vw, 60px); }
  .impact-metrics-simple .impact-metric h4 { max-width: 14ch; line-height: 1.4; }
  .industry-slide { min-height: 390px; }
  .industry-overlay h3 { font-size: 27px; }
  .industry-overlay p { font-size: 13px; }
  .industry-slider-controls { width: 100%; justify-content: space-between; }
  .slider-control { width: 48px; height: 48px; }
  .real-contact-form .button,
  .form-actions-row .button,
  .footer-cta-redesign .button { width: 100%; justify-content: center; }
  .checkbox-row { font-size: 12px; }
  .site-footer-cta .footer-cta-redesign { min-height: 0; padding: 34px 24px; border-radius: 26px; }
  .site-footer-cta .footer-cta-redesign h2 { font-size: clamp(36px, 10.5vw, 48px); }
  .footer-brand-row { gap: 24px; }
  .footer-bottom div { gap: 16px; }
}

/* V14 — clear contact and footer architecture */
.newsletter {
  padding: clamp(76px, 8vw, 112px) 0;
  background: #eeeee9;
}
.newsletter-inner {
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
  padding: clamp(38px, 5vw, 72px);
  border: 1px solid rgba(10,10,10,.08);
  border-radius: 34px;
  background: #fafaf7;
  box-shadow: 0 30px 80px rgba(20,20,15,.07);
}
.newsletter-copy { padding-top: 4px; }
.newsletter h2 {
  max-width: 11ch;
  margin: 18px 0 0;
  font-size: clamp(42px, 4.6vw, 68px);
}
.newsletter-copy > p { max-width: 48ch; line-height: 1.7; }
.contact-quick-links { margin-top: 36px; }
.contact-quick-links a {
  min-width: 0;
  padding: 18px;
  border-radius: 15px;
  background: #fff;
}
.contact-quick-links strong { overflow-wrap: anywhere; }
.contact-person-mini {
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: transparent;
}
.newsletter-form {
  margin: 0;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(10,10,10,.09);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(10,10,10,.055);
}
.newsletter-form .field-group { gap: 8px; }
.newsletter-form .field-group label {
  margin: 0;
  color: #696969;
  font-size: 9px;
  letter-spacing: .1em;
}
.newsletter-form.real-contact-form input,
.newsletter-form.real-contact-form textarea {
  border-color: rgba(10,10,10,.12);
  background: #f8f8f5;
}
.newsletter-form.real-contact-form textarea { min-height: 170px; }
.newsletter-form .checkbox-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 22px 0 0;
  color: #656565;
  font-size: 11px;
  line-height: 1.55;
}
.newsletter-form.real-contact-form .checkbox-row input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 1px 0 0;
}
.newsletter-form .form-actions-row {
  display: grid;
  grid-template-columns: auto minmax(150px, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 24px;
}
.newsletter-form .form-actions-row .form-note { max-width: 30ch; justify-self: end; line-height: 1.5; }

.site-footer-cta {
  padding: 0 0 30px;
  background: #090909;
}
.site-footer-cta .footer-brand-row {
  grid-template-columns: minmax(260px, .9fr) minmax(320px, 1.1fr);
  align-items: center;
  padding: clamp(62px, 7vw, 92px) 0 48px;
}
.footer-brand-copy { max-width: 500px; justify-self: end; }
.footer-brand-row .footer-brand-copy p { justify-self: auto; }
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.footer-contact-link span { transition: transform .2s ease; }
.footer-contact-link:hover span { transform: translate(2px, -2px); }
.site-footer-cta .footer-grid-redesign {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 7vw, 100px);
  justify-items: stretch;
  padding: 44px 0 58px;
  text-align: left;
}
.site-footer-cta .footer-grid-redesign > div { width: 100%; }
.site-footer-cta .footer-grid-redesign h3 { margin-bottom: 22px; color: #777; letter-spacing: .12em; text-transform: uppercase; }
.site-footer-cta .footer-grid-redesign a { margin: 13px 0 0; color: #c8c8c8; }
.site-footer-cta .footer-grid-redesign a:hover { color: #fff; }
.site-footer-cta .footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding-top: 28px;
  text-align: left;
}
.site-footer-cta .footer-bottom div { justify-content: flex-end; }

@media (max-width: 980px) {
  .newsletter-inner { grid-template-columns: 1fr; }
  .newsletter h2 { max-width: 13ch; }
  .newsletter-copy > p { max-width: 62ch; }
  .site-footer-cta .footer-brand-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .newsletter { padding: 58px 0; }
  .newsletter-inner { gap: 38px; padding: 30px 22px; border-radius: 26px; }
  .newsletter h2 { max-width: none; }
  .contact-quick-links { grid-template-columns: 1fr; }
  .newsletter-form { padding: 24px 18px; border-radius: 20px; }
  .newsletter-form .form-actions-row { grid-template-columns: 1fr; }
  .newsletter-form .form-actions-row .form-note { justify-self: start; }
  .site-footer-cta .footer-brand-row { grid-template-columns: 1fr; gap: 30px; padding-top: 58px; }
  .footer-brand-copy { justify-self: start; }
  .site-footer-cta .footer-grid-redesign { grid-template-columns: 1fr 1fr; }
  .site-footer-cta .footer-grid-redesign > div:last-child { grid-column: 1 / -1; }
  .site-footer-cta .footer-bottom { grid-template-columns: 1fr; }
  .site-footer-cta .footer-bottom div { justify-content: flex-start; }
}

@media (max-width: 460px) {
  .newsletter-inner { width: 100%; }
  .site-footer-cta .footer-grid-redesign { grid-template-columns: 1fr; }
  .site-footer-cta .footer-grid-redesign > div:last-child { grid-column: auto; }
}

/* V14 — compact story and figures */
.impact-section {
  padding-top: clamp(72px, 7vw, 94px);
  padding-bottom: clamp(76px, 7vw, 96px);
}
.impact-section .intro-content h2 {
  max-width: 1080px;
  font-size: clamp(43px, 4.2vw, 64px);
  line-height: 1.04;
}
.impact-section .intro-content > p {
  max-width: 900px;
  margin-top: 24px;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}
.impact-section .impact-metrics-simple {
  margin-top: clamp(36px, 4vw, 50px);
  padding-top: clamp(28px, 3vw, 38px);
}
.impact-section .impact-metrics-simple .impact-metric-value {
  font-size: clamp(42px, 4.3vw, 62px);
}
.impact-section .impact-metrics-simple .impact-metric h4 {
  margin-top: 13px;
  font-size: 11px;
}

@media (max-width: 860px) {
  .impact-section { padding: 68px 0 76px; }
  .impact-section .intro-content h2 { font-size: clamp(39px, 8vw, 54px); }
}

@media (max-width: 560px) {
  .impact-section { padding: 58px 0 66px; }
  .impact-section .intro-content h2 { font-size: clamp(34px, 9.5vw, 43px); }
  .impact-section .impact-metrics-simple { margin-top: 32px; padding-top: 26px; }
  .impact-section .impact-metrics-simple .impact-metric-value { font-size: clamp(39px, 13vw, 52px); }
}

/* V15 — focused contact sections, personal profile only on About */
.newsletter {
  padding: clamp(74px, 8vw, 108px) 0;
  background: #f1f1ed;
}
.newsletter-inner {
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.newsletter h2 {
  max-width: 10ch;
  font-size: clamp(40px, 4.2vw, 60px);
}
.contact-quick-links {
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(10,10,10,.13);
}
.contact-quick-links a {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  align-items: center;
  padding: 17px 0;
  border: 0;
  border-bottom: 1px solid rgba(10,10,10,.13);
  border-radius: 0;
  background: transparent;
}
.contact-quick-links a::after { content: "↗"; font-size: 13px; }
.contact-quick-links a:hover { padding-left: 8px; background: transparent; transform: none; }
.contact-quick-links strong { margin: 0; }
.contact-response-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 0;
  color: #666;
  font-size: 12px;
}
.contact-response-note span,
.contact-info-note > span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #111;
}
.newsletter-form {
  padding: clamp(28px, 3.5vw, 44px);
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(10,10,10,.07);
}

.contact-info-card {
  position: sticky;
  top: 110px;
  padding: clamp(30px, 4vw, 48px);
  border-radius: 28px;
  color: #fff;
  background: #111;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
}
.contact-info-card .section-label { color: rgba(255,255,255,.52); }
.contact-info-card h2 {
  max-width: 11ch;
  margin: 18px 0;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.contact-info-card > p { max-width: 44ch; margin: 0; color: rgba(255,255,255,.65); line-height: 1.7; }
.contact-info-links { margin-top: 38px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-info-links a {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.contact-info-links span { color: rgba(255,255,255,.5); font-family: var(--font-mono); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.contact-info-links strong { overflow-wrap: anywhere; font-size: 13px; }
.contact-info-links i { font-style: normal; transition: transform .2s ease; }
.contact-info-links a:hover i { transform: translate(2px, -2px); }
.contact-info-note { display: flex; align-items: center; gap: 9px; margin-top: 24px; color: rgba(255,255,255,.6); font-size: 11px; }
.contact-info-note > span { background: #fff; }

@media (max-width: 1120px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 46px; }
  .newsletter h2 { max-width: 13ch; }
  .newsletter-copy { max-width: 760px; }
  .contact-info-card { position: static; }
}

@media (max-width: 700px) {
  .newsletter { padding: 64px 0; }
  .newsletter-inner { padding: 0; }
  .newsletter-form { padding: 24px 18px; }
  .contact-quick-links a { grid-template-columns: 76px minmax(0, 1fr) auto; }
  .contact-info-card { padding: 28px 22px; border-radius: 24px; }
  .contact-info-links a { grid-template-columns: 1fr auto; gap: 7px 14px; }
  .contact-info-links a span { grid-column: 1 / -1; }
}

/* V15 — tabbed solutions presentation */
.solution-tabs {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, 100%);
  gap: 6px;
  margin: 0 auto 34px;
  padding: 7px;
  border: 1px solid rgba(10,10,10,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 38px rgba(10,10,10,.10);
  backdrop-filter: blur(18px);
}
.solution-tab {
  display: flex;
  min-width: 0;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  color: #696969;
  background: transparent;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.solution-tab span {
  color: #929292;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .08em;
}
.solution-tab:hover:not(.is-active) { color: #111; background: rgba(10,10,10,.045); }
.solution-tab.is-active {
  color: #fff;
  background: #111;
  box-shadow: 0 8px 22px rgba(10,10,10,.20);
}
.solution-tab.is-active span { color: rgba(255,255,255,.55); }
.solution-panels { position: relative; }
.solution-panel[hidden] { display: none !important; }
.solution-panels .product-feature,
.solution-panels .product-feature-alt { margin-top: 0; }
.solution-panel.is-active { animation: solutionPanelIn .48s cubic-bezier(.22,1,.36,1) both; }
@keyframes solutionPanelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.solution-panel-agents { background: linear-gradient(145deg, #f7f7f4, #deded9); }
.agent-ui {
  display: flex;
  flex-direction: column;
  color: #ededed;
  background: #111;
}
.agent-ui-head {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: #171717;
}
.agent-ui-head > div { display: flex; align-items: center; gap: 12px; }
.agent-ui-head p { margin: 0; }
.agent-ui-head small,
.agent-ui-head strong { display: block; }
.agent-ui-head small { color: #777; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.agent-ui-head strong { margin-top: 4px; font-size: 12px; }
.agent-mark { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; color: #111; background: #fff; font-family: var(--font-display); font-weight: 800; }
.agent-status { display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #aaa; font-size: 9px; }
.agent-status i,
.agent-audit i { width: 6px; height: 6px; border-radius: 50%; background: #fff; box-shadow: 0 0 10px rgba(255,255,255,.65); }
.agent-ui-body { display: flex; flex: 1; flex-direction: column; padding: 30px; }
.agent-task-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.agent-task-head small { color: #727272; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.agent-task-head h4 { margin: 7px 0 0; font-size: 24px; letter-spacing: -.04em; }
.agent-task-head > span { padding: 8px 11px; border-radius: 9px; color: #999; background: rgba(255,255,255,.06); font-family: var(--font-mono); font-size: 8px; }
.agent-flow {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: center;
  margin: 54px 0;
}
.agent-flow-step { position: relative; min-width: 0; text-align: center; }
.agent-flow-step > span { position: absolute; top: -22px; left: 50%; color: #555; font-family: var(--font-mono); font-size: 7px; transform: translateX(-50%); }
.agent-flow-step > i { display: grid; width: 42px; height: 42px; margin: 0 auto 13px; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; color: #666; background: #181818; font-style: normal; }
.agent-flow-step.is-done > i { color: #111; background: #dcdcdc; }
.agent-flow-step.is-active > i { color: #fff; border-color: rgba(255,255,255,.5); box-shadow: 0 0 28px rgba(255,255,255,.12); }
.agent-flow-step strong,
.agent-flow-step small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.agent-flow-step strong { font-size: 10px; }
.agent-flow-step small { margin-top: 5px; color: #666; font-size: 7px; }
.agent-flow-line { height: 1px; margin-top: -28px; background: rgba(255,255,255,.12); }
.agent-flow-line.is-done { background: #aaa; }
.agent-flow-line.is-active { background: linear-gradient(90deg, #aaa, rgba(255,255,255,.15)); }
.agent-review-card { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: auto; padding: 17px; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; background: rgba(255,255,255,.055); }
.agent-review-copy { display: flex; min-width: 0; align-items: center; gap: 12px; }
.agent-review-copy p { min-width: 0; margin: 0; }
.agent-review-copy small,
.agent-review-copy strong { display: block; }
.agent-review-copy small { color: #777; font-size: 8px; }
.agent-review-copy strong { margin-top: 5px; overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.agent-review-icon { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; border-radius: 11px; color: #111; background: #fff; }
.agent-review-actions { display: flex; gap: 7px; }
.agent-review-actions button { padding: 9px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 9px; color: #bbb; background: transparent; font-size: 8px; }
.agent-review-actions .is-primary { color: #111; background: #fff; }
.agent-audit { display: flex; align-items: center; gap: 18px; margin-top: 17px; color: #666; font-size: 8px; }
.agent-audit span:first-child { display: flex; align-items: center; gap: 7px; margin-right: auto; }

@media (max-width: 700px) {
  .solution-tabs {
    width: 100%;
    margin-bottom: 22px;
    border-radius: 22px;
  }
  .solution-tab {
    min-height: 54px;
    padding: 10px 12px;
    border-radius: 17px;
    font-size: 12px;
  }
  .solution-tab span { display: none; }
  .agent-ui-body { padding: 22px 16px; }
  .agent-flow { grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 46px 0; }
  .agent-flow-line { display: none; }
  .agent-flow-step small { display: none; }
  .agent-review-card { align-items: stretch; flex-direction: column; }
  .agent-review-actions button { flex: 1; }
  .agent-review-actions { display: flex; }
}

@media (max-width: 420px) {
  .solution-tabs { grid-template-columns: 1fr; border-radius: 20px; }
  .solution-tab { border-radius: 15px; }
}

/* V17 — supply chain optimizer system */
.solution-panel-optimizer { background: linear-gradient(145deg, #f5f5f1, #d9d9d4); }
.optimizer-ui { display: flex; flex-direction: column; color: #111; background: #f7f7f4; }
.optimizer-head {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(10,10,10,.09);
  background: rgba(255,255,255,.82);
}
.optimizer-head > div { display: flex; align-items: center; gap: 12px; }
.optimizer-head p { margin: 0; }
.optimizer-head small,
.optimizer-head strong { display: block; }
.optimizer-head small { color: #888; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.optimizer-head strong { margin-top: 4px; font-size: 12px; }
.optimizer-mark { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; color: #fff; background: #111; font-family: var(--font-display); font-weight: 800; }
.optimizer-period { padding: 9px 12px; border: 1px solid rgba(10,10,10,.09); border-radius: 10px; color: #666; background: #fff; font-size: 9px; }
.optimizer-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.optimizer-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.optimizer-kpis article { padding: 15px; border: 1px solid rgba(10,10,10,.08); border-radius: 14px; background: #fff; }
.optimizer-kpis small,
.optimizer-kpis strong,
.optimizer-kpis span { display: block; }
.optimizer-kpis small { color: #777; font-size: 8px; }
.optimizer-kpis strong { margin-top: 9px; font-size: 24px; letter-spacing: -.04em; }
.optimizer-kpis span { margin-top: 5px; font-size: 7px; }
.optimizer-kpis .is-positive { color: #327253; }
.optimizer-kpis .is-warning { color: #9a6127; }
.optimizer-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(180px, .75fr); gap: 10px; margin-top: 10px; }
.optimizer-chart-card,
.optimizer-actions-card { min-width: 0; padding: 16px; border: 1px solid rgba(10,10,10,.08); border-radius: 15px; background: #fff; }
.optimizer-card-head { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.optimizer-card-head small,
.optimizer-card-head strong { display: block; }
.optimizer-card-head small { color: #888; font-size: 7px; text-transform: uppercase; letter-spacing: .08em; }
.optimizer-card-head strong { margin-top: 5px; font-size: 11px; }
.optimizer-card-head > span { color: #888; font-size: 7px; }
.optimizer-chart { position: relative; height: 170px; margin-top: 10px; overflow: hidden; }
.optimizer-chart::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(10,10,10,.055) 0 1px, transparent 1px 42px); }
.optimizer-chart svg { position: relative; z-index: 1; width: 100%; height: 135px; overflow: visible; }
.optimizer-area { fill: rgba(10,10,10,.07); }
.optimizer-line-stock,
.optimizer-line-demand { fill: none; stroke: #111; stroke-width: 3; stroke-linecap: round; }
.optimizer-line-demand { stroke: #999; stroke-width: 2; stroke-dasharray: 6 6; }
.optimizer-safe-zone { position: absolute; z-index: 0; top: 35px; right: 0; left: 0; height: 45px; background: rgba(72,125,91,.07); }
.optimizer-legend { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: flex; gap: 16px; color: #777; font-size: 7px; }
.optimizer-legend span { display: flex; align-items: center; gap: 6px; }
.optimizer-legend i { width: 13px; height: 2px; background: #111; }
.optimizer-legend span:last-child i { background: #999; }
.optimizer-actions-card { display: flex; flex-direction: column; }
.optimizer-action { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; gap: 9px; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(10,10,10,.08); }
.optimizer-action:last-child { border-bottom: 0; }
.optimizer-action > span { padding: 5px 4px; border-radius: 6px; color: #666; background: #eee; font-size: 6px; text-align: center; text-transform: uppercase; }
.optimizer-action > span.is-high { color: #fff; background: #111; }
.optimizer-action p { min-width: 0; margin: 0; }
.optimizer-action strong,
.optimizer-action small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.optimizer-action strong { font-size: 8px; }
.optimizer-action small { margin-top: 4px; color: #888; font-size: 6px; }
.optimizer-action i { color: #888; font-style: normal; font-size: 9px; }
.optimizer-foot { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 13px; color: #777; font-size: 7px; }
.optimizer-foot > span { display: flex; align-items: center; gap: 7px; margin-right: auto; }
.optimizer-foot i { width: 6px; height: 6px; border-radius: 50%; background: #397653; }
.optimizer-foot button { padding: 9px 12px; border: 0; border-radius: 8px; color: #fff; background: #111; font-size: 7px; }

@media (max-width: 900px) and (min-width: 421px) {
  .solution-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 28px; }
  .solution-tab { border-radius: 21px; }
}

@media (max-width: 700px) {
  .optimizer-body { padding: 18px 14px; }
  .optimizer-grid { grid-template-columns: 1fr; }
  .optimizer-actions-card { display: none; }
  .optimizer-chart { height: 155px; }
  .optimizer-foot button { display: none; }
}

@media (max-width: 480px) {
  .optimizer-kpis { grid-template-columns: 1fr 1fr; }
  .optimizer-kpis article:last-child { display: none; }
  .optimizer-kpis strong { font-size: 20px; }
}

/* V19 — supply network visualization */
.network-map {
  position: relative;
  height: 205px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 11px;
  background:
    linear-gradient(rgba(10,10,10,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,.035) 1px, transparent 1px),
    #fafaf8;
  background-size: 24px 24px;
}
.network-links { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.network-links path { fill: none; stroke: rgba(10,10,10,.24); stroke-width: 1.5; stroke-linecap: round; }
.network-links path.is-recommended { stroke: #111; stroke-width: 2; stroke-dasharray: 6 5; }
.network-node {
  position: absolute;
  z-index: 2;
  display: flex;
  min-width: 108px;
  align-items: center;
  gap: 7px;
  padding: 7px;
  border: 1px solid rgba(10,10,10,.10);
  border-radius: 10px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 18px rgba(10,10,10,.07);
}
.network-node > i { display: grid; width: 25px; height: 25px; flex: 0 0 auto; place-items: center; border-radius: 7px; color: #fff; background: #333; font-style: normal; font-size: 7px; font-weight: 800; }
.network-node strong,
.network-node small { display: block; white-space: nowrap; }
.network-node strong { font-size: 7px; }
.network-node small { margin-top: 2px; color: #888; font-size: 5px; }
.network-node.supplier-a { top: 19px; left: 7px; }
.network-node.supplier-b { bottom: 19px; left: 7px; }
.network-node.hub { top: 78px; left: 50%; min-width: 104px; transform: translateX(-50%); }
.network-node.hub > i { color: #111; background: #ddd; }
.network-node.warehouse-a { top: 19px; right: 7px; }
.network-node.warehouse-b { right: 7px; bottom: 19px; }
.network-node.warehouse-b > i { background: #8a5c2d; }
.network-suggestion {
  position: absolute;
  z-index: 3;
  top: 4px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border-radius: 9px;
  color: #fff;
  background: #111;
  box-shadow: 0 9px 20px rgba(10,10,10,.14);
  transform: translateX(-50%);
}
.network-suggestion > span { font-size: 9px; }
.network-suggestion p { margin: 0; }
.network-suggestion strong,
.network-suggestion small { display: block; white-space: nowrap; }
.network-suggestion strong { font-size: 6px; }
.network-suggestion small { margin-top: 2px; color: #aaa; font-size: 5px; }
.network-legend { position: absolute; z-index: 4; bottom: 4px; left: 50%; display: flex; gap: 11px; padding: 4px 7px; border-radius: 6px; color: #777; background: rgba(250,250,248,.88); font-size: 5px; transform: translateX(-50%); }
.network-legend span { display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.network-legend i { width: 10px; height: 1px; background: #aaa; }
.network-legend span:last-child i { height: 0; border-top: 1px dashed #111; background: transparent; }

@media (max-width: 700px) {
  .network-map { height: 190px; }
  .network-node { min-width: 0; padding: 6px; }
  .network-node span { display: none; }
  .network-node.hub { min-width: 0; }
  .network-suggestion { top: 8px; }
}

/* V20 — company-led About page */
.about-manifesto {
  position: relative;
  margin-bottom: 24px;
  padding: clamp(44px, 7vw, 90px);
  overflow: hidden;
  border-radius: 34px;
  color: #fff;
  background: #0d0d0d;
}
.about-manifesto::after { content: ""; position: absolute; top: -45%; right: -10%; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.about-manifesto > * { position: relative; z-index: 1; }
.about-manifesto h2 { max-width: 900px; margin: 18px 0 24px; font-size: clamp(46px, 6vw, 82px); line-height: .98; letter-spacing: -.065em; }
.about-manifesto > p { max-width: 700px; margin: 0; color: rgba(255,255,255,.68); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.7; }
.about-manifesto-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 58px; color: #aaa; font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.about-manifesto-proof i { width: 4px; height: 4px; border-radius: 50%; background: #666; }
.about-vision-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-bottom: 24px; }
.about-vision-card { min-height: 520px; display: flex; flex-direction: column; padding: clamp(34px, 5vw, 60px); border: 1px solid rgba(10,10,10,.08); border-radius: 30px; background: #fff; box-shadow: 0 18px 48px rgba(10,10,10,.045); }
.about-mission-card { background: #e8e8e3; }
.about-card-index { color: #777; font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.about-card-icon { display: grid; width: 68px; height: 68px; margin: 42px 0 auto; place-items: center; border: 1px solid rgba(10,10,10,.12); border-radius: 21px; }
.about-card-icon svg { width: 38px; height: 38px; fill: none; stroke: #111; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.about-vision-card h2 { max-width: 15ch; margin: 48px 0 18px; font-size: clamp(30px, 3vw, 44px); line-height: 1.05; letter-spacing: -.055em; }
.about-vision-card p { max-width: 56ch; margin: 0; color: #626262; font-size: 15px; line-height: 1.7; }
.about-principles { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: clamp(50px, 8vw, 110px); margin-bottom: 24px; padding: clamp(54px, 7vw, 90px); border: 1px solid rgba(10,10,10,.08); border-radius: 30px; background: #fff; }
.about-principles-head h2 { max-width: 12ch; margin: 18px 0; font-size: clamp(36px, 4vw, 58px); line-height: 1.02; letter-spacing: -.06em; }
.about-principles-head p { max-width: 44ch; margin: 0; color: #666; line-height: 1.7; }
.about-principles-list { border-top: 1px solid rgba(10,10,10,.13); }
.about-principles-list article { display: grid; grid-template-columns: 38px 1fr; gap: 15px; padding: 23px 0; border-bottom: 1px solid rgba(10,10,10,.13); }
.about-principles-list article > span { padding-top: 5px; color: #999; font-family: var(--font-mono); font-size: 8px; }
.about-principles-list h3 { margin: 0; font-size: 22px; letter-spacing: -.035em; }
.about-principles-list p { margin: 8px 0 0; color: #696969; font-size: 13px; line-height: 1.65; }
.about-focus { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); gap: clamp(48px, 8vw, 110px); margin-bottom: 28px; padding: clamp(50px, 7vw, 88px); border-radius: 30px; color: #fff; background: #111; }
.about-focus-copy h2 { max-width: 10ch; margin: 18px 0; font-size: clamp(38px, 4.5vw, 62px); line-height: 1; letter-spacing: -.06em; }
.about-focus-copy p { max-width: 38ch; color: #999; line-height: 1.7; }
.about-focus-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.about-focus-grid article { min-height: 210px; padding: 28px; border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.about-focus-grid article:nth-child(-n+2) { border-top: 0; }
.about-focus-grid article:nth-child(odd) { border-left: 0; }
.about-focus-grid span { color: #666; font-family: var(--font-mono); font-size: 8px; }
.about-focus-grid h3 { margin: 48px 0 10px; font-size: 23px; letter-spacing: -.04em; }
.about-focus-grid p { margin: 0; color: #929292; font-size: 12px; line-height: 1.6; }

@media (max-width: 900px) {
  .about-vision-grid,
  .about-principles,
  .about-focus { grid-template-columns: 1fr; }
  .about-vision-card { min-height: 460px; }
  .about-principles,
  .about-focus { gap: 48px; }
}

@media (max-width: 600px) {
  .about-manifesto { padding: 38px 24px; border-radius: 26px; }
  .about-manifesto h2 { font-size: clamp(42px, 13vw, 60px); }
  .about-manifesto-proof { gap: 12px; margin-top: 38px; }
  .about-manifesto-proof i { display: none; }
  .about-manifesto-proof span { width: 100%; }
  .about-vision-card { min-height: 0; padding: 30px 24px; border-radius: 24px; }
  .about-card-icon { margin: 34px 0 20px; }
  .about-vision-card h2 { margin-top: 20px; }
  .about-principles,
  .about-focus { padding: 38px 24px; border-radius: 24px; }
  .about-focus-grid { grid-template-columns: 1fr; }
  .about-focus-grid article,
  .about-focus-grid article:nth-child(-n+2),
  .about-focus-grid article:nth-child(odd) { min-height: 0; padding: 24px 0; border: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .about-focus-grid h3 { margin-top: 28px; }
}

/* V21 — stable consent checkbox layout across every form */
.real-contact-form label.checkbox-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  width: 100%;
  gap: 12px;
  align-items: start;
  margin: 4px 0 0;
  color: var(--muted-light);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}
.real-contact-form label.checkbox-row > input[type="checkbox"] {
  appearance: auto;
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 1px 0 0;
  padding: 0;
  border-radius: 4px;
  box-shadow: none;
  accent-color: #111;
}
.real-contact-form label.checkbox-row > span {
  display: block;
  min-width: 0;
  width: auto;
  margin: 0;
  overflow-wrap: normal;
  word-break: normal;
}
.real-contact-form label.checkbox-row a { font-weight: 600; text-underline-offset: 2px; }

@media (max-width: 560px) {
  .real-contact-form label.checkbox-row { grid-template-columns: 19px minmax(0, 1fr); gap: 10px; font-size: 11px; }
  .real-contact-form label.checkbox-row > input[type="checkbox"] { width: 19px; min-width: 19px; max-width: 19px; height: 19px; min-height: 19px; }
}

/* V22 — industry landing pages */
.industry-slide::before { content: "↗"; position: absolute; z-index: 4; top: 22px; right: 22px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(10,10,10,.25); backdrop-filter: blur(10px); transition: transform .25s ease, background .25s ease; }
.industry-slide:hover::before { background: #fff; color: #111; transform: translate(3px,-3px); }
.industry-page { background: #f4f4f0; }
.industry-main { padding: 118px 0 0; }
.industry-hero { display: grid; grid-template-columns: minmax(0,.9fr) minmax(460px,1.1fr); gap: clamp(38px,6vw,90px); align-items: center; padding: 64px 0 90px; }
.industry-hero-copy h1 { max-width: 12ch; margin: 20px 0 24px; font-size: clamp(52px,6vw,88px); line-height: .98; letter-spacing: -.07em; }
.industry-hero-copy > p { max-width: 58ch; margin: 0; color: #5f5f5f; font-size: clamp(18px,1.7vw,22px); line-height: 1.65; }
.industry-hero-actions { display:flex; flex-wrap:wrap; gap:18px; align-items:center; margin-top:34px; }
.industry-proof { display:flex; flex-wrap:wrap; gap:9px; margin-top:38px; }
.industry-proof span { padding:9px 12px; border:1px solid rgba(10,10,10,.1); border-radius:999px; color:#666; background:rgba(255,255,255,.65); font-size:10px; }
.industry-hero-media { position:relative; min-height:600px; overflow:hidden; border-radius:34px; box-shadow:0 30px 80px rgba(0,0,0,.14); }
.industry-hero-media img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.industry-hero-media::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 48%,rgba(0,0,0,.66)); }
.industry-media-note { position:absolute; z-index:2; right:24px; bottom:24px; left:24px; display:flex; justify-content:space-between; gap:20px; align-items:end; color:#fff; }
.industry-media-note span { font-family:var(--font-mono); font-size:8px; letter-spacing:.09em; text-transform:uppercase; }
.industry-media-note strong { max-width:22ch; font-size:18px; text-align:right; }
.industry-challenge { padding:95px 0; background:#111; color:#fff; }
.industry-challenge-head { display:grid; grid-template-columns:.85fr 1.15fr; gap:60px; align-items:end; }
.industry-challenge h2 { max-width:13ch; margin:16px 0 0; font-size:clamp(38px,4.6vw,64px); line-height:1; letter-spacing:-.06em; }
.industry-challenge-head > p { max-width:60ch; margin:0; color:#999; font-size:17px; line-height:1.75; }
.industry-challenge-grid { display:grid; grid-template-columns:repeat(3,1fr); margin-top:60px; border-top:1px solid rgba(255,255,255,.14); }
.industry-challenge-grid article { min-height:245px; padding:30px; border-right:1px solid rgba(255,255,255,.14); }
.industry-challenge-grid article:first-child { border-left:1px solid rgba(255,255,255,.14); }
.industry-challenge-grid span { color:#666; font-family:var(--font-mono); font-size:8px; }
.industry-challenge-grid h3 { margin:55px 0 12px; font-size:24px; letter-spacing:-.04em; }
.industry-challenge-grid p { margin:0; color:#999; font-size:13px; line-height:1.65; }
.industry-capabilities { padding:110px 0; }
.industry-section-head { display:grid; grid-template-columns:1fr .7fr; gap:50px; align-items:end; margin-bottom:52px; }
.industry-section-head h2 { max-width:13ch; margin:16px 0 0; font-size:clamp(40px,4.5vw,62px); line-height:1; letter-spacing:-.06em; }
.industry-section-head p { margin:0; color:#666; line-height:1.7; }
.industry-capability-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.industry-capability-card { min-height:380px; display:flex; flex-direction:column; padding:30px; border:1px solid rgba(10,10,10,.08); border-radius:26px; background:#fff; box-shadow:0 16px 38px rgba(0,0,0,.045); }
.industry-capability-icon { display:grid; width:52px; height:52px; place-items:center; border-radius:16px; color:#fff; background:#111; font-size:18px; }
.industry-capability-card span { margin-top:auto; color:#888; font-family:var(--font-mono); font-size:8px; }
.industry-capability-card h3 { margin:18px 0 12px; font-size:27px; line-height:1.08; letter-spacing:-.045em; }
.industry-capability-card p { margin:0; color:#666; font-size:14px; line-height:1.65; }
.industry-outcomes { padding:100px 0; background:#e7e7e2; }
.industry-outcome-shell { display:grid; grid-template-columns:.72fr 1.28fr; gap:clamp(50px,8vw,110px); }
.industry-outcome-copy h2 { max-width:10ch; margin:16px 0 20px; font-size:clamp(40px,4.5vw,62px); line-height:1; letter-spacing:-.06em; }
.industry-outcome-copy p { color:#666; line-height:1.7; }
.industry-outcome-list { border-top:1px solid rgba(10,10,10,.14); }
.industry-outcome-list article { display:grid; grid-template-columns:40px 1fr; gap:16px; padding:24px 0; border-bottom:1px solid rgba(10,10,10,.14); }
.industry-outcome-list span { color:#999; font-family:var(--font-mono); font-size:8px; padding-top:5px; }
.industry-outcome-list h3 { margin:0; font-size:23px; letter-spacing:-.035em; }
.industry-outcome-list p { margin:7px 0 0; color:#666; font-size:13px; line-height:1.6; }
.industry-cta { padding:100px 0; background:#111; color:#fff; }
.industry-cta-inner { display:flex; justify-content:space-between; gap:50px; align-items:end; }
.industry-cta h2 { max-width:13ch; margin:16px 0 20px; font-size:clamp(42px,5vw,70px); line-height:1; letter-spacing:-.06em; }
.industry-cta p { max-width:55ch; margin:0; color:#999; line-height:1.7; }
.industry-footer { padding:34px 0; color:#aaa; background:#080808; }
.industry-footer-inner { display:flex; justify-content:space-between; gap:30px; align-items:center; font-size:11px; }
.industry-footer-links { display:flex; flex-wrap:wrap; gap:20px; }
.industry-footer a:hover { color:#fff; }
@media(max-width:1000px){.industry-hero{grid-template-columns:1fr}.industry-hero-media{min-height:520px}.industry-challenge-head,.industry-section-head,.industry-outcome-shell{grid-template-columns:1fr}.industry-capability-grid{grid-template-columns:1fr 1fr}.industry-challenge-grid{grid-template-columns:1fr}.industry-challenge-grid article,.industry-challenge-grid article:first-child{min-height:0;border-left:1px solid rgba(255,255,255,.14);border-bottom:1px solid rgba(255,255,255,.14)}.industry-challenge-grid h3{margin-top:30px}}
@media(max-width:650px){.industry-main{padding-top:90px}.industry-hero{padding:52px 0 68px}.industry-hero-copy h1{font-size:clamp(44px,14vw,64px)}.industry-hero-media{min-height:390px;border-radius:26px}.industry-media-note{display:grid}.industry-media-note strong{text-align:left}.industry-challenge,.industry-capabilities,.industry-outcomes,.industry-cta{padding:72px 0}.industry-capability-grid{grid-template-columns:1fr}.industry-capability-card{min-height:320px}.industry-cta-inner{display:grid}.industry-cta-inner .button{width:100%;justify-content:center}.industry-footer-inner{display:grid}.industry-slide::before{top:16px;right:16px}}

/* V24 — stronger navigation surface */
.hero-light .header-shell,
.site-header .header-shell { background: rgba(255,255,255,.95); border-color: rgba(10,10,10,.11); box-shadow: 0 16px 48px rgba(0,0,0,.11); backdrop-filter: blur(14px) saturate(105%); }
.site-header.is-scrolled .header-shell { background: rgba(255,255,255,.985); box-shadow: 0 18px 54px rgba(0,0,0,.13); }
.subpage-nav-shell { background: rgba(255,255,255,.97); border-color: rgba(10,10,10,.11); box-shadow: 0 15px 46px rgba(0,0,0,.10); backdrop-filter: blur(14px) saturate(105%); }

/* V23 — editorial blog */
.blog-main{padding:150px 0 110px;background:#f4f4f0}.blog-hero{padding:60px 0 78px;border-bottom:1px solid rgba(10,10,10,.13)}.blog-hero h1{max-width:10ch;margin:18px 0 25px;font-size:clamp(58px,8vw,108px);line-height:.92;letter-spacing:-.075em}.blog-hero p{max-width:720px;margin:0;color:#626262;font-size:20px;line-height:1.7}.blog-featured{display:grid;grid-template-columns:1.1fr .9fr;gap:0;margin:70px 0 22px;overflow:hidden;border-radius:30px;color:#fff;background:#111}.blog-featured-visual{position:relative;min-height:520px;overflow:hidden}.blog-featured-visual img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:grayscale(.3)}.blog-featured-visual::after{content:"";position:absolute;inset:0;background:linear-gradient(135deg,transparent,rgba(0,0,0,.35))}.blog-featured-copy{display:flex;flex-direction:column;justify-content:center;padding:clamp(38px,5vw,72px)}.blog-meta{display:flex;flex-wrap:wrap;gap:10px 18px;color:#858585;font-family:var(--font-mono);font-size:8px;letter-spacing:.08em;text-transform:uppercase}.blog-featured h2{margin:28px 0 20px;font-size:clamp(38px,4vw,58px);line-height:1.02;letter-spacing:-.055em}.blog-featured p{margin:0;color:#aaa;line-height:1.7}.blog-featured .arrow-link{margin-top:35px;color:#fff}.blog-section-head{display:flex;justify-content:space-between;gap:30px;align-items:end;margin:85px 0 34px}.blog-section-head h2{margin:12px 0 0;font-size:clamp(38px,4vw,58px);letter-spacing:-.055em}.blog-section-head p{max-width:480px;margin:0;color:#666}.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.blog-card{display:flex;min-height:390px;flex-direction:column;padding:28px;border:1px solid rgba(10,10,10,.08);border-radius:24px;background:#fff;box-shadow:0 14px 34px rgba(0,0,0,.04);transition:transform .25s ease,box-shadow .25s ease}.blog-card:hover{transform:translateY(-5px);box-shadow:0 24px 50px rgba(0,0,0,.09)}.blog-card-tag{width:fit-content;padding:7px 9px;border-radius:999px;color:#666;background:#eee;font-family:var(--font-mono);font-size:7px;text-transform:uppercase}.blog-card h3{margin:34px 0 14px;font-size:27px;line-height:1.08;letter-spacing:-.045em}.blog-card p{margin:0;color:#666;font-size:13px;line-height:1.65}.blog-card-foot{display:flex;justify-content:space-between;gap:20px;margin-top:auto;padding-top:30px;color:#888;font-size:9px}.article-main{padding:150px 0 100px;background:#f7f7f3}.article-header{max-width:980px;padding:70px 0 55px}.article-header h1{margin:22px 0 28px;font-size:clamp(48px,6.5vw,86px);line-height:.98;letter-spacing:-.07em}.article-deck{max-width:800px;margin:0;color:#5f5f5f;font-size:clamp(19px,2vw,24px);line-height:1.65}.article-meta{display:flex;flex-wrap:wrap;gap:18px;margin-top:34px;color:#777;font-family:var(--font-mono);font-size:8px;text-transform:uppercase}.article-layout{display:grid;grid-template-columns:220px minmax(0,760px);gap:clamp(50px,8vw,110px);align-items:start}.article-aside{position:sticky;top:110px;padding-top:8px}.article-aside strong{font-size:10px}.article-aside a{display:block;margin-top:14px;color:#777;font-size:11px}.article-body{font-size:17px;line-height:1.8}.article-body>p:first-child{font-size:21px;color:#3e3e3e}.article-body h2{margin:58px 0 18px;font-size:36px;line-height:1.08;letter-spacing:-.045em}.article-body h3{margin:35px 0 12px;font-size:24px}.article-body p,.article-body li{color:#555}.article-body ul,.article-body ol{padding-left:22px}.article-body li+li{margin-top:10px}.article-callout{margin:42px 0;padding:28px;border-left:4px solid #111;border-radius:0 18px 18px 0;background:#ecece7}.article-callout strong{display:block;margin-bottom:8px}.article-cta{display:flex;justify-content:space-between;gap:40px;align-items:end;margin-top:70px;padding:40px;border-radius:24px;color:#fff;background:#111}.article-cta h2{margin:0 0 12px;color:#fff}.article-cta p{margin:0;color:#999}.article-related{margin-top:85px}.article-related h2{margin-bottom:25px}.blog-footer{padding:35px 0;color:#aaa;background:#090909}.blog-footer-inner{display:flex;justify-content:space-between;gap:30px;align-items:center;font-size:11px}.blog-footer-links{display:flex;flex-wrap:wrap;gap:20px}@media(max-width:1000px){.blog-featured{grid-template-columns:1fr}.blog-featured-visual{min-height:420px}.blog-grid{grid-template-columns:1fr 1fr}.article-layout{grid-template-columns:1fr}.article-aside{display:none}}@media(max-width:650px){.blog-main,.article-main{padding-top:100px}.blog-hero{padding-top:48px}.blog-hero h1{font-size:58px}.blog-featured-visual{min-height:320px}.blog-grid{grid-template-columns:1fr}.blog-card{min-height:330px}.blog-section-head,.blog-footer-inner{display:grid}.article-header{padding-top:45px}.article-header h1{font-size:46px}.article-body{font-size:16px}.article-body h2{font-size:31px}.article-cta{display:grid;padding:28px}.article-cta .button{width:100%;justify-content:center}}

/* V25 — global mobile proportion and spacing pass */
@media (max-width: 700px) {
  :root { --container: min(100% - 36px, 620px); }
  .products .container { width: min(100% - 36px, 620px); }
  .site-header { padding-top: 10px; }
  .header-shell { width: calc(100vw - 20px); }
  .header-inner { min-height: 62px; padding-inline: 12px; }
  .brand-logo { max-width: 150px; height: 21px; }
  .mobile-panel { padding-top: 88px; }
  .mobile-panel nav a { padding: 13px 0; font-size: clamp(23px, 7vw, 34px); }
  .mobile-menu-footer { padding-top: 20px; }
  .hero-apple { padding: 112px 0 64px; }
  .hero-apple h1 { max-width: 12ch; font-size: clamp(38px, 10.5vw, 50px); line-height: 1.02; }
  .hero-apple-intro > p { font-size: 16px; line-height: 1.6; }
  .hero-device-wrap { margin-top: 42px; }
  .hero-device { min-height: 440px; border-radius: 22px; }
  .device-layout { min-height: 378px; }
  .device-heading h2 { font-size: 21px; }
  .hero-apple-proof { margin-top: 38px; }
  .section-heading h2,
  .principles-sticky h2,
  .newsletter h2 { font-size: clamp(32px, 9vw, 41px); }
  .section-heading > p { font-size: 15px; }
  .signal-card { padding: 24px 20px; border-radius: 22px; }
  .signal-card h3 { font-size: 24px; }
  .product-feature { padding: 25px 20px; gap: 30px; border-radius: 24px; }
  .product-copy h3 { font-size: 30px; }
  .product-logo { font-size: 23px; }
  .product-ui { min-height: 380px; }
  .solution-tabs { grid-template-columns: repeat(2, minmax(0,1fr)); padding: 5px; border-radius: 22px; }
  .solution-tab { min-height: 48px; padding: 8px; border-radius: 17px; font-size: 10.5px; }
  .process-step { padding-block: 24px; }
  .process-step h3 { font-size: 24px; }
  .principle-item h3 { font-size: 24px; }
  .industry-slide { min-height: 350px; }
  .newsletter-form { padding: 22px 17px; }
  .real-contact-form input { min-height: 52px; padding: 13px 14px; border-radius: 14px; }
  .real-contact-form textarea { min-height: 140px; padding: 14px; border-radius: 14px; }
  .subpage-nav-shell { width: calc(100vw - 20px); min-height: 60px; padding-inline: 14px; }
  .subpage-main { padding: 82px 0 75px; }
  .subpage-hero { padding: 64px 0 46px; }
  .subpage-hero h1 { font-size: clamp(36px, 10vw, 46px); }
  .subpage-hero p { font-size: 16px; }
  .subpage-card { padding: 24px 20px; border-radius: 22px; }
  .about-manifesto h2 { font-size: clamp(37px, 11vw, 48px); }
  .about-manifesto > p { font-size: 16px; }
  .about-vision-card h2 { font-size: 30px; }
  .about-principles-head h2,
  .about-focus-copy h2 { font-size: 36px; }
  .about-contact-section { padding: 25px 20px; }
  .industry-main { padding-top: 82px; }
  .industry-hero { padding: 44px 0 58px; }
  .industry-hero-copy h1 { font-size: clamp(38px, 11vw, 50px); }
  .industry-hero-copy > p { font-size: 16px; }
  .industry-hero-media { min-height: 340px; }
  .industry-challenge h2,
  .industry-section-head h2,
  .industry-outcome-copy h2,
  .industry-cta h2 { font-size: clamp(33px, 9.5vw, 42px); }
  .industry-challenge-grid article { padding: 25px 20px; }
  .industry-capability-card { min-height: 290px; padding: 24px 20px; }
  .blog-main,
  .article-main { padding-top: 86px; }
  .blog-hero { padding: 48px 0 55px; }
  .blog-hero h1 { font-size: 46px; }
  .blog-hero p { font-size: 16px; }
  .blog-featured { margin-top: 48px; border-radius: 22px; }
  .blog-featured-visual { min-height: 270px; }
  .blog-featured-copy { padding: 28px 22px; }
  .blog-featured h2 { font-size: 34px; }
  .blog-section-head { margin: 62px 0 26px; }
  .blog-section-head h2 { font-size: 38px; }
  .blog-card { min-height: 300px; padding: 23px 20px; }
  .blog-card h3 { margin-top: 27px; font-size: 24px; }
  .article-header { padding: 45px 0 38px; }
  .article-header h1 { font-size: clamp(37px, 10.5vw, 48px); }
  .article-deck { font-size: 17px; }
  .article-body > p:first-child { font-size: 18px; }
  .article-body h2 { margin-top: 44px; font-size: 29px; }
  .article-callout { margin: 32px 0; padding: 22px 18px; }
  .article-cta { margin-top: 52px; padding: 25px 20px; border-radius: 20px; }
  .footer-brand { width: min(240px, 75vw); }
}

@media (max-width: 380px) {
  :root { --container: min(100% - 30px, 350px); }
  .products .container { width: min(100% - 30px, 350px); }
  .solution-tab { font-size: 9.5px; }
  .hero-apple h1 { font-size: 36px; }
}

/* V26 — privacy notice for a tracking-free site */
.privacy-notice { position:fixed; z-index:1000; right:20px; bottom:20px; left:20px; display:grid; grid-template-columns:minmax(0,1fr) auto; gap:30px; align-items:center; width:min(920px,calc(100vw - 40px)); margin-inline:auto; padding:20px 22px; border:1px solid rgba(255,255,255,.16); border-radius:20px; color:#fff; background:rgba(12,12,12,.97); box-shadow:0 24px 70px rgba(0,0,0,.28); opacity:0; transform:translateY(20px); transition:opacity .28s ease,transform .28s ease; }
.privacy-notice.is-visible{opacity:1;transform:translateY(0)}.privacy-notice-copy strong{display:block;font-size:14px}.privacy-notice-copy p{max-width:660px;margin:6px 0 0;color:#aaa;font-size:12px;line-height:1.55}.privacy-notice-actions{display:flex;align-items:center;gap:16px}.privacy-notice-actions a{color:#bbb;font-size:11px;text-decoration:underline;text-underline-offset:3px}.privacy-notice-actions button{min-height:42px;padding:0 18px;border:0;border-radius:999px;color:#111;background:#fff;font-size:12px;font-weight:800;cursor:pointer}
@media(max-width:700px){.privacy-notice{right:12px;bottom:12px;left:12px;grid-template-columns:1fr;width:auto;gap:16px;padding:18px;border-radius:18px}.privacy-notice-actions{justify-content:space-between}.privacy-notice-actions button{min-width:112px}}

/* V28 — Safari and small-viewport stability */
html { width: 100%; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
@supports (overflow: clip) { html { overflow-x: clip; } }
body { position: relative; width: 100%; min-width: 0; }
main, section, header, footer, nav, form,
.container, .header-shell, .header-inner, .mobile-panel-inner,
.product-feature, .solution-panel, .solution-panels,
.industry-slider, .industry-slider-viewport, .industry-track,
.newsletter-inner, .article-layout { min-width: 0; }

.header-shell,
.subpage-nav-shell,
.visual-card-main,
.solution-tabs,
.industry-slide::before {
  -webkit-backdrop-filter: blur(14px) saturate(105%);
}
.marquee { -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.hero-apple-grid { -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 78%, transparent 100%); }

.industry-track {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  touch-action: pan-y;
}
.industry-slide,
.solution-panel { -webkit-transform: translateZ(0); }
.solution-tab { -webkit-appearance: none; appearance: none; }

@media (max-width: 860px) {
  .mobile-panel {
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }
  .mobile-panel-inner {
    min-height: calc(100vh - 136px);
    min-height: calc(100dvh - 136px);
  }
}

@media (max-width: 700px) {
  .real-contact-form input,
  .real-contact-form textarea,
  .real-contact-form select { font-size: 16px; }
  .privacy-notice { bottom: max(12px, env(safe-area-inset-bottom)); }
  .solution-tabs > *,
  .product-feature > *,
  .newsletter-inner > *,
  .article-layout > * { min-width: 0; max-width: 100%; }
}

/* iOS Safari: avoid fixed blurred layers and compositor flicker while scrolling. */
@supports (-webkit-touch-callout: none) {
  .ambient-orb,
  .cursor-glow { display: none; }
  .header-shell,
  .subpage-nav-shell { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(255,255,255,.985); }
  .industry-track { transition-duration: .38s; }
}

/* V30 — verifiable trust, DACH coverage, and brand endcap */
.trust-section { padding: clamp(82px, 9vw, 132px) 0; overflow: hidden; }
.trust-heading { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(300px, .7fr); gap: clamp(40px, 8vw, 110px); align-items: end; }
.trust-heading h2 { max-width: 12ch; margin: 18px 0 0; color: #fff; font-size: clamp(46px, 5.7vw, 78px); line-height: .98; letter-spacing: -.065em; }
.trust-heading > p { max-width: 52ch; margin: 0; color: #969696; font-size: 16px; line-height: 1.7; }
.trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 62px; }
.trust-card { min-height: 360px; display: flex; flex-direction: column; padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 26px; background: rgba(255,255,255,.035); }
.trust-card-company { background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035)); }
.trust-card-icon { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; color: #111; background: #fff; font-size: 18px; font-weight: 800; }
.trust-card > span { margin-top: auto; color: #696969; font-family: var(--font-mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.trust-card h3 { margin: 15px 0 12px; color: #fff; font-size: 27px; line-height: 1.08; letter-spacing: -.045em; }
.trust-card p { margin: 0; color: #929292; font-size: 13px; line-height: 1.65; }
.trust-card a { width: fit-content; margin-top: 22px; color: #d6d6d6; font-size: 11px; font-weight: 700; }
.trust-card a i { margin-left: 5px; font-style: normal; }
.dach-panel { display: grid; grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr); gap: clamp(40px, 7vw, 90px); align-items: center; margin-top: 16px; padding: clamp(30px, 4vw, 50px); border: 1px solid rgba(255,255,255,.13); border-radius: 26px; background: #151515; }
.dach-panel-copy > span { color: #696969; font-family: var(--font-mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.dach-panel-copy h3 { margin: 14px 0 10px; color: #fff; font-size: 32px; letter-spacing: -.045em; }
.dach-panel-copy p { max-width: 42ch; margin: 0; color: #8f8f8f; font-size: 13px; line-height: 1.65; }
.dach-countries { display: grid; grid-template-columns: 1fr 42px 1fr 42px 1fr; align-items: center; }
.dach-countries > i { height: 1px; background: rgba(255,255,255,.18); }
.dach-country { min-width: 0; display: grid; grid-template-columns: 36px minmax(0, 1fr) auto; gap: 13px; align-items: center; }
.dach-country svg { width: 36px; height: 24px; border-radius: 5px; box-shadow: 0 0 0 1px rgba(255,255,255,.14); }
.dach-country span { overflow: hidden; color: #d8d8d8; font-size: 14px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.dach-country small { color: #636363; font-family: var(--font-mono); font-size: 8px; }

.site-footer-cta { position: relative; overflow: hidden; padding-bottom: 0; }
.site-footer-cta .footer-grid-redesign { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.footer-company { display: flex; flex-direction: column; align-items: flex-start; }
.footer-company strong { color: #e6e6e6; font-size: 13px; }
.footer-company span { margin-top: 10px; color: #8a8a8a; font-size: 11px; line-height: 1.4; }
.footer-endcap { position: relative; height: clamp(150px, 20vw, 300px); margin-top: 28px; overflow: hidden; border-radius: 34px 34px 0 0; background: radial-gradient(circle at 10% 105%, rgba(146,56,42,.28), transparent 34%), #080808; }
.footer-endcap span { position: absolute; right: 0; bottom: clamp(-36px, -3vw, -12px); left: 0; color: rgba(255,255,255,.095); font-family: var(--font-display); font-size: clamp(66px, 13.7vw, 220px); font-weight: 800; line-height: .8; letter-spacing: -.08em; text-align: center; white-space: nowrap; }

@media (max-width: 1000px) {
  .trust-heading, .dach-panel { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-card-company { grid-column: 1 / -1; }
  .site-footer-cta .footer-grid-redesign { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .trust-section { padding: 76px 0; }
  .trust-heading { gap: 24px; }
  .trust-heading h2 { font-size: clamp(40px, 12vw, 54px); }
  .trust-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .trust-card-company { grid-column: auto; }
  .trust-card { min-height: 300px; padding: 24px 20px; border-radius: 22px; }
  .dach-panel { padding: 28px 20px; border-radius: 22px; }
  .dach-countries { grid-template-columns: 1fr; gap: 0; }
  .dach-countries > i { width: 1px; height: 24px; margin-left: 18px; }
  .dach-country { grid-template-columns: 36px 1fr auto; }
  .site-footer-cta .footer-grid-redesign { grid-template-columns: 1fr; }
  .footer-endcap { height: 130px; margin-top: 12px; border-radius: 24px 24px 0 0; }
  .footer-endcap span { bottom: -8px; font-size: 17vw; }
}

/* V31 — operating-company references and availability prompt */
.client-section { padding: clamp(82px, 9vw, 126px) 0; overflow: hidden; }
.client-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); gap: clamp(42px, 8vw, 110px); align-items: end; }
.client-heading h2 { max-width: 13ch; margin: 18px 0 0; font-size: clamp(44px, 5.2vw, 72px); line-height: .98; letter-spacing: -.065em; }
.client-heading p { margin: 0; color: #575757; font-size: 15px; line-height: 1.7; }
.client-heading p a { color: #111; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.client-heading small { display: block; max-width: 62ch; margin-top: 14px; color: #858585; font-size: 10px; line-height: 1.55; }
.client-rail { width: 100%; margin-top: 58px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.client-track { display: flex; width: max-content; transform: translate3d(0,0,0); animation: clientMarquee 52s linear infinite; }
.client-rail:hover .client-track, .client-rail:focus-within .client-track { animation-play-state: paused; }
.client-group { display: flex; gap: 14px; padding-right: 14px; }
.client-card { width: 260px; min-height: 174px; display: flex; flex: 0 0 auto; flex-direction: column; justify-content: space-between; padding: 24px; border: 1px solid rgba(10,10,10,.08); border-radius: 22px; color: #111; background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.035); transition: transform .25s ease, box-shadow .25s ease; }
.client-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(0,0,0,.09); }
.client-card strong { max-width: 12ch; font-size: 26px; line-height: 1.02; letter-spacing: -.04em; }
.client-card-serif strong { font-family: var(--font-display); }
.client-card img { width: 100%; height: 82px; object-fit: contain; object-position: center; }
.client-card img.client-logo--dark { filter: invert(1); }
.client-card img.client-logo--round { height: 112px; }
.client-card img.client-logo--wide { height: 76px; }
.client-card img.client-logo--salewa { height: 96px; }
.client-card span { color: #858585; font-size: 9px; }
@keyframes clientMarquee { to { transform: translate3d(-50%,0,0); } }

.availability-pop { position: fixed; z-index: 800; right: 18px; bottom: max(18px, env(safe-area-inset-bottom)); display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 16px; align-items: center; width: min(720px, calc(100vw - 36px)); padding: 12px 14px 12px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #fff; background: rgba(24,24,25,.97); box-shadow: 0 22px 65px rgba(0,0,0,.28); opacity: 0; transform: translateY(18px) scale(.985); transition: opacity .3s ease, transform .3s ease; }
.availability-pop[hidden] { display: none; }
.availability-pop.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.availability-close { position: absolute; top: -12px; right: -5px; display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: #fff; background: #171719; font-size: 21px; line-height: 1; cursor: pointer; }
.availability-signal { position: relative; display: flex; align-items: center; width: 76px; }
.availability-signal i { width: 36px; height: 36px; margin-right: -10px; border: 2px solid #222; border-radius: 50%; background: linear-gradient(145deg,#f1f1ec,#777); box-shadow: inset 0 0 0 8px rgba(0,0,0,.25); }
.availability-signal i:nth-child(2) { background: linear-gradient(145deg,#cfd4d6,#555); }
.availability-signal i:nth-child(3) { background: linear-gradient(145deg,#ededed,#444); }
.availability-signal b { position: absolute; right: -3px; bottom: 0; width: 12px; height: 12px; border: 2px solid #181819; border-radius: 50%; background: #40da7b; }
.availability-copy strong, .availability-copy span { display: block; }
.availability-copy strong { font-size: 14px; }
.availability-copy span { margin-top: 4px; color: #999; font-size: 10px; }
.availability-action { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border-radius: 999px; color: #111; background: #fff; font-size: 12px; font-weight: 800; white-space: nowrap; }

@media (max-width: 760px) {
  .client-heading { grid-template-columns: 1fr; gap: 26px; }
  .client-heading h2 { font-size: clamp(39px, 11vw, 52px); }
  .client-rail { margin-top: 42px; -webkit-mask-image: none; mask-image: none; }
  .client-card { width: 220px; min-height: 152px; padding: 21px; }
  .client-card strong { font-size: 22px; }
  .availability-pop { right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); grid-template-columns: auto minmax(0,1fr); gap: 12px; width: calc(100vw - 20px); padding: 13px 16px; border-radius: 24px; }
  .availability-signal { width: 64px; }
  .availability-signal i { width: 31px; height: 31px; }
  .availability-copy strong { font-size: 12px; }
  .availability-copy span { font-size: 9px; }
  .availability-action { grid-column: 1 / -1; width: 100%; min-height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .client-track { animation: none; }
  .client-rail { overflow-x: auto; }
}

/* V33 — corrected footer wordmark and authentic client artwork */
.site-footer-cta .footer-brand { width: min(255px, 68vw); }
.site-footer-cta .footer-brand img { width: 100%; height: auto; object-fit: contain; filter: invert(1); opacity: .96; }
@media (max-width: 700px) {
  .client-card img { height: 70px; }
  .client-card img.client-logo--round { height: 92px; }
  .client-card img.client-logo--wide { height: 62px; }
  .client-card img.client-logo--salewa { height: 78px; }
  .site-footer-cta .footer-brand { width: min(225px, 72vw); }
}

/* V36 — calmer section-title scale */
.client-heading h2 {
  max-width: 16ch;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.newsletter h2 {
  max-width: 12ch;
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1.03;
  letter-spacing: -.055em;
}
@media (max-width: 700px) {
  .client-heading h2,
  .newsletter h2 {
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.04;
  }
}

/* V37 — AT/DE aligned consent controls */
.privacy-notice.cookie-consent {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  width: min(860px, calc(100vw - 32px));
  max-height: min(86vh, 720px);
  padding: clamp(20px, 3vw, 30px);
  overflow-y: auto;
  border-color: rgba(255,255,255,.2);
  border-radius: 24px;
  background: #101010;
}
.cookie-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #aaa;
  font: 700 9px/1.2 var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cookie-consent .privacy-notice-copy > strong { font-size: clamp(20px, 2.5vw, 28px); }
.cookie-consent .privacy-notice-copy > p { max-width: 78ch; color: #c2c2c2; font-size: 13px; }
.cookie-details-toggle {
  margin-top: 15px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.cookie-categories { display: grid; gap: 8px; margin-top: 16px; }
.cookie-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  cursor: pointer;
}
.cookie-category span { display: grid; gap: 3px; }
.cookie-category strong { color: #fff; font-size: 12px; }
.cookie-category small { color: #aaa; font-size: 10px; line-height: 1.45; }
.cookie-category input { width: 22px; height: 22px; margin: 0; accent-color: #fff; cursor: pointer; }
.cookie-category--locked { opacity: .72; cursor: default; }
.cookie-legal-links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 14px; color: #999; font-size: 10px; }
.cookie-legal-links a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent .privacy-notice-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.cookie-consent .privacy-notice-actions .cookie-action {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.cookie-consent .privacy-notice-actions [data-cookie-reject],
.cookie-consent .privacy-notice-actions [data-cookie-accept] { color: #111; background: #fff; }
.cookie-consent .privacy-notice-actions [data-cookie-save] { color: #fff; background: transparent; }
.cookie-settings-trigger {
  position: fixed;
  z-index: 850;
  left: 14px;
  bottom: max(12px, env(safe-area-inset-bottom));
  padding: 8px 11px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 999px;
  color: #333;
  background: rgba(255,255,255,.94);
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}
@media (max-width: 700px) {
  .privacy-notice.cookie-consent { right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); left: 10px; width: auto; max-height: calc(100dvh - 20px); padding: 20px; }
  .cookie-consent .privacy-notice-actions { grid-template-columns: 1fr; }
  .cookie-consent .privacy-notice-actions [data-cookie-reject] { order: 1; }
  .cookie-consent .privacy-notice-actions [data-cookie-save] { order: 2; }
  .cookie-consent .privacy-notice-actions [data-cookie-accept] { order: 3; }
  .cookie-settings-trigger { left: 10px; font-size: 8px; }
}

/* V38 — mobile navigation icons, compact inquiry modal and safe gutters */
.mobile-panel nav a i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(10,10,10,.18);
  border-radius: 50%;
  color: #111;
}
.mobile-panel nav a i svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.availability-action { border: 0; cursor: pointer; font-family: inherit; }
body.contact-modal-open { overflow: hidden; }
.contact-modal { position: fixed; z-index: 1100; inset: 0; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .24s ease, visibility .24s ease; }
.contact-modal[hidden] { display: none; }
.contact-modal.is-visible { opacity: 1; visibility: visible; }
.contact-modal-backdrop { position: absolute; inset: 0; background: rgba(10,10,10,.68); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.contact-modal-panel { position: relative; width: min(620px, 100%); max-height: calc(100dvh - 40px); padding: clamp(25px, 4vw, 42px); overflow-y: auto; border: 1px solid rgba(10,10,10,.09); border-radius: 30px; background: #fafaf7; box-shadow: 0 35px 100px rgba(0,0,0,.3); transform: translateY(18px) scale(.985); transition: transform .24s ease; }
.contact-modal.is-visible .contact-modal-panel { transform: translateY(0) scale(1); }
.contact-modal-close { position: absolute; top: 18px; right: 18px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(10,10,10,.15); border-radius: 50%; color: #111; background: transparent; font-size: 25px; cursor: pointer; }
.contact-modal-heading { padding-right: 52px; }
.contact-modal-heading > span, .contact-modal form label > span:first-child { color: #777; font: 700 9px/1.2 var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }
.contact-modal-heading h2 { max-width: 12ch; margin: 12px 0 0; font-size: clamp(34px, 5vw, 50px); line-height: 1; letter-spacing: -.055em; }
.contact-modal-heading p { max-width: 48ch; margin: 15px 0 0; color: #666; font-size: 13px; line-height: 1.6; }
.contact-modal form { display: grid; gap: 15px; margin-top: 25px; }
.contact-modal-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.contact-modal form label:not(.contact-modal-consent) { display: grid; gap: 7px; }
.contact-modal input:not([type="checkbox"]), .contact-modal textarea { width: 100%; min-height: 52px; padding: 14px 16px; border: 1px solid rgba(10,10,10,.14); border-radius: 14px; color: #111; background: #fff; font: inherit; font-size: 14px; }
.contact-modal textarea { min-height: 112px; resize: vertical; }
.contact-modal-consent { display: grid; grid-template-columns: 20px minmax(0,1fr); gap: 10px; align-items: start; color: #666; font-size: 10px; line-height: 1.5; }
.contact-modal-consent input { width: 19px; height: 19px; margin: 0; accent-color: #111; }
.contact-modal-consent a { color: #111; text-decoration: underline; text-underline-offset: 2px; }
.contact-modal-submit { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 12px; padding: 0 24px; border: 0; border-radius: 999px; color: #fff; background: #111; font-size: 12px; font-weight: 800; cursor: pointer; }
@media (max-width: 700px) {
  :root { --container: min(100% - 40px, 520px); }
  .mobile-panel { padding-inline: 6px; }
  .mobile-panel nav a { grid-template-columns: 32px minmax(0,1fr) 30px; padding: 15px 0; font-size: clamp(27px, 8.4vw, 38px); }
  .mobile-panel nav a i { width: 28px; height: 28px; }
  .newsletter > .container { width: min(100% - 40px, 520px); }
  .newsletter-inner { padding-inline: 0; }
  .newsletter-copy, .newsletter-form { min-width: 0; }
  .contact-quick-links a { grid-template-columns: 78px minmax(0,1fr) 18px; column-gap: 10px; }
  .contact-quick-links strong { font-size: 14px; }
  .contact-response-note { font-size: 11px; }
  .contact-modal { align-items: end; padding: 10px; }
  .contact-modal-panel { width: 100%; max-height: calc(100dvh - 20px); padding: 25px 20px 22px; border-radius: 25px; }
  .contact-modal-close { top: 14px; right: 14px; width: 38px; height: 38px; }
  .contact-modal-heading { padding-right: 42px; }
  .contact-modal-heading h2 { font-size: clamp(31px, 9.2vw, 40px); }
  .contact-modal-grid { grid-template-columns: 1fr; }
  .availability-pop { width: calc(100vw - 28px); right: 14px; padding: 14px; }
}

/* V39 — dual offer switch and IT Consulting onepager */
.offer-switch { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 3px; padding: 4px; border: 1px solid rgba(10,10,10,.11); border-radius: 999px; background: #f1f1ed; }
.offer-switch a { padding: 8px 11px; border-radius: 999px; color: #676767; font-size: 9px; font-weight: 800; line-height: 1; white-space: nowrap; }
.offer-switch a.is-active { color: #fff; background: #111; box-shadow: 0 4px 12px rgba(0,0,0,.14); }
.offer-switch-mobile { display: none; width: 100%; margin-bottom: 24px; }
.offer-switch-mobile a { display: flex; flex: 1; min-height: 42px; align-items: center; justify-content: center; }
.consulting-page { color: #101216; background: #f4f5f2; }
.consulting-page .site-header .header-shell { width: min(1480px, calc(100% - 28px)); }
.consulting-page .header-inner { gap: 14px; }
.consulting-page .desktop-nav-simple { gap: 5px; padding: 4px; }
.consulting-page .desktop-nav-simple .nav-link { padding-inline: 10px; font-size: 10px; }
.consulting-hero { position: relative; min-height: 100svh; padding: clamp(150px, 14vw, 210px) 0 54px; overflow: hidden; background: radial-gradient(circle at 78% 30%,rgba(110,114,120,.13),transparent 27%),linear-gradient(180deg,#f8f9f7 0%,#edefeb 100%); }
.consulting-hero::before { content:""; position:absolute; inset:0; opacity:.34; background-image:linear-gradient(rgba(10,10,10,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(10,10,10,.045) 1px,transparent 1px); background-size:88px 88px; pointer-events:none; }
.consulting-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0,.96fr) minmax(460px,1.04fr); gap: clamp(50px,8vw,120px); align-items: center; }
.consulting-hero-copy h1 { max-width: 9.5ch; margin: 28px 0 0; font-size: clamp(62px,7.2vw,108px); line-height: .87; letter-spacing: -.075em; }
.consulting-hero-copy h1 span { color: #17191d; }
.consulting-hero-copy > p { max-width: 620px; margin: 34px 0 0; color:#555c67; font-size:clamp(17px,1.45vw,22px); line-height:1.6; }
.consulting-hero-visual { position:relative; min-height:600px; }
.sovereignty-core { position:absolute; z-index:3; top:50%; left:50%; width:min(390px,70%); padding:38px; border:1px solid rgba(20,50,125,.16); border-radius:35px; background:rgba(255,255,255,.88); box-shadow:0 35px 100px rgba(25,43,77,.14); transform:translate(-50%,-50%); backdrop-filter:blur(18px); }
.sovereignty-core small { color:#17191d; font:700 9px/1.2 var(--font-mono); letter-spacing:.12em; text-transform:uppercase; }
.sovereignty-core strong { display:block; margin-top:15px; font-size:clamp(28px,3vw,42px); line-height:1.04; letter-spacing:-.055em; }
.sovereignty-core div { display:flex; flex-wrap:wrap; gap:7px; margin-top:28px; }
.sovereignty-core div span { padding:8px 11px; border:1px solid rgba(10,10,10,.1); border-radius:999px; color:#555; font-size:9px; font-weight:800; }
.sovereignty-orbit,.sovereignty-orbit span { position:absolute; border:1px solid rgba(20,22,26,.16); border-radius:50%; }
.sovereignty-orbit { inset:6%; animation:consultOrbit 24s linear infinite; }
.sovereignty-orbit span:nth-child(1){inset:12%}.sovereignty-orbit span:nth-child(2){inset:24%}.sovereignty-orbit span:nth-child(3){top:-6px;left:50%;width:13px;height:13px;background:#17191d;border:0}
@keyframes consultOrbit{to{transform:rotate(360deg)}}
.sovereignty-node { position:absolute; z-index:4; padding:11px 15px; border:1px solid rgba(10,10,10,.11); border-radius:999px; color:#40444c; background:#fff; box-shadow:0 12px 35px rgba(15,25,50,.1); font-size:10px; font-weight:800; }
.node-a{top:11%;left:11%}.node-b{top:18%;right:2%}.node-c{bottom:15%;left:2%}.node-d{right:8%;bottom:9%}
.consulting-proof { position:relative; display:flex; flex-wrap:wrap; justify-content:center; gap:15px 25px; margin-top:45px; padding-top:26px; border-top:1px solid rgba(10,10,10,.12); color:#5d626b; font:700 9px/1.2 var(--font-mono); letter-spacing:.08em; text-transform:uppercase; }
.consulting-proof i { width:4px;height:4px;align-self:center;border-radius:50%;background:#17191d; }
.consulting-services { padding:clamp(90px,10vw,150px) 0; background:#fafbf9; }
.consulting-section-head { display:grid; grid-template-columns:minmax(0,1fr) minmax(320px,.62fr); gap:clamp(42px,8vw,110px); align-items:end; }
.consulting-section-head h2 { max-width:17ch; margin:18px 0 0; font-size:clamp(46px,5.4vw,78px); line-height:.98; letter-spacing:-.065em; }
.consulting-section-head > p { max-width:56ch; margin:0; color:#61666e; font-size:15px; line-height:1.75; }
.consulting-service-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); margin-top:clamp(50px,7vw,90px); border-top:1px solid rgba(10,10,10,.12); border-bottom:1px solid rgba(10,10,10,.12); }
.consulting-service-card { position:relative; min-height:530px; padding:32px 26px 35px; border-right:1px solid rgba(10,10,10,.12); }
.consulting-service-card:last-child{border-right:0}.consulting-service-card>span{color:#8a8d92;font:700 9px/1 var(--font-mono)}
.consulting-service-icon { display:grid;width:52px;height:52px;margin-top:75px;place-items:center;border-radius:15px;color:#17191d;background:#eceeeb; }
.consulting-service-icon svg { width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round; }
.consulting-service-card h3 { max-width:10ch;margin:24px 0 0;font-size:clamp(27px,2.2vw,38px);line-height:1;letter-spacing:-.05em; }
.consulting-service-card p { margin:20px 0 0;color:#656a72;font-size:13px;line-height:1.65; }
.consulting-service-card ul { display:grid;gap:9px;margin:28px 0 0;padding:0;list-style:none;color:#34383e;font-size:10px;font-weight:700; }
.consulting-service-card li{display:flex;gap:8px}.consulting-service-card li::before{content:"";width:5px;height:5px;margin-top:5px;border-radius:50%;background:#17191d;flex:0 0 auto}
.sovereignty-section { padding:clamp(95px,10vw,150px) 0;color:#fff;background:#0d1015; }
.sovereignty-layout { display:grid;grid-template-columns:minmax(300px,.72fr) minmax(0,1.28fr);gap:clamp(70px,10vw,150px);align-items:start; }
.sovereignty-sticky{position:sticky;top:125px}.sovereignty-sticky h2{max-width:11ch;margin:20px 0 0;font-size:clamp(48px,5.6vw,78px);line-height:.94;letter-spacing:-.065em}.sovereignty-sticky p{max-width:48ch;margin:30px 0;color:#a7abb2;font-size:14px;line-height:1.75}.sovereignty-sticky .button{margin-top:15px}
.sovereignty-principles{border-top:1px solid rgba(255,255,255,.18)}.sovereignty-principles article{display:grid;grid-template-columns:45px minmax(0,1fr) auto;gap:25px;align-items:start;padding:35px 0;border-bottom:1px solid rgba(255,255,255,.18)}.sovereignty-principles article>span{color:#6e737c;font:700 9px/1 var(--font-mono)}.sovereignty-principles h3{margin:0;font-size:27px;letter-spacing:-.04em}.sovereignty-principles p{max-width:48ch;margin:12px 0 0;color:#9ca1a9;font-size:12px;line-height:1.65}.sovereignty-principles b{padding:7px 9px;border:1px solid rgba(255,255,255,.17);border-radius:999px;color:#c5c8cc;font:700 8px/1 var(--font-mono);letter-spacing:.08em}
.stack-section { padding:clamp(95px,10vw,150px) 0;background:#f4f6fa; }
.stack-model { position:relative;display:grid;grid-template-columns:190px minmax(0,1fr) 190px;gap:28px;margin-top:clamp(55px,7vw,90px);padding:28px;border:1px solid #d5d7d5;border-radius:34px;background:rgba(255,255,255,.65);box-shadow:0 35px 90px rgba(0,0,0,.07); }
.stack-inputs,.stack-outcomes{display:grid;grid-template-rows:repeat(4,1fr);gap:14px;padding:52px 0 72px}.stack-inputs article,.stack-outcomes article{display:flex;align-items:center;gap:10px;padding:15px;border:1px solid #d8dad8;border-radius:16px;background:#fff;box-shadow:0 10px 24px rgba(0,0,0,.05)}.stack-inputs i{color:#17191d;font:700 8px/1 var(--font-mono);font-style:normal}.stack-inputs strong,.stack-outcomes strong{font-size:11px}.stack-inputs span{margin-left:auto;color:#17191d}.stack-outcomes span{color:#17191d}
.stack-center{display:grid;gap:12px}.stack-center section{padding:18px;border:1px solid #d7d9d7;border-radius:18px;background:rgba(255,255,255,.9)}.stack-center h3{margin:0 0 14px;color:#17191d;font:800 9px/1 var(--font-mono);letter-spacing:.08em;text-transform:uppercase}.stack-tools{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:10px}.stack-tools span{display:grid;min-height:65px;padding:9px;place-items:center;border:1px solid #dedfdd;border-radius:13px;color:#30343a;background:#fff;box-shadow:0 7px 18px rgba(0,0,0,.045);font-size:9px;font-weight:800;text-align:center}.stack-operating{display:grid;gap:7px;padding:18px;border:1px solid #c9cccf;border-radius:18px;background:#e8eae8;text-align:center}.stack-operating small{color:#17191d;font:700 8px/1 var(--font-mono);letter-spacing:.09em;text-transform:uppercase}.stack-operating strong{font-size:17px;letter-spacing:-.03em}.stack-disclaimer{margin:17px 0 0;color:#858a93;font-size:9px;text-align:center}
.consulting-delivery { padding:clamp(95px,10vw,150px) 0;color:#fff;background:#101217; }.consulting-section-head-light>p{color:#9ca1a9}.delivery-line{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));margin-top:75px;border-top:1px solid rgba(255,255,255,.18)}.delivery-line article{position:relative;min-height:270px;padding:30px 26px;border-right:1px solid rgba(255,255,255,.18)}.delivery-line article:last-child{border-right:0}.delivery-line article::before{content:"";position:absolute;top:-6px;left:25px;width:11px;height:11px;border-radius:50%;background:#bfc2c6;box-shadow:0 0 0 7px rgba(191,194,198,.16)}.delivery-line span{color:#777d86;font:700 9px/1 var(--font-mono)}.delivery-line h3{margin:65px 0 0;font-size:35px}.delivery-line p{margin:17px 0 0;color:#9ca1a9;font-size:12px;line-height:1.65}
.consulting-contact { padding:clamp(90px,10vw,145px) 0;background:#eceeea}.consulting-contact-grid{display:grid;grid-template-columns:minmax(0,.8fr) minmax(420px,1.2fr);gap:clamp(55px,9vw,130px);padding:clamp(35px,5vw,72px);border:1px solid rgba(10,10,10,.09);border-radius:35px;background:#fafbf9;box-shadow:0 30px 80px rgba(20,25,20,.06)}.consulting-contact h2{max-width:11ch;margin:18px 0 0;font-size:clamp(45px,5vw,70px);line-height:.98;letter-spacing:-.065em}.consulting-contact p{max-width:46ch;margin:25px 0 0;color:#656a72;line-height:1.7}.consulting-contact-meta{display:grid;gap:10px;margin-top:35px}.consulting-contact-meta a{font-size:14px;font-weight:800}.consulting-contact-meta span{color:#777;font-size:10px}.consulting-contact-form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.consulting-contact-form>div{display:grid;gap:8px}.consulting-contact-form label:not(.contact-modal-consent){color:#666;font:700 9px/1 var(--font-mono);letter-spacing:.09em;text-transform:uppercase}.consulting-contact-form input:not([type=checkbox]),.consulting-contact-form textarea{width:100%;padding:16px;border:1px solid rgba(10,10,10,.12);border-radius:15px;background:#fff;font:inherit;font-size:14px}.consulting-contact-form .is-wide{grid-column:1/-1}.consulting-contact-form .button{width:100%;justify-content:center}
@media(max-width:1180px){.consulting-page .desktop-nav{display:none}.consulting-page .menu-toggle{display:inline-block}.consulting-hero-grid{grid-template-columns:1fr minmax(380px,.8fr)}.consulting-service-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.consulting-service-card:nth-child(2){border-right:0}.consulting-service-card:nth-child(-n+2){border-bottom:1px solid rgba(10,10,10,.12)}.stack-model{grid-template-columns:150px minmax(0,1fr) 150px;gap:15px;padding:18px}.stack-tools{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:860px){.offer-switch.desktop-only{display:none}.offer-switch-mobile{display:inline-flex}.consulting-hero{padding-top:135px}.consulting-hero-grid{grid-template-columns:1fr}.consulting-hero-copy h1{font-size:clamp(55px,13vw,82px)}.consulting-hero-visual{min-height:500px}.consulting-section-head{grid-template-columns:1fr;gap:25px}.sovereignty-layout{grid-template-columns:1fr}.sovereignty-sticky{position:static}.stack-model{grid-template-columns:1fr}.stack-inputs,.stack-outcomes{grid-template-columns:repeat(2,minmax(0,1fr));grid-template-rows:none;padding:0}.stack-center{order:2}.stack-outcomes{order:3}.delivery-line{grid-template-columns:repeat(2,minmax(0,1fr))}.delivery-line article:nth-child(2){border-right:0}.delivery-line article:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.18)}.consulting-contact-grid{grid-template-columns:1fr}.consulting-page .mobile-panel{padding-top:92px}}
@media(max-width:600px){.consulting-page .header-shell{width:calc(100% - 20px)}.consulting-page .brand-logo{max-width:142px}.consulting-hero{padding:125px 0 45px}.consulting-hero-copy h1{font-size:clamp(48px,14vw,65px);line-height:.91}.consulting-hero-copy>p{font-size:16px}.consulting-hero-visual{min-height:430px}.sovereignty-core{width:78%;padding:25px;border-radius:25px}.sovereignty-core strong{font-size:27px}.sovereignty-node{padding:8px 10px;font-size:8px}.consulting-proof{justify-content:flex-start}.consulting-proof i{display:none}.consulting-proof span{width:calc(50% - 13px);line-height:1.5}.consulting-section-head h2{font-size:clamp(39px,11vw,52px)}.consulting-service-grid{grid-template-columns:1fr}.consulting-service-card{min-height:0;padding:28px 20px 35px;border-right:0;border-bottom:1px solid rgba(10,10,10,.12)}.consulting-service-card:last-child{border-bottom:0}.consulting-service-icon{margin-top:35px}.sovereignty-principles article{grid-template-columns:30px minmax(0,1fr);gap:12px}.sovereignty-principles article b{grid-column:2}.stack-section .container{width:min(100% - 24px,520px)}.stack-model{padding:12px;border-radius:24px}.stack-inputs,.stack-outcomes{grid-template-columns:1fr}.stack-tools{grid-template-columns:repeat(2,minmax(0,1fr))}.stack-operating strong{font-size:13px}.delivery-line{grid-template-columns:1fr}.delivery-line article{min-height:220px;border-right:0;border-bottom:1px solid rgba(255,255,255,.18)}.consulting-contact-grid{padding:28px 20px;border-radius:26px}.consulting-contact h2{font-size:clamp(38px,11vw,50px)}.consulting-contact-form{grid-template-columns:1fr}.consulting-contact-form .is-wide{grid-column:auto}}
@media(prefers-reduced-motion:reduce){.sovereignty-orbit{animation:none}}

/* V40 — monochrome consulting palette and restrained title scale */
.consulting-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(52px, 5.7vw, 82px);
  line-height: .93;
  letter-spacing: -.065em;
}
.consulting-hero-copy h1 .consulting-hero-line { display: block; color: #101216; background: none; -webkit-background-clip: initial; background-clip: initial; -webkit-text-fill-color: currentColor; white-space: nowrap; }
.consulting-hero-copy h1 .consulting-hero-emphasis { color: #777b80; }
.consulting-hero-copy h1 span { color: #55595f; }
.consulting-section-head h2 {
  max-width: 19ch;
  font-size: clamp(40px, 4.35vw, 64px);
  line-height: 1;
  letter-spacing: -.058em;
}
.sovereignty-sticky h2 {
  max-width: 13ch;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: .98;
  letter-spacing: -.058em;
}
.consulting-contact h2 {
  max-width: 13ch;
  font-size: clamp(40px, 4.25vw, 58px);
  line-height: 1;
  letter-spacing: -.058em;
}
.consulting-service-card h3 { font-size: clamp(25px, 1.85vw, 32px); }
.sovereignty-core { border-color: rgba(10,10,10,.16); box-shadow: 0 35px 100px rgba(20,20,20,.13); }
.sovereignty-node { box-shadow: 0 12px 35px rgba(0,0,0,.1); }
.stack-section { background: #f0f1ef; }
.stack-model { border-color: #d3d5d3; box-shadow: 0 35px 90px rgba(0,0,0,.07); }
.stack-inputs article,
.stack-outcomes article,
.stack-center section,
.stack-tools span { border-color: #d9dbd9; box-shadow: 0 8px 20px rgba(0,0,0,.05); }
@media (max-width: 860px) {
  .consulting-hero-copy h1 { font-size: clamp(46px, 10.5vw, 65px); }
  .consulting-section-head h2,
  .sovereignty-sticky h2 { font-size: clamp(37px, 8.5vw, 48px); }
  .consulting-contact h2 { font-size: clamp(36px, 8vw, 46px); }
}
@media (max-width: 600px) {
  .consulting-hero-copy h1 { font-size: clamp(42px, 11.5vw, 54px); line-height: .96; }
  .consulting-section-head h2,
  .sovereignty-sticky h2 { font-size: clamp(34px, 9vw, 42px); }
  .consulting-contact h2 { font-size: clamp(33px, 8.7vw, 40px); }
}

/* V41 — consulting capability carousel */
.consulting-service-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(44px, 6vw, 72px);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(10,10,10,.12);
}
.consulting-service-toolbar > span {
  color: #74777c;
  font: 700 9px/1 var(--font-mono);
  letter-spacing: .11em;
  text-transform: uppercase;
}
.consulting-service-toolbar > div { display: flex; gap: 8px; }
.consulting-service-toolbar button {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(10,10,10,.15);
  border-radius: 50%;
  color: #111;
  background: #fff;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, opacity .2s ease, transform .2s ease;
}
.consulting-service-toolbar button:hover:not(:disabled) { color: #fff; background: #111; transform: translateY(-2px); }
.consulting-service-toolbar button:disabled { opacity: .28; cursor: default; }
.consulting-service-toolbar svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.consulting-service-viewport {
  width: 100%;
  padding: 18px 0 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
}
.consulting-service-viewport::-webkit-scrollbar { display: none; }
.consulting-service-viewport .consulting-service-grid {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: clamp(310px, 29.5vw, 430px);
  gap: 18px;
  width: max-content;
  min-width: 100%;
  margin: 0;
  border: 0;
}
.consulting-service-viewport .consulting-service-card {
  min-height: 515px;
  padding: 27px 26px 31px;
  overflow: hidden;
  border: 1px solid rgba(10,10,10,.1);
  border-radius: 25px;
  background: linear-gradient(145deg,#fff 0%,#f4f5f2 100%);
  box-shadow: 0 18px 48px rgba(0,0,0,.055);
  scroll-snap-align: start;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.consulting-service-viewport .consulting-service-card:hover { transform: translateY(-7px); border-color: rgba(10,10,10,.2); box-shadow: 0 28px 70px rgba(0,0,0,.09); }
.consulting-service-viewport .consulting-service-card::after { content:""; position:absolute; right:-55px; bottom:-70px; width:180px; height:180px; border:1px solid rgba(10,10,10,.055); border-radius:50%; box-shadow:0 0 0 26px rgba(10,10,10,.025),0 0 0 55px rgba(10,10,10,.018); pointer-events:none; }
.consulting-service-viewport .consulting-service-icon { margin-top: 48px; color: #17191d; background: #e7e8e5; }
.consulting-service-viewport .consulting-service-card h3 { max-width: 13ch; font-size: clamp(25px, 1.75vw, 31px); text-wrap: balance; }
.consulting-service-viewport .consulting-service-card p { position:relative; z-index:1; min-height: 106px; }
.consulting-service-viewport .consulting-service-card ul { position:relative; z-index:1; margin-top: 22px; }
.consulting-service-viewport .consulting-service-card li::before { background: #696d72; }
@media (max-width: 1180px) {
  .consulting-service-viewport .consulting-service-grid { grid-template-columns: none; grid-auto-columns: clamp(300px, 43vw, 480px); }
  .consulting-service-viewport .consulting-service-card,
  .consulting-service-viewport .consulting-service-card:nth-child(-n+2) { border: 1px solid rgba(10,10,10,.1); }
}
@media (max-width: 700px) {
  .consulting-services .container { width: min(100% - 28px, 520px); }
  .consulting-service-toolbar { margin-top: 36px; }
  .consulting-service-toolbar button { width: 42px; height: 42px; }
  .consulting-service-viewport { width: calc(100% + 14px); }
  .consulting-service-viewport .consulting-service-grid { grid-template-columns: none; grid-auto-columns: min(86vw, 360px); gap: 12px; }
  .consulting-service-viewport .consulting-service-card { min-height: 490px; padding: 25px 21px 28px; border-radius: 22px; }
  .consulting-service-viewport .consulting-service-icon { margin-top: 34px; }
  .consulting-service-viewport .consulting-service-card h3 { font-size: 27px; }
}

/* V42 — Apple-inspired consulting hero stage */
.consulting-hero {
  min-height: auto;
  padding: clamp(150px, 13vw, 195px) 0 clamp(55px, 7vw, 90px);
  background:
    radial-gradient(circle at 50% 63%, rgba(120,123,127,.13), transparent 30%),
    linear-gradient(180deg, #fbfbfa 0%, #f4f5f2 68%, #eceeeb 100%);
}
.consulting-hero::before {
  opacity: .16;
  background-size: 110px 110px;
}
.consulting-hero-grid {
  grid-template-columns: 1fr;
  gap: clamp(52px, 7vw, 82px);
  text-align: center;
}
.consulting-hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.consulting-hero-copy .hero-apple-badge { margin-inline: auto; }
.consulting-hero-copy h1 {
  max-width: 13ch;
  margin-top: 30px;
  font-size: clamp(52px, 5.5vw, 80px);
  line-height: .94;
  letter-spacing: -.068em;
  text-wrap: balance;
}
.consulting-hero-copy h1 br { display: none; }
.consulting-hero-copy h1 span {
  color: #85888c;
  background: linear-gradient(180deg,#25272a 0%,#96999c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.consulting-hero-copy > p {
  max-width: 720px;
  margin-top: 27px;
  color: #5f6368;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.62;
}
.consulting-hero-copy .hero-apple-actions { justify-content: center; margin-top: 30px; }
.consulting-hero-visual {
  width: min(1080px, 100%);
  min-height: 430px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(10,10,10,.1);
  border-radius: clamp(28px, 3vw, 44px);
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.98), rgba(242,243,240,.84) 48%, rgba(218,220,217,.75) 100%);
  box-shadow: 0 45px 110px rgba(0,0,0,.13), inset 0 1px 0 rgba(255,255,255,.9);
  isolation: isolate;
}
.consulting-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .28;
  background-image: linear-gradient(rgba(15,15,15,.05) 1px, transparent 1px), linear-gradient(90deg,rgba(15,15,15,.05) 1px,transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg,transparent,#000 25%,#000 75%,transparent);
  -webkit-mask-image: linear-gradient(180deg,transparent,#000 25%,#000 75%,transparent);
}
.consulting-hero-visual .sovereignty-core {
  width: min(560px, 66%);
  padding: 35px 42px;
  border-color: rgba(10,10,10,.1);
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 30px 80px rgba(0,0,0,.12), inset 0 1px 0 #fff;
  backdrop-filter: blur(24px) saturate(115%);
  -webkit-backdrop-filter: blur(24px) saturate(115%);
}
.consulting-hero-visual .sovereignty-core strong { font-size: clamp(28px, 3vw, 40px); }
.consulting-hero-visual .sovereignty-core div { justify-content: center; }
.consulting-hero-visual .sovereignty-orbit { inset: -42%; border-color: rgba(10,10,10,.08); }
.consulting-hero-visual .sovereignty-orbit span { border-color: rgba(10,10,10,.08); }
.consulting-hero-visual .sovereignty-orbit span:nth-child(3) { background: #8c9094; box-shadow: 0 0 0 8px rgba(140,144,148,.12); }
.consulting-hero-visual .sovereignty-node {
  padding: 10px 15px;
  border-color: rgba(10,10,10,.1);
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 38px rgba(0,0,0,.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.consulting-hero-visual .node-a { top: 13%; left: 8%; }
.consulting-hero-visual .node-b { top: 13%; right: 8%; }
.consulting-hero-visual .node-c { bottom: 13%; left: 8%; }
.consulting-hero-visual .node-d { right: 8%; bottom: 13%; }
.consulting-hero .consulting-proof { margin-top: clamp(38px, 5vw, 58px); }
@media (max-width: 700px) {
  .consulting-hero { padding: 126px 0 48px; }
  .consulting-hero-grid { gap: 45px; }
  .consulting-hero-copy h1 { max-width: 12ch; font-size: clamp(42px, 11.5vw, 54px); line-height: .97; }
  .consulting-hero-copy > p { font-size: 15px; }
  .consulting-hero-copy .hero-apple-actions { width: 100%; }
  .consulting-hero-copy .hero-apple-actions .button { width: 100%; justify-content: center; }
  .consulting-hero-copy .hero-text-link { margin-inline: auto; }
  .consulting-hero-visual { min-height: 420px; border-radius: 27px; }
  .consulting-hero-visual .sovereignty-core { width: calc(100% - 46px); padding: 28px 20px; border-radius: 24px; }
  .consulting-hero-visual .sovereignty-core strong { font-size: 27px; }
  .consulting-hero-visual .sovereignty-core div { gap: 5px; }
  .consulting-hero-visual .sovereignty-core div span { padding: 7px 8px; font-size: 8px; }
  .consulting-hero-visual .sovereignty-node { padding: 8px 9px; font-size: 7px; }
  .consulting-hero-visual .node-a { top: 7%; left: 6%; }
  .consulting-hero-visual .node-b { top: 7%; right: 6%; }
  .consulting-hero-visual .node-c { bottom: 7%; left: 6%; }
  .consulting-hero-visual .node-d { right: 6%; bottom: 7%; }
}

/* V43 — simplified consulting hero without a product mockup */
.consulting-hero {
  display: flex;
  min-height: min(900px, 92svh);
  align-items: center;
  padding: clamp(155px, 14vw, 205px) 0 clamp(90px, 10vw, 145px);
  background:
    radial-gradient(circle at 50% 28%, rgba(255,255,255,.98), transparent 36%),
    linear-gradient(180deg,#fafaf9 0%,#f1f2ef 100%);
}
.consulting-hero-grid { gap: 0; }
.consulting-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(50px, 5.2vw, 74px);
  line-height: .96;
  letter-spacing: -.064em;
}
.consulting-hero-copy h1 br { display: initial; }
.consulting-hero-copy > p {
  max-width: 680px;
  font-size: clamp(16px, 1.18vw, 19px);
}
.consulting-hero-copy .hero-apple-actions { margin-top: 32px; }
@media (max-width: 700px) {
  .consulting-hero { min-height: auto; padding: 132px 0 78px; }
  .consulting-hero-copy h1 { max-width: 11ch; font-size: clamp(40px, 10.8vw, 50px); line-height: .98; }
  .consulting-hero-copy > p { font-size: 15px; }
}

/* V44 — three-line hero, true three-card slider and compact consulting contact */
.consulting-hero-copy h1 {
  width: 100%;
  max-width: 16ch;
  font-size: clamp(48px, 4.5vw, 66px);
  line-height: .98;
}
.consulting-hero-copy h1 br { display: block; }
.consulting-service-viewport .consulting-service-grid {
  display: flex;
  width: 100%;
  min-width: 100%;
  gap: 18px;
}
.consulting-service-viewport .consulting-service-card {
  flex: 0 0 calc((100% - 36px) / 3);
  width: calc((100% - 36px) / 3);
}
.stack-section .consulting-section-head h2 {
  max-width: 21ch;
  font-size: clamp(36px, 3.7vw, 54px);
  line-height: 1.02;
}
.consulting-contact { padding: clamp(75px, 8vw, 110px) 0; background: #eeefec; }
.consulting-contact-grid {
  grid-template-columns: minmax(300px,.75fr) minmax(430px,1.25fr);
  gap: clamp(45px,7vw,90px);
  padding: clamp(34px,4.5vw,58px);
  border-radius: 29px;
  background: #f8f9f7;
}
.consulting-contact h2 {
  max-width: 14ch;
  font-size: clamp(35px, 3.4vw, 48px);
  line-height: 1.02;
}
.consulting-contact p { margin-top: 20px; font-size: 13px; }
.consulting-contact-meta { margin-top: 27px; padding-top: 22px; border-top: 1px solid rgba(10,10,10,.1); }
.consulting-contact-form {
  padding: clamp(24px,3vw,34px);
  border: 1px solid rgba(10,10,10,.09);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.055);
}
.consulting-contact-form input:not([type=checkbox]) { min-height: 52px; }
.consulting-contact-form textarea { min-height: 132px; }
.consulting-contact-form .button { min-height: 52px; }
.stack-tools span { grid-template-rows: 28px auto; align-content: center; gap: 7px; }
.stack-tools span img { display: block; width: 28px; height: 28px; object-fit: contain; }
.stack-tools .stack-ai-mark b { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 9px; color: #fff; background: #17191d; font-size: 14px; }
@media (max-width: 980px) {
  .consulting-service-viewport .consulting-service-card { flex-basis: calc((100% - 18px) / 2); width: calc((100% - 18px) / 2); }
  .consulting-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .consulting-hero-copy h1 { max-width: none; font-size: clamp(34px, 9.2vw, 40px); }
  .consulting-service-viewport .consulting-service-card { flex-basis: min(86vw, 360px); width: min(86vw, 360px); }
  .stack-section .consulting-section-head h2 { font-size: clamp(32px, 8.4vw, 39px); }
  .consulting-contact-grid { width: 100%; padding: 24px 18px; border-radius: 24px; }
  .consulting-contact h2 { font-size: clamp(31px, 8vw, 38px); }
  .consulting-contact-form { padding: 20px 16px; border-radius: 19px; }
}

/* V46 — full-width, lower-profile autoplay capability carousel */
.consulting-services > .container {
  width: 100%;
  max-width: none;
  padding-inline: clamp(24px, 4.5vw, 84px);
}
.consulting-services .consulting-section-head {
  width: min(1540px, 100%);
  margin-inline: auto;
}
.consulting-service-toolbar { margin-top: clamp(38px, 4vw, 58px); }
.consulting-service-viewport { padding-bottom: 15px; }
.consulting-service-viewport .consulting-service-card {
  min-height: 420px;
  padding: 24px 25px 27px;
  border-radius: 22px;
}
.consulting-service-viewport .consulting-service-icon {
  width: 47px;
  height: 47px;
  margin-top: 26px;
  border-radius: 13px;
}
.consulting-service-viewport .consulting-service-icon svg { width: 24px; height: 24px; }
.consulting-service-viewport .consulting-service-card h3 {
  margin-top: 19px;
  font-size: clamp(23px, 1.6vw, 29px);
}
.consulting-service-viewport .consulting-service-card p {
  min-height: 78px;
  margin-top: 15px;
  font-size: 12px;
  line-height: 1.58;
}
.consulting-service-viewport .consulting-service-card ul {
  gap: 7px;
  margin-top: 17px;
  font-size: 9px;
}
@media (max-width: 700px) {
  .consulting-services > .container { width: 100%; padding-inline: 14px; }
  .consulting-service-viewport { width: calc(100% + 14px); }
  .consulting-service-viewport .consulting-service-card { min-height: 405px; padding: 22px 19px 25px; }
  .consulting-service-viewport .consulting-service-card p { min-height: 88px; }
}

/* V47 — dark editorial capability stage */
.consulting-services {
  position: relative;
  padding: clamp(84px, 8vw, 120px) 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 5%, rgba(255,255,255,.08), transparent 27%),
    #0d0e10;
}

/* V48 — restrained consulting section headline scale */
.consulting-services .consulting-section-head h2,
.consulting-delivery .consulting-section-head h2 {
  max-width: 22ch;
  font-size: clamp(34px, 3.25vw, 50px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.sovereignty-sticky h2 {
  max-width: 14ch;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.03;
  letter-spacing: -.05em;
}

.stack-section .consulting-section-head h2 {
  max-width: 24ch;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: -.048em;
}

@media (max-width: 700px) {
  .consulting-services .consulting-section-head h2,
  .consulting-delivery .consulting-section-head h2,
  .sovereignty-sticky h2,
  .stack-section .consulting-section-head h2 {
    max-width: 100%;
    font-size: clamp(29px, 8vw, 36px);
    line-height: 1.06;
    letter-spacing: -.045em;
  }
}
.consulting-services::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
}
.consulting-services > .container { position: relative; z-index: 1; }
.consulting-services .section-label { color: #8c9096; }
.consulting-services .consulting-section-head h2 { color: #fff; }
.consulting-services .consulting-section-head > p { color: #a3a7ad; }
.consulting-service-toolbar {
  border-color: rgba(255,255,255,.17);
}
.consulting-service-toolbar > span { color: #8b9097; }
.consulting-service-toolbar button {
  border-color: rgba(255,255,255,.24);
  color: #fff;
  background: transparent;
}
.consulting-service-toolbar button:hover:not(:disabled) { color: #111; background: #fff; }
.consulting-service-viewport { padding-top: 16px; }
.consulting-service-viewport .consulting-service-grid { gap: 0; }
.consulting-service-viewport .consulting-service-card {
  flex-basis: 33.3333%;
  width: 33.3333%;
  min-height: 390px;
  padding: 26px clamp(24px, 2.3vw, 40px) 30px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.17);
  border-radius: 0;
  color: #fff;
  background: rgba(255,255,255,.025);
  box-shadow: none;
  transition: background .3s ease, transform .3s ease;
}
.consulting-service-viewport .consulting-service-card:first-child { border-left: 1px solid rgba(255,255,255,.17); }
.consulting-service-viewport .consulting-service-card:hover {
  z-index: 2;
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.075);
  box-shadow: none;
  transform: none;
}
.consulting-service-viewport .consulting-service-card::after {
  right: -72px;
  bottom: -95px;
  width: 215px;
  height: 215px;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 0 0 32px rgba(255,255,255,.025),0 0 0 67px rgba(255,255,255,.015);
}
.consulting-service-viewport .consulting-service-card > span { color: #737880; }
.consulting-service-viewport .consulting-service-icon {
  width: 43px;
  height: 43px;
  margin-top: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: #e6e7e8;
  background: rgba(255,255,255,.07);
}
.consulting-service-viewport .consulting-service-card h3 {
  max-width: 14ch;
  margin-top: 22px;
  color: #fff;
  font-size: clamp(24px, 1.7vw, 31px);
}
.consulting-service-viewport .consulting-service-card p {
  max-width: 47ch;
  min-height: 76px;
  color: #a7abb1;
}
.consulting-service-viewport .consulting-service-card ul { color: #d5d7da; }
.consulting-service-viewport .consulting-service-card li::before { background: #858a91; }
@media (max-width: 980px) {
  .consulting-service-viewport .consulting-service-card {
    flex-basis: 50%;
    width: 50%;
    border-top: 1px solid rgba(255,255,255,.17);
    border-bottom: 1px solid rgba(255,255,255,.17);
  }
}
@media (max-width: 700px) {
  .consulting-services { padding: 72px 0; }
  .consulting-service-viewport { width: calc(100% + 14px); }
  .consulting-service-viewport .consulting-service-grid { gap: 10px; }
  .consulting-service-viewport .consulting-service-card {
    flex-basis: min(86vw, 345px);
    width: min(86vw, 345px);
    min-height: 385px;
    padding: 24px 20px 27px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    background: rgba(255,255,255,.045);
  }
}

/* V49 — consulting research library and expanded navigation */
.consulting-page .consulting-nav { gap: 2px; }
.consulting-page .consulting-nav .nav-link { padding-inline: 8px; font-size: 9px; }

.consulting-research {
  position: relative;
  padding: clamp(82px, 8vw, 122px) 0;
  overflow: hidden;
  background: #e9eae7;
}
.consulting-research::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image: linear-gradient(rgba(10,10,10,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(10,10,10,.05) 1px,transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
}
.consulting-research > .container { position: relative; z-index: 1; }
.consulting-research .consulting-section-head h2 {
  max-width: 20ch;
  font-size: clamp(34px, 3.25vw, 50px);
  line-height: 1.04;
  letter-spacing: -.05em;
}
.research-library {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  margin-top: clamp(45px, 6vw, 76px);
  border-top: 1px solid rgba(10,10,10,.17);
  border-bottom: 1px solid rgba(10,10,10,.17);
}
.research-paper {
  position: relative;
  display: flex;
  min-height: 510px;
  padding: 27px clamp(23px,2.4vw,38px) 30px;
  flex-direction: column;
  border-right: 1px solid rgba(10,10,10,.17);
  background: rgba(255,255,255,.3);
  transition: background .25s ease;
}
.research-paper:first-child { border-left: 1px solid rgba(10,10,10,.17); }
.research-paper:hover { background: rgba(255,255,255,.72); }
.research-paper-top { display: flex; align-items: center; justify-content: space-between; gap: 15px; color: #6f7377; font: 700 8px/1.3 var(--font-mono); letter-spacing: .08em; }
.research-paper-top b { padding: 7px 9px; border: 1px solid rgba(10,10,10,.14); border-radius: 999px; color: #55595d; font-weight: 700; }
.research-paper-mark { display: grid; width: 58px; height: 58px; margin-top: 46px; place-items: center; border: 1px solid rgba(10,10,10,.15); border-radius: 50%; background: rgba(255,255,255,.64); }
.research-paper-mark svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.research-paper-topic { margin: 30px 0 0; color: #73777b; font: 700 8px/1.2 var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }
.research-paper h3 { max-width: 14ch; margin: 12px 0 0; font-size: clamp(25px,2vw,34px); line-height: 1.02; letter-spacing: -.05em; }
.research-paper > p:not(.research-paper-topic) { max-width: 47ch; margin: 20px 0 27px; color: #606469; font-size: 12px; line-height: 1.65; }
.research-paper-meta { display: flex; margin-top: auto; padding-top: 20px; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid rgba(10,10,10,.13); }
.research-paper-meta > span { color: #777b7f; font: 700 8px/1.2 var(--font-mono); letter-spacing: .06em; }
.research-paper-meta a { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 800; }
.research-paper-meta a i { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; color: #fff; background: #111; font-style: normal; }

@media (max-width: 980px) {
  .research-library { grid-template-columns: 1fr; }
  .research-paper { min-height: 390px; border-left: 1px solid rgba(10,10,10,.17); border-bottom: 1px solid rgba(10,10,10,.17); }
  .research-paper:last-child { border-bottom: 0; }
  .research-paper-mark { margin-top: 30px; }
}
@media (max-width: 700px) {
  .consulting-research { padding: 70px 0; }
  .consulting-research .consulting-section-head h2 { max-width: 100%; font-size: clamp(29px,8vw,36px); }
  .research-library { margin-top: 38px; }
  .research-paper { min-height: 420px; padding: 23px 20px 25px; }
  .research-paper h3 { font-size: 27px; }
}

/* V50 — identical desktop navigation system across both onepagers */
.consulting-page .site-header .header-shell {
  width: var(--container);
}
.consulting-page .header-inner {
  gap: 22px;
}
.consulting-page .desktop-nav-simple,
.consulting-page .consulting-nav {
  gap: 2px;
  padding: 4px;
}
.consulting-page .desktop-nav-simple .nav-link,
.consulting-page .consulting-nav .nav-link {
  min-height: 38px;
  padding-inline: 16px;
  font-size: 13px;
}

/* V51 — wider single-line consulting header */
.consulting-page .site-header .header-shell {
  width: min(1480px, calc(100vw - 28px));
}
.consulting-page .header-inner,
.consulting-page .desktop-nav,
.consulting-page .consulting-nav,
.consulting-page .offer-switch {
  flex-wrap: nowrap;
}
.consulting-page .desktop-nav .nav-link,
.consulting-page .consulting-nav .nav-link,
.consulting-page .offer-switch a,
.consulting-page .header-cta {
  white-space: nowrap;
}

/* V52 — editorial photography system */
.consulting-photo-story {
  display: grid;
  grid-template-columns: 1.45fr .7fr 1fr;
  gap: 12px;
  width: 100%;
  margin-top: clamp(55px,7vw,90px);
}
.consulting-photo-story figure,
.about-editorial-gallery figure,
.contact-editorial-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #d9dad7;
}
.consulting-photo-story figure { min-height: 390px; border-radius: 24px; }
.consulting-photo-story img,
.about-editorial-gallery img,
.contact-editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.consulting-photo-story figure:nth-child(2) img { object-position: center 60%; filter: grayscale(1); }
.consulting-photo-story figure:nth-child(3) img { object-position: center; filter: saturate(.72); }
.consulting-photo-story figure:hover img,
.about-editorial-gallery figure:hover img { transform: scale(1.025); }
.consulting-photo-story figcaption,
.about-editorial-gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  color: #fff;
  background: rgba(12,12,12,.72);
  font: 700 9px/1.3 var(--font-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.consulting-photo-story figcaption span { color: #92969b; }

.about-editorial-gallery {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr;
  gap: 16px;
  margin-bottom: 24px;
}
.about-editorial-gallery figure { min-height: 500px; border-radius: 28px; }
.about-gallery-lead img { object-position: center; }
.about-editorial-gallery figure:not(.about-gallery-lead) img { object-position: center; }
.about-editorial-gallery figcaption { display: grid; align-items: initial; }
.about-editorial-gallery figcaption span { color: #aaa; font-size: 8px; }
.about-editorial-gallery figcaption strong { max-width: 28ch; font-family: var(--font-display); font-size: 15px; letter-spacing: -.02em; text-transform: none; }

.contact-editorial-image {
  height: 250px;
  margin: clamp(-48px,-4vw,-30px) clamp(-48px,-4vw,-30px) 34px;
  border-radius: 28px 28px 18px 18px;
}
.contact-editorial-image img { object-position: center 45%; filter: grayscale(.45) contrast(1.04); }
.contact-editorial-image figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(10,10,10,.76);
  font: 700 8px/1.2 var(--font-mono);
  letter-spacing: .05em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .consulting-photo-story { grid-template-columns: 1.3fr .7fr; }
  .consulting-photo-story figure { min-height: 350px; }
  .consulting-photo-story figure:last-child { grid-column: 1 / -1; min-height: 310px; }
  .about-editorial-gallery { grid-template-columns: 1fr 1fr; }
  .about-gallery-lead { grid-column: 1 / -1; }
  .about-editorial-gallery figure { min-height: 390px; }
}
@media (max-width: 600px) {
  .consulting-photo-story { grid-template-columns: 1fr; gap: 10px; margin-top: 44px; }
  .consulting-photo-story figure,
  .consulting-photo-story figure:last-child { grid-column: auto; min-height: 250px; border-radius: 20px; }
  .consulting-photo-story figure:nth-child(2) { display: none; }
  .about-editorial-gallery { grid-template-columns: 1fr; gap: 10px; }
  .about-editorial-gallery .about-gallery-lead { grid-column: auto; min-height: 330px; }
  .about-editorial-gallery figure { min-height: 300px; border-radius: 22px; }
  .about-editorial-gallery figure:last-child { display: none; }
  .contact-editorial-image { height: 210px; margin: -28px -22px 28px; border-radius: 24px 24px 16px 16px; }
}

/* V53 — consulting service landing-page family */
.consulting-service-viewport .consulting-service-card { display: flex; min-height: 445px; flex-direction: column; }
.service-card-link {
  position: relative;
  z-index: 3;
  display: flex;
  margin-top: auto;
  padding-top: 18px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.service-card-link span { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; transition: color .2s ease, background .2s ease; }
.service-card-link:hover span { color: #111; background: #fff; }

.service-detail-body { color: #111317; background: #eeefec; }
.service-detail-main { padding-top: 0; }
.service-detail-hero { position: relative; padding: 142px 0 72px; overflow: hidden; background: #f7f8f5; }
.service-detail-hero::before { content:""; position:absolute; inset:0; opacity:.33; background-image:linear-gradient(rgba(10,10,10,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(10,10,10,.05) 1px,transparent 1px); background-size:96px 96px; pointer-events:none; }
.service-detail-hero-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(360px,.72fr); gap: clamp(50px,7vw,105px); align-items: center; }
.service-detail-hero-copy { position: relative; z-index: 1; }
.service-back-link { display: inline-flex; margin-bottom: 50px; color: #6e7278; font-size: 10px; font-weight: 800; }
.service-detail-hero h1 { max-width: 13ch; margin: 20px 0 0; font-size: clamp(48px,5vw,72px); line-height: .96; letter-spacing: -.065em; }
.service-detail-hero-copy > p { max-width: 650px; margin: 28px 0 0; color: #5d6269; font-size: clamp(16px,1.35vw,20px); line-height: 1.65; }
.service-detail-actions { display: flex; flex-wrap: wrap; gap: 16px 25px; margin-top: 32px; align-items: center; }
.service-detail-actions > a:not(.button) { color: #62666c; font-size: 11px; font-weight: 800; }
.service-audience { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 42px; }
.service-audience span { padding: 8px 10px; border: 1px solid rgba(10,10,10,.12); border-radius: 999px; color: #60646a; background: rgba(255,255,255,.5); font: 700 8px/1 var(--font-mono); letter-spacing: .05em; text-transform: uppercase; }
.service-detail-visual { position: relative; z-index: 1; height: min(640px,67vh); min-height: 480px; margin: 0; overflow: hidden; border-radius: 30px; background: #d9dad7; box-shadow: 0 30px 80px rgba(0,0,0,.12); }
.service-detail-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.03); }
.service-detail-visual figcaption { position:absolute; right:15px; bottom:15px; left:15px; padding:13px 15px; border:1px solid rgba(255,255,255,.2); border-radius:14px; color:#fff; background:rgba(10,10,10,.75); font:700 8px/1.3 var(--font-mono); letter-spacing:.08em; text-transform:uppercase; backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); }

.service-problem-section { padding: clamp(80px,9vw,130px) 0; color: #fff; background: #0d0f12; }
.service-problem-grid { display:grid; grid-template-columns:minmax(280px,.72fr) minmax(0,1.28fr); gap:clamp(60px,10vw,150px); align-items:start; }
.service-problem-grid > div:first-child { position:sticky; top:120px; }
.service-problem-grid h2 { max-width:12ch; margin:20px 0 0; font-size:clamp(36px,4vw,56px); line-height:1.02; letter-spacing:-.055em; }
.service-problem-list { border-top:1px solid rgba(255,255,255,.17); }
.service-problem-list article { display:grid; grid-template-columns:38px minmax(0,1fr); gap:18px; padding:30px 0; border-bottom:1px solid rgba(255,255,255,.17); }
.service-problem-list article > span { padding-top:6px; color:#696f77; font:700 8px/1 var(--font-mono); }
.service-problem-list h3 { margin:0; font-size:25px; letter-spacing:-.04em; }
.service-problem-list p { grid-column:2; max-width:55ch; margin:-8px 0 0; color:#9ca1a8; font-size:13px; line-height:1.65; }

.service-scope-section { padding:clamp(82px,9vw,132px) 0; background:#eeefec; }
.service-section-heading { display:grid; grid-template-columns:minmax(0,1fr) minmax(300px,.6fr); gap:clamp(45px,8vw,110px); align-items:end; }
.service-section-heading h2 { max-width:16ch; margin:18px 0 0; font-size:clamp(36px,3.8vw,54px); line-height:1.03; letter-spacing:-.055em; }
.service-section-heading > p { margin:0; color:#646970; line-height:1.7; }
.service-deliverables { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); margin-top:clamp(48px,6vw,78px); border-top:1px solid rgba(10,10,10,.15); border-bottom:1px solid rgba(10,10,10,.15); }
.service-deliverables article { min-height:350px; padding:28px 25px; border-right:1px solid rgba(10,10,10,.15); }
.service-deliverables article:first-child { border-left:1px solid rgba(10,10,10,.15); }
.service-deliverables b { color:#8b8f94; font:700 8px/1 var(--font-mono); }
.service-deliverables h3 { margin:95px 0 16px; font-size:27px; line-height:1.03; letter-spacing:-.045em; }
.service-deliverables p { margin:0; color:#64686e; font-size:12px; line-height:1.65; }

.service-outcomes { padding:clamp(80px,8vw,115px) 0; color:#fff; background:#16181c; }
.service-outcomes > .container { display:grid; grid-template-columns:minmax(0,1fr) minmax(320px,.7fr); gap:clamp(50px,9vw,130px); align-items:end; }
.service-outcomes h2 { max-width:15ch; margin:18px 0 0; font-size:clamp(35px,3.7vw,52px); line-height:1.03; letter-spacing:-.055em; }
.service-outcomes ul { margin:0; padding:0; list-style:none; border-top:1px solid rgba(255,255,255,.18); }
.service-outcomes li { padding:18px 0; border-bottom:1px solid rgba(255,255,255,.18); color:#c4c7cb; font-size:13px; }
.service-outcomes li::before { content:"✓"; margin-right:12px; color:#747a82; }

.service-contact-section { padding:clamp(75px,8vw,110px) 0; background:#f7f8f5; }
.service-contact-inner { display:flex; align-items:end; justify-content:space-between; gap:50px; padding:clamp(38px,6vw,76px); border:1px solid rgba(10,10,10,.11); border-radius:32px; background:#fff; box-shadow:0 24px 65px rgba(0,0,0,.06); }
.service-contact-inner h2 { max-width:13ch; margin:18px 0; font-size:clamp(36px,3.7vw,54px); line-height:1.02; letter-spacing:-.055em; }
.service-contact-inner p { max-width:620px; margin:0; color:#656970; line-height:1.7; }
.service-contact-inner > .button { flex:0 0 auto; }
.service-detail-footer { padding:30px 0; color:#aaa; background:#090a0c; }
.service-detail-footer .container { display:flex; justify-content:space-between; gap:25px; font-size:10px; }
.service-detail-footer a { color:#fff; }

@media(max-width:1000px){.service-detail-hero-grid,.service-problem-grid,.service-section-heading,.service-outcomes>.container{grid-template-columns:1fr}.service-detail-visual{height:500px}.service-problem-grid>div:first-child{position:static}.service-deliverables{grid-template-columns:repeat(2,1fr)}.service-deliverables article:nth-child(2){border-right:1px solid rgba(10,10,10,.15)}.service-deliverables article{border-bottom:1px solid rgba(10,10,10,.15)}}
@media(max-width:700px){.service-detail-hero{padding:108px 0 58px}.service-back-link{margin-bottom:34px}.service-detail-hero h1{font-size:clamp(37px,10.5vw,48px)}.service-detail-hero-copy>p{font-size:15px}.service-detail-visual{height:390px;min-height:0;border-radius:23px}.service-problem-section,.service-scope-section,.service-outcomes,.service-contact-section{padding:68px 0}.service-problem-grid h2,.service-section-heading h2,.service-outcomes h2,.service-contact-inner h2{font-size:clamp(31px,8.5vw,39px)}.service-deliverables{grid-template-columns:1fr}.service-deliverables article{min-height:270px;border-left:1px solid rgba(10,10,10,.15)}.service-deliverables h3{margin-top:55px}.service-contact-inner{display:grid;padding:28px 22px;border-radius:24px}.service-contact-inner>.button{width:100%}.service-detail-footer .container{display:grid}.consulting-service-viewport .consulting-service-card{min-height:440px}}

/* V54 — corrected service-section heading composition */
.service-section-heading {
  grid-template-columns: minmax(0,1fr) minmax(300px,.6fr);
  grid-template-areas:
    "label copy"
    "title copy";
  column-gap: clamp(45px,8vw,110px);
  row-gap: 0;
  align-items: end;
}
.service-section-heading > .section-label { grid-area: label; align-self: end; }
.service-section-heading > h2 { grid-area: title; }
.service-section-heading > p { grid-area: copy; align-self: end; }

@media (max-width: 1000px) {
  .service-section-heading {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "copy";
    row-gap: 0;
  }
  .service-section-heading > p { max-width: 62ch; margin-top: 24px; }
}

/* V55 — continuous subpage header and hero surface */
.subpage-body,
.service-detail-body {
  background: #f7f8f5;
}
.service-detail-hero {
  margin-top: -96px;
  padding-top: 238px;
}

@media (max-width: 700px) {
  .service-detail-hero {
    margin-top: -90px;
    padding-top: 198px;
  }
}

/* V56 — first-party form result pages */
.form-result-body { min-height: 100vh; color: #111317; background: #eef0ec; }
.form-result-main { display:grid; min-height:100vh; padding:28px; place-items:center; background-image:linear-gradient(rgba(10,10,10,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(10,10,10,.04) 1px,transparent 1px); background-size:96px 96px; }
.form-result-card { width:min(820px,100%); padding:clamp(34px,7vw,76px); border:1px solid rgba(10,10,10,.11); border-radius:34px; background:rgba(255,255,255,.92); box-shadow:0 32px 90px rgba(0,0,0,.1); }
.form-result-logo { display:block; width:min(250px,70%); }
.form-result-logo img { display:block; width:100%; height:auto; }
.form-result-status { display:inline-flex; margin-top:70px; padding:8px 11px; border:1px solid rgba(10,10,10,.13); border-radius:999px; color:#62666b; font:700 8px/1 var(--font-mono); letter-spacing:.1em; text-transform:uppercase; }
.form-result-card h1 { max-width:11ch; margin:22px 0 0; font-size:clamp(46px,7vw,78px); line-height:.95; letter-spacing:-.065em; }
.form-result-card p { max-width:600px; margin:28px 0 0; color:#62666c; font-size:17px; line-height:1.7; }
.form-result-card p a { color:#111; font-weight:800; text-decoration:underline; text-underline-offset:3px; }
.form-result-actions { display:flex; flex-wrap:wrap; gap:18px 26px; margin-top:34px; align-items:center; }
.form-result-actions > a:not(.button) { color:#62666c; font-size:11px; font-weight:800; }
.form-result-card small { display:block; margin-top:70px; color:#888d92; font:700 8px/1.5 var(--font-mono); letter-spacing:.06em; text-transform:uppercase; }
@media(max-width:600px){.form-result-main{padding:14px}.form-result-card{padding:30px 22px;border-radius:25px}.form-result-status{margin-top:50px}.form-result-card h1{font-size:clamp(38px,11vw,50px)}.form-result-card p{font-size:15px}.form-result-actions .button{width:100%}.form-result-card small{margin-top:50px}}

/* V57 — independent technology ecosystem */
.platform-ecosystem { padding: clamp(66px,7vw,96px) 0; overflow:hidden; background:#e9eae7; border-top:1px solid rgba(10,10,10,.09); border-bottom:1px solid rgba(10,10,10,.11); }
.platform-ecosystem-head { display:grid; grid-template-columns:minmax(0,1fr) minmax(310px,.62fr); gap:clamp(40px,8vw,110px); align-items:end; }
.platform-ecosystem-head h2 { max-width:17ch; margin:16px 0 0; font-size:clamp(31px,3.2vw,46px); line-height:1.04; letter-spacing:-.052em; }
.platform-ecosystem-head > p { max-width:58ch; margin:0; color:#666b71; font-size:13px; line-height:1.7; }
.platform-marquee { position:relative; width:100%; margin-top:clamp(38px,5vw,62px); overflow:hidden; }
.platform-marquee::before,.platform-marquee::after { content:""; position:absolute; z-index:3; top:0; bottom:0; width:min(11vw,150px); pointer-events:none; }
.platform-marquee::before { left:0; background:linear-gradient(90deg,#e9eae7,transparent); }
.platform-marquee::after { right:0; background:linear-gradient(270deg,#e9eae7,transparent); }
.platform-marquee-track { display:flex; width:max-content; gap:10px; padding:4px 0; }
.platform-marquee-track.is-ready { animation:platformMarquee 52s linear infinite; }
.platform-marquee:hover .platform-marquee-track,.platform-marquee:focus-within .platform-marquee-track { animation-play-state:paused; }
.platform-marquee-track > a { display:grid; grid-template-rows:58px auto; width:190px; min-height:112px; padding:15px 18px 13px; align-items:center; border:1px solid rgba(10,10,10,.1); border-radius:17px; color:#111; background:rgba(255,255,255,.76); box-shadow:0 8px 22px rgba(0,0,0,.035); transition:transform .2s ease,background .2s ease; }
.platform-marquee-track > a:hover { z-index:2; background:#fff; transform:translateY(-3px); }
.platform-marquee-track img { display:block; width:100%; max-width:145px; max-height:46px; margin:auto; object-fit:contain; }
.platform-marquee-track span { padding-top:9px; border-top:1px solid rgba(10,10,10,.08); color:#74787d; font:700 7px/1.2 var(--font-mono); letter-spacing:.07em; text-align:center; text-transform:uppercase; }
@keyframes platformMarquee { to { transform:translateX(calc(-50% - 5px)); } }
.platform-ecosystem-foot { display:flex; justify-content:space-between; gap:25px; margin-top:26px; color:#777b80; font:700 8px/1.4 var(--font-mono); letter-spacing:.06em; text-transform:uppercase; }
.platform-ecosystem-foot a { display:inline-flex; gap:9px; color:#111; }

.platform-directory-body { background:#f3f4f1; }
.platform-directory-main { padding-top:96px; }
.platform-directory-hero { padding:90px 0 95px; }
.platform-directory-hero h1 { max-width:16ch; margin:18px 0 0; font-size:clamp(48px,5.8vw,82px); line-height:.95; letter-spacing:-.068em; }
.platform-directory-hero > p { max-width:760px; margin:30px 0 0; color:#62676d; font-size:18px; line-height:1.7; }
.platform-evaluation { padding:clamp(75px,8vw,115px) 0; color:#fff; background:#101216; }
.platform-evaluation-head { display:grid; grid-template-columns:.65fr 1.35fr; gap:60px; align-items:end; }
.platform-evaluation-head h2 { max-width:14ch; margin:16px 0 0; font-size:clamp(36px,4vw,56px); line-height:1.02; letter-spacing:-.055em; }
.platform-evaluation-grid { display:grid; grid-template-columns:repeat(3,1fr); margin-top:60px; border-top:1px solid rgba(255,255,255,.16); border-left:1px solid rgba(255,255,255,.16); }
.platform-evaluation-grid article { min-height:260px; padding:27px; border-right:1px solid rgba(255,255,255,.16); border-bottom:1px solid rgba(255,255,255,.16); }
.platform-evaluation-grid b { color:#6f747b; font:700 8px/1 var(--font-mono); }
.platform-evaluation-grid h3 { margin:70px 0 12px; font-size:26px; }
.platform-evaluation-grid p { margin:0; color:#9ca1a8; font-size:12px; line-height:1.65; }
.platform-catalog { padding:clamp(80px,9vw,130px) 0; }
.platform-catalog-head { display:grid; grid-template-columns:1fr .65fr; gap:clamp(45px,8vw,110px); align-items:end; }
.platform-catalog-head h2 { max-width:15ch; margin:16px 0 0; font-size:clamp(36px,4vw,56px); line-height:1.02; letter-spacing:-.055em; }
.platform-catalog-head > p { margin:0; color:#666b71; line-height:1.7; }
.platform-catalog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:60px; }
.platform-catalog-grid > a { display:flex; min-height:390px; padding:25px; flex-direction:column; border:1px solid rgba(10,10,10,.1); border-radius:23px; color:#111; background:#fff; box-shadow:0 12px 34px rgba(0,0,0,.035); transition:transform .24s ease,box-shadow .24s ease; }
.platform-catalog-grid > a:hover { transform:translateY(-5px); box-shadow:0 22px 50px rgba(0,0,0,.08); }
.platform-catalog-grid > a > div { display:grid; height:90px; padding:15px; place-items:center; border-radius:14px; background:#f3f4f1; }
.platform-catalog-grid img { max-width:170px; max-height:55px; object-fit:contain; }
.platform-catalog-grid span { margin-top:28px; color:#85898e; font:700 8px/1 var(--font-mono); letter-spacing:.08em; text-transform:uppercase; }
.platform-catalog-grid h3 { margin:13px 0 12px; font-size:28px; letter-spacing:-.045em; }
.platform-catalog-grid p { margin:0; color:#656a70; font-size:12px; line-height:1.65; }
.platform-catalog-grid b { margin-top:auto; padding-top:28px; font-size:10px; }
@media(max-width:900px){.platform-ecosystem-head,.platform-catalog-head,.platform-evaluation-head{grid-template-columns:1fr}.platform-catalog-grid,.platform-evaluation-grid{grid-template-columns:repeat(2,1fr)}.platform-directory-hero h1{font-size:clamp(44px,8vw,65px)}}
@media(max-width:600px){.platform-ecosystem{padding:58px 0}.platform-ecosystem-head h2{font-size:clamp(29px,8vw,36px)}.platform-marquee-track> a{width:165px}.platform-ecosystem-foot{display:grid}.platform-catalog-grid,.platform-evaluation-grid{grid-template-columns:1fr}.platform-directory-main{padding-top:70px}.platform-directory-hero{padding:65px 0}.platform-directory-hero h1{font-size:clamp(38px,10vw,48px)}.platform-directory-hero>p{font-size:15px}.platform-evaluation-grid article{min-height:220px}.platform-catalog-grid>a{min-height:350px}}
@media(prefers-reduced-motion:reduce){.platform-marquee{overflow-x:auto}.platform-marquee-track.is-ready{animation:none}.platform-marquee-track>a[aria-hidden=true]{display:none}.platform-marquee::before,.platform-marquee::after{display:none}}

/* V58 — unified subpage navigation and dual-practice about page */
.subpage-nav-shell{width:min(1480px,calc(100vw - 28px));min-height:72px;padding:0 12px 0 18px;gap:22px}.subpage-nav-shell .subpage-offer-switch{display:flex;flex:0 0 auto;padding:4px;border:1px solid rgba(10,10,10,.12);border-radius:999px;background:#efefec}
.subpage-offer-switch a{min-width:112px;padding:8px 13px;border-radius:999px;color:#666;font-size:9px;font-weight:800;text-align:center;white-space:nowrap}
.subpage-offer-switch a.is-active{color:#fff;background:#111;box-shadow:0 5px 12px rgba(0,0,0,.15)}
.subpage-nav-shell>.brand{flex:0 1 260px}.subpage-nav-shell>.brand .brand-logo{width:auto;height:32px;max-width:260px}
.about-practice-split{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:90px;margin-bottom:90px}
.about-practice-intro{grid-column:1/-1;display:grid;grid-template-columns:.6fr 1.15fr 1fr;gap:45px;align-items:end;padding-bottom:30px;border-bottom:1px solid rgba(10,10,10,.13)}
.about-practice-intro h2{margin:0;font-size:clamp(34px,4vw,55px);line-height:1;letter-spacing:-.055em}.about-practice-intro p{margin:0;color:#666;line-height:1.7}
.about-practice-card{display:flex;min-height:410px;padding:34px;flex-direction:column;border:1px solid rgba(10,10,10,.12);border-radius:28px;color:#111;background:#fff;box-shadow:0 16px 38px rgba(0,0,0,.04);transition:transform .25s ease,box-shadow .25s ease}
.about-practice-card:hover{transform:translateY(-5px);box-shadow:0 25px 55px rgba(0,0,0,.09)}.about-practice-card>span{color:#898d91;font:700 8px/1.2 var(--font-mono);letter-spacing:.07em;text-transform:uppercase}.about-practice-card h3{max-width:10ch;margin:90px 0 20px;font-size:clamp(34px,3.7vw,52px);line-height:1;letter-spacing:-.055em}.about-practice-card p{max-width:52ch;margin:0;color:#666;line-height:1.7}.about-practice-card b{margin-top:auto;padding-top:30px;font-size:11px}.about-practice-dark{color:#fff;background:#111}.about-practice-dark p{color:#a7aaae}
@media(max-width:1050px){.subpage-nav-shell{gap:12px}.subpage-nav-shell>.brand{flex-basis:190px}.subpage-nav-shell>.brand .brand-logo{max-width:190px}.subpage-nav a{padding-inline:10px}.subpage-offer-switch a{min-width:98px;padding-inline:9px}.subpage-nav-shell>.button{padding-inline:16px}}
@media(max-width:1180px) and (min-width:861px){.subpage-nav a:nth-child(-n+4):nth-last-child(n+4){display:none}}
@media(max-width:860px){.subpage-nav-shell .subpage-offer-switch{margin-left:auto}.subpage-nav-shell>.button{display:none}.about-practice-intro{grid-template-columns:1fr}.about-practice-split{grid-template-columns:1fr}}
@media(max-width:600px){.subpage-nav-shell>.brand{flex-basis:145px}.subpage-nav-shell>.brand .brand-logo{max-width:145px}.subpage-offer-switch a{min-width:auto;padding:8px 9px;font-size:7px}.about-practice-split{margin-top:55px;margin-bottom:60px}.about-practice-card{min-height:340px;padding:25px}.about-practice-card h3{margin-top:60px}.about-practice-intro{gap:18px}}
