:root {
  --ink: #102331;
  --navy: #1e6091;
  --navy-dark: #184e77;
  --teal: #168aad;
  --teal-2: #34a0a4;
  --mint: #ecfdf6;
  --green: #76c893;
  --green-soft: #99d98c;
  --paper: #fbfefd;
  --mist: #f3faf8;
  --muted: #6b7a87;
  --line: rgba(16, 35, 49, 0.12);
  --gold: #d8aa3d;
  --shadow: 0 26px 80px rgba(24, 78, 119, 0.16);
  --radius: 8px;
  --hero-photo: url("assets/visual-erp-assessment-daylight.jpg");
  --board-photo: url("assets/visual-erp-stabilization-warroom.jpg");
  --finance-photo: url("assets/visual-reporting-close-dashboard.jpg");
  --systems-photo: url("assets/visual-bc-orbit-validation-lab.jpg");
  --workshop-photo: url("assets/visual-process-requirements-map.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 54px);
  background: rgba(251, 254, 253, 0.92);
  border-bottom: 1px solid rgba(16, 35, 49, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-dark);
  font-weight: 900;
}

.brand img {
  width: 154px;
  height: auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(236, 253, 246, 0.26);
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-dropdown {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  z-index: 25;
  display: grid;
  min-width: 220px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--navy);
  background: var(--mint);
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav a:hover {
  color: var(--navy);
}

.nav-trigger:hover,
.nav-trigger:focus-visible {
  color: var(--navy);
}

.nav .pill-link:hover,
.nav .pill-link:focus-visible {
  color: white;
  background: var(--navy-dark);
}

.pill-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
}

.pill-link {
  color: white;
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(30, 96, 145, 0.22);
}

.button.primary {
  color: var(--ink);
  background: var(--green);
  border: 1px solid var(--green);
  box-shadow: 0 18px 38px rgba(118, 200, 147, 0.26);
}

.button.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: white;
  background: var(--navy);
  border: 1px solid var(--navy);
}

.section {
  position: relative;
  overflow: hidden;
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
  position: relative;
  z-index: 1;
}

.hero {
  color: white;
  background: var(--navy-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(9, 35, 58, 0.96) 0%, rgba(9, 35, 58, 0.76) 48%, rgba(9, 35, 58, 0.42) 100%), var(--hero-photo);
  background-position: center;
  background-size: cover;
}

.hero .section-inner {
  min-height: min(760px, calc(100vh - 120px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--navy-dark);
  background: rgba(236, 253, 246, 0.94);
  font-size: 14px;
  font-weight: 900;
}

.hero .eyebrow {
  color: #12364f;
  background: #ecfdf6;
  box-shadow: 0 10px 28px rgba(7, 22, 34, 0.2);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 820px;
  margin-top: 22px;
  color: white;
  font-size: clamp(46px, 6.4vw, 82px);
  line-height: 0.96;
}

h2 {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02;
}

h3 {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.12;
}

.lead {
  max-width: 690px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.52;
}

.lead.dark {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.signal-panel,
.glass-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.signal {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.signal span,
.number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--green-soft);
  border-radius: 50%;
  font-weight: 900;
}

.signal strong {
  display: block;
  color: white;
  font-size: 18px;
}

.signal small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.orbit-panel-home {
  display: grid;
  gap: 18px;
  padding: 20px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 38%, rgba(22, 138, 173, 0.28), transparent 48%),
    rgba(10, 32, 48, 0.7);
  box-shadow: 0 28px 80px rgba(5, 20, 32, 0.28);
  backdrop-filter: blur(18px);
}

