:root {
  --black: #050505;
  --ink: #101010;
  --white: #ffffff;
  --paper: #f5f5f2;
  --soft: #e9e9e4;
  --muted: #8e8e8a;
  --muted-dark: #b9b9b3;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(5, 5, 5, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --shadow-soft: 0 14px 38px rgba(0, 0, 0, 0.08);
  --shadow-lift: 0 28px 80px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --max: 1180px;
  --header-height: 74px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.024) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(rgba(5, 5, 5, 0.018) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

button {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px max(18px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    background 260ms var(--ease),
    border-color 260ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(5, 5, 5, 0.88);
  border-color: var(--line);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  font-weight: 900;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-name {
  display: grid;
  gap: 0;
}

.brand-name strong {
  font-size: 0.98rem;
  line-height: 1.05;
}

.brand-name span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  white-space: nowrap;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.76);
  padding: 9px 10px;
  border-radius: 6px;
  font-size: 0.88rem;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1;
  transition:
    transform 220ms var(--ease),
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.header-cta {
  justify-self: end;
  color: var(--black);
  background: var(--white);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.header-cta:active,
.button:active {
  transform: translateY(0) scale(0.985);
}

.icon-button {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible,
.icon-button.is-active {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
  outline: none;
}

.icon-button:active {
  transform: scale(0.96);
}

.button-primary {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--white);
  background: transparent;
  outline: none;
}

.button-secondary {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  outline: none;
}

.button-dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--black);
  background: transparent;
  outline: none;
}

.button-ghost {
  color: var(--white);
  border-color: var(--line);
  background: transparent;
}

.hero {
  position: relative;
  min-height: calc(100svh - 46px);
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 54px) max(20px, calc((100vw - var(--max)) / 2)) 88px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-canvas,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-canvas {
  width: 100%;
  height: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.7) 48%, rgba(5, 5, 5, 0.25) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.18) 58%, rgba(5, 5, 5, 0.95) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
  font-size: 0.83rem;
  text-transform: uppercase;
}

.eyebrow span {
  width: 36px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: 5.4rem;
  line-height: 0.92;
  font-weight: 900;
}

.hero-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.22rem;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  max-width: 690px;
  margin-top: 42px;
}

.hero-proof div {
  min-height: 102px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.hero-proof strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}

.hero-proof p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.scroll-cue {
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 26px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  animation: cueFloat 2200ms ease-in-out infinite;
}

@keyframes cueFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.intro-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--line);
}

.intro-strip p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.intro-strip a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  scroll-margin-top: calc(var(--header-height) + 22px);
  padding: 104px max(20px, calc((100vw - var(--max)) / 2));
}

#services,
#industries,
#process,
#about,
#faq,
#contact {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-kicker {
  color: var(--muted);
}

.section-heading h2,
.split-heading h2,
.about-copy h2,
.contact-info h2 {
  margin: 0;
  font-size: 3.1rem;
  line-height: 1.02;
}

.section-heading p,
.split-heading p,
.about-copy p,
.contact-info p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #595955;
  font-size: 1.05rem;
}

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

.service-card {
  position: relative;
  display: grid;
  min-height: 440px;
  text-align: left;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform 320ms var(--ease),
    box-shadow 320ms var(--ease),
    border-color 320ms var(--ease),
    background 320ms var(--ease),
    color 320ms var(--ease);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.42) 34%, transparent 56%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.025), transparent 40%);
  opacity: 0;
  transform: translateX(-32%);
  transition:
    opacity 320ms var(--ease),
    transform 520ms var(--ease);
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 74px;
  height: 74px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.12;
  transition:
    opacity 320ms var(--ease),
    transform 320ms var(--ease);
}

.service-card:hover,
.service-card:focus-visible,
.service-card.is-selected {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
  box-shadow: var(--shadow-lift);
  transform: translateY(-10px);
  outline: none;
}

.service-card:hover::before,
.service-card:focus-visible::before,
.service-card.is-selected::before {
  opacity: 0.18;
  transform: translateX(18%);
}

.service-card:hover::after,
.service-card:focus-visible::after,
.service-card.is-selected::after {
  opacity: 0.2;
  transform: translate(-10px, -10px);
}

.service-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--black);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition:
    background 260ms var(--ease),
    color 260ms var(--ease),
    border-color 260ms var(--ease),
    transform 260ms var(--ease);
}

.service-card:hover .service-icon,
.service-card:focus-visible .service-icon,
.service-card.is-selected .service-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--line);
  transform: rotate(-4deg) scale(1.04);
}

.card-label {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--muted);
  font-weight: 850;
}

.service-card h3 {
  margin: 34px 0 10px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.service-card p {
  margin: 0;
  color: #555;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: #666;
  font-size: 0.94rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 1px;
  background: currentColor;
}

.service-card:hover p,
.service-card:hover li,
.service-card:focus-visible p,
.service-card:focus-visible li,
.service-card.is-selected p,
.service-card.is-selected li {
  color: rgba(255, 255, 255, 0.72);
}

.card-action {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  font-weight: 800;
}

.systems-mini-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 16px;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09), transparent 42%),
    var(--black);
  border: 1px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.systems-mini-cta span {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.systems-mini-cta h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.05;
}

.systems-mini-cta p {
  max-width: 760px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.systems-section {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--black);
  overflow: hidden;
}

.systems-section .split-heading h2,
.systems-section .split-heading p {
  color: var(--white);
}

.systems-section .split-heading > p {
  color: rgba(255, 255, 255, 0.66);
}

.systems-console {
  display: grid;
  grid-template-columns: minmax(280px, 0.32fr) minmax(0, 1fr);
  gap: 0;
  min-height: 650px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.systems-rail {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
  border-right: 1px solid var(--line);
}

.systems-rail button {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.66);
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition:
    color 220ms var(--ease),
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    transform 220ms var(--ease);
}

.systems-rail button:hover,
.systems-rail button:focus-visible,
.systems-rail button.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  outline: none;
  transform: translateX(3px);
}

.systems-rail button > svg {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 9px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.systems-rail button strong,
.systems-rail button small {
  display: block;
}

.systems-rail button strong {
  color: var(--white);
  line-height: 1.15;
}

.systems-rail button small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  line-height: 1.25;
}

.systems-screen {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 38%),
    rgba(5, 5, 5, 0.4);
}

.systems-topbar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.systems-topbar h3 {
  margin: 10px 0 0;
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  line-height: 1.04;
}

.systems-topbar p {
  max-width: 660px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.systems-topbar > span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.86rem;
  white-space: nowrap;
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.system-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}

