/*
Theme Name: FutureSync Technologies
Theme URI: https://futuresynctechnologies.uk
Author: FutureSync Technologies
Author URI: https://futuresynctechnologies.uk
Description: Custom corporate website theme for FutureSync Technologies Limited.
Version: 1.15.4
Requires at least: 6.6
Requires PHP: 7.4
Text Domain: futuresync-technologies
*/

:root {
  --ink: #111827;
  --muted: #5d6675;
  --line: #e3e9f1;
  --paper: #f7f9fc;
  --white: #ffffff;
  --night: #101828;
  --night-2: #182230;
  --panel: #eef4fb;
  --teal: #087b7a;
  --mint: #d7f4ef;
  --amber: #b8872e;
  --coral: #b95b54;
  --blue: #1f5eff;
  --steel: #425466;
  --violet: #51607a;
  --lime: #9ab67a;
  --cyan: #2ca6d9;
  --shadow: 0 18px 46px rgba(16, 24, 40, 0.08);
  --deep-shadow: 0 24px 70px rgba(16, 24, 40, 0.14);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 48%, #ffffff 100%);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

.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;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 0 max(20px, calc((100% - var(--container)) / 2));
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-logo,
.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: linear-gradient(135deg, #0b1220, var(--blue));
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(31, 94, 255, 0.18);
}

.brand-logo {
  display: block;
  object-fit: cover;
  object-position: center 38%;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #324340;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.contact-options a:hover {
  color: var(--teal);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta {
  color: var(--white);
  background: var(--night);
  box-shadow: 0 12px 24px rgba(7, 17, 31, 0.16);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 520px;
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff 0%, #f3f8ff 54%, #eef7fb 100%);
}

.hero-network,
.hero-photo,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-network {
  z-index: -2;
  display: block;
}

.hero-photo {
  z-index: -2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.05);
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 78% 18%, rgba(31, 94, 255, 0.11), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(8, 123, 122, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 54%, rgba(255, 255, 255, 0.45) 100%);
}

.hero-content {
  padding: 34px 0 28px;
}

.hero-brand-lockup {
  width: min(200px, 60vw);
  aspect-ratio: 3 / 2;
  margin: -14px 0 0;
  overflow: hidden;
  border-radius: 8px;
  mix-blend-mode: multiply;
}

.hero-brand-lockup img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 10px;
  color: var(--teal);
}

.hero h1 {
  margin-bottom: 16px;
  font-size: 50px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(31, 94, 255, 0.18);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 1px;
  max-width: 900px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(210, 222, 236, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.hero-metrics div {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.74);
}

.hero-metrics dt {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.people-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: calc(100svh - 78px);
  min-height: 680px;
  color: var(--white);
  background: #08111f;
  scroll-margin-top: 78px;
}

.people-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 850ms ease, visibility 850ms ease;
}

.people-slide.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.people-slide-media,
.people-slide-shade {
  position: absolute;
  inset: 0;
}

.people-slide-media img,
.people-slide-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
  transition: transform 7200ms ease-out;
}

.people-slide.is-active .people-slide-media img,
.people-slide.is-active .people-slide-media video {
  transform: scale(1.075);
}

.people-slide--ceo .people-slide-media img {
  object-position: center;
}

.people-slide--education .people-slide-media video {
  object-position: center 52%;
  filter: saturate(1.08) brightness(1.08);
}

.people-slide--innovation .people-slide-media img {
  filter: saturate(0.9) brightness(1.12);
}

.people-slide--solutions .people-slide-media img {
  filter: saturate(0.84) brightness(1.04);
}

.people-slide--product {
  background: #eef3f8;
}

.people-slide--product .people-slide-media img {
  width: 58%;
  margin-left: auto;
  padding: 42px 4vw 42px 2vw;
  object-fit: contain;
  object-position: center;
}

.people-slide--product-remote .people-slide-media img {
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.people-slide--product-all .people-slide-media video {
  object-position: center;
  filter: saturate(0.94) brightness(0.96);
}

.people-slide--publication,
.people-slide--apps {
  background: #e8eef5;
}

.people-slide--publication .people-slide-media img,
.people-slide--apps .people-slide-media img {
  width: 56%;
  margin-left: auto;
  padding: 38px 4vw 38px 3vw;
  object-fit: contain;
  object-position: center;
}

.people-slide--publication .people-slide-media img {
  width: 46%;
}

.people-slide-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 11, 22, 0.82) 0%, rgba(5, 11, 22, 0.62) 42%, rgba(5, 11, 22, 0.14) 76%, rgba(5, 11, 22, 0.05) 100%),
    linear-gradient(180deg, rgba(3, 7, 14, 0.08), rgba(3, 7, 14, 0.32));
}

.people-slide--education .people-slide-shade,
.people-slide--innovation .people-slide-shade {
  background:
    linear-gradient(90deg, rgba(5, 15, 29, 0.84) 0%, rgba(5, 15, 29, 0.6) 46%, rgba(5, 15, 29, 0.12) 82%),
    linear-gradient(180deg, rgba(3, 10, 18, 0.08), rgba(3, 10, 18, 0.36));
}

.people-slide--product .people-slide-shade {
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.98) 0%, rgba(8, 17, 31, 0.93) 42%, rgba(8, 17, 31, 0.52) 61%, rgba(8, 17, 31, 0.04) 82%),
    linear-gradient(180deg, rgba(8, 17, 31, 0.02), rgba(8, 17, 31, 0.2));
}

.people-slide--publication .people-slide-shade,
.people-slide--apps .people-slide-shade {
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.99) 0%, rgba(8, 17, 31, 0.94) 43%, rgba(8, 17, 31, 0.54) 63%, rgba(8, 17, 31, 0.04) 84%),
    linear-gradient(180deg, rgba(8, 17, 31, 0.02), rgba(8, 17, 31, 0.18));
}

.people-slide--product .people-copy {
  max-width: 590px;
}

.people-slide--product .people-copy h3 {
  font-size: clamp(52px, 5.6vw, 82px);
}

.people-slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: 70px 0 112px;
}

.people-copy {
  max-width: 670px;
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 650ms ease 180ms, transform 650ms ease 180ms;
}

.people-slide.is-active .people-copy {
  transform: translateY(0);
  opacity: 1;
}

.people-copy .eyebrow {
  color: #f0ca82;
}

.people-copy h3 {
  max-width: 650px;
  margin-bottom: 26px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(58px, 6.6vw, 102px);
  font-weight: 700;
  line-height: 0.98;
  color: var(--white);
  text-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
}

.people-lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.people-copy blockquote {
  position: relative;
  max-width: 620px;
  margin: 0 0 26px;
  padding: 0 0 0 28px;
  border-left: 3px solid #f0ca82;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  line-height: 1.55;
}

.ceo-signature {
  display: grid;
  gap: 2px;
  margin-bottom: 28px;
}

.ceo-signature strong {
  color: var(--white);
  font-size: 18px;
}

.ceo-signature span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.showcase-button {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(7, 17, 31, 0.28);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.showcase-button:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.showcase-controls {
  position: absolute;
  z-index: 4;
  right: max(20px, calc((100% - var(--container)) / 2));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: var(--white);
  background: rgba(5, 12, 24, 0.5);
  backdrop-filter: blur(14px);
}

.showcase-arrow {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.showcase-arrow:hover,
.showcase-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.showcase-dots {
  display: flex;
  gap: 7px;
}

.showcase-dots button {
  width: 24px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.showcase-dots button.is-active {
  background: #f0ca82;
}

.showcase-count {
  min-width: 58px;
  font-size: 12px;
  font-weight: 700;
}

.showcase-count strong {
  font-size: 16px;
}

.signal-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr repeat(5, auto);
  align-items: center;
  gap: 16px;
  min-height: 82px;
}

.signal-grid p {
  margin: 0;
  color: #354844;
  font-weight: 800;
}

.signal-grid span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #334155;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 800;
}

.innovation {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff, #f5f9fd);
}

.innovation::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31, 94, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 94, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2), #000 22%, #000 78%, rgba(0, 0, 0, 0.35));
}

.innovation-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 52px;
  align-items: center;
}

.innovation-copy p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
  font-size: 18px;
}

.innovation .eyebrow {
  color: var(--teal);
}

.innovation-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.innovation-stats span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.slider {
  position: relative;
  min-height: 470px;
  padding: 22px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.slider-track {
  position: relative;
  min-height: 374px;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  min-height: 374px;
  padding: 28px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 8px;
  background: var(--white);
  opacity: 0;
  transform: translateX(22px) scale(0.98);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.9) 68%, rgba(255, 255, 255, 0.96));
  pointer-events: none;
}

.slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.slide h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-bottom: 12px;
  font-size: 30px;
}

.slide p:not(.slide-kicker) {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
}

.slide-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.slide-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.01) brightness(1.07);
}

.slide-visual {
  position: absolute;
  inset: 22px 22px auto auto;
  width: min(45%, 260px);
  height: 170px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(157, 232, 215, 0.12), rgba(47, 111, 235, 0.16)),
    rgba(255, 255, 255, 0.08);
}

.slide-visual::before,
.slide-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(157, 232, 215, 0.38);
  border-radius: 8px;
  animation: scanPulse 3.4s ease-in-out infinite;
}

.slide-visual::after {
  inset: 44px;
  border-color: rgba(240, 184, 79, 0.36);
  animation-delay: 700ms;
}

.slide-visual span {
  position: absolute;
  display: block;
  border-radius: 6px;
  background: rgba(157, 232, 215, 0.78);
  box-shadow: 0 0 22px rgba(157, 232, 215, 0.3);
}

.ai-visual span:nth-child(1) {
  left: 28px;
  top: 28px;
  width: 58px;
  height: 12px;
}

.ai-visual span:nth-child(2) {
  right: 34px;
  top: 52px;
  width: 78px;
  height: 12px;
  background: rgba(240, 184, 79, 0.82);
}

.ai-visual span:nth-child(3) {
  left: 58px;
  bottom: 42px;
  width: 110px;
  height: 12px;
}

.ai-visual span:nth-child(4) {
  right: 46px;
  bottom: 26px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(47, 111, 235, 0.8);
}

.cyber-visual span:nth-child(1) {
  left: 50%;
  top: 34px;
  width: 72px;
  height: 86px;
  border: 3px solid rgba(157, 232, 215, 0.78);
  border-top-width: 18px;
  background: rgba(11, 129, 116, 0.16);
  transform: translateX(-50%);
}

.cyber-visual span:nth-child(2) {
  left: 38px;
  bottom: 36px;
  width: 64px;
  height: 10px;
  background: var(--amber);
}

.cyber-visual span:nth-child(3) {
  right: 38px;
  bottom: 36px;
  width: 64px;
  height: 10px;
  background: var(--coral);
}

.cloud-visual span:nth-child(1),
.cloud-visual span:nth-child(2),
.cloud-visual span:nth-child(3) {
  left: 34px;
  right: 34px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.cloud-visual span:nth-child(1) {
  top: 36px;
}

.cloud-visual span:nth-child(2) {
  top: 74px;
  background: rgba(157, 232, 215, 0.18);
}

.cloud-visual span:nth-child(3) {
  top: 112px;
  background: rgba(240, 184, 79, 0.18);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.slider-button {
  min-width: 88px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.slider-button:hover {
  background: #f3f8ff;
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 34px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #d4deea;
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}

.slider-dots button.is-active {
  width: 58px;
  background: var(--blue);
}

.product-section {
  position: relative;
  background:
    linear-gradient(180deg, #f5f7fa, #eaf0f5);
}

.product-showroom {
  display: grid;
  gap: 28px;
}

.product-card,
.course-card,
.app-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(130, 148, 168, 0.28);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(8, 17, 31, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover,
.course-card:hover,
.app-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 94, 255, 0.32);
  box-shadow: 0 24px 58px rgba(8, 17, 31, 0.15);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  min-height: 0;
  padding: 0;
}

.app-photo,
.courses-photo {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.01) brightness(1.06);
}

.product-gallery {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: #f7f9fc;
}

.product-stage {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(130, 148, 168, 0.2);
  border-radius: 6px;
  background: var(--white);
}

.product-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 1px 2px;
  scrollbar-color: #aebdce transparent;
  scrollbar-width: thin;
}

.product-thumb {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid #ced8e4;
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-thumb:hover {
  transform: translateY(-2px);
  border-color: #8da5c1;
}

.product-thumb:focus-visible {
  outline: 3px solid rgba(31, 94, 255, 0.22);
  outline-offset: 2px;
}

.product-thumb.is-active {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(31, 94, 255, 0.12);
}

.product-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
}

.product-details {
  align-self: center;
  padding: 38px;
}

.product-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.product-type {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(8, 123, 122, 0.24);
  border-radius: 999px;
  color: #0a6867;
  background: #effaf8;
  font-size: 12px;
  font-weight: 800;
}

.product-card h3 {
  margin-bottom: 14px;
  font-size: 32px;
}

.product-summary {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 17px;
}

.product-feature-list {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.product-feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
}

.product-feature-list li::before {
  position: absolute;
  top: 8px;
  left: 1px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--teal);
  content: "";
}

.product-facts {
  margin: 0 0 20px;
  border-top: 1px solid var(--line);
}

.product-facts div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.product-facts dt,
.product-facts dd {
  margin: 0;
}