.orbit-map {
  position: relative;
  min-height: 310px;
  display: grid;
  place-items: center;
  overflow: hidden;
  transform: rotateX(var(--orbit-tilt-x, 0deg)) rotateY(var(--orbit-tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 180ms ease;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(191, 244, 228, 0.22);
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.orbit-ring-one {
  width: 176px;
  height: 176px;
  box-shadow: 0 0 70px rgba(22, 138, 173, 0.24) inset;
}

.orbit-ring-two {
  width: 276px;
  height: 276px;
  border-style: dashed;
  opacity: 0.72;
  animation: orbitRingSpin 34s linear infinite;
}

.orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(calc(-1 * var(--orbit-radius)));
  background: var(--orbit-color);
  box-shadow: 0 0 16px var(--orbit-color);
  animation: orbitDotSpin var(--orbit-speed) linear infinite;
}

.orbit-dot-one {
  --orbit-angle: 20deg;
  --orbit-radius: 88px;
  --orbit-speed: 22s;
  --orbit-color: rgba(118, 200, 147, 0.9);
}

.orbit-dot-two {
  --orbit-angle: 150deg;
  --orbit-radius: 138px;
  --orbit-speed: 34s;
  --orbit-color: rgba(52, 160, 164, 0.88);
}

.orbit-dot-three {
  --orbit-angle: 280deg;
  --orbit-radius: 160px;
  --orbit-speed: 46s;
  --orbit-color: rgba(191, 244, 228, 0.82);
}

.orbit-core {
  position: relative;
  z-index: 2;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: radial-gradient(circle at 34% 28%, #d8fff1, var(--green) 44%, var(--teal));
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  box-shadow: 0 0 54px rgba(118, 200, 147, 0.46);
  font-size: 28px;
  font-weight: 900;
}

.orbit-core span {
  display: block;
  color: rgba(16, 35, 49, 0.72);
  max-width: 78px;
  font-size: 10px;
  line-height: 1.1;
  text-align: center;
}

.orbit-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 8px 13px 8px 8px;
  color: inherit;
  font: inherit;
  text-align: left;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 24, 37, 0.68);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(3, 12, 20, 0.24);
  cursor: pointer;
  transform: translateZ(18px);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.orbit-chip:hover,
.orbit-chip:focus-visible,
.orbit-chip.is-active {
  border-color: rgba(118, 200, 147, 0.78);
  box-shadow:
    0 16px 38px rgba(3, 12, 20, 0.32),
    0 0 0 1px rgba(118, 200, 147, 0.26) inset;
  transform: translateZ(24px) translateY(-2px);
}

.orbit-avatar {
  width: 30px;
  height: 30px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #061826;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--green), var(--teal));
  font-size: 11px;
  font-weight: 900;
}

.orbit-chip-copy {
  display: grid;
  gap: 2px;
}

.orbit-chip strong {
  color: white;
  font-size: 13px;
  line-height: 1;
}

.orbit-chip small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  line-height: 1.1;
}

.orbit-chip-brd {
  top: 24px;
  left: 16px;
}

.orbit-chip-design {
  top: 24px;
  right: 8px;
}

.orbit-chip-build {
  bottom: 32px;
  right: 8px;
}

.orbit-chip-test {
  bottom: 32px;
  left: 8px;
}

.orbit-panel-copy {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.orbit-panel-copy span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.orbit-panel-copy strong {
  display: block;
  margin-top: 8px;
  color: white;
  font-size: 23px;
  line-height: 1.12;
}

.orbit-panel-copy p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.48;
}

.orbit-panel-home:hover .orbit-ring-two,
.orbit-panel-home:hover .orbit-dot,
.orbit-panel-home:focus-within .orbit-ring-two,
.orbit-panel-home:focus-within .orbit-dot {
  animation-play-state: paused;
}

@keyframes orbitRingSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbitDotSpin {
  to {
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-angle) + 360deg)) translateY(calc(-1 * var(--orbit-radius)));
  }
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

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

.mint {
  background: var(--mint);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-head .lead {
  max-width: 500px;
  margin: 0;
  font-size: 18px;
}

.list-stack {
  display: grid;
  gap: 14px;
}

.plain-card,
.feature-card,
.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 44px rgba(16, 35, 49, 0.06);
}

.plain-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 22px;
}

.plain-card p,
.feature-card p,
.article-card p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.number.blue {
  color: white;
  background: var(--navy);
}

.number.green {
  background: var(--green);
}

.number.gold {
  background: var(--gold);
}

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

.feature-card {
  min-height: 330px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  color: white;
  background: var(--navy-dark);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: var(--board-photo);
  background-position: center;
  background-size: cover;
}

.feature-card:nth-child(2) {
  background: var(--teal);
}

.feature-card:nth-child(2)::before {
  background-image: var(--finance-photo);
}

.feature-card:nth-child(3) {
  background: #5e723d;
}

.feature-card:nth-child(3)::before {
  background-image: var(--systems-photo);
}

