@view-transition { navigation: auto; }

:root {
  --ink: #080808;
  --ink-2: #141414;
  --ink-3: #222222;
  --paper: #f4f3ef;
  --paper-2: #e9e7e1;
  --white: #ffffff;
  --yellow: #ffd400;
  --yellow-soft: #ffe66a;
  --teal: #70e0c3;
  --blue: #8ea5ff;
  --violet: #a87cff;
  --grey: #5d6168;
  --grey-2: #858a92;
  --line: rgba(8, 8, 8, 0.16);
  --line-dark: rgba(255, 255, 255, 0.18);
  --display: "Inter Tight", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --shell: min(1440px, calc(100% - 80px));
  --section-space: clamp(92px, 10vw, 160px);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-smooth: cubic-bezier(.65, 0, .35, 1);
  --shadow: 0 30px 90px rgba(0, 0, 0, .15);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
  background: var(--ink);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
p { margin: 0 0 1rem; }
ul, ol { margin-top: 0; }
.shell { width: var(--shell); margin-inline: auto; min-width: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 99999;
  background: var(--yellow); color: var(--ink); padding: 12px 18px;
  transform: translateY(-160%); transition: transform .2s ease;
  font-weight: 700;
}
.skip-link:focus { transform: none; }

/* Page loading and progress */
.page-loader {
  position: fixed; inset: 0; z-index: 10000; background: var(--ink); color: #fff;
  display: grid; place-items: center; transition: opacity .7s var(--ease-out), visibility .7s;
}
.page-loader.is-complete { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader__mark { display: flex; align-items: center; gap: 16px; overflow: hidden; }
.page-loader__mark img { width: 64px; transform: translateY(110%); animation: loaderRise .65s var(--ease-out) forwards .08s; }
.page-loader__mark span {
  font-family: var(--display); font-size: clamp(2rem, 5vw, 4rem); font-weight: 700;
  letter-spacing: -.055em; transform: translateY(110%); animation: loaderRise .65s var(--ease-out) forwards .18s;
}
.page-loader__line {
  position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: var(--yellow);
  transform-origin: left; animation: loaderLine 1s var(--ease-out) forwards;
}
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 10001; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 100%; background: var(--yellow); transform: scaleX(0); transform-origin: left; will-change: transform; }
@keyframes loaderRise { to { transform: none; } }
@keyframes loaderLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Type */
h1, h2, h3 {
  margin: 0; font-family: var(--display); line-height: .96; letter-spacing: -.055em;
  text-wrap: balance; overflow-wrap: normal; word-break: normal;
}
h1 { font-size: clamp(4rem, 8.2vw, 9.25rem); font-weight: 700; max-width: 10.5ch; }
h2 { font-size: clamp(2.8rem, 5.25vw, 6.6rem); font-weight: 650; max-width: 16ch; }
h3 { font-size: clamp(1.45rem, 2.15vw, 2.6rem); font-weight: 650; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px; color: inherit;
  font-size: .7rem; line-height: 1.2; text-transform: uppercase; letter-spacing: .18em; font-weight: 700;
}
.eyebrow::before { content: ""; width: 32px; height: 3px; background: var(--yellow); flex: 0 0 auto; }
.motion-word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.motion-word > span { display: inline-block; transform: translateY(112%); opacity: .01; will-change: transform, opacity; }
.is-visible .motion-word > span,
.hero.is-ready .motion-word > span {
  transform: translateY(0); opacity: 1;
  transition: transform .85s var(--ease-out), opacity .45s ease;
  transition-delay: calc(var(--word-index, 0) * 34ms + var(--motion-delay, 0ms));
}

/* Buttons and links */
.button {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 58px; padding: 14px 26px; line-height: 1.22; text-align: center; border: 1px solid var(--ink);
  border-radius: 0; background: var(--ink); color: #fff; font-weight: 700;
  transition: color .35s ease, border-color .35s ease, transform .35s var(--ease-out);
}
.button::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--yellow);
  transform: translateY(102%); transition: transform .45s var(--ease-out);
}
.button:hover, .button:focus-visible { color: var(--ink); border-color: var(--yellow); transform: translateY(-2px); }
.button:hover::before, .button:focus-visible::before { transform: none; }
.button--small { min-height: 46px; padding: 10px 18px; font-size: .82rem; }
.button--text { background: transparent; color: inherit; border-color: transparent; padding-inline: 6px; }
.button--text::before { display: none; }
.button--text:hover { color: inherit; border-color: transparent; transform: translateX(4px); }
.button--outline { background: transparent; color: var(--ink); border-color: var(--ink); margin-top: 2rem; }
.button--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .35s var(--ease-out); }
.button:hover svg { transform: translateX(4px); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

/* Header */
.utility { background: #000; color: #c5c5c5; font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; }
.utility__inner { min-height: 34px; display: flex; align-items: center; gap: 28px; }
.utility__signals { display: flex; gap: 28px; margin-left: auto; }
.utility__inner > a { color: #fff; }
.site-header {
  position: sticky; top: 0; z-index: 2000; background: rgba(244,243,239,.97);
  border-bottom: 1px solid var(--line); backdrop-filter: blur(18px);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 18px 50px rgba(0,0,0,.08); }
.nav { height: 84px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 314px; }
.brand img { width: 44px; flex: 0 0 auto; }
.brand span { display: flex; flex-direction: column; min-width: 0; }
.brand strong { font-family: var(--display); font-size: 1.2rem; line-height: 1; letter-spacing: -.04em; }
.brand small { font-size: .62rem; color: var(--grey); margin-top: 5px; white-space: nowrap; }
.nav__desktop { margin-left: auto; display: flex; align-items: center; gap: 30px; font-size: .83rem; font-weight: 700; }
.nav__desktop > a, .nav-menu > button {
  position: relative; display: inline-flex; align-items: center; min-height: 84px;
  padding: 0; border: 0; background: transparent; cursor: pointer;
}
.nav__desktop > a::after, .nav-menu > button::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 17px; height: 3px;
  background: var(--yellow); transition: right .35s var(--ease-out);
}
.nav__desktop > a:hover::after, .nav__desktop > a.is-active::after, .nav__desktop > a[aria-current="page"]::after,
.nav-menu > button:hover::after, .nav-menu.is-open > button::after { right: 0; }
.nav-menu { position: static; }
.nav-menu > button { gap: 8px; font-weight: 700; }
.nav-menu > button span { font-size: 1.05rem; transition: transform .35s var(--ease-out); }
.nav-menu.is-open > button span { transform: rotate(45deg); }
.nav-menu__panel {
  position: fixed; left: 0; right: 0; top: 118px; width: 100%;
  display: grid; grid-template-columns: minmax(300px,.7fr) minmax(0,1.5fr);
  background: #050505; color: #fff; border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 40px 90px rgba(0,0,0,.3);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-18px); clip-path: inset(0 0 100% 0);
  transition: opacity .3s ease, transform .5s var(--ease-out), clip-path .55s var(--ease-out), visibility .55s;
}
.nav-menu.is-open .nav-menu__panel { opacity: 1; visibility: visible; pointer-events: auto; transform: none; clip-path: inset(0); }
.nav-menu__intro { padding: 56px max(40px, calc((100vw - 1440px)/2 + 40px)); background: var(--yellow); color: var(--ink); }
.nav-menu__intro > span { font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; }
.nav-menu__intro strong { display: block; max-width: 11ch; margin: 20px 0; font: 700 clamp(2rem,3vw,3.4rem)/.96 var(--display); letter-spacing: -.05em; }
.nav-menu__intro p { max-width: 42ch; }
.nav-menu__intro a { font-weight: 800; }
.nav-menu__links { display: grid; grid-template-columns: 1fr 1fr; padding: 28px max(40px, calc((100vw - 1440px)/2 + 40px)) 28px 34px; }
.nav-menu__links a {
  display: grid; grid-template-columns: 34px minmax(0,1fr); column-gap: 14px;
  padding: 24px; border-bottom: 1px solid var(--line-dark); transition: background .3s ease, color .3s ease;
}
.nav-menu__links a:hover { background: #fff; color: var(--ink); }
.nav-menu__links b { grid-row: 1/3; color: var(--yellow); font-size: .68rem; }
.nav-menu__links strong, .nav-menu__links span { display: block; }
.nav-menu__links strong { font-size: .95rem; }
.nav-menu__links span { margin-top: 5px; color: #a7a7a7; font-size: .76rem; line-height: 1.45; }
.nav-menu__links a:hover span { color: var(--grey); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.menu-button { display: none; width: 48px; height: 48px; border: 1px solid var(--line); background: transparent; padding: 0 12px; cursor: pointer; }
.menu-button span { display: block; height: 2px; background: currentColor; margin: 6px 0; transition: transform .3s ease, opacity .3s ease; }
.menu-button.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-button.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 118px 0 0; z-index: 1900; overflow-y: auto; background: #050505; color: #fff;
  clip-path: inset(0 0 100% 0); opacity: 0; transition: clip-path .55s var(--ease-out), opacity .3s ease;
}
.mobile-menu:not([hidden]) { display: block; clip-path: inset(0); opacity: 1; }
.mobile-menu__inner { padding: 54px 0 90px; }
.mobile-menu__statement { display: grid; grid-template-columns: .5fr 1fr; gap: 34px; padding-bottom: 38px; border-bottom: 1px solid var(--line-dark); }
.mobile-menu__statement span { color: var(--yellow); font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; }
.mobile-menu__statement strong { font: 650 clamp(2rem,5vw,4rem)/1 var(--display); letter-spacing: -.05em; max-width: 14ch; }
.mobile-menu__priority { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--line-dark); }
.mobile-menu__priority a { min-height: 160px; padding: 26px 0; border-right: 1px solid var(--line-dark); display: flex; flex-direction: column; justify-content: space-between; }
.mobile-menu__priority a + a { padding-left: 26px; }
.mobile-menu__priority a:last-child { border-right: 0; }
.mobile-menu__priority span { color: #979797; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; }
.mobile-menu__priority strong { font: 650 clamp(1.5rem,3vw,2.4rem)/1 var(--display); max-width: 10ch; }
.mobile-menu details { border-bottom: 1px solid var(--line-dark); }
.mobile-menu summary { padding: 24px 0; cursor: pointer; font-weight: 700; list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu details > a { display: grid; grid-template-columns: minmax(0,1fr); gap: 3px; padding: 16px 0 16px 24px; border-top: 1px solid rgba(255,255,255,.08); }
.mobile-menu details > a strong { font-size: .95rem; }
.mobile-menu details > a span { color: #949494; font-size: .76rem; }
.mobile-menu__cta { display: flex; align-items: center; gap: 24px; padding-top: 34px; }
.mobile-menu__cta .button { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

/* Hero */
.hero { position: relative; overflow: clip; background: #050505; color: #fff; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(255,212,0,.18), transparent 26%),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 82px 82px, 82px 82px;
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 1; min-height: min(860px, calc(100svh - 118px));
  display: grid; grid-template-columns: minmax(0,1.08fr) minmax(420px,.92fr); gap: clamp(54px,7vw,110px);
  align-items: center; padding: clamp(90px,10vw,150px) 0;
}
.hero__content { min-width: 0; position: relative; z-index: 2; }
.hero__content .eyebrow { color: #d2d2d2; margin-bottom: 28px; }
.hero h1 { color: #fff; }
.hero h1 > span:not(.motion-word) { color: var(--yellow); }
.hero__lead { max-width: 56ch; margin: 32px 0 0; color: #d2d2d2; font-size: clamp(1.08rem,1.4vw,1.35rem); line-height: 1.55; }
.hero__reason { max-width: 58ch; margin: 18px 0 0; color: #929292; }
.hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
.hero .button { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.hero .button::before { background: #fff; }
.hero .button--text { background: transparent; color: #fff; border-color: transparent; }
.hero__note { margin-top: 26px; color: #999; font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.hero__media {
  position: relative; min-width: 0; aspect-ratio: 4/3; align-self: center;
  clip-path: inset(100% 0 0 0); transform: translateY(34px); opacity: 0;
  transition: clip-path 1.1s var(--ease-out), transform 1.1s var(--ease-out), opacity .6s ease;
  transition-delay: .35s;
}
.hero.is-ready .hero__media { clip-path: inset(0); transform: none; opacity: 1; }
.hero__media::before { content: ""; position: absolute; inset: 5% -5% -6% 8%; background: var(--yellow); z-index: -1; }
.hero__media::after {
  content: ""; position: absolute; left: -20%; right: -20%; top: -2px; height: 2px; background: rgba(255,255,255,.85);
  box-shadow: 0 0 20px rgba(255,255,255,.45); transform: translateY(calc(var(--scan-y, 0) * 1px)); opacity: .55;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; background: #111820; transform: translateY(var(--parallax-y,0)); will-change: transform; }
.hero__index {
  position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-dark);
}
.hero__index span { padding: 20px 0; color: #979797; border-right: 1px solid var(--line-dark); font-size: .67rem; text-transform: uppercase; letter-spacing: .14em; }
.hero__index span + span { padding-left: 24px; }
.hero__index span:last-child { border-right: 0; }
body:not(.page-home) .hero__grid { min-height: min(720px, calc(100svh - 118px)); padding-block: clamp(80px,9vw,130px); }
body:not(.page-home) .hero h1 { font-size: clamp(3.7rem,6.5vw,7.5rem); max-width: 12ch; }
body:not(.page-home) .hero__media { aspect-ratio: 1/1; max-height: 560px; }

/* Proof and sticky subnav */
.proof { background: var(--yellow); color: var(--ink); }
.proof__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.proof__grid > div { min-height: 150px; padding: 28px 28px 26px 0; border-right: 1px solid rgba(0,0,0,.24); display: flex; flex-direction: column; justify-content: space-between; }
.proof__grid > div + div { padding-left: 28px; }
.proof__grid > div:last-child { border-right: 0; }
.proof__grid strong { font: 650 clamp(1.25rem,1.9vw,2rem)/1.05 var(--display); max-width: 13ch; }
.proof__grid span { margin-top: 20px; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.page-nav { position: sticky; top: 118px; z-index: 900; background: rgba(244,243,239,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.page-nav .shell { display: flex; gap: 30px; overflow-x: auto; scrollbar-width: none; }
.page-nav .shell::-webkit-scrollbar { display: none; }
.page-nav a { position: relative; flex: 0 0 auto; padding: 18px 0; color: var(--grey); font-size: .76rem; font-weight: 700; white-space: nowrap; }
.page-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -1px; height: 3px; background: var(--yellow); transition: right .3s ease; }
.page-nav a:hover::after { right: 0; }

/* Section system */
.section, .statement, .case, .closing { position: relative; overflow: clip; }
.section { padding: var(--section-space) 0; background: var(--paper); }
.section--ink { background: #050505; color: #fff; }
.section--paper { background: var(--paper-2); }
.section::after, .statement::after, .case::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 1px; background: currentColor; opacity: .12;
  transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease-out);
}
.section.is-visible::after, .statement.is-visible::after, .case.is-visible::after { transform: scaleX(1); }
.section-head { display: grid; grid-template-columns: minmax(180px,.34fr) minmax(0,1fr); gap: clamp(36px,6vw,90px); margin-bottom: clamp(46px,6vw,86px); align-items: start; }
.section-head .eyebrow { grid-column: 1; margin-top: 10px; }
.section-head h2, .section-head p { grid-column: 2; }
.section-head h2 { max-width: 15ch; }
.section-head p { max-width: 62ch; margin: 24px 0 0; color: var(--grey); font-size: clamp(1rem,1.25vw,1.2rem); }
.section--ink .section-head p { color: #a9a9a9; }
.section-head--left { grid-template-columns: minmax(180px,.34fr) minmax(0,1fr); }
.statement { padding: var(--section-space) 0; background: #fff; }
.statement__grid { display: grid; grid-template-columns: minmax(170px,.28fr) minmax(0,1fr); gap: clamp(38px,7vw,110px); }
.statement__number { font: 700 clamp(1rem,1.5vw,1.3rem)/1 var(--display); text-transform: uppercase; letter-spacing: -.02em; }
.statement h2 { max-width: 13ch; margin: 22px 0 30px; }
.statement p { max-width: 64ch; color: var(--grey); font-size: clamp(1.05rem,1.4vw,1.3rem); }
.split { display: grid; grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr); gap: clamp(60px,8vw,130px); align-items: start; }
.split > div:first-child .section-head { position: sticky; top: 180px; grid-template-columns: 1fr; gap: 0; margin: 0; }
.split > div:first-child .section-head > * { grid-column: 1; }

/* Capability list */
.capability-list { border-top: 1px solid var(--line); }
.capability {
  position: relative; isolation: isolate; display: grid;
  grid-template-columns: 70px minmax(0,1.2fr) minmax(180px,.55fr) 44px;
  gap: 30px; align-items: center; min-height: 176px; padding: 28px 0;
  border-bottom: 1px solid var(--line); overflow: hidden;
}
.capability::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--yellow); transform: translateX(-102%); transition: transform .55s var(--ease-out); }
.capability:hover::before, .capability:focus-visible::before { transform: none; }
.capability > span { font-size: .7rem; letter-spacing: .14em; }
.capability > div { min-width: 0; }
.capability h3 { transition: transform .45s var(--ease-out); }
.capability p { max-width: 60ch; margin: 12px 0 0; color: var(--grey); }
.capability b { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.capability svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .45s var(--ease-out); }
.capability:hover h3 { transform: translateX(12px); }
.capability:hover svg { transform: translateX(8px); }

/* Audience pathways */
.pathways { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line-dark); }
.pathways a {
  position: relative; isolation: isolate; min-height: 460px; padding: 34px; overflow: hidden;
  display: flex; flex-direction: column; border-right: 1px solid var(--line-dark);
}
.pathways a:last-child { border-right: 0; }
.pathways a::before {
  content: ""; position: absolute; inset: 100% 0 0; z-index: -1; background: var(--yellow);
  transition: inset .6s var(--ease-out);
}
.pathways a:hover::before, .pathways a:focus-visible::before { inset: 0; }
.pathways a > span { color: #999; font-size: .68rem; text-transform: uppercase; letter-spacing: .13em; transition: color .3s; }
.pathways h3 { margin: 44px 0 20px; max-width: 12ch; }
.pathways p { color: #aaa; max-width: 42ch; transition: color .3s; }
.pathways b { margin-top: auto; font-size: .78rem; }
.pathways a:hover, .pathways a:focus-visible { color: var(--ink); }
.pathways a:hover > span, .pathways a:hover p, .pathways a:focus-visible > span, .pathways a:focus-visible p { color: var(--ink); }

/* Spotlight */
.spotlight { background: #fff; }
.spotlight__grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: clamp(60px,8vw,130px); align-items: center; }
.spotlight__visual { position: relative; min-width: 0; overflow: hidden; clip-path: inset(0 100% 0 0); transition: clip-path 1s var(--ease-out); }
.spotlight.is-visible .spotlight__visual { clip-path: inset(0); }
.spotlight__visual::after { content: ""; position: absolute; inset: auto 0 0 auto; width: 34%; height: 34%; background: var(--yellow); mix-blend-mode: multiply; }
.spotlight__visual img { width: 100%; transform: translateY(var(--parallax-y,0)) scale(1.04); will-change: transform; }
.spotlight__copy h2 { margin: 24px 0 30px; max-width: 12ch; }
.spotlight__copy > p { color: var(--grey); max-width: 58ch; font-size: 1.08rem; }
.spotlight__copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; margin: 32px 0 0; list-style: none; border-top: 1px solid var(--line); }
.spotlight__copy li { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .8rem; font-weight: 700; }
.spotlight__copy li:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--line); }

/* Industry rows */
.industry-strip { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.industry-strip a { position: relative; display: grid; grid-template-columns: 48px minmax(0,1fr) 24px; gap: 18px; align-items: center; min-height: 104px; padding: 20px 24px 20px 0; border-bottom: 1px solid var(--line); overflow: hidden; }
.industry-strip a:nth-child(odd) { border-right: 1px solid var(--line); }
.industry-strip a:nth-child(even) { padding-left: 24px; }
.industry-strip a::after { content: "↗"; justify-self: end; transition: transform .35s var(--ease-out); }
.industry-strip a::before { content: ""; position: absolute; inset: 0; background: var(--yellow); transform: scaleX(0); transform-origin: left; z-index: -1; transition: transform .45s var(--ease-out); }
.industry-strip a:hover::before { transform: scaleX(1); }
.industry-strip a:hover::after { transform: translate(3px,-3px); }
.industry-strip span { font-size: .68rem; }
.industry-strip strong { font: 650 clamp(1rem,1.4vw,1.3rem)/1.1 var(--display); }

/* Case */
.case { padding: var(--section-space) 0; background: var(--yellow); color: var(--ink); }
.case::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.06) 1px, transparent 1px); background-size: 82px 100%; pointer-events: none; }
.case__grid { position: relative; display: grid; grid-template-columns: minmax(150px,.36fr) minmax(0,1fr) minmax(210px,.4fr); gap: clamp(40px,6vw,90px); align-items: start; }
.case__label span, .case__label strong { display: block; }
.case__label span { font-size: .68rem; text-transform: uppercase; letter-spacing: .13em; }
.case__label strong { margin-top: 18px; font: 650 clamp(1.5rem,2.5vw,3rem)/1 var(--display); }
.case h2 { max-width: 12ch; }
.case h2 + p { max-width: 58ch; margin: 28px 0 26px; font-size: 1.05rem; }
.case a { font-weight: 800; }
.case__signal { display: flex; flex-direction: column; border-top: 1px solid rgba(0,0,0,.25); }
.case__signal span { padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.25); font-size: .75rem; font-weight: 700; }

/* Method */
.method { position: relative; display: grid; grid-template-columns: repeat(5,1fr); padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.method::before { content: ""; position: absolute; top: -2px; left: 0; width: 100%; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform 1.4s var(--ease-out); }
.method.is-visible::before { transform: scaleX(1); }
.method li { min-height: 280px; padding: 28px 24px 28px 0; border-right: 1px solid var(--line); }
.method li + li { padding-left: 24px; }
.method li:last-child { border-right: 0; }
.method li > span { font-size: .68rem; color: var(--grey); }
.method h3 { margin: 56px 0 18px; }
.method p { color: var(--grey); font-size: .88rem; }
.method--three { grid-template-columns: repeat(3,1fr); }

/* Generic grids */
.service-grid, .principle-grid, .package-grid, .topic-grid, .sector-grid, .model-grid, .evidence-grid, .route-grid, .credential-grid, .brief-grid, .insights-grid {
  display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--line);
}
.service-grid--six, .insights-grid--six { grid-template-columns: repeat(3,minmax(0,1fr)); }
.service-grid article, .principle-grid article, .package-grid article, .topic-grid article, .sector-grid article, .model-grid article, .evidence-grid article, .credential-grid article, .insights-grid article, .route-grid a, .brief-grid > div {
  position: relative; isolation: isolate; min-width: 0; min-height: 270px; padding: 30px 30px 32px 0; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); overflow: hidden;
}
.service-grid article:nth-child(even), .principle-grid article:nth-child(even), .topic-grid article:nth-child(even), .sector-grid article:nth-child(even), .evidence-grid article:nth-child(even), .credential-grid article:nth-child(even), .route-grid a:nth-child(even), .brief-grid > div:nth-child(even) { padding-left: 30px; }
.service-grid article:nth-child(2n), .principle-grid article:nth-child(2n), .topic-grid article:nth-child(2n), .sector-grid article:nth-child(2n), .evidence-grid article:nth-child(2n), .credential-grid article:nth-child(2n), .route-grid a:nth-child(2n), .brief-grid > div:nth-child(2n) { border-right: 0; }
.service-grid article::before, .principle-grid article::before, .package-grid article::before, .topic-grid article::before, .sector-grid article::before, .model-grid article::before, .evidence-grid article::before, .credential-grid article::before, .insights-grid article::before, .route-grid a::before {
  content: ""; position: absolute; inset: 100% 0 0; z-index: -1; background: var(--yellow); transition: inset .55s var(--ease-out);
}
.service-grid article:hover::before, .principle-grid article:hover::before, .package-grid article:hover::before, .topic-grid article:hover::before, .sector-grid article:hover::before, .model-grid article:hover::before, .evidence-grid article:hover::before, .credential-grid article:hover::before, .insights-grid article:hover::before, .route-grid a:hover::before { inset: 0; }
.service-grid article > span, .principle-grid article > span, .package-grid article > span, .sector-grid article > span, .model-grid article > span, .evidence-grid article > span, .insights-grid article > span, .brief-grid span { display: block; color: var(--grey); font-size: .68rem; text-transform: uppercase; letter-spacing: .13em; }
.service-grid h3, .principle-grid h3, .package-grid h3, .topic-grid h3, .sector-grid h3, .model-grid h3, .evidence-grid h3, .insights-grid h3, .route-grid h3 { margin: 48px 0 18px; max-width: 14ch; }
.service-grid p, .principle-grid p, .topic-grid p, .model-grid p, .evidence-grid p, .insights-grid p { color: var(--grey); max-width: 46ch; }
.section--ink .service-grid, .section--ink .principle-grid, .section--ink .model-grid, .section--ink .evidence-grid, .section--ink .insights-grid { border-color: var(--line-dark); }
.section--ink .service-grid article, .section--ink .principle-grid article, .section--ink .model-grid article, .section--ink .evidence-grid article, .section--ink .insights-grid article { border-color: var(--line-dark); }
.section--ink .service-grid p, .section--ink .principle-grid p, .section--ink .model-grid p, .section--ink .evidence-grid p, .section--ink .insights-grid p { color: #aaa; }
.section--ink .service-grid article:hover, .section--ink .principle-grid article:hover, .section--ink .model-grid article:hover, .section--ink .evidence-grid article:hover, .section--ink .insights-grid article:hover { color: var(--ink); }
.section--ink .service-grid article:hover p, .section--ink .principle-grid article:hover p, .section--ink .model-grid article:hover p, .section--ink .evidence-grid article:hover p, .section--ink .insights-grid article:hover p { color: var(--ink); }
.package-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.package-grid article, .model-grid article { padding-left: 30px; }
.package-grid article:nth-child(3), .model-grid article:nth-child(3) { border-right: 0; }
.package-grid ul { padding-left: 18px; color: var(--grey); }
.package-grid li { margin: 9px 0; }
.credential-grid { grid-template-columns: repeat(4,1fr); }
.credential-grid article { min-height: 190px; padding-left: 24px; }
.credential-grid article:nth-child(2n) { border-right: 1px solid var(--line); }
.credential-grid article:last-child { border-right: 0; }
.credential-grid strong { display: block; font: 650 clamp(1.2rem,1.6vw,1.7rem)/1.05 var(--display); }
.credential-grid span { display: block; margin-top: auto; padding-top: 42px; color: var(--grey); font-size: .75rem; }
.brief-grid > div { min-height: 160px; display: flex; flex-direction: column; justify-content: space-between; }
.brief-grid strong { max-width: 22ch; font: 650 clamp(1.1rem,1.6vw,1.5rem)/1.15 var(--display); }
.insights-grid { grid-template-columns: 1.2fr .8fr; }
.insights-grid article { min-height: 360px; }
.insights-grid article:first-child { grid-row: span 2; min-height: 720px; background: var(--yellow); color: var(--ink); }
.insights-grid article:first-child::before { background: #fff; }
.insights-grid article:first-child h3 { font-size: clamp(2.3rem,4vw,5rem); max-width: 11ch; }
.insights-grid article:first-child p { color: var(--ink); font-size: 1.05rem; }
.insights-grid--six { grid-template-columns: repeat(3,1fr); }
.insights-grid--six article:first-child { grid-row: auto; min-height: 320px; background: transparent; color: inherit; }
.insights-grid--six article:first-child h3 { font-size: clamp(1.45rem,2.15vw,2.6rem); }
.insights-grid--six article:first-child p { color: var(--grey); font-size: inherit; }

/* About identity */
.about-identity { background: #050505; color: #fff; }
.about-identity__intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px,8vw,130px); align-items: start; margin-bottom: 70px; }
.about-identity__intro .section-head { grid-template-columns: 1fr; gap: 0; margin: 0; }
.about-identity__intro .section-head > * { grid-column: 1; }
.about-identity__definition { font-size: clamp(1.05rem,1.35vw,1.3rem); color: #b6b6b6; max-width: 58ch; }
.about-identity__definition strong { color: #fff; }
.about-identity__grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line-dark); }
.about-identity__card { position: relative; min-height: 380px; padding: 30px 30px 34px 0; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); overflow: hidden; }
.about-identity__card:nth-child(even) { padding-left: 30px; border-right: 0; }
.about-identity__card::before { content: ""; position: absolute; inset: 100% 0 0; background: var(--identity-accent,var(--yellow)); z-index: 0; transition: inset .55s var(--ease-out); }
.about-identity__card > * { position: relative; z-index: 1; }
.about-identity__card:hover::before { inset: 0; }
.about-identity__card:hover { color: var(--ink); }
.about-identity__card--people { --identity-accent: var(--yellow); }
.about-identity__card--systems { --identity-accent: var(--teal); }
.about-identity__card--enterprise { --identity-accent: #ff9a62; }
.about-identity__card--innovation { --identity-accent: var(--blue); }
.about-identity__meta { display: flex; justify-content: space-between; color: #949494; font-size: .68rem; text-transform: uppercase; letter-spacing: .13em; }
.about-identity__card h3 { margin: 70px 0 20px; max-width: 12ch; }
.about-identity__card p { max-width: 48ch; color: #aaa; }
.about-identity__card:hover p, .about-identity__card:hover .about-identity__meta { color: var(--ink); }
.about-identity__card a { position: absolute; left: 0; right: 30px; bottom: 30px; font-size: .78rem; font-weight: 800; }
.about-identity__card:nth-child(even) a { left: 30px; }
.about-identity__close { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px,8vw,130px); padding-top: 54px; }
.about-identity__close span { color: var(--yellow); font-size: .68rem; text-transform: uppercase; letter-spacing: .13em; }
.about-identity__close p { max-width: 48ch; font: 650 clamp(1.5rem,2.3vw,2.8rem)/1.05 var(--display); letter-spacing: -.04em; }

/* Industry / outcomes / feature */
.industry-feature { display: grid; grid-template-columns: minmax(0,.7fr) minmax(0,1.3fr); gap: clamp(60px,8vw,130px); align-items: start; }
.feature-article { padding: 42px; background: var(--yellow); position: sticky; top: 180px; }
.feature-article h3 { margin: 28px 0; font-size: clamp(2rem,3.5vw,4.2rem); max-width: 12ch; }
.outcome-list { border-top: 1px solid var(--line); }
.outcome-list article { display: grid; grid-template-columns: minmax(180px,.38fr) minmax(0,1fr); gap: 30px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.outcome-list strong { font-family: var(--display); }
.outcome-list p { color: var(--grey); margin: 0; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: minmax(0,.78fr) minmax(0,1.22fr); gap: clamp(60px,8vw,130px); align-items: start; }
.contact-copy { position: sticky; top: 170px; }
.contact-copy h2 { margin: 24px 0 28px; max-width: 11ch; }
.contact-copy > p { color: #aaa; max-width: 52ch; }
.contact-details { margin: 38px 0; padding: 24px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.contact-details a, .contact-details p { display: block; margin: 6px 0; }
.contact-copy ol { padding-left: 20px; color: #aaa; }
.contact-form { background: #fff; color: var(--ink); padding: clamp(28px,4vw,52px); box-shadow: var(--shadow); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: block; margin-bottom: 20px; }
.contact-form label > span { display: block; margin-bottom: 8px; font-size: .78rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #9b9b9b; border-radius: 0; background: #f7f7f5; padding: 15px 14px; outline: none; transition: border-color .2s, box-shadow .2s, background .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--ink); background: #fff; box-shadow: inset 0 -3px 0 var(--yellow); }
.contact-form small { display: block; margin-top: 8px; color: var(--grey); }
.consent { display: flex !important; align-items: flex-start; gap: 10px; }
.consent input { width: auto; margin-top: 4px; }
.form-submit { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-submit > span { font-size: .72rem; color: var(--grey); }
.form-status { display: none; margin-top: 16px; padding: 14px; }
.form-status.is-success, .form-status.is-error { display: block; }
.form-status.is-success { background: #e7f8ef; }
.form-status.is-error { background: #fde8e5; }
.hp-field { position: absolute !important; left: -9999px !important; }
.turnstile-slot { margin-bottom: 16px; }
.briefing-box { border: 1px solid var(--line); padding: 38px; }
.briefing-box h3 { margin: 16px 0; }

/* Closing */
.closing { padding: clamp(90px,11vw,170px) 0; background: var(--yellow); color: var(--ink); }
.closing::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 84% 20%, rgba(255,255,255,.55), transparent 24%); }
.closing__grid { position: relative; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 60px; align-items: end; }
.closing h2 { margin: 24px 0 26px; max-width: 11ch; }
.closing p { max-width: 58ch; font-size: 1.05rem; }
.closing__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.closing .button { background: var(--ink); color: #fff; border-color: var(--ink); }
.closing .button::before { background: #fff; }
.closing .button--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }

/* Footer */
.footer { background: #050505; color: #fff; }
.footer__lead { padding: clamp(80px,10vw,150px) 0 70px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; border-bottom: 1px solid var(--line-dark); }
.footer__kicker { grid-column: 1/-1; color: var(--yellow); font-size: .68rem; text-transform: uppercase; letter-spacing: .15em; }
.footer__lead h2 { font-size: clamp(3.5rem,7vw,9rem); max-width: 10ch; }
.footer__lead .button { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.footer__top { display: grid; grid-template-columns: 1.35fr repeat(3,.65fr); gap: clamp(30px,5vw,74px); padding: 70px 0; }
.brand--footer { min-width: 0; color: #fff; }
.brand--footer small { color: #969696; }
.footer__brand p { margin-top: 24px; color: #999; max-width: 42ch; }
.footer__top > div:not(.footer__brand) { display: flex; flex-direction: column; gap: 10px; }
.footer__label { margin-bottom: 12px; color: var(--yellow); font-size: .68rem; text-transform: uppercase; letter-spacing: .13em; }
.footer__top a, .footer__top p { font-size: .84rem; }
.footer__top a { transition: color .2s, transform .2s; }
.footer__top a:hover { color: var(--yellow); transform: translateX(3px); }
.footer__top > div:not(.footer__brand) > p { color: #999; }
.footer__bottom { display: flex; justify-content: space-between; gap: 24px; padding: 22px 0; border-top: 1px solid var(--line-dark); color: #777; font-size: .67rem; text-transform: uppercase; letter-spacing: .08em; }
.mobile-actions { display: none; }

/* Motion */
[data-motion-section] { --section-y: 48px; }
[data-motion-section] > .shell, [data-motion-section] > .hero__grid, [data-motion-section] > .proof__grid { opacity: 0; transform: translateY(var(--section-y)); transition: opacity .85s ease, transform 1s var(--ease-out); }
[data-motion-section].is-visible > .shell, [data-motion-section].is-visible > .hero__grid, [data-motion-section].is-visible > .proof__grid, .hero.is-ready > .hero__grid { opacity: 1; transform: none; }
[data-reveal], .reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .8s var(--ease-out); transition-delay: calc(var(--i,0) * 80ms); }
[data-reveal].is-visible, .reveal.is-visible { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(26px); transition: opacity .55s ease, transform .75s var(--ease-out); transition-delay: calc(var(--item-index,0) * 80ms); }
[data-stagger].is-visible > * { opacity: 1; transform: none; }

/* 404 */
.page-404 .hero__grid { min-height: calc(100svh - 118px); }

/* Responsive */
@media (max-width: 1200px) {
  :root { --shell: min(100% - 48px, 1160px); }
  .nav__desktop, .nav__actions > .button { display: none; }
  .menu-button { display: block; }
  .brand { min-width: 0; }
  .hero__grid { grid-template-columns: minmax(0,1fr) minmax(360px,.78fr); gap: 50px; }
  .capability { grid-template-columns: 54px minmax(0,1fr) minmax(160px,.45fr) 34px; gap: 20px; }
  .footer__top { grid-template-columns: 1.2fr repeat(3,.8fr); }
}

@media (max-width: 900px) {
  :root { --shell: calc(100% - 36px); --section-space: 96px; }
  html { scroll-padding-top: 76px; }
  body { padding-bottom: 60px; }
  .utility { display: none; }
  .nav { height: 76px; }
  .mobile-menu { inset: 76px 0 0; }
  .brand small { display: none; }
  .hero__grid, body:not(.page-home) .hero__grid { grid-template-columns: 1fr; min-height: auto; padding: 86px 0 70px; }
  .hero__content { max-width: 760px; }
  .hero__media { width: min(760px,100%); margin-top: 18px; }
  .hero__index { grid-template-columns: 1fr 1fr; }
  .hero__index span:nth-child(2) { border-right: 0; }
  .hero__index span:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .proof__grid { grid-template-columns: 1fr 1fr; }
  .proof__grid > div:nth-child(2) { border-right: 0; }
  .proof__grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,.24); }
  .page-nav { top: 76px; }
  .section-head, .section-head--left, .statement__grid, .split, .spotlight__grid, .case__grid, .closing__grid, .industry-feature, .contact-layout, .about-identity__intro, .about-identity__close { grid-template-columns: 1fr; gap: 34px; }
  .section-head .eyebrow, .section-head h2, .section-head p { grid-column: 1; }
  .section-head p { margin-top: 0; }
  .split > div:first-child .section-head, .feature-article, .contact-copy { position: static; }
  .capability { grid-template-columns: 50px minmax(0,1fr) 34px; min-height: 160px; }
  .capability b { grid-column: 2; }
  .capability svg { grid-column: 3; grid-row: 1/3; }
  .pathways { grid-template-columns: 1fr; }
  .pathways a { min-height: 350px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .pathways a:last-child { border-bottom: 0; }
  .method, .method--three { grid-template-columns: 1fr; }
  .method li, .method li + li { min-height: 0; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .method h3 { margin: 28px 0 12px; }
  .service-grid--six, .insights-grid--six { grid-template-columns: 1fr 1fr; }
  .package-grid, .model-grid { grid-template-columns: 1fr; }
  .package-grid article, .model-grid article { border-right: 0; padding-left: 0; }
  .credential-grid { grid-template-columns: 1fr 1fr; }
  .credential-grid article:nth-child(2) { border-right: 0; }
  .insights-grid { grid-template-columns: 1fr; }
  .insights-grid article:first-child { grid-row: auto; min-height: 480px; }
  .about-identity__grid { grid-template-columns: 1fr; }
  .about-identity__card, .about-identity__card:nth-child(even) { padding: 28px 0 34px; border-right: 0; }
  .about-identity__card a, .about-identity__card:nth-child(even) a { left: 0; }
  .footer__lead { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1/-1; }
  .mobile-actions { position: fixed; left: 0; right: 0; bottom: 0; z-index: 2200; height: 60px; display: grid; grid-template-columns: .38fr .62fr; background: #050505; color: #fff; border-top: 1px solid var(--line-dark); transform: translateY(105%); pointer-events: none; transition: transform .38s var(--ease-out); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; }
  .mobile-actions a:last-child { background: var(--yellow); color: var(--ink); }
  body.show-mobile-actions .mobile-actions { transform: none; pointer-events: auto; }
  .menu-open .mobile-actions { transform: translateY(105%); pointer-events: none; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 26px); --section-space: 74px; }
  h1 { font-size: clamp(3.4rem,16vw,5.3rem); }
  h2 { font-size: clamp(2.45rem,11vw,4rem); }
  .nav { height: 70px; }
  .brand img { width: 38px; }
  .brand strong { font-size: 1.05rem; }
  .mobile-menu { inset: 70px 0 0; }
  .mobile-menu__inner { padding-top: 34px; }
  .mobile-menu__statement { grid-template-columns: 1fr; gap: 14px; }
  .mobile-menu__priority { grid-template-columns: 1fr; }
  .mobile-menu__priority a, .mobile-menu__priority a + a { min-height: 110px; padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .mobile-menu__cta { align-items: stretch; flex-direction: column; }
  .mobile-menu__cta .button { width: 100%; }
  .hero__grid, body:not(.page-home) .hero__grid { padding: 68px 0 54px; gap: 44px; }
  .hero__actions { align-items: stretch; }
  .hero__actions .button { width: 100%; }
  .hero__index { grid-template-columns: 1fr; }
  .hero__index span, .hero__index span + span { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .proof__grid { grid-template-columns: 1fr; }
  .proof__grid > div, .proof__grid > div + div { min-height: 120px; padding: 22px 0; border-right: 0; border-bottom: 1px solid rgba(0,0,0,.24); }
  .statement__number { margin-bottom: 8px; }
  .capability { grid-template-columns: 34px minmax(0,1fr); gap: 14px; padding: 26px 0; }
  .capability b { grid-column: 2; }
  .capability svg { display: none; }
  .pathways a { min-height: 320px; padding: 26px; }
  .spotlight__copy ul { grid-template-columns: 1fr; }
  .spotlight__copy li:nth-child(even) { padding-left: 0; border-left: 0; }
  .industry-strip, .service-grid, .principle-grid, .topic-grid, .sector-grid, .evidence-grid, .route-grid, .brief-grid, .credential-grid, .insights-grid--six { grid-template-columns: 1fr; }
  .industry-strip a, .industry-strip a:nth-child(even) { padding: 18px 0; border-right: 0; }
  .service-grid article, .principle-grid article, .topic-grid article, .sector-grid article, .evidence-grid article, .route-grid a, .brief-grid > div, .credential-grid article,
  .service-grid article:nth-child(even), .principle-grid article:nth-child(even), .topic-grid article:nth-child(even), .sector-grid article:nth-child(even), .evidence-grid article:nth-child(even), .route-grid a:nth-child(even), .brief-grid > div:nth-child(even) { padding: 26px 0; border-right: 0; min-height: 230px; }
  .credential-grid article { min-height: 150px; }
  .credential-grid article:nth-child(2n) { border-right: 0; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 18px; }
  .closing__actions { justify-content: flex-start; }
  .closing__actions .button { width: 100%; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .page-loader { display: none; }
  [data-motion-section] > .shell, [data-motion-section] > .hero__grid, [data-motion-section] > .proof__grid,
  [data-reveal], .reveal, [data-stagger] > * { opacity: 1; transform: none; }
  .motion-word > span { transform: none; opacity: 1; }
  .hero__media { clip-path: inset(0); transform: none; opacity: 1; }
}
@media print {
  .page-loader,.scroll-progress,.mobile-actions{display:none!important}
  [data-motion-section]>.shell,[data-motion-section]>.hero__grid,[data-motion-section]>.proof__grid,[data-reveal],.reveal,[data-stagger]>*{opacity:1!important;transform:none!important}
  .motion-word>span{transform:none!important;opacity:1!important}
  .hero__media{clip-path:none!important;opacity:1!important;transform:none!important}
  .site-header,.page-nav{position:relative!important;top:auto!important}
}
/* Conversion-first hero tuning: keep the primary action within a typical desktop viewport. */
.hero--home h1 { font-size: clamp(4rem, 7.5vw, 8.4rem); line-height: .89; }
.hero__lead { margin-top: 24px; }
.hero__reason { margin-top: 10px; }
.hero__actions { margin-top: 28px; }
@media (min-width: 901px) {
  .hero--home .hero__grid { padding-top: 76px; padding-bottom: 76px; }
}

/* ======================================================================
   BOSIGO V7 — FUTURE, MADE OPERATIONAL
   A future-facing enterprise system: cinematic, precise and flow-safe.
   ====================================================================== */
:root {
  --ink: #05070b;
  --ink-2: #0b1017;
  --ink-3: #111923;
  --paper: #f3f5f1;
  --paper-2: #e9eee9;
  --white: #ffffff;
  --yellow: #ffd400;
  --yellow-soft: #ffe76b;
  --teal: #72f0cf;
  --blue: #8da6ff;
  --violet: #a98aff;
  --grey: #626b73;
  --grey-2: #89939c;
  --line: rgba(5, 7, 11, .14);
  --line-dark: rgba(255, 255, 255, .14);
  --display: "Sora", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --shell: min(1480px, calc(100% - 88px));
  --section-space: clamp(104px, 11vw, 184px);
  --radius: 24px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-smooth: cubic-bezier(.76, 0, .24, 1);
  --shadow: 0 34px 100px rgba(4, 8, 14, .2);
}

body.future-site {
  background:
    radial-gradient(circle at 8% 0%, rgba(114,240,207,.07), transparent 23rem),
    var(--paper);
}
body.future-site::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(5,7,11,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,7,11,.026) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

h1, h2, h3 { letter-spacing: -.052em; text-wrap: balance; }
h1 { font-size: clamp(4.2rem, 8.45vw, 9.6rem); line-height: .9; max-width: 11.5ch; }
h2 { font-size: clamp(2.9rem, 5.4vw, 6.75rem); line-height: .96; max-width: 15ch; }
h3 { line-height: 1.02; }
.eyebrow { letter-spacing: .21em; font-size: .66rem; }
.eyebrow::before { width: 44px; height: 1px; box-shadow: 16px 0 0 rgba(255,212,0,.35); }

/* Loader becomes a forward-moving signal rather than a splash screen. */
.page-loader { background: #040609; }
.page-loader::before,
.page-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-loader::before {
  background: linear-gradient(90deg, transparent 0 46%, rgba(255,212,0,.08) 50%, transparent 54% 100%);
  transform: translateX(-100%);
  animation: futureLoaderSweep 1.2s var(--ease-out) forwards;
}
.page-loader::after {
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000, transparent 70%);
}
@keyframes futureLoaderSweep { to { transform: translateX(100%); } }
.page-loader__line { height: 2px; box-shadow: 0 0 26px rgba(255,212,0,.8); }
.scroll-progress { height: 2px; }
.scroll-progress span { box-shadow: 0 0 20px rgba(255,212,0,.8); }

/* Header: future-facing but institutional. */
.utility {
  background: #030507;
  color: #9ba5ad;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.utility__inner { min-height: 32px; }
.utility__signals span:first-child::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 14px var(--teal);
  animation: futurePulse 2.5s ease-in-out infinite;
}
@keyframes futurePulse { 50% { opacity: .35; transform: scale(.78); } }
.site-header {
  background: rgba(5,7,11,.86);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(24px) saturate(130%);
}
.site-header.is-scrolled { background: rgba(5,7,11,.96); box-shadow: 0 14px 52px rgba(0,0,0,.25); }
.nav { height: 88px; }
.brand { min-width: 330px; }
.brand strong { color: #fff; }
.brand small { color: #8f9aa3; }
.nav__desktop { gap: 34px; }
.nav__desktop > a,
.nav-menu > button { color: #e8ecef; letter-spacing: -.01em; }
.nav__desktop > a::after,
.nav-menu > button::after { height: 1px; background: var(--yellow); box-shadow: 0 0 12px rgba(255,212,0,.8); }
.nav__actions .button { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.nav__actions .button::before { background: #fff; }
.menu-button { border-color: rgba(255,255,255,.2); }
.nav-menu__panel { background: #070a0f; }
.nav-menu__intro {
  background:
    radial-gradient(circle at 85% 10%, rgba(114,240,207,.22), transparent 19rem),
    var(--yellow);
}
.nav-menu__links { background: #080b10; }
.nav-menu__links a { border-color: rgba(255,255,255,.1); }
.nav-menu__links a:hover { background: #111823; color: #fff; }
.nav-menu__links a:hover span { color: #aeb8c1; }
.mobile-menu { background: #05070b; color: #fff; }

/* Buttons act like forward controls. */
.button {
  min-height: 60px;
  padding-inline: 28px;
  border-radius: 999px;
  letter-spacing: -.01em;
}
.button::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.button:hover::after,
.button:focus-visible::after { opacity: 1; }
.button--text { border-radius: 0; }

/* HERO — a horizon, not a dashboard. */
.hero {
  min-height: min(930px, calc(100svh - 120px));
  background:
    radial-gradient(circle at 72% 28%, rgba(255,212,0,.13), transparent 25rem),
    radial-gradient(circle at 92% 84%, rgba(114,240,207,.1), transparent 23rem),
    #05070b;
}
.hero::before {
  opacity: .6;
  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: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 82%, transparent);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% 48%;
  height: 70%;
  border: 1px solid rgba(255,212,0,.22);
  border-radius: 50%;
  transform: perspective(700px) rotateX(68deg);
  box-shadow: 0 0 80px rgba(255,212,0,.09), inset 0 0 70px rgba(255,212,0,.04);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  min-height: min(820px, calc(100svh - 120px));
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  gap: clamp(44px, 7vw, 118px);
  align-items: center;
  padding-block: clamp(92px, 10vw, 148px);
}
.hero__content { max-width: 780px; }
.hero__content::before {
  content: "FUTURE / READY";
  position: absolute;
  top: -54px;
  left: 0;
  color: rgba(255,255,255,.22);
  font-size: .58rem;
  letter-spacing: .34em;
}
.hero h1 {
  position: relative;
  color: #fff;
  text-shadow: 0 0 1px rgba(255,255,255,.4);
}
.hero h1::after {
  content: "";
  display: block;
  width: min(72%, 470px);
  height: 2px;
  margin-top: 26px;
  background: linear-gradient(90deg, var(--yellow), rgba(255,212,0,0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease-out) .4s;
  box-shadow: 0 0 18px rgba(255,212,0,.7);
}
.hero.is-ready h1::after { transform: scaleX(1); }
.hero__lead { color: #dce2e6; max-width: 59ch; font-size: clamp(1.08rem,1.45vw,1.38rem); }
.hero__reason { color: #8f99a2; max-width: 58ch; }
.hero__media {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 36px;
  background: #070a0f;
  box-shadow: 0 40px 100px rgba(0,0,0,.44), 0 0 0 1px rgba(255,212,0,.04) inset;
  overflow: hidden;
  clip-path: inset(0 0 100% 0 round 36px);
  transform: translateY(60px) scale(.96);
}
.hero.is-ready .hero__media { clip-path: inset(0 round 36px); transform: none; }
.hero__media::before {
  inset: -15%;
  z-index: 1;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.08) 43%, transparent 57%);
  transform: translateX(-70%);
  animation: futureMediaSweep 6.5s ease-in-out infinite 1.4s;
  pointer-events: none;
}
@keyframes futureMediaSweep { 0%,26% { transform: translateX(-70%); } 68%,100% { transform: translateX(70%); } }
.hero__media::after {
  content: "LIVE FUTURE MODEL";
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 20px;
  width: auto;
  height: auto;
  padding: 9px 12px;
  border: 1px solid rgba(114,240,207,.38);
  border-radius: 999px;
  background: rgba(5,7,11,.72);
  color: #b8f6e6;
  font-size: .56rem;
  letter-spacing: .18em;
  transform: none;
}
.hero__media img { background: transparent; object-fit: cover; }
.hero__index { border-color: rgba(255,255,255,.12); }
.hero__index span { position: relative; color: #8f99a2; }
.hero__index span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 10px rgba(255,212,0,.75);
}
.future-signal {
  position: absolute;
  right: 0;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.48);
  font-size: .56rem;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}
.future-signal b { width: 1px; height: 38px; background: linear-gradient(var(--yellow), transparent); }
body:not(.page-home) .hero__grid { min-height: min(760px, calc(100svh - 120px)); padding-block: clamp(92px,10vw,148px); }
body:not(.page-home) .hero h1 { font-size: clamp(3.8rem,6.2vw,7.6rem); max-width: 12.6ch; }
body:not(.page-home) .hero__media { max-height: 590px; }

/* Proof becomes a moving signal ribbon. */
.proof {
  position: relative;
  overflow: hidden;
  background: #0a0e14;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,212,0,.1), transparent);
  transform: translateX(-100%);
  animation: proofSweep 7s linear infinite;
}
@keyframes proofSweep { to { transform: translateX(100%); } }
.proof__grid > div { min-height: 154px; border-color: rgba(255,255,255,.12); }
.proof__grid strong { color: #fff; }
.proof__grid span { color: #89949d; }
.proof__grid > div::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255,212,0,.65);
}

/* FUTURE MANIFESTO */
.future-manifesto {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink);
}
.future-manifesto::before {
  content: "2040";
  position: absolute;
  right: -1vw;
  top: -7vw;
  font: 700 min(34vw, 520px)/1 var(--display);
  letter-spacing: -.09em;
  color: rgba(0,0,0,.06);
  pointer-events: none;
}
.future-manifesto__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px,.34fr) minmax(0,1fr);
  gap: clamp(50px,8vw,128px);
  padding-block: clamp(100px,12vw,190px);
}
.future-manifesto__label { display: flex; flex-direction: column; justify-content: space-between; min-height: 250px; }
.future-manifesto__label span { font-size: .65rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.future-manifesto__label b { max-width: 23ch; font-size: .9rem; }
.future-manifesto__statement h2 { max-width: 14.2ch; }
.future-manifesto__statement p { max-width: 58ch; margin: 32px 0 0; font-size: clamp(1.05rem,1.35vw,1.28rem); }
.future-marquee { overflow: hidden; border-top: 1px solid rgba(0,0,0,.22); }
.future-marquee > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  animation: futureMarquee 24s linear infinite;
  font: 700 clamp(.82rem,1.3vw,1.1rem)/1 var(--display);
  letter-spacing: .08em;
}
.future-marquee > div::after { content: "FUTURE WORK ◆ DIGITAL OPERATIONS ◆ ENTERPRISE GROWTH ◆ PUBLIC VALUE ◆ VISIBLE EVIDENCE ◆"; }
.future-marquee i { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }
@keyframes futureMarquee { to { transform: translateX(-50%); } }

/* Structural sections: more spatial, less brochure-like. */
.section,
.statement,
.spotlight,
.case,
.closing,
.future-horizon { isolation: isolate; }
.section { background: var(--paper); }
.section--paper { background: #e8eeea; }
.section--ink {
  background:
    radial-gradient(circle at 78% 20%, rgba(114,240,207,.09), transparent 22rem),
    #05070b;
}
.section::before,
.statement::before,
.spotlight::before,
.future-horizon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(5,7,11,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,7,11,.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}
.section--ink::before { background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); }
.section-head { grid-template-columns: minmax(220px,.32fr) minmax(0,1fr); }
.section-head h2 { max-width: 14.5ch; }
.section-head .eyebrow { position: sticky; top: 150px; }
.statement { background: #fff; }
.statement__number { color: var(--grey-2); letter-spacing: .14em; font-size: .66rem; }
.statement h2 { max-width: 13.4ch; }
.statement p { line-height: 1.7; }

/* Capability rows become future paths. */
.capability-list { border-color: rgba(5,7,11,.16); }
.capability {
  min-height: 196px;
  grid-template-columns: 72px minmax(0,1.15fr) minmax(180px,.48fr) 48px;
  border-color: rgba(5,7,11,.16);
  transition: color .45s ease, padding .45s var(--ease-out);
}
.capability::before {
  background:
    linear-gradient(90deg, var(--yellow), #ffe66a 70%, #fff0a5);
  transform: scaleX(0);
  transform-origin: left;
}
.capability:hover::before,
.capability:focus-visible::before { transform: scaleX(1); }
.capability > span { color: var(--grey-2); }
.capability h3 { font-size: clamp(1.8rem,3vw,3.5rem); }
.capability b { color: var(--grey); }
.capability:hover b { color: var(--ink); }
.capability:hover { padding-inline: 26px; }
.capability svg { border: 1px solid currentColor; border-radius: 50%; padding: 8px; width: 44px; height: 44px; }

/* Audience journeys feel like portals. */
.pathways { gap: 16px; border: 0; }
.pathways a {
  min-height: 510px;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: rgba(255,255,255,.025);
  transition: transform .55s var(--ease-out), border-color .35s, box-shadow .55s;
}
.pathways a:last-child { border: 1px solid rgba(255,255,255,.14); }
.pathways a::before {
  inset: auto 22px 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .55s var(--ease-out);
}
.pathways a::after {
  content: "↗";
  position: absolute;
  right: 34px;
  top: 32px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
}
.pathways a:hover,
.pathways a:focus-visible {
  color: #fff;
  transform: translateY(-10px);
  border-color: rgba(255,212,0,.7);
  box-shadow: 0 32px 70px rgba(0,0,0,.28), 0 0 44px rgba(255,212,0,.08);
}
.pathways a:hover::before,
.pathways a:focus-visible::before { inset: auto 22px 22px; transform: scaleX(1); }
.pathways a:hover > span,
.pathways a:hover p,
.pathways a:focus-visible > span,
.pathways a:focus-visible p { color: inherit; }
.pathways h3 { margin-top: 92px; }

/* Images reveal through a future aperture. */
.spotlight { background: #f9faf7; }
.spotlight__visual {
  border-radius: 34px;
  border: 1px solid rgba(5,7,11,.14);
  box-shadow: var(--shadow);
}
.spotlight__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, transparent 28%, rgba(255,255,255,.55) 48%, transparent 68%);
  transform: translateX(-100%);
  transition: transform 1.2s var(--ease-out) .25s;
}
.spotlight.is-visible .spotlight__visual::before { transform: translateX(100%); }
.spotlight__visual::after { width: 2px; height: 100%; background: linear-gradient(transparent, var(--yellow), transparent); mix-blend-mode: normal; }

.industry-strip { gap: 12px; border: 0; }
.industry-strip a,
.industry-strip a:nth-child(even) {
  min-height: 118px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
}
.industry-strip a:nth-child(odd) { border-right: 1px solid var(--line); }
.industry-strip a::before { border-radius: inherit; background: var(--yellow); }

.case {
  background:
    radial-gradient(circle at 75% 30%, rgba(255,255,255,.28), transparent 18rem),
    var(--yellow);
}
.case::before { background-size: 92px 100%; }
.case__signal { border-color: rgba(0,0,0,.2); }
.case__signal span::before { content: "◉"; margin-right: 10px; }

.method { gap: 12px; border-top: 0; }
.method::before { display: none; }
.method li,
.method li + li {
  min-height: 312px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.64);
  transition: transform .4s var(--ease-out), background .4s, box-shadow .4s;
}
.method li:hover { transform: translateY(-8px); background: #fff; box-shadow: 0 26px 60px rgba(5,7,11,.1); }
.method h3 { margin-top: 70px; }
.method li > span { display: inline-grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; }
.section--ink .method li { background: rgba(255,255,255,.025); border-color: rgba(255,255,255,.14); }
.section--ink .method li:hover { background: rgba(255,255,255,.06); }

/* Generic cards: precise, dimensional, calm. */
.service-grid,
.principle-grid,
.package-grid,
.topic-grid,
.sector-grid,
.model-grid,
.evidence-grid,
.route-grid,
.credential-grid,
.brief-grid,
.insights-grid { gap: 14px; border: 0; }
.service-grid article,
.principle-grid article,
.package-grid article,
.topic-grid article,
.sector-grid article,
.model-grid article,
.evidence-grid article,
.credential-grid article,
.insights-grid article,
.route-grid a,
.brief-grid > div,
.service-grid article:nth-child(even),
.principle-grid article:nth-child(even),
.topic-grid article:nth-child(even),
.sector-grid article:nth-child(even),
.evidence-grid article:nth-child(even),
.credential-grid article:nth-child(even),
.route-grid a:nth-child(even),
.brief-grid > div:nth-child(even) {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.62);
}
.service-grid article::before,
.principle-grid article::before,
.package-grid article::before,
.topic-grid article::before,
.sector-grid article::before,
.model-grid article::before,
.evidence-grid article::before,
.credential-grid article::before,
.insights-grid article::before,
.route-grid a::before {
  inset: auto 22px 18px;
  height: 2px;
  background: linear-gradient(90deg,var(--yellow),transparent);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.service-grid article:hover::before,
.principle-grid article:hover::before,
.package-grid article:hover::before,
.topic-grid article:hover::before,
.sector-grid article:hover::before,
.model-grid article:hover::before,
.evidence-grid article:hover::before,
.credential-grid article:hover::before,
.insights-grid article:hover::before,
.route-grid a:hover::before { inset: auto 22px 18px; transform: scaleX(1); }
.service-grid h3,
.principle-grid h3,
.package-grid h3,
.topic-grid h3,
.sector-grid h3,
.model-grid h3,
.evidence-grid h3,
.insights-grid h3,
.route-grid h3 { margin-top: 64px; }
.section--ink .service-grid article,
.section--ink .principle-grid article,
.section--ink .model-grid article,
.section--ink .evidence-grid article,
.section--ink .insights-grid article {
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.14);
}
.section--ink .service-grid article:hover,
.section--ink .principle-grid article:hover,
.section--ink .model-grid article:hover,
.section--ink .evidence-grid article:hover,
.section--ink .insights-grid article:hover { color: #fff; background: rgba(255,255,255,.055); }
.section--ink .service-grid article:hover p,
.section--ink .principle-grid article:hover p,
.section--ink .model-grid article:hover p,
.section--ink .evidence-grid article:hover p,
.section--ink .insights-grid article:hover p { color: #b7c0c8; }

/* Future horizon closing story. */
.future-horizon {
  position: relative;
  padding: var(--section-space) 0;
  overflow: hidden;
  background: #05070b;
  color: #fff;
}
.future-horizon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -48%;
  width: 85vw;
  height: 60vw;
  border: 1px solid rgba(255,212,0,.22);
  border-radius: 50%;
  transform: translateX(-50%) perspective(700px) rotateX(68deg);
  box-shadow: 0 0 90px rgba(255,212,0,.09);
}
.future-horizon__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(60px,10vw,160px); }
.future-horizon h2 { margin-top: 28px; max-width: 12ch; }
.future-horizon__path { border-top: 1px solid rgba(255,255,255,.16); }
.future-horizon__path article { display: grid; grid-template-columns: 54px minmax(0,.65fr) minmax(0,1fr); gap: 24px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.future-horizon__path span { color: var(--yellow); font-size: .65rem; letter-spacing: .14em; }
.future-horizon__path strong { font-family: var(--display); font-size: 1.2rem; }
.future-horizon__path p { margin: 0; color: #9da7af; }

.page-nav { background: rgba(5,7,11,.94); color: #fff; border-color: rgba(255,255,255,.1); }
.page-nav a { color: #8f99a2; }
.page-nav a:hover,
.page-nav a.is-current { color: #fff; }

.closing {
  background:
    radial-gradient(circle at 85% 15%, rgba(114,240,207,.13), transparent 25rem),
    #0a0e14;
}
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
}
.closing__grid { position: relative; }

.footer { background: #030507; }
.footer__lead { border-top: 1px solid rgba(255,255,255,.12); }
.footer__lead h2 { color: #fff; }
.footer__lead .button { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

/* Forms become confident, not administrative. */
.contact-form {
  border-radius: 30px;
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 36px 90px rgba(0,0,0,.28);
}
.contact-form input,
.contact-form select,
.contact-form textarea { border-radius: 14px; }

/* Motion: reveal the future through masks, never by changing layout. */
[data-motion-section] { --section-y: 62px; }
[data-motion-section] > .shell,
[data-motion-section] > .hero__grid,
[data-motion-section] > .proof__grid {
  filter: blur(8px);
  transform: translateY(var(--section-y)) scale(.99);
  transition: opacity .9s ease, transform 1.15s var(--ease-out), filter 1s ease;
}
[data-motion-section].is-visible > .shell,
[data-motion-section].is-visible > .hero__grid,
[data-motion-section].is-visible > .proof__grid,
.hero.is-ready > .hero__grid { filter: none; transform: none; }
.motion-word { padding-bottom: .11em; margin-bottom: -.11em; }
.motion-word > span { transform: translateY(118%) rotate(2deg); filter: blur(5px); }
.is-visible .motion-word > span,
.hero.is-ready .motion-word > span { filter: none; transform: none; transition-duration: 1s, .5s, .65s; }
[data-reveal], .reveal { transform: translateY(42px); filter: blur(6px); }
[data-reveal].is-visible, .reveal.is-visible { filter: none; }
[data-stagger] > * { transform: translateY(36px); filter: blur(4px); }
[data-stagger].is-visible > * { filter: none; }

/* Pointer-linked future light */
.future-lit {
  --future-x: 50%;
  --future-y: 50%;
  background-image: radial-gradient(circle at var(--future-x) var(--future-y), rgba(255,212,0,.12), transparent 28rem);
}

@media (max-width: 1200px) {
  :root { --shell: min(100% - 52px, 1160px); }
  .site-header { color: #fff; }
  .hero__grid { grid-template-columns: minmax(0,1fr) minmax(360px,.82fr); gap: 54px; }
  .future-signal { display: none; }
}

@media (max-width: 900px) {
  :root { --shell: calc(100% - 36px); --section-space: 104px; }
  .site-header { top: 0; }
  .nav { height: 78px; }
  .mobile-menu { inset: 78px 0 0; }
  .hero { min-height: auto; }
  .hero__grid,
  body:not(.page-home) .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 96px 0 74px;
  }
  .hero__content::before { top: -42px; }
  .hero__media { width: 100%; aspect-ratio: 16/11; margin-top: 20px; }
  .future-manifesto__grid,
  .future-horizon__grid { grid-template-columns: 1fr; }
  .future-manifesto__label { min-height: 0; gap: 32px; }
  .future-horizon__path article { grid-template-columns: 48px minmax(0,1fr); }
  .future-horizon__path p { grid-column: 2; }
  .section-head .eyebrow { position: static; }
  .pathways { gap: 14px; }
  .pathways a { min-height: 380px; }
  .method { gap: 10px; }
  .method li,
  .method li + li { min-height: 0; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 26px); --section-space: 82px; }
  h1 { font-size: clamp(3.2rem, 15vw, 5.05rem); line-height: .93; }
  h2 { font-size: clamp(2.35rem, 10.7vw, 3.9rem); }
  .nav { height: 70px; }
  .mobile-menu { inset: 70px 0 0; }
  .hero__grid,
  body:not(.page-home) .hero__grid { padding: 80px 0 58px; }
  .hero__content::before { display: none; }
  .hero__lead { font-size: 1rem; }
  .hero__media { border-radius: 22px; clip-path: inset(0 0 100% 0 round 22px); }
  .hero.is-ready .hero__media { clip-path: inset(0 round 22px); }
  .hero__media::after { top: 12px; right: 12px; font-size: .48rem; }
  .button { width: 100%; min-height: 58px; }
  .proof__grid > div::before { margin-bottom: 20px; }
  .future-manifesto::before { top: 4%; font-size: 55vw; }
  .future-manifesto__grid { padding-block: 86px; }
  .capability,
  .capability:hover { padding-inline: 0; }
  .capability h3 { font-size: 1.85rem; }
  .pathways a { min-height: 330px; padding: 28px; }
  .pathways h3 { margin-top: 72px; }
  .industry-strip { gap: 8px; }
  .industry-strip a,
  .industry-strip a:nth-child(even) { border-radius: 14px; }
  .service-grid article,
  .principle-grid article,
  .package-grid article,
  .topic-grid article,
  .sector-grid article,
  .model-grid article,
  .evidence-grid article,
  .credential-grid article,
  .insights-grid article,
  .route-grid a,
  .brief-grid > div,
  .service-grid article:nth-child(even),
  .principle-grid article:nth-child(even),
  .topic-grid article:nth-child(even),
  .sector-grid article:nth-child(even),
  .evidence-grid article:nth-child(even),
  .credential-grid article:nth-child(even),
  .route-grid a:nth-child(even),
  .brief-grid > div:nth-child(even) { padding: 26px; border-radius: 16px; }
  .future-horizon__path article { grid-template-columns: 34px minmax(0,1fr); gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .utility__signals span:first-child::before,
  .hero__media::before,
  .proof::before,
  .future-marquee > div { animation: none !important; }
  .future-marquee > div { transform: none; }
}
@media (pointer:fine) and (prefers-reduced-motion:no-preference) {
  .hero.is-ready .hero__media {
    transform: perspective(1200px) rotateX(var(--future-tilt-x,0deg)) rotateY(var(--future-tilt-y,0deg));
    transition: clip-path 1.1s var(--ease-out), opacity .8s ease, transform .22s ease-out;
  }
}

/* Specialised page systems */
.about-identity {
  background:
    radial-gradient(circle at 15% 18%, rgba(141,166,255,.12), transparent 24rem),
    radial-gradient(circle at 88% 72%, rgba(114,240,207,.1), transparent 24rem),
    #05070b;
}
.about-identity__intro { align-items: end; }
.about-identity__definition {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.025);
  color: #aeb8c1;
}
.about-identity__grid { gap: 14px; border: 0; }
.about-identity__card,
.about-identity__card:nth-child(even) {
  min-height: 430px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.02);
}
.about-identity__card::before {
  inset: auto 26px 22px;
  height: 2px;
  background: linear-gradient(90deg,var(--identity-accent,var(--yellow)),transparent);
  transform: scaleX(.16);
  transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.about-identity__card:hover::before { inset: auto 26px 22px; transform: scaleX(1); }
.about-identity__card:hover { color: #fff; }
.about-identity__card:hover p,
.about-identity__card:hover .about-identity__meta { color: inherit; }
.about-identity__card h3 { margin-top: 90px; }
.about-identity__card p { color: #aab4bc; }
.about-identity__card a,
.about-identity__card:nth-child(even) a { left: 34px; right: 34px; bottom: 34px; }
.about-identity__close {
  margin-top: 14px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.025);
}

.industry-feature { gap: clamp(46px,7vw,118px); }
.feature-article {
  top: 150px;
  padding: 44px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.24), transparent 46%),
    var(--yellow);
  box-shadow: 0 30px 80px rgba(5,7,11,.15);
}
.feature-article img {
  margin-top: 34px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.16);
}
.briefing-box {
  padding: 40px;
  border-radius: 24px;
  background: rgba(255,255,255,.66);
  box-shadow: 0 24px 70px rgba(5,7,11,.08);
}
.section--ink .briefing-box {
  background: rgba(255,255,255,.035);
  border-color: rgba(255,255,255,.14);
}

.contact-layout { gap: clamp(52px,8vw,128px); }
.contact-copy { top: 150px; }
.contact-details {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
}
.contact-form {
  padding: clamp(30px,4.5vw,58px);
  background:
    radial-gradient(circle at 100% 0%, rgba(114,240,207,.12), transparent 17rem),
    #fff;
}
.contact-form label > span { letter-spacing: .02em; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid rgba(5,7,11,.16);
  border-bottom-color: rgba(5,7,11,.24);
  background: rgba(246,248,245,.9);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(255,212,0,.18);
}

@media (max-width:900px) {
  .about-identity__grid { grid-template-columns: 1fr 1fr; }
  .about-identity__card,
  .about-identity__card:nth-child(even) { min-height: 390px; padding: 28px; }
  .about-identity__card a,
  .about-identity__card:nth-child(even) a { left: 28px; right: 28px; bottom: 28px; }
}
@media (max-width:620px) {
  .about-identity__grid { grid-template-columns: 1fr; }
  .about-identity__card,
  .about-identity__card:nth-child(even) { min-height: 360px; padding: 26px; }
  .about-identity__card a,
  .about-identity__card:nth-child(even) a { left: 26px; right: 26px; bottom: 26px; }
  .about-identity__close { padding: 26px; }
  .feature-article,
  .briefing-box { padding: 28px; border-radius: 18px; }
  .contact-details { padding: 22px; }
}
