:root {
  --navy-950: #041522;
  --navy-900: #071d2e;
  --navy-800: #0c2a40;
  --navy-700: #123c57;
  --ink: #10283a;
  --ink-soft: #435867;
  --gold: #e8aa18;
  --gold-light: #ffd56a;
  --paper: #f4f5f3;
  --surface: #ffffff;
  --muted: #6b7a84;
  --line: rgba(16, 40, 58, 0.13);
  --line-dark: rgba(255, 255, 255, 0.13);
  --display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Inter, Arial, sans-serif;
  --body: Aptos, "Segoe UI Variable Text", "Segoe UI", Inter, Arial, sans-serif;
  --page-x: max(24px, calc((100vw - 1320px) / 2));
  --radius-xl: 28px;
  --radius-lg: 20px;
  --shadow: 0 24px 70px rgba(3, 20, 34, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy-900);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
span,
a,
li,
address {
  overflow-wrap: break-word;
}

h1,
h2,
.section-heading h2 {
  text-wrap: balance;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy-950);
  font-weight: 750;
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-width: 0;
  height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 var(--page-x);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: #fff;
  transition: height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(4, 21, 34, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
  color: #fff;
  letter-spacing: 0.13em;
  line-height: 1.05;
}

.brand-mark {
  position: relative;
  display: block;
  width: 88px;
  height: 38px;
  flex: 0 0 88px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: 58% 100%;
  animation: logo-dino-jump 2.4s ease-in-out infinite;
}

.brand-neural-orbit {
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 18px;
  width: 16px;
  height: 18px;
  border: 0;
  background: url("assets/neurosaur-logo.png") -18px -6px / 88px 38px no-repeat;
  clip-path: ellipse(44% 39% at 50% 50%);
  mix-blend-mode: multiply;
  transform-origin: 50% 50%;
  animation: neural-icon-spin 2.4s linear infinite;
  pointer-events: none;
}

.brand:hover .brand-mark img,
.brand:focus-visible .brand-mark img {
  animation-duration: 1.2s;
}

.brand:hover .brand-neural-orbit,
.brand:focus-visible .brand-neural-orbit {
  animation-duration: 1s;
}

.brand strong,
.brand small {
  display: block;
}

@keyframes logo-dino-jump {
  0%, 100% { transform: translateY(0) rotate(0); }
  25% { transform: translateY(-1.6px) rotate(-0.25deg); }
  50% { transform: translateY(0) rotate(0.15deg); }
  75% { transform: translateY(-1.2px) rotate(-0.18deg); }
}

@keyframes neural-icon-spin {
  0% { transform: translateY(0) rotate(0); }
  25% { transform: translateY(-1.6px) rotate(90deg); }
  50% { transform: translateY(0) rotate(180deg); }
  75% { transform: translateY(-1.2px) rotate(270deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

.brand strong {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 780;
}

.brand small {
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 13px;
  font-weight: 650;
}

nav a {
  white-space: nowrap;
  opacity: 0.8;
  transition: color 180ms ease, opacity 180ms ease, background 180ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--gold-light);
  opacity: 1;
}

.nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
}

.nav-cta:hover {
  border-color: var(--gold-light);
  background: rgba(232, 170, 24, 0.08);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
  align-items: center;
  gap: clamp(42px, 5vw, 82px);
  overflow: hidden;
  padding: 154px var(--page-x) 64px;
  background:
    radial-gradient(circle at 75% 27%, rgba(39, 100, 133, 0.62) 0, transparent 34%),
    linear-gradient(140deg, var(--navy-950), #0a2940 68%, #10384f);
  color: #fff;
}

.hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
}

.glow-one {
  top: 18%;
  right: 7%;
  width: 400px;
  height: 400px;
  background: var(--gold);
}

.glow-two {
  bottom: -90px;
  left: 15%;
  width: 320px;
  height: 320px;
  background: #1b8da7;
}

.hero-copy,
.hero-visual,
.hero-proof {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow,
.kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c8d4db;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  flex: 0 0 30px;
  background: var(--gold);
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 640;
  letter-spacing: -0.048em;
}

h1 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(62px, 6.6vw, 102px);
  line-height: 0.97;
}

h1 em,
h2 em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 640;
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0 36px;
  color: #bdcad2;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.button.primary {
  background: var(--gold);
  box-shadow: 0 14px 40px rgba(232, 170, 24, 0.2);
  color: var(--navy-950);
}

.button.primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.text-button {
  min-height: 44px;
  padding-right: 0;
  padding-left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  color: #fff;
}

.hero-visual {
  height: 520px;
  isolation: isolate;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 240px;
  height: 240px;
}

.orbit-two {
  width: 370px;
  height: 370px;
}

.orbit-three {
  width: min(500px, 100%);
  height: min(500px, 100%);
}

.core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 204px;
  height: 204px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: linear-gradient(145deg, #174159, var(--navy-950));
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.025), 0 35px 80px rgba(0, 0, 0, 0.45);
  text-align: center;
  transform: translate(-50%, -50%);
}