.system-status.is-online::before {
  background: #ffffff;
  animation: statusPulse 1600ms var(--ease) infinite;
}

.systems-screen > p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.04rem;
}

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

.systems-metrics span {
  position: relative;
  min-height: 118px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.systems-metrics span::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px auto;
  width: 46px;
  height: 46px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  color: rgba(255, 255, 255, 0.12);
}

.systems-metrics strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.systems-metrics small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 760;
}

.systems-pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.systems-pipeline span {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.systems-pipeline span:last-child {
  border-right: 0;
}

.systems-pipeline span::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.52);
}

.systems-pipeline b {
  font-size: 1.7rem;
  line-height: 1;
}

.systems-pipeline small {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 760;
}

.systems-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 14px;
  align-items: stretch;
}

.systems-analytics,
.systems-sidecar {
  min-height: 300px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.systems-analytics {
  display: grid;
  gap: 14px;
}

.systems-chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(24px, 1fr));
  gap: 12px;
  align-items: end;
  min-height: 188px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.systems-chart span {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 28px;
  height: var(--bar);
  background: linear-gradient(180deg, #7dd3fc, #1d4ed8);
  border-radius: 6px 6px 2px 2px;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.22);
  transition: height 520ms var(--ease);
}

.systems-chart span:nth-child(2) {
  background: linear-gradient(180deg, #86efac, #15803d);
  box-shadow: 0 10px 28px rgba(21, 128, 61, 0.22);
}

.systems-chart span:nth-child(3) {
  background: linear-gradient(180deg, #fcd34d, #b45309);
  box-shadow: 0 10px 28px rgba(180, 83, 9, 0.22);
}

.systems-chart span:nth-child(4) {
  background: linear-gradient(180deg, #c4b5fd, #6d28d9);
  box-shadow: 0 10px 28px rgba(109, 40, 217, 0.22);
}

.systems-chart span:nth-child(5) {
  background: linear-gradient(180deg, #fda4af, #be123c);
  box-shadow: 0 10px 28px rgba(190, 18, 60, 0.2);
}

.systems-chart span:nth-child(6) {
  background: linear-gradient(180deg, #5eead4, #0f766e);
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.22);
}

.systems-chart small {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 760;
}

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

.systems-value-grid span {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 64px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.systems-value-grid svg {
  color: var(--white);
}

.systems-value-grid b {
  font-size: 0.9rem;
  line-height: 1.25;
}

.systems-sidecar {
  display: grid;
  gap: 14px;
  align-content: stretch;
}

.systems-outcome {
  min-height: 112px;
  padding: 16px;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
}

.systems-outcome span {
  display: block;
  color: #63635d;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.systems-outcome strong {
  display: block;
  margin-top: 12px;
  font-size: 1.22rem;
  line-height: 1.16;
}

.systems-feed {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 198px;
}

.feed-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition:
    background 260ms var(--ease),
    color 260ms var(--ease),
    transform 260ms var(--ease);
}

.feed-row.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.systems-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--black);
  background: var(--white);
  border-radius: var(--radius);
  font-weight: 850;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.systems-link:hover,
.systems-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  outline: none;
}

.systems-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.systems-proof a {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    transform 220ms var(--ease);
}

.systems-proof a:hover,
.systems-proof a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-3px);
  outline: none;
}

.systems-proof span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-systems-page {
  background:
    linear-gradient(180deg, #f4f4ef 0, #fbfbf8 30%, #f4f4ef 100%);
}

.systems-page-hero {
  position: relative;
  padding: calc(var(--header-height) + 74px) max(20px, calc((100vw - var(--max)) / 2)) 80px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.78)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 86px 86px,
    var(--black);
  overflow: hidden;
}

.systems-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.systems-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.systems-hero-copy h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.35rem);
  line-height: 0.92;
}

.systems-hero-copy p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.14rem;
}

.systems-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.systems-hero-frame {
  position: relative;
}

.system-browser {
  position: relative;
  min-height: 560px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.48);
  overflow: hidden;
}

.system-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.system-browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.system-browser-bar strong {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 760;
}

.system-browser img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  filter: saturate(1.08) contrast(1.02);
}

.hero-secure-card,
.hero-live-stack {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 8px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-secure-card {
  left: 34px;
  bottom: 38px;
  width: min(320px, calc(100% - 68px));
  padding: 18px;
}

.hero-secure-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4f4f49;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-secure-card strong {
  font-size: 1.45rem;
  line-height: 1.05;
}

.hero-secure-card small {
  color: #5d5d58;
  font-weight: 760;
}

.hero-live-stack {
  top: 82px;
  right: 34px;
  width: 230px;
  padding: 12px;
}

.hero-live-stack span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  color: #5d5d58;
  background: #f4f4ef;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 760;
}

.hero-live-stack b {
  color: var(--black);
  font-size: 1.08rem;
}

.systems-page-index {
  background: #fbfbf8;
}

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

.system-index-grid a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  min-height: 150px;
  padding: 18px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    border-color 220ms var(--ease),
    background 220ms var(--ease);
}

.system-index-grid a:hover,
.system-index-grid a:focus-visible {
  transform: translateY(-4px);
  background: #fdfdfb;
  border-color: rgba(5, 5, 5, 0.26);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.1);
  outline: none;
}

.system-index-grid svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

.system-index-grid strong,
.system-index-grid span {
  display: block;
  grid-column: 2;
}

.system-index-grid strong {
  align-self: end;
  font-size: 1.05rem;
}

.system-index-grid span {
  margin-top: -4px;
  color: #5d5d58;
  font-size: 0.92rem;
}

.product-console-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.product-system-demo-list {
  display: grid;
  gap: 22px;
}

.product-system-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 0;
  min-height: 620px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.08);
}

.product-system-section-alt {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.78fr);
}

.product-system-section-alt .product-system-content {
  order: 2;
  border-left: 1px solid var(--line-dark);
  border-right: 0;
}

.product-system-section-alt .product-system-media,
.product-system-section-alt .product-product-grid,
.product-system-section-alt .case-preview-grid {
  order: 1;
}

.product-system-content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  border-right: 1px solid var(--line-dark);
}

.product-system-content h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.product-system-content p {
  max-width: 650px;
  margin: 0;
  color: #5d5d58;
  font-size: 1.05rem;
}

.product-system-features {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.product-system-features span {
  display: grid;
  gap: 5px;
  padding: 14px;
  color: #5d5d58;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.product-system-features strong {
  color: var(--black);
}

.product-system-media,
.product-product-grid,
.case-preview-grid {
  position: relative;
  min-height: 620px;
}

.product-system-media {
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 36px);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.08), transparent 38%),
    #f1f1ec;
  overflow: hidden;
}