.feature-card > * {
  position: relative;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.78);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.feature-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 900;
}

.tailor {
  color: white;
  background: var(--navy-dark);
}

.tailor::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(9, 35, 58, 0.94), rgba(9, 35, 58, 0.58)), var(--systems-photo);
  background-position: center;
  background-size: cover;
}

.tailor h2 {
  color: white;
}

.tailor-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.tailor-steps {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.tailor-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.tailor-step h3 {
  color: white;
  font-size: 20px;
}

.tailor-step p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.results-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.visual {
  min-height: 520px;
  border-radius: var(--radius);
  background-image: linear-gradient(0deg, rgba(24, 78, 119, 0.14), rgba(24, 78, 119, 0.14)), var(--finance-photo);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.visual-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(340px, calc(100% - 48px));
  padding: 20px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(24, 78, 119, 0.82);
  backdrop-filter: blur(12px);
}

.visual-card strong {
  display: block;
  font-size: 30px;
}

.visual-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.results-layout .proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  background: transparent;
}

.results-layout .proof-card {
  min-height: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 44px rgba(16, 35, 49, 0.06);
}

.results-layout .proof-card strong {
  display: block;
  color: var(--navy-dark);
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 900;
  line-height: 1.1;
}

.results-layout .proof-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.44;
}

.guide-band {
  background: white;
}

.guide-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: center;
}

.guide-offer {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mint);
  box-shadow: 0 16px 44px rgba(16, 35, 49, 0.06);
}

.guide-offer strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.guide-offer p {
  margin: 12px 0 20px;
  color: var(--muted);
  line-height: 1.5;
}

.article-card {
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 24px;
  overflow: hidden;
}

.article-card .card-media {
  width: calc(100% + 48px);
  height: 190px;
  margin: -24px -24px 22px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 900;
}

.article-card a {
  margin-top: 24px;
  color: var(--navy);
  font-weight: 900;
}

.cta {
  color: white;
  background: var(--navy-dark);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(9, 35, 58, 0.92), rgba(9, 35, 58, 0.6)), var(--board-photo);
  background-position: center;
  background-size: cover;
}

.cta h2 {
  color: white;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.phase {
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}

.phase h3 {
  margin-top: 18px;
  color: white;
  font-size: 20px;
}

.phase p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
}

.page-hero {
  padding: 92px 0 56px;
  background: var(--mint);
}

.page-hero .section-inner {
  padding: 0;
}

.page-hero h1 {
  color: var(--ink);
}

.page-hero .lead {
  color: var(--muted);
}

.blog-hero {
  position: relative;
  display: grid;
  min-height: 430px;
  align-items: end;
  color: white;
  background:
    linear-gradient(90deg, rgba(9, 35, 58, 0.92) 0%, rgba(9, 35, 58, 0.72) 48%, rgba(9, 35, 58, 0.34) 100%),
    url("assets/visual-erp-assessment-daylight.jpg");
  background-position: center;
  background-size: cover;
}

.blog-hero h1 {
  color: white;
}

.blog-hero .lead {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.88);
}

.blog-hero .eyebrow {
  color: #bff4e4;
}

.ai-profile-hero {
  color: white;
  background: var(--navy-dark);
}

.ai-profile-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(9, 35, 58, 0.96) 0%, rgba(9, 35, 58, 0.76) 54%, rgba(9, 35, 58, 0.5) 100%),
    var(--workshop-photo);
  background-position: center;
  background-size: cover;
}

.ai-profile-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  min-height: 520px;
}

.ai-profile-hero h1 {
  max-width: 900px;
  color: white;
}

.ai-profile-hero .lead {
  color: rgba(255, 255, 255, 0.86);
}

.ai-profile-hero .eyebrow {
  color: #0b2738;
  background: #f7fffb;
  border: 1px solid rgba(191, 244, 228, 0.9);
  box-shadow: 0 12px 28px rgba(7, 22, 34, 0.28);
}

.ai-answer-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.ai-answer-card span {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-answer-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.52;
}

.ai-profile-section {
  overflow: visible;
  background: var(--paper);
}

.ai-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.ai-profile-main {
  font-size: 18px;
  line-height: 1.72;
}

.ai-profile-main h2 {
  margin-top: 42px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 42px);
}