.product-facts dt {
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-facts dd {
  color: var(--muted);
  font-size: 14px;
}

.product-availability {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.product-availability span {
  margin-right: 5px;
  color: var(--ink);
  font-weight: 800;
}

.product-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.product-actions .button {
  min-height: 48px;
}

.product-call {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--blue);
  font-weight: 800;
}

.showroom-reel {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 34px;
  align-items: center;
  margin-top: 12px;
  padding: 32px 0;
  border-top: 1px solid rgba(130, 148, 168, 0.36);
  border-bottom: 1px solid rgba(130, 148, 168, 0.36);
}

.showroom-reel-copy h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.showroom-reel-copy p:not(.eyebrow) {
  color: var(--muted);
}

.showroom-reel video {
  display: block;
  width: 100%;
  max-height: 430px;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  background: #0b1320;
  box-shadow: var(--shadow);
  object-fit: contain;
}

.product-disclaimer {
  max-width: 980px;
  margin: 0;
  color: #6d7785;
  font-size: 12px;
  line-height: 1.7;
}

.app-card h3 {
  position: relative;
}

.app-card p:not(.product-type),
.course-card p {
  position: relative;
  color: var(--muted);
}

.app-card a {
  position: relative;
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 800;
}

.courses-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fbff, #ffffff);
}

.courses-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
  align-items: start;
}

.courses-copy {
  position: sticky;
  top: 110px;
}

.courses-copy .eyebrow {
  color: var(--teal);
}

.courses-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.light-button {
  width: fit-content;
  margin-top: 18px;
  color: var(--ink);
}

.courses-photo {
  height: 270px;
  margin-top: 32px;
  box-shadow: var(--deep-shadow);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.course-card {
  min-height: 260px;
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  border-color: rgba(226, 232, 240, 0.96);
}

.course-card span {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 34px;
  margin-bottom: 30px;
  border-radius: 8px;
  color: var(--blue);
  background: #edf4ff;
  font-weight: 800;
}

.course-card p {
  color: var(--muted);
}

.apps-section {
  background:
    linear-gradient(180deg, #ffffff, #f5f7fa);
}

.app-showcase {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 0.85fr));
  gap: 18px;
}

.app-card {
  min-height: 280px;
  padding: 24px;
}

.featured-app {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  min-height: 400px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff, #f4f8fd);
}

.featured-app-media {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.featured-app-media span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.app-icon {
  display: block;
  width: 156px;
  height: 156px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(8, 17, 31, 0.16);
}

.featured-app .app-icon {
  width: 96px;
  height: 96px;
}

.featured-app-copy {
  min-width: 0;
}

.app-card-actions,
.download-actions,
.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.app-card-actions .button {
  min-height: 46px;
}

.text-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: #a8b5c6;
  text-underline-offset: 5px;
}

.featured-app .product-type,
.featured-app a {
  color: var(--blue);
}

.featured-app p:not(.product-type) {
  color: var(--muted);
}

.app-photo {
  height: 200px;
  margin-bottom: 24px;
}

.reveal-card {
  opacity: 0;
  transform: translateY(22px);
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.reveal-card.is-visible:hover {
  transform: translateY(-6px);
}

.section {
  padding: 92px 0;
  scroll-margin-top: 90px;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.split-layout p,
.contact-copy p,
.courses-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

#services {
  background: #f7f9fc;
}

#services .section-heading {
  text-align: center;
}

#services .section-heading h2,
#services .section-heading p {
  margin-right: auto;
  margin-left: auto;
}

.service-card {
  min-height: 340px;
  padding: 42px 34px;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  box-shadow: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.process-grid article:hover,
.industry-list div:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(23, 32, 31, 0.12);
}

.service-card:nth-child(2n) {
  border-top-color: rgba(11, 129, 116, 0.55);
}

.service-card:nth-child(3n) {
  border-top-color: rgba(217, 93, 85, 0.55);
}

.service-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 28px;
  border-radius: 8px;
  color: var(--blue);
  background: #edf4ff;
  font-size: 17px;
  font-weight: 800;
}

.service-card h3 {
  max-width: 280px;
  margin-right: auto;
  margin-left: auto;
  font-size: 25px;
}

.service-card p {
  max-width: 320px;
  margin-right: auto;
  margin-left: auto;
}

.service-card p,
.process-grid p,
.proof-list,
.industry-list span {
  color: var(--muted);
}

.contrast {
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
}

.contrast .eyebrow {
  color: var(--teal);
}

.contrast p {
  color: var(--muted);
}

.split-layout,
.contact-layout,
.proof-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.industry-list {
  display: grid;
  gap: 14px;
}

.industry-list div {
  display: grid;
  gap: 4px;
  min-height: 94px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 220ms ease, background 220ms ease;
}

.industry-list div:hover {
  background: #f3f8ff;
}

.industry-list strong {
  font-size: 17px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  min-height: 260px;
  padding: 24px;
  border-top: 4px solid var(--teal);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.process-grid article:nth-child(2) {
  border-top-color: var(--amber);
}

.process-grid article:nth-child(3) {
  border-top-color: var(--coral);
}

.process-grid article:nth-child(4) {
  border-top-color: #5b7cfa;
}

.process-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.proof {
  background: #edf2ef;
}

.proof-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  position: relative;
  padding: 18px 18px 18px 52px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 32, 31, 0.04);
}

.proof-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 23px;
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: var(--teal);
  box-shadow: 8px 8px 0 var(--amber);
}

.contact-section {
  background: var(--white);
}

.contact-options {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 800;
}

.contact-options a,
.contact-options address {
  width: fit-content;
  color: var(--night);
}

.contact-options address {
  max-width: 310px;
  font-style: normal;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #334642;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd7d4;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(11, 129, 116, 0.18);
  border-color: var(--teal);
}

.form-button {
  width: 100%;
  min-height: 52px;
  border: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.interior-page {
  min-height: calc(100vh - 176px);
}

.page-hero {
  display: grid;
  min-height: 440px;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(7, 20, 36, 0.98), rgba(18, 48, 69, 0.94)),
    #0d2235;
}

.page-hero-inner {
  padding: 94px 0 78px;
}

.page-hero .eyebrow {
  color: #f0ca82;
}

.page-hero h1 {
  max-width: 930px;
  margin-bottom: 24px;
  color: var(--white);
}

.page-hero-inner > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #dbe7f2;
  font-size: 20px;
}

.page-hero--solutions {
  min-height: 360px;
}

.page-hero--solutions .page-hero-inner {
  padding: 72px 0 58px;
}

.page-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.compact-heading {
  max-width: var(--container);
}

.app-download-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 68px;
  align-items: center;
}

.app-download-visual {
  display: grid;
  min-height: 430px;
  place-items: center;
  border-right: 1px solid var(--line);
}

.app-download-visual img {
  display: block;
  width: min(310px, 82%);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 26px 56px rgba(8, 17, 31, 0.16);
}

.app-download-copy h2 {
  margin-bottom: 20px;
}

.download-feature-list,
.account-security-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.download-feature-list li,
.account-security-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
}

.download-feature-list li::before,
.account-security-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.download-meta,
.account-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.download-meta div,
.account-facts div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.download-meta div:last-child,
.account-facts div:last-child {
  border-right: 0;
}

.download-meta dt,
.account-facts dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.download-meta dd,
.account-facts dd {
  overflow-wrap: anywhere;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.download-channels {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.download-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.download-channel-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.download-channel-grid span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.download-channel-grid h3 {
  margin: 48px 0 12px;
}

.download-channel-grid p {
  margin: 0;
  color: var(--muted);
}

.resource-tabs {
  position: sticky;
  z-index: 20;
  top: 78px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.resource-tabs .container {
  display: flex;
  gap: 32px;
  min-height: 62px;
  align-items: center;
}

.resource-tabs a {
  color: var(--ink);
  font-weight: 800;
}

.resource-tabs .container {
  scrollbar-width: none;
}

.resource-tabs .container::-webkit-scrollbar {
  display: none;
}

.resource-section {
  scroll-margin-top: 140px;
}

.resource-section:nth-of-type(even) {
  background: var(--paper);
}

.resource-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.45fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.resource-section-heading h2,
.resource-section-heading p {
  margin-bottom: 0;
}

.resource-section-heading > p {
  color: var(--muted);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.resource-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(8, 17, 31, 0.07);
}

.resource-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dfe8f1;
}

.resource-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-card-body {
  min-width: 0;
  padding: 24px;
}

.resource-card-body h3,
.resource-card-body p {
  overflow-wrap: anywhere;
}

.resource-card-body h3 a {
  color: var(--ink);
}

.resource-card-body > p:not(.product-type) {
  color: var(--muted);
}

.resource-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.resource-card-meta a {
  color: var(--teal);
  font-weight: 800;
}

.resource-empty {
  grid-column: 1 / -1;
  min-height: 210px;
  padding: 38px;
  border: 1px dashed #b7c4d3;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.resource-empty p {
  color: var(--muted);
}

.article-byline {
  font-size: 15px !important;
}

.article-layout {
  max-width: 900px;
  padding-top: 72px;
  padding-bottom: 92px;
}

.article-featured-media {
  overflow: hidden;
  margin: 0 0 44px;
  border-radius: 8px;
}

.article-featured-media img {
  display: block;
  width: 100%;
  height: auto;
}

.article-content {
  color: #293241;
  font-size: 18px;
  line-height: 1.78;
}

.article-content > * {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.article-content h2,
.article-content h3 {
  margin-top: 48px;
  color: var(--ink);
}

.article-content img,
.article-content figure {
  max-width: 100%;
}

.article-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-footer {
  max-width: 760px;
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.account-panel,
.login-panel,
.access-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(8, 17, 31, 0.08);
}

.account-panel,
.login-panel {
  padding: 34px;
}

.access-panel {
  padding: 30px;
  background: var(--paper);
}

.account-identity {
  display: flex;
  gap: 20px;
  align-items: center;
}

.account-identity > div {
  min-width: 0;
}

.account-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
}

.account-identity h2,
.access-panel h2,
.login-panel h2 {
  margin-bottom: 8px;
}

.account-identity p,
.access-panel > p:not(.product-type) {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.access-link {
  display: block;
  min-height: 48px;
  margin-top: 12px;
  padding: 13px 14px;
  border: 1px solid #cbd7e4;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
}

#loginform {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

#loginform p {
  margin: 0;
}

#loginform label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

#loginform input[type="text"],
#loginform input[type="password"] {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

#loginform .login-remember label {
  display: flex;
  gap: 10px;
  align-items: center;
}

#wp-submit {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--teal);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.login-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.login-links a {
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 20px;
  align-items: center;
  padding: 28px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.footer-inner p {
  margin: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.footer-inner p:first-child,
.footer-contact a {
  color: var(--ink);
  font-weight: 800;
}

.footer-contact {
  display: grid;
  gap: 4px;
  text-align: right;
}

.footer-contact span {
  max-width: 280px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 14px;
  margin: 4px 0;
}

.footer-social a {
  color: var(--teal);
  font-size: 13px;
}

.audience-section,
.learning-pathway,
.trade-process,
.research-writing,
.latest-publications {
  background: var(--paper);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  display: flex;
  min-width: 0;
  min-height: 330px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 17, 31, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.audience-card:nth-child(2) {
  border-top-color: var(--blue);
}

.audience-card:nth-child(3) {
  border-top-color: var(--amber);
}

.audience-card:nth-child(4) {
  border-top-color: var(--coral);
}

a.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(8, 17, 31, 0.12);
}

.audience-card > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.audience-card h3 {
  margin: 28px 0 12px;
}

.audience-card p:not(.product-type) {
  color: var(--muted);
}

.audience-card strong {
  margin-top: auto;
  padding-top: 20px;
  color: var(--teal);
  font-size: 14px;
}

.capability-grid,
.research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.capability-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.capability-card > span {
  color: var(--teal);
  font-weight: 800;
}

.capability-card h3 {
  margin: 44px 0 12px;
}

.capability-card p,
.numbered-list span,
.evidence-callout-inner > p {
  color: var(--muted);
}

.corporate-evidence,
.strategic-articles {
  border-top: 1px solid var(--line);
  background: #f4f7fb;
}

.project-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.project-evidence-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 17, 31, 0.06);
}

.project-evidence-card .product-type {
  margin: 26px 0 8px;
}

.project-evidence-card > p:not(.product-type) {
  color: var(--muted);
}

.project-points {
  display: grid;
  gap: 8px;
  margin: 8px 0 24px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
}

.project-evidence-card .text-link {
  margin-top: auto;
}

.corporate-evidence-note {
  margin-top: 22px;
}