.product-system-media-dark {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 58px 58px,
    var(--black);
}

.product-system-media > img {
  width: 100%;
  height: min(520px, 58vw);
  object-fit: cover;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  filter: saturate(1.08) contrast(1.02);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.mock-dashboard-card,
.mock-portal-panel,
.mock-admin-table,
.saas-board,
.workflow-lanes {
  position: absolute;
  z-index: 2;
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.mock-dashboard-card {
  left: 34px;
  bottom: 34px;
  width: min(420px, calc(100% - 68px));
  padding: 16px;
}

.mock-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #61615b;
  font-size: 0.86rem;
  font-weight: 820;
}

.mock-metric-grid,
.saas-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.mock-metric-grid span,
.saas-plan-grid span {
  display: grid;
  gap: 4px;
  padding: 10px;
  background: #f4f4ef;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  color: #5d5d58;
  font-size: 0.78rem;
}

.mock-metric-grid b,
.saas-plan-grid b {
  color: var(--black);
  font-size: 1.3rem;
}

.mock-line-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 90px;
  margin-top: 14px;
  padding: 12px;
  background: var(--black);
  border-radius: 6px;
}

.mock-line-chart i {
  flex: 1;
  height: var(--point);
  background: linear-gradient(180deg, #7dd3fc, #2563eb);
  border-radius: 6px 6px 1px 1px;
  animation: softBar 3600ms var(--ease) infinite;
}

.mock-line-chart i:nth-child(2) {
  background: linear-gradient(180deg, #86efac, #16a34a);
}

.mock-line-chart i:nth-child(3) {
  background: linear-gradient(180deg, #fcd34d, #d97706);
}

.mock-line-chart i:nth-child(4) {
  background: linear-gradient(180deg, #c4b5fd, #7c3aed);
}

.mock-line-chart i:nth-child(5) {
  background: linear-gradient(180deg, #5eead4, #0d9488);
}

.mock-portal-panel {
  right: 34px;
  bottom: 34px;
  width: min(360px, calc(100% - 68px));
  padding: 18px;
}

.mock-status-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 5px 8px;
  color: var(--white);
  background: var(--black);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mock-portal-panel h3,
.saas-board h3 {
  margin: 12px 0;
  font-size: 1.35rem;
}

.mock-progress {
  height: 8px;
  overflow: hidden;
  background: #e6e6df;
  border-radius: 999px;
}

.mock-progress i {
  display: block;
  height: 100%;
  background: var(--black);
  border-radius: inherit;
}

.mock-portal-panel ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: #5d5d58;
}

.mock-admin-table {
  left: 28px;
  right: 28px;
  bottom: 30px;
  display: grid;
  overflow: hidden;
}

.mock-admin-table div {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line-dark);
}

.mock-admin-table div:last-child {
  border-bottom: 0;
}

.mock-admin-table div:first-child {
  color: #5d5d58;
  background: #f4f4ef;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.mock-admin-table em {
  justify-self: start;
  padding: 5px 8px;
  color: var(--white);
  background: var(--black);
  border-radius: 999px;
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 820;
}

.schema-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(620px, 100%);
}

.schema-card {
  display: grid;
  gap: 12px;
  min-height: 138px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.schema-card strong {
  font-size: 1.2rem;
}

.schema-card span {
  color: rgba(255, 255, 255, 0.62);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86rem;
}

.database-health-grid {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.database-health-grid span {
  display: grid;
  gap: 5px;
  min-height: 74px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.database-health-grid b {
  color: var(--white);
  font-size: 1.35rem;
}

.api-terminal {
  width: min(680px, 100%);
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.api-terminal div {
  display: grid;
  grid-template-columns: 70px 1fr 52px;
  gap: 12px;
  align-items: center;
  min-height: 44px;
}

.api-terminal span,
.api-terminal b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 8px;
  color: var(--black);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
}

.api-terminal code,
.api-terminal pre {
  color: rgba(255, 255, 255, 0.78);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  overflow-wrap: anywhere;
}

.api-terminal pre {
  margin: 10px 0 16px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  white-space: pre-wrap;
}

.api-flow {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  gap: 10px;
  align-items: center;
}

.api-flow span {
  min-height: 54px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 820;
}

.api-flow i {
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.saas-board {
  left: 34px;
  bottom: 34px;
  width: min(420px, calc(100% - 68px));
  padding: 18px;
}

.product-product-grid,
.case-preview-grid {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 36px);
  background: #f1f1ec;
}

.product-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.product-product-grid a {
  position: relative;
  display: grid;
  align-content: end;
  overflow: hidden;
  min-height: 548px;
  color: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  isolation: isolate;
}

.product-product-grid img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
  transition:
    transform 700ms var(--ease),
    filter 700ms var(--ease);
}

.product-product-grid a:hover img,
.product-product-grid a:focus-visible img {
  filter: saturate(1.16) contrast(1.04);
}

.product-product-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.88));
}

.product-product-grid a:hover img,
.product-product-grid a:focus-visible img {
  transform: scale(1.045);
}

.product-product-grid span {
  margin: 16px;
  padding: 14px 16px;
  background: rgba(5, 5, 5, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.15;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.38);
}

.case-preview-grid {
  align-content: center;
}

.case-preview-grid a {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 18px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.case-preview-grid a:hover,
.case-preview-grid a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.1);
  outline: none;
}

.case-preview-grid span {
  color: #5d5d58;
}

.workflow-lanes {
  left: 26px;
  right: 26px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
}

.workflow-lanes span {
  display: grid;
  gap: 6px;
  min-height: 88px;
  padding: 12px;
  background: #f4f4ef;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
}

.workflow-lanes small {
  color: #5d5d58;
  font-weight: 760;
}

.systems-final-cta {
  padding-top: 10px;
}

@keyframes softBar {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.28);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

.partner-section {
  color: var(--white);
  background: var(--black);
}

.partner-section .section-heading p,
.partner-section .section-heading h2 {
  color: var(--white);
}

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

.partner-card {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 260ms var(--ease),
    background 260ms var(--ease),
    border-color 260ms var(--ease);
}

.partner-card:hover,
.partner-card:focus-within {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.26);
}

.partner-card svg {
  color: var(--white);
  margin-bottom: 36px;
}

.partner-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.partner-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-cloud button,
.industry-cloud a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 15px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.industry-cloud button:hover,
.industry-cloud button:focus-visible,
.industry-cloud button.is-selected,
.industry-cloud a:hover,
.industry-cloud a:focus-visible {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-2px);
  outline: none;
}