.ai-profile-main h2:first-child {
  margin-top: 0;
}

.ai-profile-main h3 {
  color: var(--ink);
  font-size: 22px;
}

.ai-profile-main p,
.ai-profile-main li {
  color: #344650;
}

.ai-profile-main p,
.ai-profile-list {
  margin-top: 18px;
}

.ai-profile-list {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.ai-distinction-box,
.ai-suggested-answer {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mint);
  box-shadow: 0 16px 44px rgba(16, 35, 49, 0.06);
}

.ai-distinction-box {
  margin-top: 26px;
}

.ai-distinction-box p {
  margin-top: 10px;
}

.ai-suggested-answer {
  font-weight: 750;
}

.ai-profile-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
}

.ai-profile-sidebar section {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 44px rgba(16, 35, 49, 0.06);
}

.ai-profile-sidebar h2 {
  font-size: 22px;
}

.ai-profile-sidebar dl,
.ai-profile-sidebar ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
}

.ai-profile-sidebar dt {
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-profile-sidebar dd {
  margin: -6px 0 6px;
  color: var(--muted);
  line-height: 1.35;
}

.ai-profile-sidebar li {
  margin-left: 18px;
  color: var(--muted);
  line-height: 1.35;
}

.ai-profile-sidebar a {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 900;
}

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

.ai-faq-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 44px rgba(16, 35, 49, 0.06);
}

.ai-faq-grid p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.52;
}

.agent-roster-hero {
  position: relative;
  color: white;
  background: var(--navy-dark);
  overflow: hidden;
}

.agent-roster-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(9, 35, 58, 0.96) 0%, rgba(9, 35, 58, 0.78) 48%, rgba(9, 35, 58, 0.42) 100%),
    url("assets/visual-agentic-erp.png");
  background-position: center;
  background-size: cover;
}

.agent-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  min-height: min(720px, calc(100vh - 110px));
}

.agent-roster-hero h1 {
  color: white;
}

.agent-roster-hero .lead {
  color: rgba(255, 255, 255, 0.84);
}

.agent-roster-hero .eyebrow {
  color: #12364f;
  background: #ecfdf6;
  box-shadow: 0 10px 28px rgba(7, 22, 34, 0.22);
}

.agent-control-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 90px rgba(7, 22, 34, 0.24);
}