.article-topic-grid--research {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.security-proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.security-proof-strip .container {
  display: grid;
  min-height: 84px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.security-proof-strip span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 16px 26px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.security-proof-strip span:last-child {
  border-right: 1px solid var(--line);
}

.security-proof-strip strong {
  color: var(--ink);
  font-size: 17px;
}

.operating-model,
.assessment-principles,
.compliance-band,
.app-release--alternate {
  border-top: 1px solid var(--line);
}

.numbered-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  counter-reset: delivery;
  list-style: none;
}

.numbered-list li {
  display: grid;
  grid-template-columns: minmax(100px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.evidence-callout,
.apprenticeship-band,
.compliance-band {
  background: #edf5f4;
}

.evidence-callout-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.9fr) auto;
  gap: 34px;
  align-items: center;
}

.evidence-callout-inner h2,
.evidence-callout-inner p {
  margin-bottom: 0;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.academy-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 54px;
  align-items: center;
}

.academy-feature-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.academy-feature-media img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pathway-grid article {
  min-height: 250px;
  padding: 26px;
  border-left: 3px solid var(--blue);
  background: var(--white);
}

.pathway-grid article:nth-child(2) {
  border-left-color: var(--teal);
}

.pathway-grid article:nth-child(3) {
  border-left-color: var(--amber);
}

.pathway-grid article:nth-child(4) {
  border-left-color: var(--coral);
}

.pathway-grid span,
.external-course-grid span,
.article-topic-grid span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pathway-grid h3 {
  margin: 42px 0 12px;
}

.pathway-grid p,
.external-course-grid p,
.article-topic-grid p {
  color: var(--muted);
}

.external-course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.external-course-grid a {
  display: block;
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.external-course-grid a:hover {
  border-color: rgba(31, 94, 255, 0.42);
  box-shadow: var(--shadow);
}

.external-course-grid h3 {
  margin: 40px 0 12px;
}

.subject-heading {
  margin-top: 54px;
}

.video-learning {
  background: #f4f7fb;
}

.status-legend {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.status-legend .container {
  display: flex;
  min-height: 70px;
  flex-wrap: wrap;
  gap: 18px 30px;
  align-items: center;
}

.status-legend span {
  color: var(--muted);
  font-size: 13px;
}

.status-legend strong {
  color: var(--ink);
}

.research-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 17, 31, 0.07);
}

.research-card--featured {
  grid-column: span 2;
}

.research-card-media,
.research-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  background-position: center;
  background-size: cover;
}

.research-card-image {
  padding: 34px;
  object-fit: contain;
  background: #edf3f8;
}

.research-card-media--network {
  background-image: linear-gradient(rgba(7, 20, 36, 0.18), rgba(7, 20, 36, 0.68)), url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1400&q=82");
}

.research-card-media--sensor {
  background-image: linear-gradient(rgba(7, 20, 36, 0.16), rgba(7, 20, 36, 0.62)), url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1200&q=82");
}

.research-card-media--iot {
  background-image: linear-gradient(rgba(7, 20, 36, 0.14), rgba(7, 20, 36, 0.54)), url("https://images.unsplash.com/photo-1555664424-778a1e5e1b48?auto=format&fit=crop&w=1200&q=82");
}

.research-card-media--web {
  background-image: linear-gradient(rgba(7, 20, 36, 0.14), rgba(7, 20, 36, 0.58)), url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1200&q=82");
}

.research-card-body {
  padding: 26px;
}

.research-card-body h3 {
  margin-top: 18px;
}

.research-card-body > p:not(.product-type):not(.evidence-note) {
  color: var(--muted);
}

.status-chip {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 5px;
  color: #15564f;
  background: #d8f1ed;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-chip--prototype {
  color: #1d4ed8;
  background: #e5edff;
}

.status-chip--manuscript {
  color: #765315;
  background: #f5ead2;
}

.status-chip--concept {
  color: #8b3f38;
  background: #f5e1df;
}

.evidence-note,
.editorial-note {
  padding: 14px 16px;
  border-left: 3px solid var(--amber);
  color: var(--muted);
  background: #fbf7ee;
  font-size: 14px;
}

.research-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.research-list article {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.research-list h3 {
  margin: 30px 0 12px;
}

.research-list p {
  color: var(--muted);
}

.research-actions,
.retailer-actions {
  margin-top: 30px;
}

.publication-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.publication-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.58fr) minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 17, 31, 0.07);
}

.book-cover {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 22px;
  color: var(--white);
  background: #132b3e;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.book-cover--fatiha {
  color: #173f3a;
  background: #d9ece7;
}

.book-cover--indopak {
  background: #25324a;
}

.book-cover--academy {
  color: #382913;
  background: #f2dfb9;
}

.book-cover span,
.book-cover small {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.book-cover strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.03;
}

.publication-card-body {
  padding: 26px;
}

.publication-card-body h3 {
  margin: 22px 0 12px;
}

.publication-card-body > p:not(.evidence-note) {
  color: var(--muted);
}

.publication-cover-link {
  display: block;
  min-width: 0;
  min-height: 410px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #edf2f7;
}

.publication-cover-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  object-position: top center;
}

.publication-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.publication-actions .button {
  min-height: 44px;
  padding: 11px 16px;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.document-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.5fr) minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 17, 31, 0.07);
}

.document-card > a {
  display: block;
  min-width: 0;
  border-right: 1px solid var(--line);
  background: #edf2f7;
}

.document-card > a img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: top center;
}

.document-cover {
  display: flex;
  min-height: 390px;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  background: #173247;
}

.document-cover small {
  margin-bottom: auto;
  color: #f0ca82;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.document-cover strong {
  max-width: 220px;
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.08;
}

.document-cover span {
  color: #d7e5ee;
  font-size: 14px;
}

.document-cover b {
  width: fit-content;
  margin-top: 28px;
  padding-top: 12px;
  border-top: 2px solid #f0ca82;
  font-size: 14px;
}

.document-card > div {
  min-width: 0;
  padding: 26px;
}

.document-card h3 {
  margin: 22px 0 12px;
  overflow-wrap: anywhere;
}

.document-card p:not(.evidence-note) {
  color: var(--muted);
}

.audio-section {
  background: #f4f7fb;
}

.audio-grid,
.article-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.audio-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.audio-symbol {
  display: grid;
  width: 112px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--night);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
}

.audio-symbol--fatiha {
  color: #173f3a;
  background: #cfe7df;
}

.audio-card h3 {
  margin: 20px 0 10px;
}

.audio-card p {
  color: var(--muted);
}

.audio-card a {
  color: var(--teal);
  font-weight: 800;
}

.audio-card--complete {
  grid-column: 1 / -1;
  grid-template-columns: 140px minmax(0, 1fr);
}

.audio-card--complete .audio-symbol {
  width: 140px;
}

.audio-card-content {
  min-width: 0;
}

.audiobook-player {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9fc;
}

.audiobook-player label {
  color: var(--night);
  font-size: 14px;
  font-weight: 800;
}

.audiobook-player select {
  width: 100%;
  min-height: 46px;
  padding: 10px 42px 10px 12px;
  border: 1px solid #aeb9c8;
  border-radius: 6px;
  color: var(--night);
  background: var(--white);
  font: inherit;
}

.audiobook-player audio {
  width: 100%;
  min-height: 54px;
}

.audiobook-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.audiobook-actions .button {
  color: var(--white);
}

.audiobook-chapter-list {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.audiobook-chapter-list summary {
  padding: 18px 0 8px;
  color: var(--night);
  font-weight: 800;
  cursor: pointer;
}

.audiobook-chapter-list ol {
  display: grid;
  gap: 0;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.audiobook-chapter-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.audiobook-chapter-list li > span:last-child {
  display: flex;
  gap: 14px;
}

.article-topic-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-topic-grid h3 {
  margin: 34px 0 12px;
}

.article-topic-grid small {
  color: var(--coral);
  font-weight: 800;
}

.editorial-note {
  margin-top: 24px;
}

.compact-research-list article {
  min-height: 210px;
}

.app-release + .app-release {
  padding-top: 92px;
}

.app-download-visual--wide img {
  width: 92%;
  aspect-ratio: 5 / 3;
}

.mini-app-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(8, 17, 31, 0.12);
}

.trade-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.trade-product {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 17, 31, 0.07);
}

.trade-product img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f7f8fa;
}

.trade-product > div {
  padding: 24px;
}

.trade-product h3 {
  margin: 12px 0;
}

.trade-product p:not(.product-type) {
  color: var(--muted);
}

.account-routes {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.account-route-grid .audience-card {
  min-height: 280px;
}

.guidance-studio {
  scroll-margin-top: 138px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f2f7f9;
}

.guidance-studio--reader {
  background: #f8f6f2;
}

.guidance-studio--reader .guidance-fields {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guidance-studio--reader .guidance-fields label {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guidance-studio--reader .guidance-fields label:nth-child(3n) {
  border-right: 0;
}

.guidance-studio--reader .guidance-fields label:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.guidance-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 32px;
}

.guidance-intro h2,
.guidance-intro p {
  margin-bottom: 0;
}

.guidance-intro > p {
  color: var(--muted);
}

.guidance-form {
  overflow: hidden;
  border: 1px solid #cedbe3;
  border-radius: 8px;
  background: var(--white);
}

.guidance-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.guidance-fields label {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guidance-fields label:nth-child(4n) {
  border-right: 0;
}

.guidance-fields label:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.guidance-fields span,
.guidance-question {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.guidance-fields select {
  width: 100%;
  min-height: 44px;
  padding: 8px 34px 8px 10px;
  border: 1px solid #cbd5df;
  border-radius: 5px;
  color: var(--ink);
  background: var(--white);
}

.guidance-fields select:focus,
.guidance-question input:focus {
  outline: 3px solid rgba(8, 123, 122, 0.16);
  outline-offset: 2px;
}

.guidance-lenses {
  margin: 0;
  padding: 30px;
  border: 0;
}

.guidance-lenses legend {
  padding: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
  font-weight: 700;
}

.guidance-help {
  margin: -6px 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.guidance-lens {
  display: grid;
  grid-template-columns: minmax(240px, 0.92fr) minmax(260px, 1fr) minmax(260px, 1fr);
  gap: 22px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.guidance-lenses--compact .guidance-lens {
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1.2fr);
}

.guidance-lens > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  min-width: 0;
}

.guidance-lens > div > span {
  grid-row: 1 / 3;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.guidance-lens > div > strong {
  color: var(--ink);
  font-size: 15px;
}

.guidance-lens > div > small {
  color: var(--muted);
}

.guidance-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(100px, 0.72fr) 28px;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.guidance-question input {
  width: 100%;
  accent-color: var(--teal);
}

.guidance-question output {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--night-2);
  font-size: 12px;
}

.guidance-consent {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px;
  border-top: 1px solid var(--line);
  background: #eef5f5;
}

.guidance-consent p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.guidance-consent .button {
  flex: 0 0 auto;
  border: 0;
}

.guidance-results {
  padding: 34px 30px;
  color: var(--white);
  background: var(--night);
  scroll-margin-top: 146px;
}

.guidance-results[hidden] {
  display: none;
}

.guidance-results h2 {
  margin-bottom: 10px;
  color: var(--white);
}

.guidance-results h2:focus {
  outline: none;
}

.guidance-results .eyebrow {
  color: #f0ca82;
}

.guidance-summary {
  max-width: 820px;
  color: #d8e3ee;
}

.guidance-score-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 26px;
}

.guidance-score-list span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: #d8e3ee;
  font-size: 12px;
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.recommendation-card {
  min-width: 0;
  padding: 22px;
  border-left: 3px solid var(--teal);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
}

.recommendation-card > span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.recommendation-card h3 {
  margin: 14px 0 10px;
  font-size: 20px;
}

.recommendation-card p {
  color: var(--muted);
  font-size: 14px;
}

.guidance-result-note {
  margin: 24px 0 0;
  color: #bfcddd;
  font-size: 13px;
}

.tutoring-hero {
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.tutoring-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: 66px;
  align-items: center;
  min-height: 620px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.tutoring-hero-copy h1 {
  max-width: 760px;
  color: var(--white);
}

.tutoring-hero-copy .page-lead {
  color: #d6e0eb;
}

.tutoring-hero-copy .eyebrow {
  color: #f0ca82;
}

.tutoring-hero-copy .button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: transparent;
}

.tutoring-trust-list {
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  color: #c9d5e2;
  list-style: none;
}

.tutoring-trust-list li {
  position: relative;
  padding-left: 22px;
}

.tutoring-trust-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6bc8bd;
  content: "";
}

.tutoring-hero-media {
  position: relative;
  min-width: 0;
}

.tutoring-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--deep-shadow);
}

.tutoring-media-note {
  display: grid;
  gap: 4px;
  margin: 12px 0 0;
  padding: 15px 18px;
  border-left: 3px solid #6bc8bd;
  color: #d8e3ee;
  background: #192a3c;
}

.tutoring-media-note strong {
  color: var(--white);
}

.tutoring-levels {
  border-bottom: 1px solid var(--line);
}

.tutoring-subjects {
  background: #edf4f5;
}

.tutoring-subject-list {
  display: grid;
  border-top: 1px solid #cddbdd;
}

.tutoring-subject-list div {
  display: grid;
  grid-template-columns: minmax(130px, 0.36fr) 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #cddbdd;
}

.tutoring-subject-list span {
  color: var(--muted);
}

.tutoring-process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tutoring-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  padding: 0;
  list-style: none;
}