.process-section {
  background: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  gap: 0;
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.process-step {
  min-width: 190px;
  min-height: 280px;
  padding: 24px;
  background: var(--white);
  border-right: 1px solid var(--line-dark);
  transition:
    background 260ms var(--ease),
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.process-step:hover {
  position: relative;
  z-index: 1;
  background: #fbfbf8;
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.process-step h3 {
  margin: 0 0 12px;
  font-size: 1.14rem;
}

.process-step p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 60px;
  align-items: center;
}

.about-copy .section-kicker,
.contact-info .section-kicker {
  color: var(--muted);
}

.about-copy p + p {
  margin-top: 16px;
}

.about-copy .button {
  margin-top: 28px;
}

.about-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-panel div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    background 220ms var(--ease),
    transform 220ms var(--ease),
    border-color 220ms var(--ease);
}

.about-panel div:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateX(4px);
}

.about-panel svg {
  color: rgba(255, 255, 255, 0.72);
}

.faq-section {
  color: var(--white);
  background: var(--black);
}

.faq-section .section-heading h2,
.faq-section .section-heading p {
  color: var(--white);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease);
}

.faq-item:hover,
.faq-item.is-open {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 74px;
  padding: 20px 22px;
  color: var(--white);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 850;
}

.faq-item button:focus {
  outline: 1px solid rgba(255, 255, 255, 0.48);
  outline-offset: -3px;
}

.faq-item button svg {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-item.is-open button svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.68);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  padding: 12px 14px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: var(--radius);
  overflow-wrap: anywhere;
}

.contact-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  max-width: 520px;
  margin-top: 22px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.contact-note svg {
  margin-top: 3px;
  color: var(--black);
}

.contact-note p {
  margin: 0;
  color: #5f5f5a;
  font-size: 0.96rem;
}

.project-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    var(--black);
}

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

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  font-weight: 650;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 150px;
  padding: 13px;
  resize: vertical;
}

select option {
  color: var(--black);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.form-status:not(:empty) {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.form-status.is-success {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.form-status.is-error {
  color: #ffc4c4;
  border-color: rgba(255, 196, 196, 0.42);
  background: rgba(255, 80, 80, 0.08);
}

.site-footer {
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.5fr);
  gap: 54px;
  padding: 56px max(20px, calc((100vw - var(--max)) / 2)) 36px;
}

.footer-brand-block p {
  max-width: 430px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.footer-column a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.64);
  width: max-content;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
  outline: none;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.footer-social .social-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px max(20px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: end;
}

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

.support-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 16px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 850;
}

.support-toggle:hover,
.support-toggle:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.bot-panel {
  width: min(390px, calc(100vw - 28px));
  max-height: min(680px, calc(100svh - 104px));
  display: grid;
  grid-template-rows: auto minmax(170px, 1fr) auto auto;
  color: var(--white);
  background: rgba(5, 5, 5, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.bot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.bot-header strong {
  display: block;
}

.bot-header span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.bot-close {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.bot-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  overflow-y: auto;
}

.bot-message {
  max-width: 92%;
  padding: 11px 12px;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.bot-message.bot {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.bot-message.user {
  justify-self: end;
  color: var(--black);
  background: var(--white);
}

.bot-message a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bot-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
}

.bot-quick-actions button {
  min-height: 36px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.82rem;
}

.bot-form {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
}

.bot-form input {
  min-height: 44px;
}

.bot-form button {
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: var(--radius);
}

.bot-help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 16px;
}

.bot-help-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 10px;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.84rem;
}

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

.page-hero {
  padding: calc(var(--header-height) + 74px) max(20px, calc((100vw - var(--max)) / 2)) 74px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.72)),
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.12), transparent 34%),
    var(--black);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--white);
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: 4rem;
  line-height: 0.98;
}

.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.14rem;
}

.page-section {
  padding: 82px max(20px, calc((100vw - var(--max)) / 2));
}

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

.page-card,
.article-card,
.industry-detail,
.template-card,
.career-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.page-card {
  display: grid;
  gap: 18px;
  min-height: 260px;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    border-color 220ms var(--ease),
    background 220ms var(--ease);
}

.page-card:hover,
.page-card:focus-within {
  transform: translateY(-4px);
  background: #fdfdfb;
  border-color: rgba(5, 5, 5, 0.24);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

.page-card svg,
.article-card svg,
.template-card svg,
.career-card svg {
  color: var(--black);
}

.page-card h2,
.article-card h2,
.template-card h2,
.career-card h2,
.industry-detail h2 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.15;
}

.page-card p,
.article-card p,
.template-card p,
.career-card p,
.industry-detail p {
  margin: 0;
  color: #5d5d58;
}

.page-card a,
.article-card a,
.template-card a,
.career-card a,
.industry-detail a {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  font-weight: 850;
}

.template-actions,
.hero-template-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.template-card .template-actions {
  align-self: center;
  justify-content: end;
}

.template-actions a {
  min-height: 40px;
  padding: 9px 12px;
  color: var(--black);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.template-actions a:first-child {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.hero-template-actions {
  margin-top: 28px;
}

.article-list,
.industry-list,
.template-list,
.career-list {
  display: grid;
  gap: 14px;
}

.industry-detail {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.article-card,
.industry-detail,
.template-card,
.career-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.career-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: center;
  justify-content: end;
}

.career-actions button {
  min-height: 40px;
  padding: 9px 12px;
  color: var(--black);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font-weight: 850;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.career-actions button:last-child {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.career-actions button:hover,
.career-actions button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.career-dialog {
  width: min(1040px, calc(100vw - 32px));
  max-height: min(820px, calc(100svh - 32px));
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  overflow: visible;
}

.career-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.career-dialog-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1fr);
  gap: 0;
  max-height: min(820px, calc(100svh - 32px));
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: auto;
}

.career-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.career-detail-panel {
  padding: 28px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.12), transparent 30%),
    #080808;
}

.career-detail-panel h2 {
  max-width: 420px;
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.04;
}

.career-detail-panel p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.career-detail-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.career-detail-grid h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.career-detail-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.career-apply-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.article-card .meta,
.case-card-header .meta,
.learning-card .meta,
.case-summary-panel .meta,
.case-results-panel .meta,
.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-body {
  max-width: 820px;
  margin-inline: auto;
}

.page-section.article-body {
  width: min(820px, calc(100% - 40px));
  max-width: none;
  padding: 82px 0;
}

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