.agent-panel-header,
.agent-artifact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.agent-panel-header span,
.agent-artifact-top span,
.agent-case-label,
.agent-type {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.agent-panel-header strong,
.agent-artifact-top strong {
  color: white;
}

.agent-case-file {
  padding: 8px 0 4px;
}

.agent-case-file h2 {
  margin-top: 12px;
  color: white;
  font-size: clamp(26px, 3vw, 42px);
}

.agent-case-file p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.agent-status-list {
  display: grid;
  gap: 10px;
}

.agent-status-list div {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.agent-status-list strong {
  color: white;
}

.agent-status-list small {
  color: rgba(255, 255, 255, 0.66);
}

.agent-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.agent-dot.green {
  background: var(--green);
}

.agent-dot.gold {
  background: var(--gold);
}

.agent-dot.blue {
  background: var(--teal-2);
}

.agent-roster-section {
  background:
    linear-gradient(180deg, rgba(236, 253, 246, 0.72), rgba(251, 254, 253, 0) 52%),
    var(--paper);
}

.agent-section-kicker {
  display: grid;
  grid-template-columns: max-content minmax(0, 680px);
  gap: 20px;
  align-items: center;
  margin-bottom: 38px;
}

.agent-section-kicker p {
  color: #344650;
  font-size: 18px;
  line-height: 1.55;
}

.agent-roster-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: end;
  margin-bottom: 34px;
}

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

.agent-persona-row {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1.2fr) minmax(260px, 0.7fr) 34px;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.agent-persona-row::before {
  content: "";
  position: absolute;
  inset: 10px -18px;
  z-index: -1;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 20px 50px rgba(16, 35, 49, 0);
  opacity: 0;
  transition:
    opacity 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.agent-persona-row:hover::before,
.agent-persona-row:focus-visible::before {
  opacity: 1;
  box-shadow: 0 18px 48px rgba(16, 35, 49, 0.08);
  transform: translateY(-2px);
}

.agent-persona-row:focus-visible {
  outline: 3px solid rgba(22, 138, 173, 0.32);
  outline-offset: 10px;
}

.agent-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(30, 96, 145, 0.2);
}

.agent-accent-green .agent-mark {
  color: var(--ink);
  background: var(--green);
}

.agent-accent-blue .agent-mark {
  background: var(--navy);
}

.agent-accent-teal .agent-mark {
  background: var(--teal);
}

.agent-accent-gold .agent-mark {
  color: var(--ink);
  background: var(--gold);
}

.agent-persona-row h3 {
  margin-top: 4px;
  font-size: clamp(22px, 2.2vw, 32px);
}

.agent-persona-row .agent-type {
  color: #0c675f;
}

.agent-persona-row p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.agent-persona-row dl {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 7px 14px;
  margin: 0;
}

.agent-persona-row dt {
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.agent-persona-row dd {
  margin: 0;
  color: #344650;
  line-height: 1.35;
}

.agent-arrow {
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  justify-self: end;
}

.agent-lane-section {
  background: var(--mint);
}

.agent-lane-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.agent-lane {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(16, 35, 49, 0.07);
}

.agent-lane div {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.agent-lane div:last-child {
  border-bottom: 0;
}

.agent-lane span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--green-soft);
  border-radius: 50%;
  font-weight: 900;
}

.agent-lane strong {
  font-size: 19px;
}

.agent-lane small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.agent-proof-section {
  background: var(--paper);
}

.agent-proof-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.agent-artifact-panel {
  padding: 24px;
  color: white;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(9, 35, 58, 0.96), rgba(24, 78, 119, 0.9)),
    url("assets/visual-bc-orbit-validation-lab.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.artifact-metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.artifact-metric-row div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.artifact-metric-row strong {
  display: block;
  color: var(--green);
  font-size: 32px;
}

.artifact-metric-row span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.artifact-checks {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding-left: 22px;
}

.artifact-checks li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.48;
}

.guide-hero {
  color: white;
  background: var(--navy-dark);
}

.guide-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(9, 35, 58, 0.96) 0%, rgba(9, 35, 58, 0.78) 52%, rgba(9, 35, 58, 0.5) 100%), var(--workshop-photo);
  background-position: center;
  background-size: cover;
}