.tutoring-steps li {
  min-width: 0;
  padding: 26px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tutoring-steps li:first-child {
  border-left: 1px solid var(--line);
}

.tutoring-steps > li > span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.tutoring-steps h3 {
  margin: 44px 0 10px;
}

.tutoring-steps p {
  margin: 0;
  color: var(--muted);
}

.tutoring-evidence {
  background: var(--paper);
}

.tutoring-safeguarding {
  padding-top: 0;
  background: var(--paper);
}

.tutoring-enquiry {
  color: var(--white);
  background: var(--teal);
}

.tutoring-enquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.tutoring-enquiry h2,
.tutoring-enquiry .eyebrow {
  color: var(--white);
}

.tutoring-enquiry p {
  max-width: 760px;
  color: #e1f4f1;
}

.tutoring-enquiry-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.tutoring-enquiry .button.primary {
  color: var(--ink);
  background: var(--white);
}

.tutoring-enquiry .text-link {
  color: var(--white);
}

@keyframes scanPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes energySweep {
  0%,
  100% {
    opacity: 0.25;
    transform: translateX(-12%);
  }

  50% {
    opacity: 1;
    transform: translateX(12%);
  }
}

.career-assessment {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef4f8;
}

.assessment-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 34px;
}

.assessment-intro h2 {
  margin: 8px 0 0;
}

.assessment-intro-copy {
  color: var(--muted);
}

.assessment-intro-copy p:first-child {
  margin-top: 0;
}

.career-assessment-form {
  overflow: hidden;
  border: 1px solid #cbd8e5;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 54px rgba(16, 24, 40, 0.09);
}

.assessment-progress {
  padding: 22px 28px 18px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.assessment-progress-copy {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.assessment-progress-copy strong {
  color: var(--ink);
}

.assessment-progress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 6px;
  background: #dbe4ee;
}

.assessment-progress-track span {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--blue);
  transition: width 220ms ease;
}

.assessment-progress ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.assessment-progress li {
  color: #7c8798;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.assessment-progress li.is-active {
  color: var(--blue);
}

.assessment-progress li.is-complete {
  color: var(--teal);
}

.assessment-step {
  padding: 34px 28px 18px;
}

.assessment-step[hidden],
.career-assessment-results[hidden] {
  display: none;
}

.assessment-step-heading {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 28px;
}

.assessment-step-heading > span {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--night);
  font-weight: 800;
}

.assessment-step-heading h3 {
  margin: 0 0 6px;
  font-size: 30px;
}

.assessment-step-heading p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
}

.assessment-field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.assessment-field-grid > label {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
}

.assessment-field--wide {
  grid-column: span 2;
}

.assessment-field-grid select,
.assessment-field-grid input[type="date"],
.assessment-field-grid textarea,
.situational-question-grid select,
.assessment-notes-field textarea {
  width: 100%;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid #c8d2de;
  border-radius: 5px;
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.assessment-field-grid textarea,
.assessment-notes-field textarea {
  resize: vertical;
}

.assessment-field-grid select:focus,
.assessment-field-grid input:focus,
.assessment-field-grid textarea:focus,
.situational-question-grid select:focus,
.assessment-notes-field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(31, 94, 255, 0.12);
}

.assessment-range-label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  gap: 10px;
  align-items: center;
  min-height: 44px;
}

.assessment-range-label output,
.trait-question-group output,
.interest-question-grid output,
.execution-question-grid output {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue);
  background: #f3f7ff;
  font-weight: 800;
}

.trait-question-groups {
  display: grid;
  gap: 18px;
}

.trait-question-group,
.interest-question-grid fieldset,
.visual-choice-question,
.video-scenario-question,
.readiness-question-list fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.trait-question-group legend,
.interest-question-grid legend,
.visual-choice-question > legend,
.video-scenario-question > legend,
.readiness-question-list legend {
  margin-left: 18px;
  padding: 0 8px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.trait-question-group > label {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(180px, 0.75fr) 34px;
  gap: 18px;
  align-items: center;
  padding: 15px 18px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
}

.trait-question-group > label:first-of-type {
  border-top: 0;
}

.trait-question-group input[type="range"],
.interest-question-grid input[type="range"],
.execution-question-grid input[type="range"],
.assessment-range-label input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}

.interest-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.interest-question-grid fieldset > label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 10px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
}

.interest-question-grid fieldset > label input {
  grid-column: 1 / -1;
  grid-row: 2;
}

.interest-question-grid fieldset > label output {
  grid-column: 2;
  grid-row: 1;
}

.visual-choice-question,
.video-scenario-question {
  margin-top: 28px;
  padding: 22px;
}

.visual-choice-question > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.visual-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.visual-choice-grid label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.visual-choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.visual-choice-grid label > span {
  display: grid;
  grid-template-rows: 132px minmax(60px, auto);
  height: 100%;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.visual-choice-grid img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  object-position: center;
}

.visual-choice-grid strong {
  display: grid;
  align-items: center;
  padding: 12px;
  font-size: 14px;
  line-height: 1.35;
}

.visual-choice-grid input:checked + span {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31, 94, 255, 0.12);
}

.visual-choice-grid input:focus-visible + span {
  outline: 3px solid rgba(31, 94, 255, 0.3);
  outline-offset: 2px;
}

.video-scenario-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.video-scenario-layout video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  background: var(--night);
}

.video-scenario-layout > div {
  display: grid;
  gap: 8px;
}

.video-scenario-layout p {
  margin: 0 0 6px;
  color: var(--muted);
}

.video-scenario-layout label,
.readiness-question-list label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--steel);
  background: #f8fafc;
  font-size: 14px;
  cursor: pointer;
}

.video-scenario-layout input,
.readiness-question-list input {
  flex: 0 0 auto;
  margin-top: 4px;
  accent-color: var(--blue);
}

.readiness-question-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.readiness-question-list fieldset {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 18px;
}

.readiness-question-list legend {
  margin-left: 0;
  padding: 0 5px;
  line-height: 1.4;
}

.situational-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--line);
}

.situational-question-grid label {
  display: grid;
  gap: 10px;
  padding: 18px;
  color: var(--steel);
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.execution-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.execution-question-grid label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: center;
  min-height: 126px;
  padding: 18px;
  color: var(--steel);
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.execution-question-grid input {
  grid-column: 1 / -1;
}

.execution-question-grid output {
  grid-column: 2;
  grid-row: 1;
}

.assessment-notes-field {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 800;
}

.assessment-consent {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding: 18px;
  border-left: 4px solid var(--teal);
  background: #edf8f5;
}

.assessment-consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 800;
}

.assessment-consent input {
  margin-top: 5px;
  accent-color: var(--teal);
}

.assessment-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.assessment-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 20px 28px 28px;
}

.assessment-navigation .button[hidden] {
  display: none;
}

.assessment-form-status {
  flex: 1 1 100%;
  min-height: 22px;
  margin: 0;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.career-assessment-results {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.career-assessment-results h2 {
  scroll-margin-top: 96px;
}

.assessment-result-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background: #101b2d;
}

.assessment-result-overview .eyebrow {
  color: #86d8d1;
}

.assessment-result-overview h2 {
  margin: 8px 0 10px;
  color: var(--white);
}

.assessment-result-overview p {
  color: #d6deea;
}

.assessment-result-goal {
  font-weight: 800;
}

.assessment-result-score {
  display: grid;
  min-height: 180px;
  place-items: center;
  align-content: center;
  padding: 20px;
  border: 1px solid #41526a;
  border-radius: 8px;
  text-align: center;
  background: #18283e;
}

.assessment-result-score span,
.assessment-result-score small {
  color: #cbd6e5;
}

.assessment-result-score strong {
  margin: 4px 0;
  color: var(--white);
  font-size: 42px;
  line-height: 1;
}

.assessment-result-section {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.assessment-result-section > h3 {
  margin: 8px 0 24px;
}

.assessment-result-grid,
.assessment-interest-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.assessment-factor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.assessment-meter {
  min-width: 0;
}

.assessment-meter-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.assessment-meter-heading span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.assessment-meter-track {
  height: 8px;
  overflow: hidden;
  border-radius: 7px;
  background: #e3e9f1;
}

.assessment-meter-fill {
  display: block;
  height: 100%;
  background: var(--teal);
}

.assessment-meter p,
.assessment-alignment-note,
.assessment-readiness-summary p,
.assessment-action-plan > p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.assessment-alignment-note,
.assessment-readiness-summary {
  margin-top: 22px;
  padding: 16px;
  border-left: 4px solid var(--amber);
  background: #fbf6eb;
}

.assessment-readiness-summary {
  display: grid;
  gap: 6px;
}

.assessment-readiness-summary p {
  margin: 0;
}

.assessment-priority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.assessment-priority-card {
  padding: 20px;
  border-top: 4px solid var(--amber);
  background: #f8fafc;
}

.assessment-priority-card > span {
  color: var(--amber);
  font-weight: 800;
}

.assessment-priority-card h4 {
  margin: 24px 0 8px;
}

.assessment-priority-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.assessment-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 22px 0;
  padding: 1px;
  background: var(--line);
  list-style: none;
}

.assessment-plan-grid li {
  min-height: 150px;
  padding: 18px;
  background: #f8fafc;
  font-size: 14px;
}

.assessment-action-plan .button {
  width: fit-content;
}

.assessment-consultancy-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border: 1px solid #b9d8d2;
  border-radius: 8px;
  background: #eaf7f4;
}

.assessment-consultancy-cta h3 {
  margin: 8px 0 10px;
}

.assessment-consultancy-cta p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.assessment-consultancy-actions {
  display: grid;
  gap: 10px;
  min-width: 270px;
}

.assessment-reset-button {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.assessment-disclaimer,
.assessment-method-note {
  color: var(--muted);
  font-size: 13px;
}

.assessment-method-note {
  margin-top: 22px;
}

.assessment-method-note a {
  color: var(--teal);
  font-weight: 800;
}

.delivery-studio {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f3f7fb;
}

.service-studio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 34px;
  align-items: start;
}