.case-study-card {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 440px;
  padding: 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.case-study-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.case-study-card:hover,
.case-study-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(5, 5, 5, 0.24);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.case-study-card:hover::after,
.case-study-card:focus-visible::after {
  transform: scaleX(1);
}

.case-study-card-wide {
  grid-column: 1 / -1;
  min-height: 360px;
}

.case-card-header {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.case-card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

.case-card-icon svg {
  width: 22px;
  height: 22px;
}

.case-study-card h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  line-height: 1.04;
}

.case-study-card p {
  max-width: 760px;
  margin: 0;
  color: #5d5d58;
}

.case-card-metrics,
.case-hero-stats,
.case-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.case-card-metrics span,
.case-hero-stats span,
.case-result-grid span {
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: #5d5d58;
  font-size: 0.88rem;
}

.case-card-metrics strong,
.case-hero-stats strong,
.case-result-grid strong {
  color: var(--black);
  font-size: 1.35rem;
  line-height: 1;
}

.case-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: end;
  font-weight: 900;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 110px;
  padding: 14px;
  background:
    linear-gradient(rgba(5, 5, 5, 0.07) 1px, transparent 1px) 0 0 / 100% 25%,
    var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.mini-chart span {
  flex: 1;
  min-width: 28px;
  height: var(--bar);
  background: var(--black);
  border-radius: 4px 4px 0 0;
}

.mini-chart-wide span {
  max-width: 120px;
}

.case-study-note {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 18px;
  padding: 24px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

.case-study-note > svg {
  width: 26px;
  height: 26px;
}

.case-study-note h2,
.case-study-note p {
  margin: 0;
}

.case-study-note p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.case-detail-hero .case-hero-stats {
  max-width: 900px;
  margin-top: 30px;
}

.case-detail-hero .case-hero-stats span {
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}

.case-detail-hero .case-hero-stats strong {
  color: var(--white);
}

.case-detail-section {
  display: grid;
  gap: 18px;
}

.case-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.case-summary-panel,
.case-visual-panel,
.case-info-block,
.case-results-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.case-summary-panel h2,
.case-info-block h2,
.case-results-panel h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.08;
}

.case-summary-panel p,
.case-info-block li,
.case-results-panel p {
  color: #5d5d58;
}

.case-summary-panel p:last-child,
.case-results-panel p:last-child {
  margin-bottom: 0;
}

.case-visual-panel {
  color: var(--white);
  background: var(--black);
}

.case-dashboard-graphic {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 100% 42px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 42px 100%,
    #101010;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.dashboard-topline {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.dashboard-number {
  font-size: clamp(3.4rem, 8vw, 5.8rem);
  font-weight: 950;
  line-height: 0.88;
}

.case-dashboard-graphic p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.chart-stack {
  display: grid;
  gap: 12px;
  align-self: end;
}

.chart-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.9fr) minmax(90px, 1fr) auto;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.chart-row i {
  position: relative;
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.chart-row i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  background: var(--white);
  border-radius: inherit;
}

.chart-row b {
  color: var(--white);
}

.ticket-board,
.pipeline-graphic,
.donor-graphic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ticket-board span,
.pipeline-graphic span,
.donor-graphic span {
  display: grid;
  gap: 6px;
  min-height: 82px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.84rem;
}

.ticket-board b,
.pipeline-graphic b,
.donor-graphic b {
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
}

.path-graphic {
  display: grid;
  grid-template-columns: 1fr 30px 1fr 30px 1fr;
  gap: 8px;
  align-items: center;
}

.path-graphic span {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 12px;
  color: var(--black);
  background: var(--white);
  border-radius: var(--radius);
  font-weight: 900;
}

.path-graphic i {
  height: 2px;
  background: rgba(255, 255, 255, 0.62);
}

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

.case-info-block {
  display: grid;
  gap: 14px;
}

.case-info-block > svg {
  width: 28px;
  height: 28px;
}

.case-info-block ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.case-process-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.case-process-map div {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 24px;
  border-right: 1px solid var(--line-dark);
}

.case-process-map div:last-child {
  border-right: 0;
}

.case-process-map span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  font-weight: 950;
}

.case-process-map strong {
  font-size: 1.05rem;
}

.case-process-map p {
  margin: 0;
  color: #5d5d58;
}

.case-results-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  align-items: start;
}

.case-results-panel .case-result-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-results-panel .case-result-grid span {
  min-height: 116px;
}

.case-results-panel .case-result-grid strong {
  font-size: 1rem;
}

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

.learning-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 250px;
  padding: 26px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.learning-card:hover,
.learning-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(5, 5, 5, 0.24);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  outline: none;
}

.learning-card > svg {
  color: var(--black);
}

.learning-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.learning-card p {
  margin: 10px 0 0;
  color: #5d5d58;
}

.learning-card .case-card-link {
  margin-top: 18px;
}

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

.support-topic {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.support-topic h2,
.training-panel h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.support-topic p {
  margin: 8px 0 0;
  color: #5d5d58;
}

.support-topic ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: #5d5d58;
}

.support-topic a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  font-weight: 850;
}

.training-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 22px;
  align-items: start;
}

.training-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

.training-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.training-panel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: var(--white);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.training-graphic {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 100% 42px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 42px 100%,
    var(--black);
  border-radius: var(--radius);
}

.training-graphic h2,
.training-graphic p {
  margin: 0;
}

.training-graphic p {
  color: rgba(255, 255, 255, 0.7);
}

.risk-meter,
.password-meter,
.helpdesk-steps,
.voip-stack,
.onboarding-flow {
  display: grid;
  gap: 10px;
}

.risk-meter span,
.password-meter span,
.voip-stack span {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(120px, 1fr) auto;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
}

.risk-meter i,
.password-meter i,
.voip-stack i {
  position: relative;
  height: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.risk-meter i::before,
.password-meter i::before,
.voip-stack i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  background: var(--white);
  border-radius: inherit;
}

.helpdesk-steps,
.onboarding-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.helpdesk-steps span,
.onboarding-flow span {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.helpdesk-steps strong,
.onboarding-flow strong {
  color: var(--white);
}

.article-callout {
  padding: 22px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

.article-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.55fr);
  gap: 28px;
  align-items: start;
}

.founder-story,
.founder-card,
.form-helper-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.founder-story h2,
.founder-card h2,
.form-helper-panel h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.08;
}

.founder-story p,
.founder-card p,
.form-helper-panel p,
.form-helper-panel li {
  color: #5d5d58;
}

.founder-photo {
  overflow: hidden;
  background: var(--black);
  border-radius: var(--radius);
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 28%;
}

.founder-card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 18px;
}