.guide-hero-grid {
  min-height: min(660px, calc(100vh - 120px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
}

.guide-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.guide-panel span {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.guide-panel h2 {
  margin-top: 16px;
  color: white;
  font-size: clamp(34px, 4vw, 54px);
}

.guide-panel p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.guide-layout,
.rescue-frame {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: center;
}

.guide-visual {
  min-height: 620px;
  background-image: linear-gradient(180deg, rgba(9, 35, 58, 0.08), rgba(9, 35, 58, 0.46)), var(--workshop-photo);
}

.timeline.compact {
  grid-template-columns: 1fr;
  margin-top: 28px;
}

.rescue-frame .phase {
  min-height: auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(16, 35, 49, 0.06);
  backdrop-filter: none;
}

.rescue-frame .phase h3 {
  color: var(--ink);
}

.rescue-frame .phase p {
  color: var(--muted);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 56px;
  align-items: start;
}

.article-section {
  overflow: visible;
}

.article-section .section-inner {
  padding-top: clamp(52px, 7vw, 76px);
}

.article-body {
  font-size: 19px;
  line-height: 1.72;
}

.article-body p,
.article-body ul,
.article-body ol {
  color: #344650;
  margin: 18px 0 0;
}

.article-body h1 {
  max-width: 900px;
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
}

.article-body h2,
.article-body h3 {
  margin-top: 42px;
}

.article-body h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.article-body h3 {
  font-size: 24px;
}

.article-body .article-date {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
}

.article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 28px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(16, 35, 49, 0.1);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.faq-list section {
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list h3 {
  margin-top: 0;
}

.faq-list p {
  margin-bottom: 0;
}

.article-body li + li {
  margin-top: 8px;
}

.sidebar {
  position: sticky;
  top: 110px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 44px rgba(16, 35, 49, 0.06);
}

.sidebar p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.site-footer {
  padding: 40px clamp(20px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-dark);
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-inner strong {
  color: white;
}

.footer-inner img {
  width: 154px;
  height: auto;
}

@media (max-width: 1240px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
    align-items: center;
    padding-right: 20px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a,
  .nav-trigger {
    white-space: nowrap;
  }

  .nav-dropdown {
    display: inline-flex;
    align-items: center;
  }

  .nav-menu {
    position: static;
    display: inline-flex;
    min-width: 0;
    padding: 0;
    gap: 14px;
    margin-left: 8px;
    color: inherit;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu a {
    padding: 0;
  }

  .nav .pill-link {
    position: absolute;
    top: 18px;
    right: 20px;
    min-height: 42px;
    padding: 0 16px;
  }

  .hero .section-inner,
  .split,
  .tailor-grid,
  .results-layout,
  .guide-hero-grid,
  .guide-band-inner,
  .guide-layout,
  .rescue-frame,
  .article-layout,
  .ai-profile-hero-grid,
  .ai-profile-layout,
  .ai-faq-grid,
  .agent-hero-grid,
  .agent-section-kicker,
  .agent-roster-head,
  .agent-lane-layout,
  .agent-proof-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .article-grid,
  .timeline,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head .lead {
    margin-top: 16px;
  }

  .signal-panel,
  .orbit-panel-home,
  .tailor-steps {
    max-width: 560px;
  }

  .visual {
    min-height: 420px;
  }

  .sidebar {
    position: static;
  }

  .ai-profile-sidebar {
    position: static;
  }

  .agent-control-panel,
  .agent-lane,
  .agent-artifact-panel {
    max-width: 680px;
  }

  .agent-persona-row {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .agent-persona-row dl {
    grid-column: 2;
  }

  .agent-arrow {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: grid;
    gap: 12px;
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 138px;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 14px;
    overflow: visible;
    padding-bottom: 0;
    font-size: 13px;
    line-height: 1.2;
  }

  .nav-dropdown {
    position: relative;
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 30;
    display: grid;
    min-width: 220px;
    padding: 10px;
    gap: 0;
    margin-left: 0;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
  }

  .nav-menu a {
    padding: 10px 12px;
  }

  .nav-dropdown:hover .nav-menu,
  .nav-dropdown:focus-within .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav .pill-link {
    position: static;
    width: 100%;
    min-height: 42px;
    padding: 0 16px;
  }

  .orbit-map {
    min-height: 280px;
  }

  .orbit-ring-one {
    width: 148px;
    height: 148px;
  }

  .orbit-ring-two {
    width: 232px;
    height: 232px;
  }

  .orbit-dot-one {
    --orbit-radius: 76px;
  }

  .orbit-dot-two {
    --orbit-radius: 112px;
  }

  .orbit-dot-three {
    --orbit-radius: 130px;
  }

  .orbit-chip-design {
    top: 22px;
    right: 4px;
  }

  .orbit-chip-brd {
    top: 22px;
    left: 4px;
  }

  .orbit-chip-build {
    right: 4px;
  }

  .orbit-chip-test {
    bottom: 6px;
    left: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-ring-two,
  .orbit-dot {
    animation: none;
  }

  .orbit-map {
    transform: none;
  }
}

@media (min-width: 941px) and (max-width: 1240px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    flex: 1 1 auto;
    flex-wrap: wrap;
    width: auto;
    max-width: calc(100vw - 240px);
    min-width: 0;
    padding: 7px 0;
    overflow-x: visible;
  }

  .nav .pill-link {
    position: static;
    min-height: 44px;
  }

  .footer-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    display: none;
  }

  .brand img {
    width: 128px;
  }

  .nav .pill-link {
    position: static;
    min-height: 42px;
  }

  .section-inner {
    width: min(100% - 32px, 680px);
    padding: 62px 0;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .button-row,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

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

  .plain-card,
  .tailor-step,
  .agent-persona-row {
    grid-template-columns: 1fr;
  }

  .agent-persona-row dl,
  .agent-arrow {
    grid-column: auto;
  }

  .agent-persona-row dl {
    grid-template-columns: 1fr;
  }

  .agent-lane div {
    grid-template-columns: 42px 1fr;
    align-items: start;
  }

  .agent-lane small {
    grid-column: 2;
  }

  .artifact-metric-row {
    grid-template-columns: 1fr;
  }
}