.service-studio-main {
  min-width: 0;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 28px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-tabs button {
  min-height: 48px;
  padding: 10px 14px;
  color: var(--muted);
  border: 0;
  border-radius: 5px;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.service-tabs button:hover {
  color: var(--ink);
  background: #edf3f9;
}

.service-tabs button[aria-selected="true"] {
  color: var(--white);
  background: var(--night);
}

.service-tabs button:focus-visible {
  outline: 3px solid rgba(31, 94, 255, 0.3);
  outline-offset: 2px;
}

.service-route-panel {
  min-height: 360px;
  padding: 10px 0 0;
}

.service-route-panel[hidden] {
  display: none;
}

.service-route-panel h3 {
  max-width: 640px;
  margin: 10px 0 24px;
  font-size: 34px;
}

.service-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-route-grid div {
  display: grid;
  gap: 7px;
  min-height: 132px;
  padding: 22px;
  background: var(--white);
}

.service-route-grid strong {
  color: var(--ink);
}

.service-route-grid span {
  color: var(--muted);
  font-size: 14px;
}

.project-brief-tool {
  padding: 26px;
  border: 1px solid #ccd8e6;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.project-brief-tool h3 {
  margin: 8px 0 20px;
  font-size: 28px;
}

.project-brief-tool form {
  display: grid;
  gap: 14px;
}

.project-brief-tool label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
}

.project-brief-tool select,
.project-brief-tool textarea {
  width: 100%;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid #cbd5e1;
  border-radius: 5px;
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.project-brief-tool textarea {
  min-height: 94px;
  resize: vertical;
}

.project-brief-tool select:focus,
.project-brief-tool textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(31, 94, 255, 0.12);
}

.project-brief-tool .button {
  width: 100%;
}

.project-brief-email[hidden] {
  display: none;
}

.digital-delivery-section {
  border-top: 1px solid var(--line);
  background: #f7fafc;
}

.capability-grid--digital {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-grid--digital .capability-card {
  min-height: 300px;
}

.audio-cover-image {
  display: block;
  width: 140px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(8, 17, 31, 0.13);
}

.audio-card-content > audio {
  width: 100%;
  margin-top: 18px;
}

.publication-card--featured {
  border-color: #b8cde0;
  box-shadow: 0 18px 44px rgba(8, 48, 82, 0.12);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand {
    min-width: auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: fixed;
    inset: 78px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    min-height: 52px;
    border-bottom: 1px solid var(--line);
  }

  h1 {
    font-size: 46px;
  }

  .hero h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .signal-grid,
  .service-grid,
  .service-studio-layout,
  .innovation-layout,
  .product-card,
  .courses-layout,
  .split-layout,
  .contact-layout,
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .signal-grid {
    align-items: start;
    padding: 22px 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-grid,
  .app-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-gallery {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-stage {
    aspect-ratio: 4 / 3;
  }

  .showroom-reel {
    grid-template-columns: 1fr;
  }

  .courses-copy {
    position: static;
  }

  .featured-app {
    grid-column: 1 / -1;
  }

  .app-download-feature,
  .account-layout,
  .resource-section-heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .app-download-visual {
    min-height: 340px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .download-channel-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid,
  .capability-grid,
  .research-grid,
  .project-evidence-grid,
  .article-topic-grid--research,
  .pathway-grid,
  .external-course-grid,
  .trade-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .academy-feature-grid,
  .evidence-callout-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .security-proof-strip .container {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .security-proof-strip span,
  .security-proof-strip span:last-child {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .security-proof-strip span:last-child {
    border-bottom: 0;
  }

  .publication-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .document-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .people-showcase {
    height: 760px;
    min-height: 760px;
  }

  .people-copy h3 {
    font-size: 64px;
  }

  .people-slide--ceo .people-slide-media img {
    object-position: 58% center;
  }

  .slider {
    min-height: 500px;
  }

  .guidance-intro,
  .tutoring-hero-grid,
  .tutoring-enquiry-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .guidance-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guidance-studio--reader .guidance-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guidance-fields label:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .guidance-fields label:nth-child(2n) {
    border-right: 0;
  }

  .guidance-fields label:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .guidance-fields label:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .guidance-studio--reader .guidance-fields label,
  .guidance-studio--reader .guidance-fields label:nth-child(3n),
  .guidance-studio--reader .guidance-fields label:nth-last-child(-n + 3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .guidance-studio--reader .guidance-fields label:nth-child(2n) {
    border-right: 0;
  }

  .guidance-studio--reader .guidance-fields label:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .guidance-lens,
  .guidance-lenses--compact .guidance-lens {
    grid-template-columns: minmax(0, 1fr);
  }

  .recommendation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tutoring-hero-grid {
    min-height: 0;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .tutoring-hero-media {
    max-width: 540px;
  }

  .tutoring-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tutoring-steps li:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .tutoring-steps li:nth-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    min-height: 70px;
    padding: 0 14px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 12px;
  }

  .brand-logo,
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .site-nav.is-open {
    top: 70px;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    padding: 28px 0 26px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

  .hero-brand-lockup {
    width: 170px;
    margin-top: -10px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .people-showcase {
    height: 720px;
    min-height: 720px;
  }

  .people-slide--ceo .people-slide-media img {
    object-position: 61% center;
  }

  .people-slide--product .people-slide-media img,
  .people-slide--product-remote .people-slide-media img {
    width: 100%;
    height: 64%;
    margin: 0;
    padding: 16px;
    object-fit: contain;
    object-position: center top;
  }

  .people-slide--product .people-slide-shade {
    background: linear-gradient(180deg, rgba(8, 17, 31, 0.02) 0%, rgba(8, 17, 31, 0.2) 36%, rgba(8, 17, 31, 0.97) 63%, rgba(8, 17, 31, 1) 100%);
  }

  .people-slide-shade,
  .people-slide--education .people-slide-shade,
  .people-slide--innovation .people-slide-shade {
    background:
      linear-gradient(90deg, rgba(5, 11, 22, 0.84) 0%, rgba(5, 11, 22, 0.62) 70%, rgba(5, 11, 22, 0.18) 100%),
      linear-gradient(180deg, rgba(3, 7, 14, 0.08), rgba(3, 7, 14, 0.48));
  }

  .people-slide-content {
    align-items: flex-end;
    padding: 70px 0 116px;
  }

  .people-copy h3 {
    max-width: 360px;
    margin-bottom: 20px;
    font-size: 48px;
  }

  .people-slide--product .people-copy h3 {
    font-size: 42px;
  }

  .hero-lead,
  .section-heading p:not(.eyebrow),
  .split-layout p,
  .contact-copy p,
  .people-lead {
    font-size: 17px;
  }

  .people-copy blockquote {
    margin: 0 0 20px;
    padding-left: 18px;
    font-size: 16px;
  }

  .showcase-button {
    width: fit-content;
    min-width: 170px;
  }

  .ceo-signature {
    margin-bottom: 20px;
  }

  .showcase-controls {
    right: 14px;
    bottom: 18px;
    left: 14px;
    justify-content: space-between;
    gap: 8px;
  }

  .showcase-dots button {
    width: 20px;
  }

  .hero-actions {
    flex-direction: column;
    margin-bottom: 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .button {
    width: 100%;
  }

  .hero-metrics,
  .process-grid,
  .course-grid,
  .app-showcase,
  .download-channel-grid,
  .resource-grid,
  .download-meta,
  .account-facts,
  .audience-grid,
  .capability-grid,
  .research-grid,
  .research-list,
  .pathway-grid,
  .external-course-grid,
  .publication-grid,
  .audio-grid,
  .article-topic-grid,
  .trade-product-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics div {
    padding: 11px 8px;
  }

  .hero-metrics dt {
    font-size: 13px;
  }

  .hero-metrics dd {
    font-size: 11px;
  }

  .project-evidence-card {
    min-height: 0;
    padding: 22px;
  }

  .audience-card,
  .account-route-grid .audience-card,
  .capability-card,
  .pathway-grid article,
  .external-course-grid a,
  .research-list article,
  .article-topic-grid article {
    min-height: 0;
  }

  .academy-feature-grid {
    gap: 28px;
  }

  .academy-feature-media img,
  .app-download-visual--wide img {
    aspect-ratio: 4 / 3;
  }

  .numbered-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .evidence-callout-inner {
    gap: 20px;
  }

  .inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .service-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .status-legend .container {
    gap: 10px 18px;
    padding: 14px 0;
  }

  .research-card--featured {
    grid-column: auto;
  }

  .research-card-media,
  .research-card-image {
    aspect-ratio: 4 / 3;
  }

  .publication-card {
    grid-template-columns: 1fr;
  }

  .publication-cover-link,
  .publication-cover-image {
    min-height: 420px;
  }

  .publication-cover-link {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .document-card {
    grid-template-columns: 1fr;
  }

  .document-card > a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .document-card > a img {
    min-height: 360px;
  }

  .book-cover {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .audio-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
    padding: 22px;
  }

  .audio-symbol {
    width: 88px;
    font-size: 24px;
  }

  .audio-card--complete .audio-symbol {
    width: 88px;
  }

  .audio-card--complete {
    grid-template-columns: 1fr;
  }

  .audio-cover-image {
    width: min(180px, 100%);
  }

  .service-tabs,
  .service-route-grid,
  .capability-grid--digital {
    grid-template-columns: 1fr;
  }

  .service-route-panel {
    min-height: 0;
  }

  .service-route-panel h3 {
    font-size: 28px;
  }

  .service-route-grid div {
    min-height: 0;
  }

  .audiobook-player {
    padding: 16px;
  }

  .audiobook-chapter-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .people-slide--publication .people-slide-media img,
  .people-slide--apps .people-slide-media img {
    width: 100%;
    height: 61%;
    margin: 0;
    padding: 18px;
    object-fit: contain;
    object-position: center top;
  }

  .people-slide--publication .people-slide-shade,
  .people-slide--apps .people-slide-shade {
    background: linear-gradient(180deg, rgba(8, 17, 31, 0.02) 0%, rgba(8, 17, 31, 0.24) 34%, rgba(8, 17, 31, 0.98) 62%, #08111f 100%);
  }

  .showcase-actions {
    width: 100%;
  }

  .showcase-actions .showcase-button {
    flex: 1 1 150px;
    min-width: 0;
  }

  .showcase-dots {
    gap: 5px;
  }

  .showcase-dots button {
    width: 14px;
  }

  .showcase-count {
    display: none;
  }

  .app-release + .app-release {
    padding-top: 64px;
  }

  .featured-app {
    grid-template-columns: 1fr;
  }

  .featured-app-media {
    justify-content: flex-start;
    text-align: left;
  }

  .download-meta div,
  .account-facts div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .download-meta div:last-child,
  .account-facts div:last-child {
    border-bottom: 0;
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero-inner {
    padding: 70px 0 54px;
  }

  .page-hero-inner > p:not(.eyebrow) {
    font-size: 17px;
  }

  .article-layout {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .article-content {
    font-size: 17px;
  }

  .resource-tabs {
    top: 70px;
  }

  .resource-tabs .container {
    gap: 22px;
    overflow-x: auto;
  }

  .account-panel,
  .login-panel,
  .access-panel,
  .resource-empty {
    padding: 24px 20px;
  }

  .section {
    padding: 64px 0;
  }

  .service-card,
  .process-grid article,
  .product-card,
  .course-card,
  .app-card,
  .featured-app {
    min-height: 0;
  }

  .product-gallery {
    padding: 14px;
  }

  .product-stage {
    aspect-ratio: 1 / 1;
  }

  .product-thumb {
    flex-basis: 60px;
    width: 60px;
    height: 60px;
  }

  .product-details {
    padding: 24px 20px;
  }

  .product-label-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .product-card h3 {
    font-size: 26px;
  }

  .product-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-call {
    justify-content: center;
  }

  .showroom-reel {
    gap: 22px;
    padding: 26px 0;
  }

  .product-visual,
  .app-screen {
    height: 150px;
  }

  .contact-form {
    padding: 20px;
  }

  .slider {
    min-height: 560px;
    padding: 16px;
  }

  .slider-track,
  .slide {
    min-height: 460px;
  }

  .slide {
    padding: 22px;
  }

  .slide h3 {
    font-size: 24px;
  }

  .slide-visual {
    position: relative;
    inset: auto;
    width: 100%;
    height: 160px;
    margin-bottom: 24px;
  }

  .slider-controls {
    gap: 10px;
  }

  .slider-button {
    min-width: 72px;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .guidance-intro {
    gap: 18px;
    margin-bottom: 22px;
  }

  .guidance-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .guidance-studio--reader .guidance-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .guidance-fields label,
  .guidance-fields label:nth-child(2n),
  .guidance-fields label:nth-child(4n),
  .guidance-fields label:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .guidance-fields label:last-child {
    border-bottom: 0;
  }

  .guidance-studio--reader .guidance-fields label,
  .guidance-studio--reader .guidance-fields label:nth-child(2n),
  .guidance-studio--reader .guidance-fields label:nth-child(3n),
  .guidance-studio--reader .guidance-fields label:nth-last-child(-n + 2),
  .guidance-studio--reader .guidance-fields label:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .guidance-studio--reader .guidance-fields label:last-child {
    border-bottom: 0;
  }

  .guidance-lenses {
    padding: 24px 18px;
  }

  .guidance-lenses legend {
    font-size: 23px;
  }

  .guidance-question {
    grid-template-columns: minmax(0, 1fr) 28px;
  }

  .guidance-question input {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .guidance-question output {
    grid-column: 2;
    grid-row: 1;
  }

  .guidance-consent {
    align-items: stretch;
    flex-direction: column;
    padding: 20px 18px;
  }

  .guidance-consent .button {
    width: 100%;
  }

  .guidance-results {
    padding: 28px 18px;
  }

  .recommendation-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tutoring-hero-grid {
    gap: 34px;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .tutoring-hero-copy .inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .tutoring-hero-copy .button {
    width: 100%;
  }

  .tutoring-subject-list div {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .tutoring-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .tutoring-steps li,
  .tutoring-steps li:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 0;
    border-left: 1px solid var(--line);
  }

  .tutoring-steps li:last-child {
    border-bottom: 1px solid var(--line);
  }

  .tutoring-steps h3 {
    margin-top: 18px;
  }
}

@media (max-width: 960px) {
  .assessment-intro,
  .video-scenario-layout,
  .assessment-result-overview,
  .assessment-consultancy-cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .assessment-field-grid,
  .assessment-result-grid,
  .assessment-interest-results,
  .assessment-factor-grid,
  .assessment-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assessment-field--wide {
    grid-column: 1 / -1;
  }

  .assessment-result-score {
    min-height: 140px;
  }

  .assessment-priority-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .assessment-consultancy-actions {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .assessment-intro {
    gap: 20px;
  }

  .assessment-progress {
    padding: 18px 16px 14px;
  }

  .assessment-progress-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .assessment-progress ol {
    gap: 3px;
  }

  .assessment-progress li {
    overflow-wrap: anywhere;
    font-size: 10px;
  }

  .assessment-step {
    padding: 26px 16px 12px;
  }

  .assessment-step-heading {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .assessment-step-heading > span {
    width: 40px;
  }

  .assessment-step-heading h3 {
    font-size: 25px;
  }

  .assessment-field-grid,
  .interest-question-grid,
  .visual-choice-grid,
  .readiness-question-list,
  .situational-question-grid,
  .execution-question-grid,
  .assessment-result-grid,
  .assessment-interest-results,
  .assessment-factor-grid,
  .assessment-plan-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .assessment-field--wide {
    grid-column: auto;
  }

  .trait-question-group > label {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 10px;
  }

  .trait-question-group > label input {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .trait-question-group > label output {
    grid-column: 2;
    grid-row: 1;
  }

  .visual-choice-grid label > span {
    grid-template-rows: 180px auto;
  }

  .visual-choice-grid img {
    height: 180px;
  }

  .visual-choice-question,
  .video-scenario-question {
    padding: 16px;
  }

  .assessment-navigation {
    align-items: stretch;
    flex-direction: column;
    padding: 18px 16px 24px;
  }

  .assessment-navigation .button {
    width: 100%;
  }

  .assessment-result-overview,
  .assessment-result-section,
  .assessment-consultancy-cta {
    padding: 22px 18px;
  }

  .assessment-result-score {
    min-height: 126px;
  }

  .assessment-plan-grid li {
    min-height: 0;
  }

  .assessment-action-plan .button {
    width: 100%;
  }
}

.people-showcase--security {
  height: min(74svh, 760px);
  min-height: 620px;
}

.people-showcase--security .people-slide-media img {
  object-position: center;
  filter: saturate(0.9) contrast(1.03) brightness(0.94);
}

.people-showcase--security .people-slide--security-access .people-slide-media img {
  object-position: center 44%;
}

.people-showcase--security .people-copy {
  max-width: 720px;
}

.people-showcase--security .people-copy h3 {
  max-width: 720px;
  margin-bottom: 20px;
  font-family: Inter, Arial, sans-serif;
  font-size: 64px;
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: 0;
}

.people-showcase--security .people-copy blockquote {
  max-width: 660px;
  font-size: 18px;
}

.services-visual-section {
  border-bottom: 1px solid var(--line);
  background: #f4f7fa;
}

.services-visual-grid,
.research-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-visual,
.research-media-grid figure,
.academy-media-grid figure {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 17, 31, 0.07);
}

.service-visual img,
.research-media-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-visual figcaption,
.research-media-grid figcaption,
.academy-media-grid figcaption {
  display: grid;
  gap: 7px;
  padding: 20px;
}

.service-visual figcaption span,
.research-media-grid figcaption span,
.academy-media-grid figcaption span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.academy-future-lab {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f4f7fa;
}

.academy-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.academy-media-feature {
  grid-column: 1 / -1;
}

.academy-media-grid img,
.academy-media-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b1320;
  object-fit: cover;
}

.academy-media-feature img {
  aspect-ratio: 16 / 7;
  object-position: center 48%;
}

.research-card-image--cover {
  padding: 0;
  object-fit: cover;
}

.research-visual-brief {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f4f7fa;
}

.security-product-section {
  border-bottom: 1px solid var(--line);
  background: #f4f7fa;
}

.security-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.security-product-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.trade-feature-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
}

.accessory-showroom {
  background: var(--white);
}

.retailer-showroom-reel {
  margin-top: 46px;
}

.people-showcase--security .people-slide-content {
  padding-bottom: 154px;
}

.people-showcase--security .showcase-controls {
  bottom: 68px;
}

.showcase-page-links {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow-x: auto;
  padding: 7px max(18px, calc((100% - var(--container)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(5, 12, 24, 0.82);
  backdrop-filter: blur(14px);
  scrollbar-width: thin;
}

.showcase-page-links a {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
}

.showcase-page-links a:hover,
.showcase-page-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.people-operating-model,
.contact-routes,
.contact-process {
  background: #f4f7fa;
}

.people-role-grid,
.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.people-role,
.contact-route-grid article {
  min-width: 0;
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.people-role > span,
.contact-route-grid article > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.people-role h3,
.contact-route-grid h3 {
  margin: 44px 0 12px;
}

.people-role p,
.contact-route-grid p {
  color: var(--muted);
}

.people-at-work {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.people-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.people-media-grid figure {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 17, 31, 0.07);
}

.people-media-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.people-media-grid figcaption {
  display: grid;
  gap: 7px;
  padding: 20px;
}

.people-media-grid figcaption span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.people-principles {
  background: #f4f7fa;
}

.contact-page-form {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.contact-mail-note {
  margin-top: 26px;
  padding: 14px 16px;
  border-left: 3px solid var(--amber);
  background: #fbf7ee;
  font-size: 14px !important;
}

.contact-process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.contact-process-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
  padding: 24px;
  border-top: 3px solid var(--teal);
  background: var(--white);
}

.contact-process-list li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  background: var(--night);
  font-weight: 800;
}

.contact-process-list h3 {
  margin: 4px 0 10px;
}

.contact-process-list p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand {
    min-width: auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: fixed;
    inset: 78px 0 auto 0;
    display: grid;
    gap: 0;
    max-height: calc(100svh - 78px);
    overflow-y: auto;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    min-height: 52px;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 960px) {
  .people-showcase--security {
    height: 700px;
    min-height: 700px;
  }

  .people-showcase--security .people-copy h3 {
    max-width: 620px;
    font-size: 50px;
  }

  .services-visual-grid,
  .research-media-grid,
  .people-role-grid,
  .contact-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .research-media-grid figure:last-child {
    grid-column: 1 / -1;
  }

  .contact-process-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  .people-showcase--security {
    height: 660px;
    min-height: 660px;
  }

  .people-showcase--security .people-slide-content {
    align-items: flex-end;
    padding: 92px 0 170px;
  }

  .people-showcase--security .people-copy h3 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.08;
  }

  .people-showcase--security .people-copy blockquote {
    padding-left: 18px;
    font-size: 16px;
  }

  .services-visual-grid,
  .research-media-grid,
  .security-product-grid,
  .academy-media-grid,
  .people-role-grid,
  .contact-route-grid,
  .people-media-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .research-media-grid figure:last-child,
  .academy-media-feature {
    grid-column: auto;
  }

  .academy-media-feature img,
  .academy-media-grid img,
  .academy-media-grid video {
    aspect-ratio: 4 / 3;
  }

  .showcase-page-links {
    justify-content: flex-start;
    padding-right: 14px;
    padding-left: 14px;
  }

  .people-role,
  .contact-route-grid article {
    min-height: 0;
  }

  .contact-process-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 20px 16px;
  }

  .contact-process-list li > span {
    width: 38px;
    height: 38px;
  }

  .site-nav.is-open {
    inset: 70px 0 auto 0;
    max-height: calc(100svh - 70px);
  }
}

@media print {
  .site-header,
  .site-footer,
  .page-hero,
  .academy-feature,
  .learning-pathway,
  .career-assessment > .assessment-intro,
  .career-assessment-form,
  .assessment-method-note,
  .assessment-reset-button,
  .assessment-consultancy-actions,
  .assessment-principles,
  .course-library,
  .apprenticeship-band {
    display: none !important;
  }

  .career-assessment,
  .career-assessment-results {
    padding: 0;
    background: var(--white);
  }

  .career-assessment-results {
    display: block !important;
  }

  .career-assessment-results > * {
    break-inside: avoid;
    margin-bottom: 16px;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* v1.12 leadership and protected owner publishing */
.ceo-profile {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.ceo-profile-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}

.ceo-portrait {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #101828;
}

.ceo-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ceo-message h2 {
  max-width: 680px;
  margin: 8px 0 22px;
}

.ceo-message blockquote {
  margin: 0 0 22px;
  padding-left: 22px;
  border-left: 3px solid var(--teal);
  color: var(--night);
  font-size: 20px;
  line-height: 1.65;
}

.ceo-facts {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.ceo-facts div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.ceo-facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.ceo-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 600;
}

.owner-publisher-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f4f7fa;
}

.owner-publisher {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(8, 17, 31, 0.07);
}

.publisher-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.publisher-grid label {
  display: grid;
  min-width: 0;
  gap: 8px;
  color: var(--night);
  font-weight: 700;
}

.publisher-field--wide {
  grid-column: 1 / -1;
}

.publisher-grid input[type="text"],
.publisher-grid input[type="file"],
.publisher-grid select,
.publisher-grid textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
}

.publisher-grid input[type="file"] {
  padding: 10px;
}

.publisher-grid textarea {
  resize: vertical;
}

.publisher-grid small,
.publisher-security-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.publisher-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.publisher-security-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.publisher-notice {
  margin-bottom: 20px;
  padding: 14px 18px;
  border: 1px solid #8dd9c9;
  border-radius: 6px;
  background: #e9faf5;
  color: #0b5b4d;
}

.publisher-notice--warning {
  border-color: #e7c56c;
  background: #fff8df;
  color: #74510a;
}

.publisher-notice p {
  margin: 0 0 4px;
}

@media (max-width: 760px) {
  .ceo-profile-grid,
  .publisher-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .publisher-field--wide {
    grid-column: auto;
  }

  .ceo-facts div {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }
}

/* v1.15 compact holographic navigation and content decks */
.holo-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  isolation: isolate;
  background: #07121c;
  color: #ffffff;
}

.holo-hero-backdrop,
.holo-hero-glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.holo-hero-backdrop {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
}

.holo-hero-glow {
  z-index: -2;
  background: rgba(3, 12, 22, 0.38);
  box-shadow: inset 0 -160px 180px rgba(3, 12, 22, 0.78);
}

.holo-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(470px, 0.96fr);
  align-items: center;
  gap: 34px;
  min-height: 0;
  padding-top: 44px;
  padding-bottom: 52px;
}

.holo-copy {
  position: relative;
  z-index: 4;
  max-width: 590px;
}

.holo-brand-lockup {
  width: 180px;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(151, 226, 242, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
}

.holo-brand-lockup img {
  display: block;
  width: 100%;
  height: auto;
}

.holo-copy .eyebrow {
  color: #69d8e7;
}

.holo-copy h1 {
  max-width: 720px;
  margin: 8px 0 18px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: clamp(40px, 4.7vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.holo-lead {
  max-width: 620px;
  margin: 0;
  color: #c8d7e3;
  font-size: 17px;
  line-height: 1.7;
}

.holo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.holo-secondary {
  border-color: rgba(198, 232, 239, 0.48);
  background: transparent;
  color: #ffffff;
}

.holo-secondary:hover,
.holo-secondary:focus-visible {
  border-color: #69d8e7;
  background: rgba(105, 216, 231, 0.12);
  color: #ffffff;
}

.holo-progress {
  display: grid;
  grid-template-columns: auto minmax(100px, 220px) auto;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  margin-top: 28px;
  color: #9eb5c5;
  font-size: 12px;
  font-weight: 700;
}

.holo-progress i {
  display: block;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.holo-progress b {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: #69d8e7;
}

.holo-progress b.is-running {
  animation: holo-progress 6.5s linear forwards;
}

.holo-console {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  justify-self: end;
}

.holo-rings,
.holo-rings span,
.holo-core,
.holo-context-image {
  position: absolute;
  border-radius: 50%;
}

.holo-rings {
  inset: 13%;
  border: 1px solid rgba(91, 215, 235, 0.7);
  box-shadow: 0 0 40px rgba(44, 166, 217, 0.34), inset 0 0 28px rgba(44, 166, 217, 0.18);
  animation: holo-spin 24s linear infinite;
}

.holo-rings::before,
.holo-rings::after {
  content: "";
  position: absolute;
  border: 2px solid transparent;
  border-top-color: #6ce1ef;
  border-bottom-color: #c49a47;
  border-radius: 50%;
}

.holo-rings::before {
  inset: 8%;
}

.holo-rings::after {
  inset: 20%;
  transform: rotate(38deg);
}

.holo-rings span:nth-child(1) { inset: -6%; border: 1px dashed rgba(105, 216, 231, 0.48); }
.holo-rings span:nth-child(2) { inset: 15%; border: 1px solid rgba(105, 216, 231, 0.32); }
.holo-rings span:nth-child(3) { inset: 31%; border: 1px dashed rgba(196, 154, 71, 0.48); }

.holo-context-image {
  z-index: 1;
  inset: 29%;
  width: 42%;
  height: 42%;
  border: 1px solid rgba(174, 236, 245, 0.76);
  object-fit: cover;
  opacity: 0.76;
  box-shadow: 0 0 42px rgba(44, 166, 217, 0.42);
  transition: opacity 220ms ease, transform 420ms ease;
}

.holo-context-image.is-changing {
  opacity: 0;
  transform: scale(0.9);
}

.holo-core {
  z-index: 3;
  inset: 39%;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 12px;
  background: rgba(247, 251, 253, 0.94);
  box-shadow: 0 0 44px rgba(105, 216, 231, 0.5);
}

.holo-core img {
  width: 86%;
  height: auto;
}

.holo-core small {
  margin-top: 4px;
  color: #0a5062;
  font-size: 7px;
  font-weight: 800;
}

.holo-node {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(133, 222, 237, 0.62);
  border-radius: 4px;
  background: rgba(5, 22, 34, 0.26);
  color: #d8edf2;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(7px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.holo-node span {
  color: #69d8e7;
  font-size: 10px;
}

.holo-node:hover,
.holo-node:focus-visible {
  border-color: #ffffff;
  transform: translateY(-2px);
}

.holo-node.is-active {
  border-color: #2f77ff;
  background: #1f5eff !important;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(31, 94, 255, 0.34);
}

.holo-node.is-active span { color: #ffffff; }
.holo-node:nth-child(1) { top: 4%; left: 36%; }
.holo-node:nth-child(2) { top: 25%; right: 0; }
.holo-node:nth-child(3) { right: 5%; bottom: 18%; }
.holo-node:nth-child(4) { bottom: 3%; left: 34%; }
.holo-node:nth-child(5) { bottom: 19%; left: 0; }
.holo-node:nth-child(6) { top: 25%; left: 0; }

.holo-console-controls {
  position: absolute;
  z-index: 6;
  right: 20%;
  bottom: 0;
  display: flex;
  gap: 8px;
}

.holo-console-controls button,
.deck-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(105, 216, 231, 0.52);
  border-radius: 4px;
  background: transparent;
  color: currentColor;
  font: inherit;
  cursor: pointer;
}

.holo-console-controls button:hover,
.holo-console-controls button:focus-visible,
.deck-controls button:hover,
.deck-controls button:focus-visible {
  border-color: currentColor;
  background: rgba(105, 216, 231, 0.14);
}

.holo-quick-links {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 7;
  display: flex;
  gap: 22px;
}

.holo-quick-links a {
  color: #a9c3d0;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.holo-quick-links a:hover,
.holo-quick-links a:focus-visible { color: #ffffff; }

.people-showcase--security {
  display: none;
}

.services-command-hero {
  padding: 58px 0 48px;
  background: #0d1724;
  color: #ffffff;
}

.services-command-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 28px;
}

.services-command-heading h1 {
  max-width: 800px;
  margin: 6px 0 0;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.03;
}

.services-command-heading > p {
  margin: 0;
  color: #b9c8d4;
  line-height: 1.7;
}

.services-command-shell {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 410px;
  border: 1px solid rgba(167, 199, 218, 0.25);
  border-radius: 6px;
  overflow: hidden;
  background: #111f2e;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.services-command-tabs {
  display: grid;
  align-content: stretch;
  border-right: 1px solid rgba(167, 199, 218, 0.2);
}

.services-command-tabs button {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 18px;
  border: 0;
  border-bottom: 1px solid rgba(167, 199, 218, 0.16);
  background: transparent;
  color: #b8c7d1;
  text-align: left;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.services-command-tabs button span {
  color: #69d8e7;
  font-size: 10px;
}

.services-command-tabs button.is-active {
  background: #1f5eff;
  color: #ffffff;
}

.services-command-tabs button.is-active span { color: #ffffff; }

.services-command-stage,
.services-command-panel { min-width: 0; }

.services-command-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  min-height: 410px;
}

.services-command-panel[hidden] { display: none; }

.services-command-panel > img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.services-command-panel > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.services-command-panel h2 {
  margin: 6px 0 14px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.12;
}

.services-command-panel p:not(.eyebrow),
.services-command-panel li { color: #c3d0da; }

.services-command-panel ul {
  margin: 12px 0 22px;
  padding-left: 18px;
  line-height: 1.75;
}

.services-command-panel .button { align-self: flex-start; }

.deck-section-heading {
  position: relative;
  padding-right: 108px;
}

.deck-controls {
  position: absolute;
  right: 0;
  bottom: 2px;
  display: flex;
  gap: 8px;
  color: var(--ink);
}

.compact-scroll-deck {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  padding-bottom: 18px;
  scrollbar-color: #91a8bc transparent;
  scrollbar-width: thin;
}

.compact-scroll-deck > * {
  flex: 0 0 min(360px, calc(86vw - 32px));
  min-width: 0;
  scroll-snap-align: start;
}

.compact-scroll-deck.publication-grid > * {
  flex-basis: min(440px, calc(90vw - 32px));
  grid-column: auto !important;
}

.guidance-studio--reader {
  padding-top: 34px;
  padding-bottom: 34px;
}

.guidance-disclosure {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.guidance-disclosure > summary {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 92px;
  padding: 20px 24px;
  list-style: none;
  cursor: pointer;
}

.guidance-disclosure > summary::-webkit-details-marker { display: none; }
.guidance-disclosure > summary span { color: var(--teal); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.guidance-disclosure > summary strong { font-size: 20px; }
.guidance-disclosure > summary small { color: var(--muted); }
.guidance-disclosure[open] > summary { border-bottom: 1px solid var(--line); }
.guidance-disclosure .guidance-intro { padding: 34px 34px 0; }
.guidance-disclosure .guidance-form { margin: 0; padding: 30px 34px 34px; box-shadow: none; }

@keyframes holo-spin { to { transform: rotate(360deg); } }
@keyframes holo-progress { to { transform: scaleX(1); } }

@media (max-width: 980px) {
  .holo-hero-layout {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 44px;
  }

  .holo-copy { max-width: 760px; }
  .holo-console { justify-self: center; }
  .services-command-heading { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .services-command-shell { grid-template-columns: minmax(0, 1fr); }
  .services-command-tabs { grid-template-columns: repeat(4, minmax(0, 1fr)); border-right: 0; border-bottom: 1px solid rgba(167, 199, 218, 0.2); }
  .services-command-tabs button { grid-template-columns: minmax(0, 1fr); gap: 4px; min-height: 74px; }
}

@media (max-width: 700px) {
  .holo-hero { min-height: 748px; }
  .holo-hero-layout { display: block; min-height: 0; padding-top: 32px; padding-bottom: 28px; }
  .holo-brand-lockup { width: 150px; margin-bottom: 18px; }
  .holo-copy h1 { font-size: 36px; line-height: 1.04; }
  .holo-lead { font-size: 15px; }
  .holo-actions { margin-top: 20px; }
  .holo-progress { margin-top: 20px; }
  .holo-console { width: 100%; height: auto; aspect-ratio: auto; margin-top: 14px; }
  .holo-rings,
  .holo-context-image,
  .holo-core { display: none; }
  .holo-node { position: static; flex: 0 0 auto; min-height: 38px; }
  .holo-orbit { position: static; z-index: 7; display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 6px; scrollbar-width: none; }
  .holo-orbit::-webkit-scrollbar { display: none; }
  .holo-console-controls,
  .holo-quick-links { display: none; }
  .services-command-hero { padding-top: 38px; }
  .services-command-heading h1 { font-size: 38px; }
  .services-command-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; }
  .services-command-tabs button { min-height: 62px; padding: 11px 13px; }
  .services-command-panel { grid-template-columns: minmax(0, 1fr); }
  .services-command-panel > img { height: 210px; min-height: 210px; }
  .services-command-panel > div { padding: 26px 22px; }
  .services-command-panel h2 { font-size: 26px; }
  .deck-section-heading { padding-right: 0; }
  .deck-controls { position: static; margin-top: 16px; }
  .guidance-disclosure > summary { grid-template-columns: minmax(0, 1fr); gap: 5px; }
  .guidance-disclosure .guidance-intro { padding: 24px 20px 0; }
  .guidance-disclosure .guidance-form { padding: 22px 20px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .holo-rings,
  .holo-progress b.is-running { animation: none; }
  .holo-context-image { transition: none; }
}

/* v1.15.1: restore the approved light hero and add a restrained HUD layer */
.hero--holographic {
  min-height: 620px;
  color: var(--ink);
}

.hero--holographic .holo-hero-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(450px, 0.92fr);
  gap: 46px;
  padding-top: 38px;
  padding-bottom: 38px;
}

.hero--holographic .holo-copy {
  max-width: 650px;
}

.hero--holographic .holo-copy .eyebrow {
  color: var(--teal);
}

.hero--holographic .holo-copy h1 {
  margin: 8px 0 16px;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 54px;
  line-height: 1.02;
}

.hero--holographic .hero-lead {
  margin-bottom: 22px;
}

.hero--holographic .hero-actions {
  margin-bottom: 24px;
}

.hero--holographic .hero-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 620px;
}

.hero--holographic .hero-metrics div {
  min-height: 74px;
}

.hero--holographic .hero-metrics dt {
  font-size: 18px;
}

.hero--holographic .holo-console {
  width: min(100%, 490px);
  filter: drop-shadow(0 18px 36px rgba(31, 94, 255, 0.12));
}

.hero--holographic .holo-rings {
  inset: 15%;
  border-color: rgba(31, 94, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 38px rgba(31, 94, 255, 0.12), inset 0 0 28px rgba(8, 123, 122, 0.08);
  backdrop-filter: blur(2px);
}

.hero--holographic .holo-rings::before {
  border-top-color: rgba(31, 94, 255, 0.86);
  border-bottom-color: rgba(8, 123, 122, 0.78);
}

.hero--holographic .holo-rings::after {
  border-top-color: rgba(185, 91, 84, 0.72);
  border-bottom-color: rgba(184, 135, 46, 0.76);
}

.hero--holographic .holo-rings span:nth-child(1) { border-color: rgba(31, 94, 255, 0.28); }
.hero--holographic .holo-rings span:nth-child(2) { border-color: rgba(8, 123, 122, 0.34); }
.hero--holographic .holo-rings span:nth-child(3) { border-color: rgba(184, 135, 46, 0.34); }

.hero--holographic .holo-core {
  inset: 35%;
  border-radius: 0;
  clip-path: polygon(25% 4%, 75% 4%, 98% 50%, 75% 96%, 25% 96%, 2% 50%);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.hero--holographic .holo-core::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  clip-path: inherit;
  background: rgba(31, 94, 255, 0.09);
}

.hero--holographic .holo-core img {
  width: 58%;
}

.hero--holographic .holo-core small {
  margin-top: 6px;
  color: #26415c;
  font-size: 8px;
  letter-spacing: 0;
}

.hero--holographic .holo-node {
  --node-colour: #1f5eff;
  --node-fill: rgba(31, 94, 255, 0.09);
  justify-content: center;
  min-width: 112px;
  min-height: 52px;
  padding: 9px 16px;
  border: 1px solid var(--node-colour);
  border-radius: 0;
  clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
  background: var(--node-fill);
  color: #20344a;
  text-decoration: none;
  backdrop-filter: blur(9px);
}

.hero--holographic .holo-node span {
  color: var(--node-colour);
}

.hero--holographic .holo-node:nth-child(1) { --node-colour: #1f5eff; --node-fill: rgba(31, 94, 255, 0.1); }
.hero--holographic .holo-node:nth-child(2) { --node-colour: #087b7a; --node-fill: rgba(8, 123, 122, 0.1); }
.hero--holographic .holo-node:nth-child(3) { --node-colour: #7452a8; --node-fill: rgba(116, 82, 168, 0.1); }
.hero--holographic .holo-node:nth-child(4) { --node-colour: #9a6d19; --node-fill: rgba(184, 135, 46, 0.11); }
.hero--holographic .holo-node:nth-child(5) { --node-colour: #b95b54; --node-fill: rgba(185, 91, 84, 0.1); }
.hero--holographic .holo-node:nth-child(6) { --node-colour: #277554; --node-fill: rgba(39, 117, 84, 0.1); }

.hero--holographic .holo-node:hover,
.hero--holographic .holo-node:focus-visible {
  border-color: var(--node-colour);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  filter: drop-shadow(0 8px 16px rgba(16, 24, 40, 0.12));
}

.people-showcase--security {
  display: block;
}

@media (max-width: 980px) {
  .hero--holographic .holo-hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .hero--holographic .holo-copy {
    max-width: 760px;
  }

  .hero--holographic .holo-console {
    justify-self: center;
  }
}

@media (max-width: 700px) {
  .hero--holographic {
    min-height: 0;
  }

  .hero--holographic .holo-hero-layout {
    display: grid;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero--holographic .holo-copy h1 {
    font-size: 42px;
  }

  .hero--holographic .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero--holographic .holo-console {
    width: min(100%, 350px);
    height: auto;
    aspect-ratio: 1;
    margin-top: 8px;
  }

  .hero--holographic .holo-rings,
  .hero--holographic .holo-core {
    display: grid;
  }

  .hero--holographic .holo-rings {
    display: block;
  }

  .hero--holographic .holo-orbit {
    position: static;
    display: block;
    overflow: visible;
    padding: 0;
  }

  .hero--holographic .holo-node {
    position: absolute;
    min-width: 88px;
    min-height: 42px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .hero--holographic .holo-node:nth-child(1) { top: 2%; left: 35%; }
  .hero--holographic .holo-node:nth-child(2) { top: 24%; right: 0; }
  .hero--holographic .holo-node:nth-child(3) { right: 3%; bottom: 16%; }
  .hero--holographic .holo-node:nth-child(4) { bottom: 1%; left: 35%; }
  .hero--holographic .holo-node:nth-child(5) { bottom: 16%; left: 0; }
  .hero--holographic .holo-node:nth-child(6) { top: 24%; left: 0; }

  .people-showcase--security {
    height: 620px;
    min-height: 620px;
  }
}

/* v1.15.2: premium corporate hologram hero */
.hero--holographic {
  isolation: isolate;
  min-height: 660px;
  overflow: hidden;
  background: #edf7fb;
}

.hero--holographic .hero-corporate-visual {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

.hero--holographic .hero-corporate-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 252, 255, 0.98) 0%, rgba(247, 252, 255, 0.94) 31%, rgba(247, 252, 255, 0.58) 48%, rgba(238, 249, 253, 0.08) 72%),
    linear-gradient(0deg, rgba(239, 248, 252, 0.42), transparent 32%);
}

.hero--holographic .hero-corporate-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  filter: saturate(0.92) contrast(1.03);
  animation: enterprise-scene-breathe 14s ease-in-out infinite alternate;
}

.hero--holographic .hero-network {
  z-index: -1;
  opacity: 0.26;
  mix-blend-mode: multiply;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.75) 42%, transparent 78%);
}

.hero--holographic .hero-overlay {
  z-index: -2;
  background: radial-gradient(circle at 71% 48%, rgba(39, 214, 235, 0.1), transparent 29%);
}

.hero--holographic .holo-hero-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  min-height: 660px;
  gap: 24px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.hero--holographic .holo-copy {
  position: relative;
  z-index: 5;
  max-width: 610px;
  align-self: center;
}

.hero--holographic .holo-copy h1 {
  max-width: 560px;
  font-size: 56px;
}

.hero--holographic .hero-lead {
  max-width: 600px;
  color: #41576a;
  font-size: 16px;
  line-height: 1.68;
}

.hero--holographic .hero-metrics {
  max-width: 590px;
  border: 1px solid rgba(93, 149, 178, 0.22);
  background: rgba(250, 253, 255, 0.76);
  box-shadow: 0 18px 46px rgba(34, 87, 113, 0.09);
  backdrop-filter: blur(16px) saturate(1.08);
}

.hero--holographic .holo-console {
  --scene-tilt-x: 0deg;
  --scene-tilt-y: 0deg;
  --scene-glow-x: 52%;
  --scene-glow-y: 48%;
  width: min(100%, 580px);
  aspect-ratio: 1.08;
  align-self: center;
  justify-self: end;
  perspective: 1100px;
  transform-style: preserve-3d;
  transform: perspective(1100px) rotateX(var(--scene-tilt-x)) rotateY(var(--scene-tilt-y));
  filter: drop-shadow(0 24px 44px rgba(18, 102, 135, 0.16));
  transition: transform 180ms ease-out;
}

.hero--holographic .holo-console::before {
  content: "";
  position: absolute;
  inset: 17% 13% 13% 20%;
  z-index: 0;
  border: 1px solid rgba(92, 227, 240, 0.24);
  clip-path: polygon(11% 0, 89% 0, 100% 50%, 89% 100%, 11% 100%, 0 50%);
  background: radial-gradient(circle at var(--scene-glow-x) var(--scene-glow-y), rgba(127, 243, 255, 0.2), rgba(25, 131, 166, 0.02) 48%, transparent 70%);
  box-shadow: inset 0 0 50px rgba(37, 193, 219, 0.08), 0 0 40px rgba(35, 166, 204, 0.08);
  transform: translateZ(-26px) rotateY(-5deg);
  backdrop-filter: blur(1px);
}

.hero--holographic .holo-console::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 1%;
  bottom: 17%;
  width: 56%;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(83, 224, 241, 0.12), transparent);
  clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 56%);
  transform: translateZ(-44px);
  filter: blur(4px);
}

.hero--holographic .holo-rings {
  inset: 23% 20% 19% 27%;
  z-index: 1;
  border-color: rgba(115, 238, 248, 0.72);
  background: radial-gradient(circle, rgba(229, 253, 255, 0.08), rgba(22, 156, 192, 0.03) 58%, transparent 59%);
  box-shadow: 0 0 42px rgba(40, 210, 229, 0.18), inset 0 0 32px rgba(70, 217, 233, 0.12);
  transform: translateZ(18px) rotateY(-8deg);
  animation: holo-spin-depth 20s linear infinite;
}

.hero--holographic .holo-rings::before,
.hero--holographic .holo-rings::after {
  box-shadow: 0 0 18px rgba(64, 225, 239, 0.2);
}

.hero--holographic .holo-rings::before {
  border-top-color: #7cecf5;
  border-bottom-color: rgba(35, 125, 202, 0.78);
}

.hero--holographic .holo-rings::after {
  border-top-color: rgba(38, 190, 211, 0.82);
  border-bottom-color: rgba(73, 112, 225, 0.74);
}

.hero--holographic .holo-core {
  inset: auto;
  top: 39%;
  left: 49%;
  z-index: 6;
  width: 116px;
  height: 128px;
  border: 1px solid rgba(157, 246, 255, 0.72);
  background: linear-gradient(145deg, rgba(246, 254, 255, 0.74), rgba(99, 218, 232, 0.16));
  box-shadow: 0 0 0 6px rgba(132, 239, 248, 0.07), 0 0 34px rgba(65, 226, 239, 0.23), inset 0 0 28px rgba(255, 255, 255, 0.46);
  transform: translateZ(66px) rotateY(-5deg);
  backdrop-filter: blur(12px) saturate(1.18);
  animation: holo-core-pulse 4.6s ease-in-out infinite;
}

.hero--holographic .holo-core::before {
  background: linear-gradient(145deg, rgba(39, 177, 210, 0.08), rgba(47, 98, 207, 0.14));
}

.hero--holographic .holo-core img {
  width: 60%;
  filter: drop-shadow(0 5px 10px rgba(25, 119, 165, 0.22));
}

.hero--holographic .holo-core small {
  color: #195870;
  font-weight: 800;
}

.hero--holographic .holo-node {
  --node-colour: #36c6dd;
  --node-fill: rgba(229, 251, 254, 0.62);
  min-width: 118px;
  min-height: 50px;
  padding: 9px 15px;
  border-color: rgba(103, 232, 243, 0.72);
  background: linear-gradient(145deg, rgba(249, 254, 255, 0.76), var(--node-fill));
  color: #123f56;
  box-shadow: 0 12px 28px rgba(26, 120, 153, 0.12), inset 0 0 18px rgba(255, 255, 255, 0.65);
  transform-style: preserve-3d;
  backdrop-filter: blur(12px) saturate(1.16);
  animation: holo-node-float 5.8s ease-in-out infinite;
}

.hero--holographic .holo-node span { color: #087f9d; }
.hero--holographic .holo-node:nth-child(1) { top: 10%; left: 30%; animation-delay: -0.8s; }
.hero--holographic .holo-node:nth-child(2) { top: 22%; right: 0; animation-delay: -2.4s; }
.hero--holographic .holo-node:nth-child(3) { right: 2%; bottom: 18%; animation-delay: -4.1s; }
.hero--holographic .holo-node:nth-child(4) { bottom: 4%; left: 41%; animation-delay: -1.6s; }
.hero--holographic .holo-node:nth-child(5) { bottom: 17%; left: 3%; animation-delay: -3.3s; }
.hero--holographic .holo-node:nth-child(6) { top: 27%; left: 0; animation-delay: -5s; }

.hero--holographic .holo-node:hover,
.hero--holographic .holo-node:focus-visible {
  background: rgba(246, 254, 255, 0.94);
  border-color: #53dbe9;
  color: #092f43;
  box-shadow: 0 16px 34px rgba(24, 132, 168, 0.2), 0 0 26px rgba(84, 225, 239, 0.2);
  transform: translate3d(0, -4px, 54px) scale(1.03);
}

@keyframes enterprise-scene-breathe {
  from { transform: scale(1.015) translate3d(0, 0, 0); }
  to { transform: scale(1.035) translate3d(-0.35%, -0.2%, 0); }
}

@keyframes holo-spin-depth {
  from { transform: translateZ(18px) rotateY(-8deg) rotate(0deg); }
  to { transform: translateZ(18px) rotateY(-8deg) rotate(360deg); }
}

@keyframes holo-core-pulse {
  0%, 100% { transform: translateZ(66px) rotateY(-5deg) scale(1); filter: brightness(1); }
  50% { transform: translateZ(78px) rotateY(-5deg) scale(1.025); filter: brightness(1.08); }
}

@keyframes holo-node-float {
  0%, 100% { transform: translate3d(0, 0, 28px) rotateX(0deg); }
  50% { transform: translate3d(0, -7px, 42px) rotateX(-1.2deg); }
}

@media (max-width: 980px) {
  .hero--holographic .hero-corporate-visual { top: auto; height: 480px; }
  .hero--holographic .hero-corporate-visual::after { background: linear-gradient(180deg, #f4fbfe 0%, rgba(244, 251, 254, 0.2) 26%, rgba(232, 248, 252, 0.08) 100%); }
  .hero--holographic .hero-corporate-visual img { object-position: 67% center; }
  .hero--holographic .holo-hero-layout { grid-template-columns: minmax(0, 1fr); min-height: 0; gap: 12px; }
  .hero--holographic .holo-console { width: min(100%, 520px); margin-top: 18px; }
}

@media (max-width: 700px) {
  .hero--holographic .hero-corporate-visual { height: 405px; }
  .hero--holographic .hero-corporate-visual img { object-position: 69% center; }
  .hero--holographic .hero-corporate-visual::after { background: linear-gradient(180deg, #f5fbfe 0%, rgba(245, 251, 254, 0.1) 30%, rgba(231, 247, 251, 0.08) 100%); }
  .hero--holographic .holo-hero-layout { padding-top: 32px; padding-bottom: 26px; }
  .hero--holographic .holo-copy h1 { font-size: 42px; }
  .hero--holographic .holo-console { width: min(100%, 360px); margin-top: 12px; }
  .hero--holographic .holo-rings { inset: 23% 19% 18% 25%; }
  .hero--holographic .holo-core { top: 38%; left: 47%; width: 82px; height: 92px; }
  .hero--holographic .holo-node { min-width: 88px; min-height: 40px; padding: 6px 9px; font-size: 10px; }
  .hero--holographic .holo-node:nth-child(1) { top: 7%; left: 31%; }
  .hero--holographic .holo-node:nth-child(2) { top: 22%; right: 0; }
  .hero--holographic .holo-node:nth-child(3) { right: 1%; bottom: 17%; }
  .hero--holographic .holo-node:nth-child(4) { bottom: 2%; left: 38%; }
  .hero--holographic .holo-node:nth-child(5) { bottom: 16%; left: 0; }
  .hero--holographic .holo-node:nth-child(6) { top: 24%; left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero--holographic .hero-corporate-visual img,
  .hero--holographic .holo-rings,
  .hero--holographic .holo-core,
  .hero--holographic .holo-node { animation: none; }
}

/* v1.15.4: integrated hologram alignment and active R&D project brief */
@media (min-width: 981px) {
  .hero--holographic .holo-console {
    transform: perspective(1100px) translate3d(18px, -8px, 0) rotateX(var(--scene-tilt-x)) rotateY(var(--scene-tilt-y));
  }

  .hero--holographic .holo-rings {
    inset: 25% 18% 21% 30%;
    opacity: 0.7;
    mix-blend-mode: screen;
    filter: saturate(0.9);
  }

  .hero--holographic .holo-console::before {
    inset: 20% 11% 16% 23%;
    opacity: 0.72;
  }
}

.innovation-copy {
  position: relative;
  z-index: 1;
}

.innovation-active-brief {
  position: relative;
  min-height: 256px;
  margin-top: 26px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(88, 157, 187, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(221, 246, 253, 0.82), rgba(244, 249, 255, 0.7) 48%, rgba(231, 239, 255, 0.7)),
    rgba(255, 255, 255, 0.64);
  box-shadow: 0 22px 52px rgba(36, 95, 121, 0.1);
  backdrop-filter: blur(18px) saturate(1.08);
}

.innovation-active-brief::before,
.innovation-active-brief::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.innovation-active-brief::before {
  top: -96px;
  right: -74px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(40, 166, 206, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(94, 211, 230, 0.05), 0 0 0 58px rgba(66, 104, 213, 0.035);
}

.innovation-active-brief::after {
  right: 22px;
  bottom: 18px;
  width: 112px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 128, 164, 0.5), transparent);
}

.innovation-active-brief > * {
  position: relative;
  z-index: 1;
}

.innovation-active-brief h3 {
  max-width: 470px;
  margin: 0 0 10px;
  color: #102d43;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.08;
}

.innovation-active-brief > p:not(.innovation-brief-kicker) {
  max-width: 500px;
  margin-bottom: 0;
  color: #4b6475;
  font-size: 16px;
  line-height: 1.58;
}

.innovation-brief-kicker {
  margin-bottom: 9px;
  color: #087f9d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.innovation-active-brief .innovation-stats {
  margin-top: 18px;
}

.innovation-active-brief .innovation-stats span {
  border-color: rgba(92, 153, 179, 0.28);
  background: rgba(255, 255, 255, 0.62);
}

.innovation-active-brief .text-link {
  display: inline-block;
  margin-top: 18px;
}

.innovation-active-brief.is-updating {
  animation: innovation-brief-arrival 460ms ease both;
}

@keyframes innovation-brief-arrival {
  from { opacity: 0.72; transform: translate3d(-10px, 4px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (max-width: 900px) {
  .innovation-active-brief {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .innovation-active-brief {
    margin-top: 20px;
    padding: 20px;
  }

  .innovation-active-brief h3 {
    font-size: 26px;
  }
}

/* v1.15.3: compact interactive capability navigator */
.hero--holographic .holo-core {
  display: none;
}

.hero--holographic .hero-capability-navigator {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  grid-template-rows: minmax(62px, auto) 16px;
  align-items: center;
  gap: 8px 14px;
  width: min(100%, 455px);
  margin: 0 0 16px;
  padding: 10px;
  border: 1px solid rgba(111, 151, 179, 0.24);
  border-radius: 8px;
  background: rgba(250, 253, 255, 0.74);
  box-shadow: 0 14px 34px rgba(35, 91, 119, 0.08);
  backdrop-filter: blur(15px) saturate(1.08);
}

.hero--holographic .hero-capability-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(100, 145, 172, 0.3);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.68);
  color: #173b54;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.hero--holographic .hero-capability-arrow:hover,
.hero--holographic .hero-capability-arrow:focus-visible {
  border-color: #2774e8;
  background: rgba(232, 244, 255, 0.96);
  transform: translateY(-1px);
}

.hero--holographic .hero-capability-summary {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.hero--holographic .hero-capability-summary > span {
  color: #087b7a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero--holographic .hero-capability-summary a {
  display: grid;
  gap: 1px;
  color: var(--ink);
  text-decoration: none;
}

.hero--holographic .hero-capability-summary strong {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero--holographic .hero-capability-summary small {
  overflow: hidden;
  color: #61758a;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero--holographic .hero-capability-summary a:hover strong,
.hero--holographic .hero-capability-summary a:focus-visible strong {
  color: #1f5eff;
}

.hero--holographic .hero-capability-dots {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero--holographic .hero-capability-dots button {
  width: 27px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d6e0eb;
  cursor: pointer;
  transition: width 160ms ease, background 160ms ease;
}

.hero--holographic .hero-capability-dots button.is-active {
  width: 43px;
  background: #2468ef;
}

.hero--holographic .hero-capability-dots button:focus-visible {
  outline: 2px solid #2468ef;
  outline-offset: 3px;
}

.hero--holographic .hero-actions {
  margin: 0 0 20px;
}

.hero--holographic .hero-actions .secondary {
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(10px);
}

@media (max-width: 700px) {
  .hero--holographic .hero-capability-navigator {
    width: 100%;
    margin-bottom: 14px;
  }

  .hero--holographic .hero-actions {
    margin-bottom: 20px;
  }
}