.founder-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.founder-card div {
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.founder-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-card dd {
  margin: 4px 0 0;
  font-weight: 850;
}

.founder-card .button-primary {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.founder-card .button-primary:hover,
.founder-card .button-primary:focus-visible {
  color: var(--black);
  background: transparent;
}

.founder-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.founder-pill-list span {
  padding: 9px 11px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 850;
}

.form-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(380px, 1fr);
  gap: 32px;
  align-items: start;
}

.form-helper-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.form-helper-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.industry-rich-list {
  display: grid;
  gap: 22px;
}

.industry-rich-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.industry-copy {
  display: grid;
  gap: 18px;
  padding: 10px;
}

.industry-copy h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1.02;
}

.industry-copy p,
.industry-copy li {
  color: #5d5d58;
}

.industry-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.industry-build-grid,
.service-benefit-grid,
.service-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.industry-build-grid span,
.service-benefit-grid span,
.service-faq-grid span {
  display: grid;
  gap: 5px;
  min-height: 106px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: #5d5d58;
  font-size: 0.92rem;
}

.industry-build-grid strong,
.service-benefit-grid strong,
.service-faq-grid strong {
  color: var(--black);
  font-size: 1rem;
}

.industry-visual {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 18px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

.industry-photo {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.32), transparent 22%),
    linear-gradient(135deg, #202020, #070707);
}

.industry-photo::before,
.industry-photo::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
}

.industry-photo::before {
  inset: 28px 34px auto auto;
  width: 42%;
  height: 42%;
  background: rgba(255, 255, 255, 0.08);
}

.industry-photo::after {
  left: 28px;
  bottom: 28px;
  width: 46%;
  height: 34%;
  background: rgba(255, 255, 255, 0.12);
}

.industry-photo-contractors {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 34%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 10px, transparent 10px 20px),
    #080808;
}

.industry-photo-retail {
  background:
    radial-gradient(circle at 68% 26%, rgba(255, 255, 255, 0.3), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 20%, transparent 20% 100%),
    #0b0b0b;
}

.industry-photo-finance {
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px) 0 0 / 100% 34px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 34px 100%,
    #090909;
}

.industry-photo-real-estate {
  background:
    linear-gradient(135deg, transparent 46%, rgba(255, 255, 255, 0.2) 46% 54%, transparent 54%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent),
    #080808;
}

.industry-photo-healthcare {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(90deg, transparent 45%, rgba(255, 255, 255, 0.18) 45% 55%, transparent 55%),
    linear-gradient(0deg, transparent 45%, rgba(255, 255, 255, 0.18) 45% 55%, transparent 55%),
    #080808;
}

.industry-photo-startups {
  background:
    radial-gradient(circle at 50% 64%, rgba(255, 255, 255, 0.28), transparent 16%),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(135deg, #191919, #050505);
}

.industry-photo-nonprofits {
  background:
    radial-gradient(circle at 34% 42%, rgba(255, 255, 255, 0.24), transparent 17%),
    radial-gradient(circle at 64% 42%, rgba(255, 255, 255, 0.2), transparent 17%),
    linear-gradient(180deg, #181818, #050505);
}

.industry-photo-professional {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 3px, transparent 3px 18px) 0 0 / 54px 100%,
    linear-gradient(135deg, #1b1b1b, #050505);
}

.industry-visual h3 {
  margin: 0;
  font-size: 1rem;
}

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

.industry-kpis span {
  display: grid;
  gap: 4px;
  min-height: 78px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.industry-kpis strong {
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1;
}

.industry-chart {
  display: grid;
  gap: 10px;
}

.industry-chart span {
  display: grid;
  grid-template-columns: minmax(92px, 0.7fr) minmax(100px, 1fr);
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.industry-chart i {
  position: relative;
  height: 9px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.industry-chart i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  background: var(--white);
  border-radius: inherit;
}

.industry-actions,
.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.industry-actions a,
.service-actions a {
  min-height: 42px;
  padding: 10px 12px;
  color: var(--black);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font-weight: 850;
}

.industry-actions a:first-child,
.service-actions a:first-child {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
  gap: 22px;
  align-items: start;
}

.service-detail-main,
.service-side-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.service-detail-main {
  display: grid;
  gap: 24px;
}

.service-detail-main h2,
.service-side-panel h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2.4rem);
  line-height: 1.08;
}

.service-detail-main p,
.service-detail-main li,
.service-side-panel p,
.service-side-panel li {
  color: #5d5d58;
}

.service-side-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 16px;
}

.service-visual {
  display: grid;
  gap: 16px;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 100% 40px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 40px 100%,
    var(--black);
  border-radius: var(--radius);
}

.service-visual h3,
.service-visual p {
  margin: 0;
}

.service-visual p {
  color: rgba(255, 255, 255, 0.7);
}

.service-step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.service-step-list span {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 16px;
  border-right: 1px solid var(--line-dark);
}

.service-step-list span:last-child {
  border-right: 0;
}

.service-step-list b {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

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

.industry-index-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.46fr) minmax(0, 1fr);
  min-height: 300px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.industry-index-card:hover,
.industry-index-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(5, 5, 5, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.industry-index-card img,
.industry-hero-image,
.about-us-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-index-card-content {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.industry-index-card h2,
.industry-index-card p {
  margin: 0;
}

.industry-index-card p,
.industry-index-card li {
  color: #5d5d58;
}

.industry-index-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.industry-index-card a {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 12px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

.industry-detail-layout,
.about-us-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: 22px;
  align-items: start;
}

.industry-detail-main,
.industry-side-panel,
.about-us-main,
.about-us-side-panel {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.industry-detail-main,
.about-us-main {
  display: grid;
  gap: 24px;
  padding: 26px;
}

.industry-side-panel,
.about-us-side-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 18px;
  padding: 22px;
}

.industry-hero-image {
  height: clamp(280px, 38vw, 460px);
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  filter: grayscale(100%);
}

.industry-insight-grid,
.solution-grid,
.service-deep-grid,
.about-us-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.service-detail-main h2 + .service-deep-grid {
  margin-top: 16px;
}

.industry-insight-grid span,
.solution-grid span,
.service-deep-grid span,
.about-us-proof-grid span {
  display: grid;
  gap: 6px;
  min-height: 122px;
  padding: 15px;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: #5d5d58;
}

.industry-insight-grid strong,
.solution-grid strong,
.service-deep-grid strong,
.about-us-proof-grid strong {
  color: var(--black);
  font-size: 1.02rem;
}

.industry-deep-block,
.about-us-block {
  display: grid;
  gap: 14px;
}

.industry-deep-block h2,
.about-us-block h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  line-height: 1.08;
}

.industry-deep-block p,
.about-us-block p,
.industry-side-panel p,
.industry-side-panel li,
.about-us-side-panel p,
.about-us-side-panel li {
  color: #5d5d58;
}

.industry-side-panel ul,
.about-us-side-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.industry-mini-dashboard,
.about-mini-dashboard {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 100% 38px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 38px 100%,
    var(--black);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.16);
}

.industry-mini-dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 44%);
  opacity: 0.7;
}