.core strong {
  color: #fff;
  font-family: var(--display);
  font-size: 70px;
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.core span,
.core small {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.2em;
}

.core .core-think {
  position: absolute;
  bottom: 40px;
  left: calc(50% - 76px);
  padding: 3px 6px;
  border: 1px solid rgba(255, 213, 106, 0.38);
  border-radius: 4px;
  background: rgba(4, 21, 34, 0.7);
  line-height: 1;
}

.core small {
  margin-top: 5px;
}

.floating-card {
  position: absolute;
  width: 200px;
  min-height: 94px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  margin: 3px 0 1px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.floating-card span {
  color: #a8bac5;
  font-size: 11px;
  line-height: 1.4;
}

.card-a {
  top: 68px;
  left: 0;
}

.card-b {
  top: 212px;
  right: 0;
}

.card-c {
  bottom: 28px;
  left: 18px;
}

.hero-proof {
  display: grid;
  max-width: 820px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-proof div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.hero-proof strong {
  flex: 0 0 auto;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 38px;
  font-weight: 650;
  line-height: 1;
}

.hero-proof span {
  max-width: 130px;
  color: #acbbc4;
  font-size: 12px;
  line-height: 1.35;
}

.section,
.contact {
  padding: clamp(88px, 9vw, 136px) var(--page-x);
}

.section {
  background: var(--navy-900);
  color: #fff;
}

.section.light {
  background: var(--paper);
  color: var(--ink);
}

.section > *,
.contact > * {
  min-width: 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 120px);
}

.kicker {
  color: #c18400;
}

.section h2 {
  font-size: clamp(42px, 4.7vw, 70px);
  line-height: 1.03;
}

.intro-copy {
  max-width: 650px;
  padding-top: 42px;
  color: var(--ink-soft);
}

.intro-copy .large {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 620;
  line-height: 1.33;
  letter-spacing: -0.025em;
}

.value-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.value-row span {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 700;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(170px, 240px) minmax(0, 1fr);
  align-items: end;
  gap: clamp(30px, 5vw, 72px);
  margin-bottom: clamp(42px, 5vw, 64px);
}

.section-heading .kicker {
  align-self: start;
}

.section-heading h2 {
  max-width: 870px;
}

.section-heading > p:last-child:not(.kicker) {
  max-width: 310px;
  color: #aab8c1;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.outcome-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(24px, 2.5vw, 32px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.outcome-card:hover {
  box-shadow: 0 30px 82px rgba(3, 20, 34, 0.22);
  transform: translateY(-6px);
}

.outcome-card::after {
  position: absolute;
  top: -110px;
  right: -100px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.outcome-card.amber {
  background: linear-gradient(145deg, #f0b52e, #d68d04);
  color: #112638;
}

.outcome-card.blue {
  background: linear-gradient(145deg, #e3eff3, #8eb8c9);
  color: #10293d;
}

.outcome-card.green {
  background: linear-gradient(145deg, #1b5660, #0b303a);
}

.number {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.card-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin: 10px 0 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 23px;
}

.outcome-card h3 {
  margin: 0 0 15px;
  font-family: var(--display);
  font-size: clamp(25px, 2.1vw, 34px);
  font-weight: 680;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.outcome-card p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.78;
}

.outcome-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid currentColor;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.35;
}

.card-links {
  margin-top: auto;
}

.outcome-card .card-links a {
  margin-top: 0;
}

.outcome-card .card-links a + a {
  margin-top: 12px;
}

.button.outline-light {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #fff;
}

.button.outline-light:hover {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.stage-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.stage-tabs button {
  min-width: 0;
  padding: 18px 8px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  text-align: left;
}

.stage-tabs button[aria-selected="true"] {
  border-color: var(--gold);
  color: var(--ink);
}

.stage-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(45px, 8vw, 110px);
  padding: 54px 0 86px;
}

.stage-label {
  color: #b17c00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stage-panel h3 {
  margin: 12px 0;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 660;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stage-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stage-panel li {
  min-width: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.stage-panel li::before {
  margin-right: 10px;
  color: #b17c00;
  content: "+";
}

.certs {
  padding-top: 52px;
  border-top: 1px solid var(--line);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cert-grid article {
  min-width: 0;
  min-height: 280px;
  padding: clamp(24px, 2.5vw, 32px);
  border: 1px solid rgba(16, 40, 58, 0.05);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(5, 28, 44, 0.06);
}

.cert-grid h3 {
  margin: 4px 0 14px;
  font-family: var(--display);
  font-size: clamp(24px, 2vw, 29px);
  font-weight: 680;
  letter-spacing: -0.025em;
  line-height: 1.14;
}

.cert-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.productivity {
  background: linear-gradient(130deg, var(--navy-950), #11384f);
}

.productivity-table-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.productivity-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.productivity-table th,
.productivity-table td {
  width: 25%;
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.productivity-table th:last-child,
.productivity-table td:last-child {
  border-right: 0;
}

.productivity-table th {
  height: 78px;
  padding: 14px 18px;
  background: rgba(10, 43, 64, 0.88);
  color: #fff;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.3;
  text-align: center;
}

.productivity-table th.copilot-column {
  background: var(--gold);
  color: var(--navy-950);
}

.tool-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tool-brand img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.tool-brand .openai-logo {
  filter: invert(1);
}

.productivity-table td {
  height: 116px;
  padding: 25px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c293e;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 600;
  line-height: 1.35;
  vertical-align: middle;
}

.responsible-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 34px;
  color: #bdcbd3;
}

.responsible-note span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-950);
}

.service-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.service-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.service-list div {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.service-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 35px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.service-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.service-list i {
  font-size: 24px;
  font-style: normal;
  text-align: right;
}

.expert {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(55px, 8vw, 125px);
}

.trainer-profile {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: stretch;
}

.expert-intro {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.expert-intro h2 {
  margin: 14px 0 22px;
  font-size: clamp(46px, 5.3vw, 78px);
  line-height: 1.02;
}

.expert-intro > p:last-child {
  max-width: 650px;
  margin: 0;
  color: #b6c3cb;
  font-size: 17px;
}

.lead-expert-card {
  display: flex;
  min-width: 0;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 10%, rgba(232, 170, 24, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.expert-label {
  margin: 0 0 auto;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.lead-expert-card h3 {
  margin: 54px 0 2px;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.lead-expert-card .role {
  margin: 10px 0 16px;
}

.lead-expert-card > p:last-child {
  max-width: 500px;
  margin: 0;
  color: #b6c3cb;
  font-size: 16px;
}

.expert-photo {
  position: relative;
  min-width: 0;
}

.expert-photo img {
  width: 100%;
  max-height: 640px;
  border-radius: 160px 160px 24px 24px;
  filter: saturate(0.86) contrast(1.02);
  object-fit: cover;
  object-position: top;
}

.photo-tag {
  position: absolute;
  bottom: 26px;
  left: -18px;
  max-width: calc(100% + 18px);
  padding: 13px 18px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  transform: rotate(-1.5deg);
}

.expert-copy h2 {
  margin: 12px 0 0;
}

.role {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.expert-copy > p:not(.kicker):not(.role) {
  max-width: 650px;
  color: #b6c3cb;
  font-size: 17px;
}

.expert-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  margin-top: 34px;
}

.expert-columns h3 {
  color: #8197a5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.expert-columns span {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 13px;
  line-height: 1.4;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.steps article {
  min-width: 0;
  min-height: 220px;
  padding: 24px;
  border-left: 1px solid var(--line);
}

.steps article:last-child {
  border-right: 1px solid var(--line);
}

.steps b {
  color: #a87500;
  font-size: 11px;
}

.steps h3 {
  margin: 42px 0 10px;
  font-family: var(--display);
  font-size: clamp(23px, 2.1vw, 29px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.steps p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.trust {
  background: var(--navy-800);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-grid article {
  min-width: 0;
  padding: clamp(27px, 3vw, 36px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
}

.proof-grid span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-grid h3 {
  margin: 34px 0 12px;
  font-family: var(--display);
  font-size: 33px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.proof-grid p {
  margin-bottom: 0;
  color: #aebdc6;
  font-size: 14px;
}

.partnership {
  background:
    radial-gradient(circle at 92% 10%, rgba(232, 170, 24, 0.12), transparent 25%),
    var(--paper);
}

.partnership-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(42px, 7vw, 100px);
}

.partner-copy h2 {
  margin-top: 14px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.02;
}

.partner-copy > p:not(.kicker) {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.partner-copy .button {
  margin-top: 30px;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.partner-grid article {
  display: grid;
  min-width: 0;
  min-height: 132px;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 20px;
  padding: clamp(24px, 2.5vw, 32px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 34px rgba(5, 28, 44, 0.045);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.partner-grid article:hover {
  border-color: rgba(168, 117, 0, 0.28);
  background: #fff;
  transform: translateY(-2px);
}

.partner-grid b {
  color: #a87500;
  font-size: 11px;
}

.partner-grid h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.partner-grid p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(55px, 8vw, 125px);
  background: var(--gold);
  color: var(--navy-950);
}

.contact .kicker {
  color: #5d4500;
}

.contact h2 {
  margin-top: 14px;
  font-size: clamp(54px, 6.8vw, 98px);
  line-height: 0.96;
}

.contact h2 em {
  color: #fff;
}

.contact-inner > p:not(.kicker) {
  max-width: 650px;
  font-size: 17px;
}

.contact .button.primary {
  margin-top: 18px;
  background: var(--navy-950);
  box-shadow: none;
  color: #fff;
}

.contact .button.primary:hover {
  background: var(--navy-800);
}

.contact-details {
  min-width: 0;
  align-self: end;
}

.contact-details a,
.contact-details address {
  display: block;
  min-width: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(4, 21, 34, 0.24);
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 27px);
  font-style: normal;
  font-weight: 610;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.contact-details small {
  display: block;
  margin-bottom: 5px;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  opacity: 0.62;
}

footer {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px var(--page-x);
  background: #03111b;
  color: #8fa2af;
  font-size: 11px;
}

footer .brand {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  :root {
    --page-x: clamp(28px, 5vw, 62px);
  }

  nav {
    gap: 17px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
  }

  .card-b {
    right: -8px;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .steps article:nth-child(5) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 940px) {
  html {
    scroll-padding-top: 72px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header,
  .site-header.scrolled {
    height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 6px;
    padding: 96px var(--page-x) 36px;
    background: rgba(4, 21, 34, 0.985);
    font-size: clamp(23px, 5vw, 32px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header nav a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    white-space: normal;
  }

  .site-header nav .nav-cta {
    width: max-content;
    margin-top: 18px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 128px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .hero-proof {
    width: 100%;
    margin-top: 6px;
  }

  .intro,
  .expert,
  .partnership-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .trainer-profile {
    gap: 34px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .outcome-card {
    min-height: 360px;
  }

  .card-icon {
    margin: 10px 0 32px;
  }

  .cert-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .cert-grid article {
    min-height: 240px;
  }

  .cert-grid h3 {
    margin-top: 4px;
  }

  .service-list div {
    grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1fr);
    gap: 32px;
  }

  .expert-photo {
    max-width: 520px;
  }

  .contact-details {
    margin-top: 12px;
  }
}

@media (max-width: 680px) {
  :root {
    --page-x: 20px;
    --radius-xl: 22px;
  }

  .brand-mark {
    width: 72px;
    height: 32px;
    flex-basis: 72px;
  }

  .brand-neural-orbit {
    top: 5px;
    left: 15px;
    width: 14px;
    height: 16px;
    background-position: -15px -5px;
    background-size: 72px 32px;
  }

  .brand strong {
    font-size: 13px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 64px);
    line-height: 0.98;
  }

  .hero {
    gap: 40px;
    padding-top: 118px;
    padding-bottom: 52px;
  }

  .hero-lead {
    margin: 24px 0 30px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-button {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 14px 18px;
  }

  .hero-visual {
    display: grid;
    height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .orbit {
    display: none;
  }

  .core,
  .floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    transform: none;
  }

  .core {
    min-height: 188px;
    border-radius: 24px;
  }

  .core strong {
    font-size: 64px;
  }

  .floating-card {
    display: block;
    padding: 15px 16px;
    border-radius: 14px;
  }

  .floating-card strong,
  .floating-card span {
    margin: 0;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-proof div {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-proof span {
    max-width: none;
  }

  .section,
  .contact {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section h2 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .outcome-card {
    min-height: 350px;
  }

  .stage-tabs {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .stage-tabs button {
    min-width: max-content;
    padding-right: 2px;
    padding-left: 2px;
  }

  .stage-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 42px 0 66px;
  }

  .stage-panel ul {
    grid-template-columns: 1fr;
  }

  .productivity-table-shell {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .productivity-table {
    min-width: 720px;
  }

  .productivity-table th {
    height: 70px;
    font-size: 12px;
  }

  .productivity-table td {
    height: 96px;
    padding: 20px 18px;
    font-size: 15px;
  }

  .responsible-note {
    align-items: flex-start;
  }

  .service-list article {
    grid-template-columns: minmax(0, 1fr) 28px;
    align-items: center;
    gap: 14px;
    padding: 26px 0;
  }

  .service-list div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-list i {
    display: block;
    font-size: 20px;
  }

  .expert-photo img {
    border-radius: 110px 110px 20px 20px;
  }

  .expert-intro h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .lead-expert-card {
    min-height: 320px;
    padding: 28px;
  }

  .photo-tag {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: none;
    margin-top: -8px;
    border-radius: 0 0 14px 14px;
    text-align: center;
    transform: none;
  }

  .expert-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-grid article {
    min-height: 0;
  }

  .steps article,
  .steps article:nth-child(4),
  .steps article:nth-child(5) {
    min-height: 0;
    padding: 23px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-left: 0;
  }

  .steps article:last-child {
    border-bottom: 1px solid var(--line);
  }

  .steps h3 {
    margin: 12px 0 6px;
  }

  .steps p {
    margin-bottom: 0;
  }

  .contact {
    gap: 44px;
  }

  .contact h2 {
    font-size: clamp(50px, 15vw, 66px);
  }

  .contact-details a,
  .contact-details address {
    font-size: 18px;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 370px) {
  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 64px;
    height: 28px;
    flex-basis: 64px;
  }

  .brand-neural-orbit {
    top: 4px;
    left: 13px;
    width: 13px;
    height: 15px;
    background-position: -13px -4px;
    background-size: 64px 28px;
  }

  .brand small {
    letter-spacing: 0.17em;
  }

  h1 {
    font-size: 46px;
  }

  .section h2 {
    font-size: 37px;
  }

  .contact h2 {
    font-size: 48px;
  }

  .button {
    gap: 14px;
  }
}

/* AI Productivity program page */
.productivity-link {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.assessment-invite {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.assessment-invite-copy h2 {
  margin: 12px 0 24px;
}

.assessment-invite-copy > p:last-of-type {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.assessment-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.assessment-meta span {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.assessment-meta b {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
}

.assessment-invite-action {
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius-xl);
  background: var(--navy-900);
  box-shadow: var(--shadow);
  color: #fff;
}

.invite-score {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 213, 106, 0.5);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 170, 24, 0.18), transparent 64%);
}

.invite-score strong,
.invite-score small {
  display: block;
}

.invite-score strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 54px;
  line-height: 0.9;
}

.invite-score small {
  margin-top: 8px;
  color: #b6c5ce;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.assessment-invite-action p {
  margin: 26px 0;
  color: #b6c5ce;
  font-size: 14px;
}

.program-page {
  background: var(--paper);
}

.program-hero {
  position: relative;
  display: grid;
  min-height: 820px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 108px);
  overflow: hidden;
  padding: 142px var(--page-x) 62px;
  background:
    radial-gradient(circle at 82% 20%, rgba(46, 113, 145, 0.55), transparent 31%),
    linear-gradient(140deg, var(--navy-950), #0a2940 70%, #10384f);
  color: #fff;
}

.program-hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
  pointer-events: none;
}

.program-hero-copy,
.program-hero-panel,
.audience-strip {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
  color: #aebdc6;
  font-size: 12px;
  font-weight: 700;
}

.back-link:hover {
  color: var(--gold-light);
}

.program-hero h1 {
  max-width: 850px;
  margin-top: 23px;
  font-size: clamp(56px, 5.8vw, 88px);
  line-height: 0.98;
}

.program-hero h1 em {
  color: var(--gold-light);
}

.program-hero-panel {
  padding: clamp(28px, 3.2vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.panel-label {
  margin: 0 0 14px;
  color: #b77e00;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.program-hero-panel .panel-label {
  color: var(--gold-light);
}

.program-hero-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.program-hero-panel > p:not(.panel-label) {
  color: #bfccd4;
  font-size: 15px;
}

.program-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.program-tools span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dce5ea;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.program-tools img {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.program-tools .openai-logo,
.program-tools .monochrome-logo {
  filter: invert(1);
}

.audience-strip {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.audience-strip strong {
  margin-right: 7px;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.audience-strip span {
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  color: #b9c7cf;
  font-size: 11px;
  line-height: 1.3;
}

.challenge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(45px, 7vw, 100px);
  align-items: start;
}

.program-lead {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.challenge-copy > p:not(.program-lead) {
  color: var(--ink-soft);
}

.challenge-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.challenge-points span {
  position: relative;
  min-width: 0;
  padding: 15px 15px 15px 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.challenge-points span::before {
  position: absolute;
  top: 16px;
  left: 15px;
  color: #b77e00;
  content: "•";
}

.approach-card {
  padding: clamp(28px, 3.3vw, 42px);
  border-radius: var(--radius-xl);
  background: var(--navy-900);
  box-shadow: var(--shadow);
  color: #fff;
}

.approach-card .panel-label {
  color: var(--gold-light);
}

.approach-card h3 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.approach-card > p:not(.panel-label) {
  color: #b6c4cc;
}

.approach-difference {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 10px 14px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.approach-difference span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.approach-difference p {
  margin: 0;
  color: #d6e0e5;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}

.adoption-section {
  background: linear-gradient(140deg, var(--navy-950), #10364d);
}

.adoption-journey {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
}

.adoption-journey article {
  position: relative;
  min-width: 0;
  min-height: 210px;
  padding: 24px 20px;
  border-right: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.025);
}

.adoption-journey article:last-child {
  border-right: 0;
  background: rgba(232, 170, 24, 0.14);
}

.adoption-journey b {
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.adoption-journey h3 {
  margin: 48px 0 10px;
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.adoption-journey p {
  margin: 0;
  color: #9fb1bd;
  font-size: 12px;
  line-height: 1.45;
}

.learning-philosophy {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.learning-philosophy article {
  min-width: 0;
  padding-top: 17px;
  border-top: 2px solid rgba(232, 170, 24, 0.62);
}

.learning-philosophy strong,
.learning-philosophy span {
  display: block;
}

.learning-philosophy strong {
  margin-bottom: 6px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 19px;
}

.learning-philosophy span {
  color: #aebdc6;
  font-size: 12px;
  line-height: 1.5;
}

.section-intro {
  max-width: 760px;
  margin: -22px 0 45px 0;
  color: var(--muted);
  font-size: 17px;
}

.modules-section .section-intro {
  color: #aebdc6;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.roadmap-card {
  display: flex;
  min-width: 0;
  min-height: 520px;
  flex-direction: column;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(5, 28, 44, 0.055);
}

.phase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.phase-top span {
  color: #a87500;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.phase-top b {
  color: #d9dfe2;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}

.roadmap-card h3 {
  margin: 34px 0 8px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.roadmap-card > p:not(.deliverable) {
  min-height: 70px;
  margin-top: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.roadmap-card h4,
.module-content h4 {
  margin: 20px 0 8px;
  color: #8c6505;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.roadmap-card ul,
.module-content ul,
.module-content ol,
.outcomes-columns ul {
  margin: 0;
  padding-left: 18px;
}

.roadmap-card li {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.4;
}

.roadmap-card .deliverable {
  margin: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.modules-section {
  background: var(--navy-900);
}

.module-list {
  border-top: 1px solid var(--line-dark);
}

.module-card {
  border-bottom: 1px solid var(--line-dark);
}

.module-card summary {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 22px;
  padding: 26px 4px;
  cursor: pointer;
  list-style: none;
}

.module-card summary::-webkit-details-marker {
  display: none;
}

.module-number {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.module-card summary small,
.module-card summary strong,
.module-card summary em {
  display: block;
}

.module-card summary small {
  margin-bottom: 7px;
  color: #8299a8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.module-card summary strong {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 640;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.module-card summary em {
  margin-top: 6px;
  color: #9fb1bd;
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.module-card summary i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 22px;
  font-style: normal;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.module-card[open] summary i {
  background: rgba(232, 170, 24, 0.1);
  transform: rotate(45deg);
}

.module-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(40px, 7vw, 96px);
  padding: 6px 58px 40px 78px;
}

.module-content h4 {
  color: var(--gold-light);
}

.module-content li {
  margin-bottom: 8px;
  color: #aebdc6;
  font-size: 13px;
  line-height: 1.5;
}

.method-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  gap: 16px;
}

.method-grid article {
  min-width: 0;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.method-grid article.featured {
  border-color: transparent;
  background: var(--gold);
  color: var(--navy-950);
}

.method-grid strong {
  color: #b77e00;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 670;
  letter-spacing: -0.05em;
  line-height: 1;
}

.method-grid .featured strong {
  color: var(--navy-950);
}

.method-grid h3 {
  margin: 40px 0 8px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.method-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.method-grid .featured p {
  color: rgba(4, 21, 34, 0.74);
}

.assessment {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 50px;
  margin-top: 34px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: #fff;
}

.assessment .panel-label {
  color: var(--gold-light);
}

.assessment h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(25px, 2.7vw, 38px);
  font-weight: 640;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.assessment ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assessment li {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  color: #bcc9d1;
  font-size: 12px;
  line-height: 1.4;
}

.assessment li b {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 18px;
}

.program-outcomes {
  background: linear-gradient(140deg, var(--navy-950), #0c3047);
}

.outcomes-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.outcomes-columns article {
  min-width: 0;
  padding: clamp(28px, 3.4vw, 44px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.035);
}

.outcomes-columns article > span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.outcomes-columns h3 {
  margin: 28px 0 20px;
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 640;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.outcomes-columns li {
  margin-bottom: 9px;
  color: #b6c4cc;
  font-size: 14px;
  line-height: 1.5;
}

.commitment {
  margin-top: 28px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-xl);
  background: var(--gold);
  color: var(--navy-950);
}

.commitment .panel-label {
  color: #5d4500;
}

.commitment blockquote {
  margin: 18px 0;
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.commitment > p:last-child {
  max-width: 800px;
  margin-bottom: 0;
  color: rgba(4, 21, 34, 0.76);
}

@media (max-width: 1120px) {
  .program-hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  }

  .adoption-journey {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .adoption-journey article:nth-child(3) {
    border-right: 0;
  }

  .adoption-journey article:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line-dark);
  }

  .roadmap-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .roadmap-card {
    min-height: 0;
  }

  .roadmap-card > p:not(.deliverable) {
    min-height: 0;
  }
}

@media (max-width: 940px) {
  .program-hero,
  .challenge-grid {
    grid-template-columns: 1fr;
  }

  .program-hero {
    min-height: auto;
    gap: 36px;
    padding-top: 118px;
  }

  .program-hero-panel {
    max-width: 700px;
  }

  .learning-philosophy {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-content {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .method-grid {
    grid-template-columns: 1fr 1fr;
  }

  .method-grid article.featured {
    grid-column: span 2;
  }

  .assessment {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .productivity-link .button {
    width: 100%;
  }

  .program-hero h1 {
    font-size: clamp(45px, 13.4vw, 60px);
  }

  .back-link {
    margin-bottom: 28px;
  }

  .program-hero-panel {
    padding: 24px;
    border-radius: 20px;
  }

  .audience-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-strip strong {
    grid-column: 1 / -1;
    margin-bottom: 6px;
  }

  .audience-strip span {
    display: flex;
    align-items: center;
    min-height: 46px;
  }

  .challenge-points {
    grid-template-columns: 1fr;
  }

  .approach-difference {
    grid-template-columns: 1fr;
  }

  .approach-difference p:first-of-type {
    margin-bottom: 10px;
  }

  .adoption-journey {
    grid-template-columns: 1fr;
  }

  .adoption-journey article,
  .adoption-journey article:nth-child(3) {
    min-height: 0;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .adoption-journey article:last-child {
    border-bottom: 0;
  }

  .adoption-journey h3 {
    margin: 18px 0 6px;
  }

  .learning-philosophy {
    grid-template-columns: 1fr;
  }

  .section-intro {
    margin-top: -12px;
    font-size: 15px;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-card {
    padding: 24px;
  }

  .module-card summary {
    grid-template-columns: 34px minmax(0, 1fr) 32px;
    gap: 10px;
    padding: 22px 0;
  }

  .module-card summary strong {
    font-size: 23px;
  }

  .module-content {
    padding: 0 0 30px 44px;
  }

  .method-grid,
  .outcomes-columns {
    grid-template-columns: 1fr;
  }

  .method-grid article,
  .method-grid article.featured {
    min-height: 220px;
    grid-column: auto;
  }

  .method-grid h3 {
    margin-top: 28px;
  }

  .assessment {
    padding: 24px;
  }

  .assessment ul {
    grid-template-columns: 1fr;
  }

  .commitment blockquote {
    font-size: 35px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* AI Readiness Assessment */
[hidden] {
  display: none !important;
}

.assessment-page {
  background: var(--paper);
}

.assessment-hero {
  position: relative;
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(50px, 8vw, 118px);
  overflow: hidden;
  padding: 140px var(--page-x) 70px;
  background:
    radial-gradient(circle at 76% 23%, rgba(46, 113, 145, 0.55), transparent 30%),
    linear-gradient(140deg, var(--navy-950), #0a2940 70%, #10384f);
  color: #fff;
}

.assessment-hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
  pointer-events: none;
}

.assessment-hero-copy,
.logo-showcase {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.assessment-hero h1 {
  margin-top: 22px;
  font-size: clamp(62px, 6.3vw, 96px);
}

.assessment-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 44px;
}

.assessment-hero-meta span {
  min-width: 116px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: #aebfc8;
  font-size: 10px;
  line-height: 1.4;
}

.assessment-hero-meta b {
  display: block;
  color: var(--gold-light);
  font-size: 17px;
}

.logo-showcase {
  padding: clamp(24px, 3.3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.showcase-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1161 / 474;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.showcase-stage > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: 58% 100%;
  animation: showcase-dino-jump 2.8s ease-in-out infinite;
}

.showcase-stage .showcase-neural {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  clip-path: ellipse(4.8% 11.3% at 28.6% 40.5%);
  mix-blend-mode: multiply;
  transform-origin: 28.6% 40.5%;
  animation: showcase-neural-spin 2.8s linear infinite;
  pointer-events: none;
}

.showcase-ground {
  position: absolute;
  right: 7%;
  bottom: 3%;
  left: 34%;
  height: 8px;
  border-radius: 50%;
  background: rgba(5, 27, 43, 0.13);
  filter: blur(6px);
  animation: showcase-shadow 2.8s ease-in-out infinite;
}

@keyframes showcase-dino-jump {
  0%, 100% { transform: translateY(0) rotate(0); }
  25% { transform: translateY(-4px) rotate(-0.3deg); }
  50% { transform: translateY(0) rotate(0.18deg); }
  75% { transform: translateY(-3px) rotate(-0.2deg); }
}

@keyframes showcase-neural-spin {
  0% { transform: translateY(0) rotate(0); }
  25% { transform: translateY(-4px) rotate(90deg); }
  50% { transform: translateY(0) rotate(180deg); }
  75% { transform: translateY(-3px) rotate(270deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

@keyframes showcase-shadow {
  0%, 50%, 100% { opacity: 0.7; transform: scaleX(1); }
  25%, 75% { opacity: 0.38; transform: scaleX(0.94); }
}

.logo-showcase > p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 24px 0 12px;
}

.logo-showcase > p span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-showcase > small {
  display: block;
  color: #aebfc8;
  font-size: 11px;
  line-height: 1.55;
}

.assessment-explainer .section-heading {
  margin-bottom: 48px;
}

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.dimension-grid article {
  min-width: 0;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.dimension-grid article > span {
  color: #ad7900;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.dimension-grid h3 {
  margin: 62px 0 11px;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 660;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.dimension-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.explainer-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 26px 0 0;
  color: var(--muted);
}

.explainer-note span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-950);
}

.assessment-shell {
  padding: 112px var(--page-x);
  background: #e9ece9;
}

.assessment-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.62fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 34px;
}

.assessment-heading h2 {
  margin: 10px 0 8px;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.04;
}

.assessment-heading > div:first-child > p:last-child {
  margin: 0;
  color: var(--muted);
}

.perspective-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.perspective-picker > span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.perspective-picker label {
  cursor: pointer;
}

.perspective-picker input {
  position: absolute;
  opacity: 0;
}

.perspective-picker label span {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.perspective-picker input:checked + span {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: #fff;
}

.perspective-picker input:focus-visible + span {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.assessment-progress {
  position: sticky;
  z-index: 8;
  top: 82px;
  display: grid;
  grid-template-columns: 120px minmax(180px, 1fr) minmax(260px, auto);
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(4, 21, 34, 0.95);
  box-shadow: 0 14px 34px rgba(3, 20, 34, 0.15);
  color: #fff;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.assessment-progress > span {
  font-size: 12px;
  font-weight: 700;
}

.assessment-progress > span b {
  color: var(--gold-light);
  font-size: 17px;
}

.assessment-progress > div {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.assessment-progress i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  transition: width 260ms ease;
}

.assessment-progress small {
  color: #aebfc8;
  font-size: 10px;
  text-align: right;
}

.question-group {
  min-width: 0;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 18px 48px rgba(3, 20, 34, 0.075);
}

.question-group legend {
  display: grid;
  width: 100%;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 16px;
  padding: 28px 30px 24px;
  border-bottom: 1px solid var(--line);
}

.question-group legend > span {
  grid-row: 1 / 3;
  color: #ae7900;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.question-group legend strong {
  font-family: var(--display);
  font-size: clamp(23px, 2.4vw, 31px);
  font-weight: 660;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.question-group legend small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.assessment-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 0.82fr);
  align-items: center;
  gap: 34px;
  padding: 25px 30px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.assessment-question:last-child {
  border-bottom: 0;
}

.assessment-question.question-error {
  background: #fff5f1;
  box-shadow: inset 4px 0 #c95032;
}

.question-copy {
  display: grid;
  min-width: 0;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.question-copy > span {
  padding-top: 3px;
  color: #a77a13;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.question-copy p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.scale-options {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.scale-option {
  min-width: 0;
  cursor: pointer;
}

.scale-option input {
  position: absolute;
  opacity: 0;
}

.scale-option > span {
  display: grid;
  min-height: 58px;
  place-items: center;
  align-content: center;
  padding: 7px 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f7f8f6;
  color: var(--muted);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.scale-option b,
.scale-option small {
  display: block;
  text-align: center;
}

.scale-option b {
  color: var(--ink);
  font-size: 15px;
}

.scale-option small {
  margin-top: 2px;
  font-size: 8px;
  line-height: 1.2;
}

.scale-option:hover > span {
  border-color: rgba(232, 170, 24, 0.72);
  transform: translateY(-1px);
}

.scale-option input:checked + span {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-950);
  box-shadow: 0 7px 18px rgba(180, 122, 0, 0.18);
}

.scale-option input:checked + span b {
  color: var(--navy-950);
}

.scale-option input:focus-visible + span {
  outline: 3px solid var(--navy-700);
  outline-offset: 3px;
}

.assessment-submit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  margin-top: 28px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-xl);
  background: var(--navy-900);
  box-shadow: var(--shadow);
  color: #fff;
}

.assessment-submit .panel-label {
  color: var(--gold-light);
}

.assessment-submit h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(25px, 2.8vw, 38px);
  font-weight: 640;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.assessment-submit .button {
  min-width: 250px;
  border: 0;
  cursor: pointer;
}

.form-error {
  min-height: 24px;
  margin: 12px 0 0;
  color: #ffd0c3;
  font-size: 12px;
}

.readiness-results {
  scroll-margin-top: 80px;
  padding: 112px var(--page-x);
  background:
    radial-gradient(circle at 18% 10%, rgba(232, 170, 24, 0.12), transparent 24%),
    linear-gradient(140deg, var(--navy-950), #0b3047);
  color: #fff;
}

.results-top {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1.48fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.score-ring {
  --score: 0;
  display: grid;
  width: min(300px, 76vw);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--gold) calc(var(--score) * 1%), rgba(255, 255, 255, 0.1) 0);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.score-ring::before {
  grid-area: 1 / 1;
  width: calc(100% - 28px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: var(--navy-900);
  content: "";
}

.score-ring > div {
  z-index: 1;
  grid-area: 1 / 1;
  text-align: center;
}

.score-ring strong,
.score-ring span {
  display: block;
}

.score-ring strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(72px, 8vw, 105px);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.score-ring span {
  margin-top: 9px;
  color: #8fa4b1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.results-summary h2 {
  margin: 11px 0 20px;
  color: var(--gold-light);
  font-size: clamp(54px, 6vw, 88px);
}

.results-summary > p:not(.kicker) {
  max-width: 780px;
  color: #b8c7cf;
  font-size: 18px;
}

.results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.results-actions .button {
  border: 0;
  cursor: pointer;
}

.results-actions .outline-light {
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-top: 70px;
}

.results-grid > article {
  min-width: 0;
  padding: clamp(28px, 3.6vw, 44px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
}

.results-grid .panel-label {
  color: var(--gold-light);
}

.category-results {
  margin-top: 28px;
}

.category-result {
  margin-top: 20px;
}

.category-result > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}

.category-result span {
  color: #c4d0d6;
  font-size: 13px;
  font-weight: 650;
}

.category-result b {
  color: var(--gold-light);
  font-size: 12px;
}

.category-result > i {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.category-result > i span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #bd7e00, var(--gold-light));
}

.priority-results {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: priorities;
}

.priority-results li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
}

.priority-results li > span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
}

.priority-results strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.3;
}

.priority-results p {
  margin: 6px 0 0;
  color: #9fb2bd;
  font-size: 12px;
  line-height: 1.5;
}

.result-next-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  margin-top: 18px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius-xl);
  background: var(--gold);
  color: var(--navy-950);
}

.result-next-step span {
  color: rgba(4, 21, 34, 0.65);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.result-next-step h3 {
  margin: 12px 0 7px;
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 660;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.result-next-step p {
  max-width: 760px;
  margin: 0;
  color: rgba(4, 21, 34, 0.72);
}

.result-next-step .button.primary {
  background: var(--navy-900);
  color: #fff;
}

.retake-button {
  display: block;
  margin: 30px auto 0;
  padding: 8px 2px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #aebfc8;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.assessment-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  padding: 112px var(--page-x);
  background: var(--gold);
  color: var(--navy-950);
}

.assessment-contact h2 {
  margin: 10px 0 24px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1;
}

.assessment-contact h2 em {
  color: var(--navy-700);
}

.assessment-contact > div:first-child > p:last-child {
  max-width: 780px;
  color: rgba(4, 21, 34, 0.73);
  font-size: 17px;
}

.assessment-contact > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.assessment-contact .button.primary {
  background: var(--navy-900);
  color: #fff;
}

.assessment-contact > div:last-child > a:last-child {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(4, 21, 34, 0.38);
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 1120px) {
  .assessment-hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  }

  .dimension-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assessment-question {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.9fr);
  }
}

@media (max-width: 940px) {
  .assessment-invite,
  .assessment-hero,
  .assessment-heading,
  .results-top,
  .results-grid,
  .assessment-contact {
    grid-template-columns: 1fr;
  }

  .assessment-hero {
    min-height: auto;
    gap: 46px;
    padding-top: 122px;
  }

  .logo-showcase {
    max-width: 720px;
  }

  .assessment-invite-action {
    max-width: 650px;
  }

  .assessment-heading {
    align-items: start;
  }

  .perspective-picker {
    max-width: 590px;
  }

  .assessment-progress {
    top: 72px;
  }

  .assessment-question {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .scale-options {
    max-width: 650px;
  }

  .score-ring {
    width: min(270px, 72vw);
  }

  .result-next-step {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .assessment-hero h1 {
    font-size: clamp(48px, 15vw, 64px);
  }

  .assessment-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .assessment-hero-meta span {
    min-width: 0;
  }

  .logo-showcase {
    padding: 19px;
  }

  .dimension-grid,
  .assessment-meta {
    grid-template-columns: 1fr;
  }

  .dimension-grid article {
    min-height: 0;
  }

  .dimension-grid h3 {
    margin-top: 28px;
  }

  .assessment-shell,
  .readiness-results,
  .assessment-contact {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .perspective-picker {
    grid-template-columns: 1fr;
  }

  .perspective-picker > span {
    grid-column: auto;
  }

  .assessment-progress {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 11px;
    padding: 13px 15px;
  }

  .assessment-progress small {
    display: none;
  }

  .question-group legend {
    grid-template-columns: 28px minmax(0, 1fr);
    padding: 24px 20px 20px;
  }

  .assessment-question {
    padding: 22px 20px;
  }

  .question-copy {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
  }

  .scale-options {
    gap: 4px;
  }

  .scale-option > span {
    min-height: 50px;
    border-radius: 8px;
  }

  .scale-option small {
    display: none;
  }

  .assessment-submit {
    grid-template-columns: 1fr;
  }

  .assessment-submit .button {
    width: 100%;
    min-width: 0;
  }

  .results-actions {
    flex-direction: column;
  }

  .results-actions .button,
  .result-next-step .button,
  .assessment-contact .button {
    width: 100%;
  }

  .score-ring strong {
    font-size: 82px;
  }

  .results-summary h2 {
    font-size: 50px;
  }

  .priority-results li {
    grid-template-columns: 40px minmax(0, 1fr);
  }
}

/* Refined program alignment and guided assessment */
.section-heading > p:last-child:not(.kicker) {
  grid-column: 2;
  margin: 4px 0 0;
}

.program-hero {
  min-height: 760px;
}

.adoption-journey {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.adoption-journey article {
  min-height: 170px;
}

.adoption-journey article:nth-child(3) {
  border-right: 0;
}

.adoption-journey article:nth-child(-n + 3) {
  border-bottom: 1px solid var(--line-dark);
}

.adoption-journey h3 {
  margin-top: 30px;
}

.roadmap-section .section-intro,
.modules-section .section-intro {
  margin-left: min(310px, 22vw);
}

.roadmap-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.roadmap-card {
  min-height: 470px;
  grid-column: span 2;
  padding: 28px;
}

.roadmap-card:nth-child(n + 4) {
  grid-column: span 3;
}

.assessment-shell {
  background:
    radial-gradient(circle at 85% 8%, rgba(232, 170, 24, 0.12), transparent 22%),
    linear-gradient(180deg, #eef0ed, #e6eae7);
}

.assessment-heading {
  align-items: center;
  margin-bottom: 24px;
}

.assessment-scale-guide {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
}

.assessment-scale-guide > span {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px;
  border: 1px solid rgba(16, 40, 58, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
}

.assessment-scale-guide b {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-light);
  font-size: 12px;
}

.assessment-scale-guide small {
  font-size: 10px;
  font-weight: 750;
  line-height: 1.2;
}

.assessment-progress {
  grid-template-columns: minmax(230px, 0.8fr) minmax(280px, 1.3fr) auto;
  gap: 28px;
  padding: 17px 22px;
  border-radius: 16px;
}

.assessment-progress > .progress-context,
.assessment-progress > .progress-center {
  height: auto;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.progress-context span,
.progress-context strong {
  display: block;
}

.progress-context span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.progress-context strong {
  margin-top: 2px;
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.25;
}

.progress-center {
  display: grid;
  gap: 7px;
}

.assessment-step-dots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.assessment-step-dots span {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.assessment-step-dots span.active {
  background: var(--gold-light);
}

.assessment-step-dots span.complete {
  background: var(--gold);
}

.progress-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.progress-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.progress-center small {
  color: #aebfc8;
  font-size: 9px;
}

.answer-counter {
  white-space: nowrap;
}

.question-group {
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(16, 40, 58, 0.06);
  box-shadow: 0 24px 70px rgba(3, 20, 34, 0.09);
}

.question-group legend {
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 30px 34px 26px;
  background: linear-gradient(135deg, #fff, #f7f7f4);
}

.question-group legend > span {
  grid-row: auto;
  width: max-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(232, 170, 24, 0.14);
  color: #926500;
  letter-spacing: 0.12em;
}

.question-group legend strong {
  margin-top: 5px;
  font-size: clamp(27px, 2.7vw, 36px);
}

.question-group legend small {
  max-width: 720px;
  font-size: 13px;
}

.assessment-question {
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.9fr);
  gap: 42px;
  padding: 30px 34px;
  background: #fff;
}

.assessment-question:hover {
  background: #fbfbf8;
}

.question-copy {
  display: block;
}

.question-copy > span {
  display: block;
  margin-bottom: 7px;
  padding: 0;
  color: #9a700e;
  font-size: 8px;
  text-transform: uppercase;
}

.question-copy p {
  font-size: 15px;
  line-height: 1.55;
}

.scale-options {
  gap: 7px;
}

.scale-option > span {
  min-height: 70px;
  border-radius: 12px;
  background: #f4f6f4;
}

.scale-option b {
  font-size: 17px;
}

.scale-option small {
  margin-top: 4px;
  font-size: 8px;
}

.assessment-navigation {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr) minmax(190px, auto);
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border-radius: 18px;
  background: var(--navy-900);
  box-shadow: var(--shadow);
  color: #fff;
}

.assessment-navigation > div {
  text-align: center;
}

.assessment-navigation > div strong {
  font-family: var(--display);
  font-size: 17px;
}

.assessment-back {
  width: max-content;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #d1dbe0;
  cursor: pointer;
  font-weight: 700;
}

.assessment-back:disabled {
  cursor: default;
  opacity: 0.35;
}

.assessment-navigation .button {
  min-width: 190px;
  border: 0;
  cursor: pointer;
}

.assessment-navigation .form-error {
  min-height: 18px;
  margin: 4px 0 0;
  color: #ffd0c3;
  font-size: 10px;
}

.result-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.result-insight-grid article {
  padding: clamp(27px, 3.4vw, 40px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
}

.result-insight-grid span,
.action-plan-panel > div > span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.result-insight-grid h3,
.action-plan-panel h3 {
  margin: 14px 0 8px;
  font-family: var(--display);
  font-size: clamp(25px, 2.8vw, 38px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.result-insight-grid p {
  margin-bottom: 0;
  color: #9fb2bd;
  font-size: 13px;
}

.action-plan-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(35px, 6vw, 80px);
  margin-top: 18px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.075);
}

.action-plan-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.action-plan-panel li {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
}

.action-plan-panel li span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
}

.action-plan-panel li p {
  margin: 0;
  color: #c0cdd4;
  font-size: 13px;
}

@media (max-width: 1120px) {
  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-card,
  .roadmap-card:nth-child(n + 4) {
    min-height: 0;
    grid-column: auto;
  }

  .assessment-question {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 940px) {
  .section-heading > p:last-child:not(.kicker) {
    grid-column: 1;
  }

  .roadmap-section .section-intro,
  .modules-section .section-intro {
    margin-left: 0;
  }

  .assessment-progress {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 22px;
  }

  .assessment-progress > .progress-center {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .action-plan-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .adoption-journey {
    grid-template-columns: 1fr;
  }

  .adoption-journey article,
  .adoption-journey article:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .assessment-scale-guide {
    gap: 4px;
  }

  .assessment-scale-guide > span {
    min-height: 58px;
    flex-direction: column;
    gap: 4px;
    padding: 7px 2px;
    text-align: center;
  }

  .assessment-scale-guide small {
    font-size: 7px;
  }

  .assessment-progress {
    grid-template-columns: 1fr auto;
  }

  .progress-context strong {
    font-size: 13px;
  }

  .answer-counter {
    align-self: start;
    font-size: 9px !important;
  }

  .question-group legend {
    grid-template-columns: 1fr;
    padding: 24px 20px 20px;
  }

  .assessment-question {
    padding: 24px 20px;
  }

  .scale-option > span {
    min-height: 62px;
    padding: 5px 2px;
  }

  .scale-option small {
    display: block;
    font-size: 6.5px;
  }

  .assessment-navigation {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 22px 20px;
  }

  .assessment-navigation > div {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .assessment-navigation .button {
    width: 100%;
    min-width: 0;
  }

  .assessment-back {
    width: 100%;
  }

  .result-insight-grid {
    grid-template-columns: 1fr;
  }

  .action-plan-panel li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media print {
  .assessment-page {
    background: #fff;
  }

  .assessment-page .site-header,
  .assessment-page .assessment-hero,
  .assessment-page .assessment-explainer,
  .assessment-page .assessment-shell,
  .assessment-page .assessment-contact,
  .assessment-page footer,
  .results-actions,
  .result-next-step .button,
  .retake-button {
    display: none !important;
  }

  .readiness-results {
    display: block !important;
    padding: 24px;
    background: #fff;
    color: #10283a;
  }

  .results-top,
  .results-grid {
    gap: 24px;
  }

  .results-summary h2,
  .score-ring strong,
  .category-result b,
  .results-grid .panel-label,
  .priority-results li > span {
    color: #9b6a00;
  }

  .results-summary > p:not(.kicker),
  .category-result span,
  .priority-results p {
    color: #435867;
  }

  .score-ring::before {
    background: #fff;
  }

  .results-grid > article {
    border-color: rgba(16, 40, 58, 0.18);
    background: #fff;
  }

  .result-next-step {
    color: #10283a;
  }
}

/* 2026 corporate refinement: shared navigation, isolated logo motion and lead capture */
nav a[aria-current="page"] {
  color: var(--gold-light);
  opacity: 1;
}

.logo-scene {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1161 / 474;
  background: #fff;
  isolation: isolate;
}

.logo-scene .scene-base,
.logo-scene .scene-dino {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
}

.logo-scene .scene-base {
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  animation: none;
  transform: none;
}

.logo-scene .scene-cover {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 35%;
  width: 43.5%;
  background: #fff;
}

.logo-scene .scene-sun {
  position: absolute;
  z-index: 2;
  top: 5.5%;
  left: 36.2%;
  width: 27.2%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 51% 55%, #ffe2a9 0 14%, #ffc477 45%, #ff813b 76%, #f55f27 100%);
}

.logo-scene .scene-ground {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 2.15%;
  left: 0;
  height: 1.1%;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent 0, #142c3b 5%, #52616a 50%, #142c3b 95%, transparent 100%);
  opacity: 0.78;
}

.logo-scene .scene-dino {
  z-index: 4;
  top: 0;
  left: 34.45%;
  width: 45.22%;
  height: 100%;
  object-fit: fill;
  transform-origin: 58% 96%;
  animation: dino-only-jump 2.8s cubic-bezier(0.45, 0, 0.3, 1) infinite;
}

@keyframes dino-only-jump {
  0%, 16%, 54%, 100% { transform: translateY(0); }
  31% { transform: translateY(-2.4%); }
  39% { transform: translateY(-1.2%); }
}

.brand-mark.logo-scene {
  width: 96px;
  height: auto;
  flex: 0 0 96px;
  border-radius: 9px;
}

.brand-mark.logo-scene img {
  animation-duration: 2.8s;
}

.brand-mark.logo-scene .scene-base {
  animation: none;
}

.brand:hover .brand-mark.logo-scene .scene-dino,
.brand:focus-visible .brand-mark.logo-scene .scene-dino {
  animation-duration: 1.5s;
}

.core small {
  max-width: 184px;
  margin-top: 7px;
  white-space: nowrap;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.outcome-card .card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid currentColor;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.35;
}

.outcome-card:focus-visible {
  outline-color: var(--gold-light);
}

.productivity-table th,
.productivity-table th.copilot-column {
  background: rgba(10, 43, 64, 0.88);
  color: #fff;
}

.showcase-stage.logo-scene > img:first-child,
.showcase-stage.logo-scene .scene-base {
  animation: none;
  transform: none;
}

.showcase-stage.logo-scene .scene-dino {
  animation: dino-only-jump 2.8s cubic-bezier(0.45, 0, 0.3, 1) infinite;
}

.logo-showcase > p {
  display: block;
  margin: 22px 0 12px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.outcome-request-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  margin-top: 58px;
  padding: clamp(27px, 3.5vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 18px 55px rgba(5, 28, 44, 0.08);
}

.outcome-request-band.dark {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.outcome-request-band h3 {
  margin: 8px 0 6px;
  font-family: var(--display);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 660;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.outcome-request-band p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.outcome-request-band.dark p:last-child {
  color: #aebfc8;
}

.outcome-request-band .button,
.contact button.button,
.hero-actions button.button {
  border: 0;
  cursor: pointer;
}

.hero-actions button.text-button {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}

.lead-gate {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid rgba(16, 40, 58, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 32px 90px rgba(3, 20, 34, 0.12);
}

.lead-gate-copy h2 {
  margin: 12px 0 20px;
  color: var(--ink);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.02;
}

.lead-gate-copy > p:last-of-type {
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
}

.lead-gate-trust {
  display: grid;
  gap: 9px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.lead-gate-trust span::first-letter {
  color: #0a7b55;
}

.lead-gate-form,
.inquiry-dialog form,
.chat-panel form {
  display: grid;
  gap: 15px;
}

.lead-gate-form {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f8f9f7;
}

.lead-gate-form label:not(.consent-check):not(.honeypot),
.inquiry-dialog label:not(.consent-check):not(.honeypot),
.chat-panel label:not(.consent-check):not(.honeypot) {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.lead-gate-form label small,
.inquiry-dialog label small {
  color: var(--muted);
  font-weight: 600;
}

.lead-gate-form input,
.inquiry-dialog input,
.inquiry-dialog textarea,
.chat-panel input,
.chat-panel select,
.chat-panel textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(16, 40, 58, 0.16);
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  line-height: 1.4;
}

.inquiry-dialog textarea,
.chat-panel textarea {
  min-height: 92px;
  resize: vertical;
}

.lead-gate-form input:focus,
.inquiry-dialog input:focus,
.inquiry-dialog textarea:focus,
.chat-panel input:focus,
.chat-panel select:focus,
.chat-panel textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(232, 170, 24, 0.16);
}

.consent-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  cursor: pointer;
  font-size: 10.5px;
  line-height: 1.5;
}

.consent-check input {
  width: 17px;
  min-height: 17px;
  margin: 2px 0 0;
  accent-color: var(--navy-900);
}

.consent-check.compact {
  font-size: 9.5px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.lead-gate-form .form-error,
.inquiry-dialog .form-error,
.chat-panel .form-error {
  min-height: 16px;
  margin: 0;
  color: #a12f1e;
  font-size: 11px;
}

.lead-gate-form .success-message,
.inquiry-dialog .success-message,
.chat-panel .success-message {
  color: #087047;
  font-weight: 750;
}

.lead-gate-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.delivery-status {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--gold-light);
  font-size: 12px;
}

.inquiry-modal[hidden],
.chat-panel[hidden] {
  display: none;
}

.inquiry-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.inquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 15, 25, 0.76);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.inquiry-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.32);
}

.inquiry-dialog h2 {
  margin: 10px 0 8px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
}

.inquiry-dialog > p:not(.kicker) {
  margin: 0 0 24px;
  color: var(--muted);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f5f6f4;
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-submit-row > span {
  color: var(--muted);
  font-size: 10px;
}

.inquiry-dialog .button {
  border: 0;
  cursor: pointer;
}

.form-success {
  padding: 32px 0;
  text-align: center;
}

.form-success > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #dff4e9;
  color: #087047;
  font-size: 24px;
}

.form-success h3 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: 28px;
}

.form-success p {
  margin: 0;
  color: var(--muted);
}

.form-success.compact {
  padding: 18px 6px;
}

body.dialog-open {
  overflow: hidden;
}

.chat-widget {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.chat-launcher {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 11px 18px 11px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 18px 44px rgba(3, 20, 34, 0.28);
  color: var(--navy-950);
  cursor: pointer;
}

.chat-launcher > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-light);
}

.chat-launcher b {
  font-size: 13px;
}

.chat-panel {
  width: min(380px, calc(100vw - 32px));
  max-height: min(650px, calc(100vh - 96px));
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 20px;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-700));
  color: #fff;
}

.chat-head small,
.chat-head strong {
  display: block;
}

.chat-head small {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.chat-head strong {
  margin-top: 3px;
  font-family: var(--display);
  font-size: 18px;
}

.chat-head button {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
}

.chat-welcome {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  padding: 18px 20px 6px;
}

.chat-welcome > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-light);
  font-weight: 800;
}

.chat-welcome p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 4px 13px 13px 13px;
  background: #eef1ef;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.chat-panel form {
  padding: 15px 20px 20px;
}

.chat-panel .button {
  width: 100%;
  min-height: 47px;
  border: 0;
  cursor: pointer;
}

@media (max-width: 1180px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header.menu-active,
  .site-header.scrolled.menu-active {
    background: var(--navy-950);
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header,
  .site-header.scrolled {
    height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .site-header nav {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: flex;
    visibility: hidden;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 6px;
    padding: 96px var(--page-x) 36px;
    background: var(--navy-950);
    font-size: clamp(23px, 5vw, 32px);
    opacity: 0;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header nav a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    white-space: normal;
  }

  .site-header nav .nav-cta {
    width: max-content;
    margin-top: 18px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 16px;
  }
}

@media (max-width: 940px) {
  .outcome-request-band,
  .lead-gate {
    grid-template-columns: 1fr;
  }

  .outcome-request-band .button {
    width: max-content;
  }
}

@media (max-width: 680px) {
  .brand-mark.logo-scene {
    width: 72px;
    flex-basis: 72px;
  }

  .brand-name {
    display: none;
  }

  .core small {
    font-size: 6.8px;
  }

  .logo-showcase > p {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .outcome-request-band {
    margin-top: 38px;
    padding: 24px 20px;
  }

  .outcome-request-band .button {
    width: 100%;
  }

  .lead-gate {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .lead-gate-form {
    padding: 20px 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .inquiry-modal {
    align-items: end;
    padding: 0;
  }

  .inquiry-dialog {
    max-height: 92vh;
    padding: 28px 20px;
    border-radius: 24px 24px 0 0;
  }

  .chat-widget {
    right: 16px;
    bottom: 16px;
  }

  .chat-launcher b {
    display: none;
  }

  .chat-launcher {
    width: 54px;
    height: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 0;
  }

  .chat-panel {
    width: calc(100vw - 32px);
    max-height: calc(100vh - 86px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-scene .scene-dino {
    animation: none !important;
  }
}

@media print {
  .chat-widget,
  .inquiry-modal {
    display: none !important;
  }
}

/* Gemini-powered Neurosaur website assistant */
.ai-chat-widget {
  z-index: 110;
}

.ai-chat-launcher {
  position: relative;
  padding-right: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ai-chat-launcher:hover {
  box-shadow: 0 22px 54px rgba(3, 20, 34, 0.34);
  transform: translateY(-2px);
}

.ai-chat-launcher .ai-launcher-icon {
  font-size: 15px;
}

.ai-live-dot {
  position: absolute;
  top: 11px;
  right: 12px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #0f9b69;
  box-shadow: 0 0 0 2px rgba(15, 155, 105, 0.2);
}

.ai-chat-panel {
  display: grid;
  width: min(410px, calc(100vw - 32px));
  height: min(680px, calc(100vh - 98px));
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  overflow: hidden;
  border-color: rgba(4, 21, 34, 0.12);
  background: #f4f6f4;
}

.ai-chat-head {
  padding: 17px 18px;
}

.ai-chat-identity {
  display: grid;
  min-width: 0;
  grid-template-columns: 39px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
}

.ai-chat-avatar,
.ai-message-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-950);
  font-family: var(--display);
  font-weight: 850;
}

.ai-chat-avatar {
  width: 39px;
  height: 39px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.ai-chat-identity > div > span {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: #b8c7cf;
  font-size: 9px;
  line-height: 1.3;
}

.ai-chat-identity > div > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #58d39f;
}

.ai-chat-messages {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 13px;
  overflow-y: auto;
  padding: 18px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.ai-message {
  display: flex;
  max-width: 90%;
  align-items: flex-start;
  gap: 9px;
}

.ai-message-avatar {
  width: 29px;
  height: 29px;
  margin-top: 2px;
  background: var(--navy-900);
  color: var(--gold-light);
  font-size: 11px;
}

.ai-message > div {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(16, 40, 58, 0.08);
  border-radius: 5px 15px 15px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(3, 20, 34, 0.06);
}

.ai-message p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.ai-message small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 8.5px;
  line-height: 1.4;
}

.user-message {
  align-self: flex-end;
}

.user-message > div {
  border-color: transparent;
  border-radius: 15px 5px 15px 15px;
  background: var(--navy-900);
}

.user-message p {
  color: #fff;
}

.ai-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.ai-message-actions a {
  padding: 6px 9px;
  border: 1px solid rgba(16, 40, 58, 0.14);
  border-radius: 999px;
  color: var(--navy-700);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
}

.ai-message-actions a:hover {
  border-color: var(--gold);
  background: #fff7df;
}

.ai-quick-prompts {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 0 18px 12px;
  scrollbar-width: none;
}

.ai-quick-prompts::-webkit-scrollbar {
  display: none;
}

.ai-quick-prompts[hidden] {
  display: none;
}

.ai-quick-prompts button {
  min-width: max-content;
  padding: 8px 11px;
  border: 1px solid rgba(16, 40, 58, 0.13);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 9px;
  font-weight: 750;
}

.ai-quick-prompts button:hover {
  border-color: var(--gold);
  color: var(--navy-900);
}

.chat-panel form.ai-chat-form {
  display: block;
  gap: 0;
  padding: 13px 15px 14px;
  border-top: 1px solid rgba(16, 40, 58, 0.09);
  background: #fff;
}

.ai-chat-compose {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: end;
  gap: 8px;
  padding: 5px 5px 5px 12px;
  border: 1px solid rgba(16, 40, 58, 0.17);
  border-radius: 15px;
  background: #fff;
}

.ai-chat-compose:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 170, 24, 0.13);
}

.chat-panel .ai-chat-compose textarea {
  min-height: 34px;
  max-height: 112px;
  padding: 7px 0 5px;
  overflow-y: auto;
  border: 0;
  border-radius: 0;
  outline: 0;
  resize: none;
  box-shadow: none;
  font-size: 12px;
}

.chat-panel .ai-chat-compose textarea:focus {
  border: 0;
  outline: 0;
}

.ai-chat-compose button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: var(--gold);
  color: var(--navy-950);
  cursor: pointer;
  font-size: 20px;
  font-weight: 850;
}

.ai-chat-compose button:disabled,
.ai-chat-compose textarea:disabled {
  cursor: wait;
  opacity: 0.6;
}

.ai-chat-privacy {
  margin: 7px 3px 0;
  color: var(--muted);
  font-size: 7.8px;
  line-height: 1.4;
}

.ai-typing > div {
  display: flex;
  gap: 4px;
  padding: 14px 15px;
}

.ai-typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8798a2;
  animation: ai-typing-bounce 900ms ease-in-out infinite;
}

.ai-typing i:nth-child(2) {
  animation-delay: 120ms;
}

.ai-typing i:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes ai-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-4px); opacity: 1; }
}

@media (max-width: 680px) {
  body.ai-chat-open {
    overflow: hidden;
  }

  .ai-chat-launcher {
    padding: 0;
  }

  .ai-live-dot {
    top: 7px;
    right: 7px;
  }

  .ai-chat-panel {
    position: fixed;
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    height: min(720px, calc(100dvh - 24px));
    max-height: calc(100dvh - 24px);
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-chat-launcher,
  .ai-typing i {
    transition: none;
    animation: none;
  }
}

/* 2026 solar AI framework and responsive brand-wordmark correction */
.hero-visual > .solar-system {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}

.solar-system .orbit {
  display: block;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 198, 69, 0.08);
  transform-origin: 50% 50%;
  will-change: transform;
}

.solar-system .orbit::after {
  position: absolute;
  top: 50%;
  right: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid rgba(255, 239, 188, 0.88);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 13px rgba(255, 199, 64, 0.95);
  content: "";
  transform: translateY(-50%);
}

.solar-system .orbit-one {
  width: 292px;
  height: 112px;
  border-color: rgba(255, 213, 106, 0.64);
  animation: galaxy-orbit-one 11s linear infinite;
}

.solar-system .orbit-two {
  width: 410px;
  height: 174px;
  border-color: rgba(170, 220, 238, 0.42);
  animation: galaxy-orbit-two 16s linear infinite reverse;
}

.solar-system .orbit-three {
  width: min(520px, 100%);
  height: 238px;
  border-color: rgba(255, 255, 255, 0.22);
  animation: galaxy-orbit-three 23s linear infinite;
}

.solar-system .core {
  z-index: 3;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 244, 205, 0.9);
  background:
    radial-gradient(circle at 38% 32%, #fff8cf 0 5%, #ffe17c 22%, #f5b51d 55%, #ef8f0a 78%, #c95f05 100%);
  box-shadow:
    0 0 0 10px rgba(255, 198, 54, 0.06),
    0 0 38px rgba(255, 184, 34, 0.46),
    0 0 92px rgba(242, 150, 16, 0.3),
    0 35px 80px rgba(0, 0, 0, 0.32);
  animation: solar-pulse 4.8s ease-in-out infinite;
}

.solar-system .core::before {
  position: absolute;
  inset: -17px;
  z-index: -1;
  border: 1px solid rgba(255, 206, 80, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 26px rgba(255, 190, 44, 0.1);
  content: "";
}

.solar-system .core strong {
  color: var(--navy-950);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.32);
}

.solar-system .core small {
  color: #4c2e05;
  font-weight: 850;
}

.hero-visual .floating-card {
  z-index: 5;
}

@keyframes galaxy-orbit-one {
  from { transform: translate(-50%, -50%) rotate(-18deg); }
  to { transform: translate(-50%, -50%) rotate(342deg); }
}

@keyframes galaxy-orbit-two {
  from { transform: translate(-50%, -50%) rotate(48deg); }
  to { transform: translate(-50%, -50%) rotate(408deg); }
}

@keyframes galaxy-orbit-three {
  from { transform: translate(-50%, -50%) rotate(112deg); }
  to { transform: translate(-50%, -50%) rotate(472deg); }
}

@keyframes solar-pulse {
  0%, 100% {
    box-shadow: 0 0 0 10px rgba(255, 198, 54, 0.06), 0 0 38px rgba(255, 184, 34, 0.42), 0 0 88px rgba(242, 150, 16, 0.27), 0 35px 80px rgba(0, 0, 0, 0.32);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(255, 198, 54, 0.09), 0 0 48px rgba(255, 184, 34, 0.57), 0 0 106px rgba(242, 150, 16, 0.35), 0 35px 80px rgba(0, 0, 0, 0.32);
  }
}

@media (max-width: 680px) {
  .site-header .brand {
    min-width: 0;
    gap: 9px;
  }

  .site-header .brand-mark.logo-scene {
    width: 64px;
    flex-basis: 64px;
  }

  .site-header .brand-name {
    display: block;
    min-width: 0;
    white-space: nowrap;
  }

  .site-header .brand-name strong {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .site-header .brand-name small {
    margin-top: 4px;
    font-size: 6.5px;
    letter-spacing: 0.2em;
  }

  .hero-visual {
    display: grid;
    height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-visual > .solar-system {
    position: relative;
    inset: auto;
    width: 100%;
    height: 300px;
    margin: 0 auto 8px;
  }

  .solar-system .orbit {
    position: absolute;
    top: 50%;
    left: 50%;
  }

  .solar-system .orbit-one {
    width: 190px;
    height: 72px;
  }

  .solar-system .orbit-two {
    width: 260px;
    height: 104px;
  }

  .solar-system .orbit-three {
    width: min(330px, calc(100vw - 44px));
    height: 142px;
  }

  .solar-system .orbit::after {
    width: 7px;
    height: 7px;
  }

  .hero-visual .solar-system .core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 142px;
    height: 142px;
    min-height: 142px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-visual .solar-system .core strong {
    font-size: 51px;
  }

  .hero-visual .solar-system .core small {
    max-width: 124px;
    margin-top: 6px;
    font-size: 5.3px;
    letter-spacing: 0.08em;
  }

  .hero-visual .floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    transform: none;
  }
}

@media (max-width: 390px) {
  .site-header .brand-mark.logo-scene {
    width: 58px;
    flex-basis: 58px;
  }

  .site-header .brand-name strong {
    font-size: 10px;
  }

  .site-header .brand-name small {
    font-size: 6px;
    letter-spacing: 0.16em;
  }

  .hero-visual > .solar-system {
    height: 278px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solar-system .orbit,
  .solar-system .core {
    animation: none !important;
  }

  .solar-system .orbit-one { transform: translate(-50%, -50%) rotate(-18deg); }
  .solar-system .orbit-two { transform: translate(-50%, -50%) rotate(48deg); }
  .solar-system .orbit-three { transform: translate(-50%, -50%) rotate(112deg); }
}

/* Final corporate polish: orbit outcomes, capability icons, dancing dinosaur and mobile footer */
.hero-visual > .solar-system {
  pointer-events: auto;
}

.solar-system .orbit {
  pointer-events: none;
}

.orbit-outcome {
  position: absolute;
  top: 50%;
  right: -38px;
  z-index: 8;
  display: block;
  min-width: 154px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 230, 156, 0.58);
  border-radius: 13px;
  background: rgba(5, 27, 43, 0.92);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28), 0 0 20px rgba(241, 181, 36, 0.1);
  color: #fff;
  line-height: 1.25;
  pointer-events: auto;
  text-align: left;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  will-change: transform;
}

.orbit-outcome strong,
.orbit-outcome small {
  display: block;
}

.orbit-outcome strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 780;
}

.orbit-outcome small {
  margin-top: 3px;
  color: #afc1cb;
  font-size: 9px;
  letter-spacing: 0.03em;
}

.orbit-outcome:hover,
.orbit-outcome:focus-visible {
  border-color: var(--gold-light);
  background: #10394f;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35), 0 0 28px rgba(241, 181, 36, 0.22);
}

.orbit-outcome:focus-visible {
  outline: 3px solid rgba(255, 220, 121, 0.46);
  outline-offset: 4px;
}

.orbit-one .orbit-outcome {
  right: -44px;
  animation: orbit-label-one 11s linear infinite;
}

.orbit-two .orbit-outcome {
  animation: orbit-label-two 16s linear infinite;
}

.orbit-three .orbit-outcome {
  animation: orbit-label-three 23s linear infinite;
}

.solar-system:hover .orbit,
.solar-system:hover .orbit-outcome,
.solar-system:focus-within .orbit,
.solar-system:focus-within .orbit-outcome {
  animation-play-state: paused;
}

@keyframes orbit-label-one {
  from { transform: translate(50%, -50%) rotate(18deg); }
  to { transform: translate(50%, -50%) rotate(-342deg); }
}

@keyframes orbit-label-two {
  from { transform: translate(50%, -50%) rotate(-408deg); }
  to { transform: translate(50%, -50%) rotate(-48deg); }
}

@keyframes orbit-label-three {
  from { transform: translate(50%, -50%) rotate(-112deg); }
  to { transform: translate(50%, -50%) rotate(-472deg); }
}

.capability-cell {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.capability-cell strong {
  display: block;
  font: inherit;
}

.capability-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid rgba(255, 218, 119, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.capability-icon img {
  width: 23px;
  height: 23px;
  filter: brightness(0) saturate(100%) invert(82%) sepia(50%) saturate(863%) hue-rotate(344deg) brightness(103%) contrast(101%);
}

.logo-scene .scene-dino,
.showcase-stage.logo-scene .scene-dino {
  animation: dino-only-dance 3.4s ease-in-out infinite;
}

@keyframes dino-only-dance {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  12% { transform: translate3d(-1.4%, -0.8%, 0) rotate(-1.2deg); }
  25% { transform: translate3d(1.5%, -3.2%, 0) rotate(1.6deg); }
  38% { transform: translate3d(-0.8%, -1%, 0) rotate(-0.7deg); }
  50% { transform: translate3d(1.2%, -3.6%, 0) rotate(1.4deg); }
  63% { transform: translate3d(0.2%, 0, 0) rotate(-0.25deg); }
  76% { transform: translate3d(-1.2%, -2.2%, 0) rotate(-1.35deg); }
  88% { transform: translate3d(0.9%, -0.7%, 0) rotate(0.7deg); }
}

footer > p:first-of-type {
  white-space: nowrap;
}

@media (max-width: 680px) {
  footer .brand {
    min-width: 0;
  }

  footer .brand-name {
    display: block;
    min-width: 0;
    text-align: left;
    white-space: nowrap;
  }

  footer .brand-name strong {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  footer .brand-name small {
    margin-top: 4px;
    font-size: 6.5px;
    letter-spacing: 0.2em;
  }

  .hero-visual > .solar-system {
    height: 326px;
  }

  .solar-system .orbit-one {
    width: 170px;
    height: 68px;
  }

  .solar-system .orbit-two {
    width: 218px;
    height: 98px;
  }

  .solar-system .orbit-three {
    width: min(260px, calc(100vw - 84px));
    height: 136px;
  }

  .hero-visual .solar-system .core {
    width: 112px;
    height: 112px;
    min-height: 112px;
  }

  .hero-visual .solar-system .core strong {
    font-size: 43px;
  }

  .hero-visual .solar-system .core small {
    max-width: 102px;
    font-size: 4.4px;
  }

  .orbit-outcome,
  .orbit-one .orbit-outcome {
    right: -17px;
    width: 104px;
    min-width: 104px;
    padding: 8px 9px;
    border-radius: 10px;
    text-align: center;
  }

  .orbit-outcome strong {
    font-size: 11px;
  }

  .orbit-outcome small {
    display: none;
  }

  .productivity-table td {
    padding: 18px 14px;
  }

  .capability-cell {
    gap: 10px;
  }
}

@media (max-width: 390px) {
  footer .brand-mark.logo-scene {
    width: 58px;
    flex-basis: 58px;
  }

  footer .brand-name strong {
    font-size: 10px;
  }

  footer .brand-name small {
    font-size: 6px;
    letter-spacing: 0.16em;
  }

  .hero-visual > .solar-system {
    height: 304px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-scene .scene-dino,
  .showcase-stage.logo-scene .scene-dino,
  .orbit-outcome {
    animation: none !important;
  }

  .orbit-one .orbit-outcome { transform: translate(50%, -50%) rotate(18deg); }
  .orbit-two .orbit-outcome { transform: translate(50%, -50%) rotate(-48deg); }
  .orbit-three .orbit-outcome { transform: translate(50%, -50%) rotate(-112deg); }
}

/* Two-track AI assessment and social footer */
.assessment-v2-page .assessment-hero-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.assessment-flow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.track-selection {
  max-width: 1180px;
  margin: 0 auto;
}

.track-selection-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.track-selection-heading h2 {
  margin: 11px 0 16px;
  color: var(--ink);
  font-size: clamp(40px, 4.6vw, 66px);
  line-height: 1.03;
}

.track-selection-heading > p:last-child {
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
}

.track-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.track-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(16, 40, 58, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(3, 20, 34, 0.09);
}

.track-card::after {
  position: absolute;
  top: -130px;
  right: -110px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(232, 170, 24, 0.2);
  border-radius: 50%;
  content: "";
}

.track-card-workplace {
  background: linear-gradient(145deg, #071d2e, #0c3047);
  color: #fff;
}

.track-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.track-card-top span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 900;
}

.track-card-top small {
  color: #997018;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.track-card-workplace .track-card-top small {
  color: var(--gold-light);
}

.track-card h3 {
  max-width: 420px;
  margin: 30px 0 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.track-card-workplace h3 {
  color: #fff;
}

.track-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.track-card-workplace p {
  color: #b8c7cf;
}

.track-audience {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: #fff8e5;
}

.track-card-workplace .track-audience {
  background: rgba(255, 255, 255, 0.07);
}

.track-audience strong {
  display: block;
  margin-bottom: 3px;
  color: #9a6b00;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.track-card-workplace .track-audience strong {
  color: var(--gold-light);
}

.track-card ul {
  display: grid;
  gap: 8px;
  margin: 5px 0 28px;
  padding: 0;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  list-style: none;
}

.track-card-workplace ul {
  color: #d1dbe0;
}

.track-card li::before {
  margin-right: 8px;
  color: var(--gold);
  content: "✓";
}

.track-card .button {
  z-index: 1;
  width: 100%;
  margin-top: auto;
  border: 0;
  cursor: pointer;
}

.assessment-registration {
  align-items: start;
}

.change-track {
  margin: 0 0 34px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid rgba(16, 40, 58, 0.28);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
}

.assessment-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.assessment-form-grid .form-span-2 {
  grid-column: 1 / -1;
}

.lead-gate-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 40px 11px 13px;
  border: 1px solid rgba(16, 40, 58, 0.16);
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.lead-gate-form select:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(232, 170, 24, 0.16);
}

.phone-field {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(16, 40, 58, 0.16);
  border-radius: 11px;
  background: #fff;
}

.phone-field:focus-within {
  border-color: var(--gold);
  outline: 3px solid rgba(232, 170, 24, 0.16);
}

.phone-field b {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-right: 1px solid var(--line);
  background: #eef1ef;
  color: var(--ink);
  font-size: 12px;
}

.lead-gate-form .phone-field input {
  min-width: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
}

.lead-gate-form .phone-field input:focus {
  border: 0;
  outline: 0;
}

.assessment-form-grid label > small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

/* Keep paired registration fields aligned even when one has helper text. */
.assessment-form-grid > label {
  align-self: start;
  align-content: start;
}

.track-summary-chip {
  display: grid;
  min-width: 230px;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(16, 40, 58, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
}

.track-summary-chip span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.track-summary-chip strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
}

.track-summary-chip button {
  width: max-content;
  margin-top: 5px;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid rgba(16, 40, 58, 0.28);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 9px;
  font-weight: 750;
}

.assessment-v2-page .assessment-step-dots {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.scenario-question-group legend {
  display: grid;
  grid-template-columns: 1fr;
}

.scenario-question {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 24px;
  padding: clamp(26px, 4vw, 42px);
}

.scenario-question .question-copy {
  display: block;
  max-width: 880px;
}

.scenario-question .question-copy > span {
  display: block;
  margin-bottom: 10px;
  color: #9a700e;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scenario-question .question-copy p {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(21px, 2.3vw, 30px);
  font-weight: 620;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.scenario-options {
  display: grid;
  gap: 9px;
}

.scenario-option {
  min-width: 0;
  cursor: pointer;
}

.scenario-option input {
  position: absolute;
  opacity: 0;
}

.scenario-option > span {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 12px 16px;
  border: 1px solid rgba(16, 40, 58, 0.13);
  border-radius: 13px;
  background: #f7f8f6;
  color: var(--ink-soft);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.scenario-option b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #e7ebe8;
  color: var(--ink);
  font-size: 11px;
}

.scenario-option small {
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.48;
}

.scenario-option:hover > span {
  border-color: rgba(232, 170, 24, 0.72);
  transform: translateY(-1px);
}

.scenario-option input:checked + span {
  border-color: var(--gold);
  background: #fff7df;
  box-shadow: 0 9px 24px rgba(180, 122, 0, 0.12);
  color: var(--ink);
}

.scenario-option input:checked + span b {
  background: var(--gold);
  color: var(--navy-950);
}

.scenario-option input:focus-visible + span {
  outline: 3px solid rgba(232, 170, 24, 0.35);
  outline-offset: 2px;
}

.result-evidence {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  margin: 22px 0 4px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.result-evidence > div span,
.result-evidence > div strong,
.result-evidence > div small {
  display: block;
}

.result-evidence > div span {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.result-evidence > div strong {
  margin-top: 4px;
  color: #fff;
  font-family: var(--display);
  font-size: 22px;
}

.result-evidence > div small,
.result-evidence p,
.result-evidence li {
  color: #aebfc8;
  font-size: 10px;
  line-height: 1.5;
}

.result-evidence p,
.result-evidence ul {
  margin: 0;
}

.result-evidence ul {
  display: grid;
  gap: 4px;
  padding-left: 17px;
}

.assessment-disclaimer {
  max-width: 760px;
  margin: 25px auto 0;
  color: #8fa2af;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #c8d4da;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-950);
  transform: translateY(-2px);
}

.footer-social a:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
}

.footer-social svg {
  width: 17px;
  height: 17px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social .social-fill {
  fill: currentColor;
  stroke: none;
}

.footer-social .social-dot {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 940px) {
  .assessment-flow-grid {
    grid-template-columns: 1fr;
  }

  .track-card-grid {
    grid-template-columns: 1fr;
  }

  .track-card {
    min-height: 0;
  }

  .assessment-registration {
    grid-template-columns: 1fr;
  }

  footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .assessment-v2-page .assessment-hero-meta {
    grid-template-columns: 1fr;
  }

  .track-selection-heading h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .track-card {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .track-card h3 {
    font-size: 36px;
  }

  .assessment-form-grid {
    grid-template-columns: 1fr;
  }

  .assessment-form-grid .form-span-2 {
    grid-column: auto;
  }

  .track-summary-chip {
    min-width: 0;
  }

  .scenario-question-group legend {
    padding: 22px 20px 19px;
  }

  .scenario-question {
    padding: 24px 18px;
  }

  .scenario-question .question-copy p {
    font-size: 21px;
  }

  .scenario-option > span {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 11px;
    padding: 11px 12px;
  }

  .scenario-option b {
    width: 29px;
    height: 29px;
  }

  .scenario-option small {
    font-size: 11px;
  }

  .result-evidence {
    grid-template-columns: 1fr;
  }

  footer {
    gap: 16px;
  }

  .footer-social {
    justify-content: center;
  }
}

@media print {
  .assessment-v2-page .assessment-disclaimer {
    display: block !important;
    color: #60717c;
  }
}

/* 2026 multi-page outcomes, laptop-fit registration and direct WhatsApp contact */
.program-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 26px;
}

.program-highlights span {
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.055);
  color: #d5e0e5;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
}

.program-highlights b {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 18px;
}

.employability-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(221, 157, 22, 0.32), transparent 31%),
    linear-gradient(140deg, var(--navy-950), #0a2940 70%, #14394b);
}

.profitability-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(38, 137, 102, 0.32), transparent 31%),
    linear-gradient(140deg, var(--navy-950), #092b36 70%, #123e43);
}

.profitability-services .service-list article i {
  color: #a87500;
  font-style: normal;
  font-size: 11px;
  font-weight: 850;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.contact .contact-actions .button {
  margin-top: 0;
}

.contact .whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(4, 21, 34, 0.3);
  background: #128c4f;
  box-shadow: none;
  color: #fff;
}

.contact .whatsapp-button:hover {
  border-color: #075e39;
  background: #075e39;
}

.whatsapp-button svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.assessment-whatsapp-link {
  color: #075e39;
  font-weight: 800;
}

.assessment-contact > div:last-child > .assessment-whatsapp-link {
  border-bottom-color: rgba(7, 94, 57, 0.42);
}

@media (min-width: 941px) {
  .section,
  .contact {
    padding-top: clamp(72px, 7vw, 108px);
    padding-bottom: clamp(72px, 7vw, 108px);
  }

  .compact-home .intro-copy {
    padding-top: 22px;
  }

  .compact-home .section-heading {
    margin-bottom: clamp(34px, 4vw, 48px);
  }

  .compact-home .outcome-card {
    min-height: 360px;
  }

  .assessment-v2-page .assessment-shell {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .assessment-v2-page .assessment-registration {
    max-width: 1480px;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(34px, 5vw, 72px);
    padding: clamp(26px, 3vw, 42px);
  }

  .assessment-registration .change-track {
    margin-bottom: 20px;
  }

  .assessment-registration .lead-gate-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(38px, 3.5vw, 54px);
  }

  .assessment-registration .lead-gate-copy > p:last-of-type {
    margin-bottom: 0;
  }

  .assessment-registration .lead-gate-trust {
    gap: 7px;
    margin-top: 20px;
  }

  .assessment-registration .lead-gate-form {
    gap: 11px;
    padding: 22px;
  }

  .assessment-registration .assessment-form-grid {
    gap: 11px 13px;
  }

  .assessment-registration .lead-gate-form input,
  .assessment-registration .lead-gate-form select {
    min-height: 46px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .assessment-registration .phone-field b {
    min-height: 46px;
  }
}

@media (max-width: 1120px) and (min-width: 941px) {
  .assessment-v2-page .assessment-registration {
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
    gap: 30px;
  }
}

@media (max-width: 940px) {
  .assessment-v2-page .assessment-registration {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    align-items: stretch;
  }
}

@media (max-width: 680px) {
  .program-highlights {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
  }
}