.industry-mini-dashboard h3,
.about-mini-dashboard h3 {
  margin: 0;
}

.industry-panel-widget {
  display: grid;
  gap: 9px;
  margin: 4px 0 2px;
}

.industry-panel-widget span {
  display: grid;
  gap: 5px;
  min-height: 68px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.industry-panel-widget b {
  color: var(--white);
  font-size: 0.96rem;
  line-height: 1.1;
}

.industry-panel-widget small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 720;
}

.trade-ticket-board,
.sales-pipeline-mini,
.volunteer-roster,
.mvp-roadmap-mini {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trade-ticket-board span:first-child,
.property-board span:first-child,
.mvp-roadmap-mini span:first-child {
  grid-column: 1 / -1;
}

.finance-review-list span,
.healthcare-schedule span,
.professional-brief span,
.property-board span {
  grid-template-columns: minmax(78px, 0.52fr) 1fr;
  align-items: center;
}

.finance-review-list b,
.healthcare-schedule b,
.professional-brief b,
.property-board b {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.industry-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-detail-actions a,
.about-us-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

.about-us-photo {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
}

.about-us-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 5, 5, 0.68));
}

.about-us-photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
}

.about-us-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.portfolio-card {
  position: relative;
  display: grid;
  grid-template-rows: 230px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  isolation: isolate;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.portfolio-card:hover,
.portfolio-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(5, 5, 5, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.portfolio-card img,
.portfolio-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card img {
  filter: saturate(1.06) contrast(1.02) brightness(0.98);
  transition:
    transform 560ms var(--ease),
    filter 560ms var(--ease);
}

.portfolio-card:hover img,
.portfolio-card:focus-within img {
  transform: scale(1.035);
  filter: saturate(1.16) contrast(1.04) brightness(0.96);
}

.portfolio-card-content {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), #ffffff 44%, #fbfbf8 100%);
  z-index: 1;
}

.portfolio-card-content h2,
.portfolio-card-content p {
  margin: 0;
}

.portfolio-card-content h2 {
  max-width: 100%;
  font-size: clamp(1.24rem, 2.4vw, 1.55rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.portfolio-card-content p {
  color: #5d5d58;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.portfolio-tags span {
  padding: 6px 8px;
  color: var(--black);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-card-content a,
.portfolio-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  padding: 11px 13px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

.portfolio-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 22px;
  align-items: start;
}

.portfolio-detail-main,
.portfolio-side-panel {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.portfolio-detail-main {
  display: grid;
  gap: 24px;
  padding: 26px;
}

.portfolio-side-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 18px;
  padding: 22px;
}

.portfolio-hero-image {
  height: clamp(280px, 42vw, 500px);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.portfolio-detail-block {
  display: grid;
  gap: 14px;
}

.portfolio-detail-block h2,
.portfolio-side-panel h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  line-height: 1.08;
}

.portfolio-detail-block p,
.portfolio-detail-block li,
.portfolio-side-panel p,
.portfolio-side-panel li {
  color: #5d5d58;
}

.portfolio-detail-block ul,
.portfolio-side-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.portfolio-feature-grid,
.portfolio-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.portfolio-feature-grid span,
.portfolio-tech-grid span {
  display: grid;
  gap: 6px;
  min-height: 108px;
  padding: 14px;
  color: #5d5d58;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.portfolio-feature-grid strong,
.portfolio-tech-grid strong {
  color: var(--black);
}

.portfolio-mini-dashboard {
  display: grid;
  gap: 12px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 100% 38px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 38px 100%,
    var(--black);
  border-radius: var(--radius);
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.template-doc {
  display: grid;
  gap: 18px;
}

.template-submit-form {
  display: grid;
  gap: 18px;
}

.template-panel,
.template-block {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.template-panel h2,
.template-block h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.template-block h3 {
  margin: 0 0 10px;
}

.template-block p,
.template-block li {
  color: #5d5d58;
}

.template-field {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: 12px;
  min-height: 42px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-dark);
}

.template-field span {
  border-bottom: 1px solid rgba(5, 5, 5, 0.24);
}

.template-field label,
.template-block > label,
.template-panel > label {
  color: #454540;
}

.template-field input,
.template-field textarea,
.template-block textarea,
.template-block input[type="text"],
.template-block input[type="email"],
.template-block input[type="tel"],
.template-panel input,
.template-panel textarea {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line-dark);
}

.template-field textarea,
.template-block textarea,
.template-panel textarea {
  min-height: 110px;
}

.template-actions-submit {
  display: grid;
  gap: 12px;
  padding: 24px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

.template-actions-submit .form-status:not(:empty) {
  color: rgba(255, 255, 255, 0.82);
}

.template-actions-submit .form-status.is-success {
  color: var(--white);
}

.filled-example .template-field span {
  min-height: 28px;
  padding: 4px 0;
  color: #383834;
  border-bottom-color: rgba(5, 5, 5, 0.1);
}

.example-note {
  margin: 0 0 16px;
  color: #5d5d58;
}

.example-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.example-tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
}

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

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

.checklist-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.checklist-grid input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--black);
}

.article-body h2 {
  margin: 42px 0 12px;
  font-size: 2rem;
  line-height: 1.1;
}

.article-body p,
.article-body li {
  color: #565651;
  font-size: 1.04rem;
  line-height: 1.72;
}

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

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 42px;
  padding: 28px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

.page-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .icon-button {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: grid;
    justify-content: stretch;
    gap: 4px;
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    background: #050505;
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 14px;
    border-radius: 9px;
  }

  .header-cta span {
    display: none;
  }

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

  .process-list {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }

  .split-heading,
  .about-section,
  .contact-section,
  .systems-mini-cta {
    grid-template-columns: 1fr;
  }

  .footer-main,
  .page-cta {
    grid-template-columns: 1fr;
  }

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

  .case-overview-grid,
  .case-results-panel,
  .training-layout,
  .founder-layout,
  .form-page-layout,
  .systems-hero-grid,
  .system-index-grid,
  .product-system-section,
  .product-system-section-alt,
  .portfolio-grid,
  .portfolio-detail-layout,
  .systems-console,
  .systems-workspace,
  .systems-proof,
  .industry-index-card,
  .industry-detail-layout,
  .about-us-layout,
  .industry-rich-card,
  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-system-section-alt .product-system-content,
  .product-system-content {
    order: initial;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .product-system-section-alt .product-system-media,
  .product-system-section-alt .product-product-grid,
  .product-system-section-alt .case-preview-grid {
    order: initial;
  }

  .product-system-section,
  .product-system-media,
  .product-product-grid,
  .case-preview-grid {
    min-height: auto;
  }

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

  .product-product-grid a {
    min-height: 360px;
  }

  .api-flow {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 16px;
  }

  .api-flow i {
    width: 2px;
    height: 22px;
    justify-self: center;
  }

  .systems-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .training-panel,
  .founder-card,
  .form-helper-panel,
  .portfolio-side-panel,
  .industry-side-panel,
  .about-us-side-panel,
  .service-side-panel {
    position: static;
  }

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

  .case-process-map div:nth-child(2) {
    border-right: 0;
  }

  .case-process-map div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .article-card {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .article-card a {
    grid-column: 2;
    align-self: start;
  }

  .contact-info {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name span {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 32px);
    padding: calc(var(--header-height) + 44px) 18px 76px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0.7) 48%, rgba(5, 5, 5, 0.96) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.4));
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions,
  .form-actions {
    display: grid;
  }

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

  .scroll-cue {
    left: 18px;
    right: auto;
  }

  .intro-strip {
    display: grid;
  }

  .section {
    padding: 76px 18px;
  }

  .section-heading h2,
  .split-heading h2,
  .about-copy h2,
  .contact-info h2,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .service-grid,
  .partner-grid,
  .form-row,
  .footer-grid,
  .page-grid,
  .system-index-grid,
  .systems-metrics,
  .systems-pipeline,
  .systems-value-grid,
  .learning-grid,
  .industry-build-grid,
  .industry-kpis,
  .service-benefit-grid,
  .service-faq-grid,
  .case-study-showcase,
  .case-card-metrics,
  .case-hero-stats,
  .case-detail-grid-two,
  .case-results-panel .case-result-grid {
    grid-template-columns: 1fr;
  }

  .case-study-card,
  .case-study-card-wide {
    grid-column: auto;
    min-height: auto;
    padding: 22px;
  }

  .case-card-header {
    align-items: flex-start;
  }

  .case-card-metrics span,
  .case-hero-stats span,
  .case-result-grid span {
    min-height: auto;
  }

  .case-study-note {
    grid-template-columns: 1fr;
  }

  .case-summary-panel,
  .case-visual-panel,
  .case-info-block,
  .case-results-panel,
  .support-topic {
    padding: 22px;
  }

  .learning-card,
  .support-topic {
    grid-template-columns: 1fr;
  }

  .support-topic a {
    width: auto;
  }

  .risk-meter span,
  .password-meter span,
  .voip-stack span {
    grid-template-columns: 1fr;
  }

  .helpdesk-steps,
  .onboarding-flow {
    grid-template-columns: 1fr;
  }

  .case-process-map {
    grid-template-columns: 1fr;
  }

  .case-process-map div,
  .case-process-map div:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .case-process-map div:last-child {
    border-bottom: 0;
  }

  .path-graphic {
    grid-template-columns: 1fr;
  }

  .path-graphic i {
    width: 2px;
    height: 24px;
    justify-self: center;
  }

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

  .industry-chart span {
    grid-template-columns: 1fr;
  }

  .finance-review-list span,
  .healthcare-schedule span,
  .professional-brief span,
  .property-board span {
    grid-template-columns: 1fr;
  }

  .industry-insight-grid,
  .solution-grid,
  .service-deep-grid,
  .portfolio-feature-grid,
  .portfolio-tech-grid,
  .about-us-proof-grid,
  .trade-ticket-board,
  .sales-pipeline-mini,
  .volunteer-roster,
  .mvp-roadmap-mini,
  .mock-metric-grid,
  .saas-plan-grid,
  .database-health-grid,
  .schema-board,
  .workflow-lanes {
    grid-template-columns: 1fr;
  }

  .systems-page-hero {
    padding: calc(var(--header-height) + 48px) 18px 68px;
  }

  .systems-hero-copy h1 {
    font-size: 3.08rem;
  }

  .system-browser {
    min-height: 420px;
  }

  .system-browser img {
    height: 360px;
  }

  .hero-secure-card,
  .hero-live-stack,
  .mock-dashboard-card,
  .mock-portal-panel,
  .mock-admin-table,
  .saas-board,
  .workflow-lanes,
  .database-health-grid {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .product-system-media > img {
    height: auto;
    min-height: 280px;
  }

  .api-terminal div {
    grid-template-columns: 1fr;
  }

  .industry-index-grid {
    grid-template-columns: 1fr;
  }

  .service-step-list {
    grid-template-columns: 1fr;
  }

  .systems-rail {
    grid-template-columns: 1fr;
  }

  .systems-topbar {
    display: grid;
  }

  .systems-chart,
  .systems-feed,
  .systems-analytics,
  .systems-sidecar {
    min-height: 190px;
  }

  .systems-pipeline span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .systems-pipeline span:last-child {
    border-bottom: 0;
  }

  .service-step-list span {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .service-step-list span:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: auto;
  }

  .portfolio-card {
    grid-template-rows: minmax(210px, 48vw) auto;
  }

  .portfolio-card-content {
    padding: 18px;
  }

  .portfolio-card-content h2 {
    font-size: 1.32rem;
  }

  .process-list {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .process-step {
    min-width: 0;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .project-form {
    padding: 18px;
  }

  .footer-main,
  .footer-bottom {
    display: grid;
  }

  .footer-bottom div {
    justify-content: start;
  }

  .article-card,
  .industry-detail,
  .template-card,
  .career-card {
    grid-template-columns: 1fr;
  }

  .template-card .template-actions,
  .hero-template-actions {
    justify-content: start;
  }

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

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

  .career-actions {
    justify-content: start;
  }

  .career-dialog-shell {
    grid-template-columns: 1fr;
  }

  .career-detail-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .article-card a {
    grid-column: auto;
  }

  .page-section {
    padding: 68px 18px;
  }

  .page-section.article-body {
    width: calc(100% - 36px);
    padding: 68px 0;
  }

  .page-hero {
    padding: calc(var(--header-height) + 52px) 18px 58px;
  }

  .support-bot {
    right: 14px;
    bottom: 14px;
  }

  .support-toggle span {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.72rem;
  }

  .section-heading h2,
  .split-heading h2,
  .about-copy h2,
  .contact-info h2,
  .page-hero h1 {
    font-size: 1.82rem;
    line-height: 1.08;
  }

  .header-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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