:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #111827;
  --muted: #445267;
  --soft: #6b7a90;
  --line: #dce4ee;
  --line-strong: #c9d5e4;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --blue: #075ff2;
  --blue-dark: #064fc9;
  --cyan: #08aeea;
  --green: #18a86b;
  --shadow: 0 24px 70px rgba(35, 49, 72, 0.14);
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

svg {
  display: block;
}

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

.site-header {
  min-height: 104px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 760;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  color: #172033;
  font-size: 1rem;
  font-weight: 520;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue);
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button svg {
  width: 21px;
  height: 21px;
}

.button path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 34px rgba(7, 95, 242, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: var(--blue);
  color: var(--blue);
  background: #fff;
}

.hero {
  width: min(100%, var(--max));
  min-height: 560px;
  margin: 0 auto;
  padding: 76px 60px 44px;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(560px, 1.05fr);
  gap: clamp(30px, 4vw, 70px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(3.6rem, 5.1vw, 5rem);
  line-height: 1.07;
  letter-spacing: -0.055em;
  font-weight: 780;
}

.hero-copy p {
  max-width: 630px;
  margin: 28px 0 0;
  color: #344258;
  font-size: clamp(1.32rem, 2vw, 1.72rem);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 52px;
}

.hero-actions .button {
  min-width: 244px;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: 242px minmax(390px, 1fr);
  align-items: center;
  justify-content: end;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 205px;
  width: 220px;
  height: 180px;
  background-image: radial-gradient(#b5c3d6 1px, transparent 1.2px);
  background-size: 18px 18px;
  opacity: 0.55;
  z-index: -1;
}

.workflow-panel,
.dashboard-shell {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(42, 59, 84, 0.12);
}

.workflow-panel {
  position: relative;
  z-index: 2;
  padding: 12px;
  border-radius: 7px;
}

.workflow-panel::after {
  content: "";
  position: absolute;
  inset: 52px -84px 120px auto;
  width: 108px;
  border-top: 2px dashed #9eb7db;
  border-right: 2px dashed #9eb7db;
  border-bottom: 2px solid var(--blue);
  border-radius: 0 18px 18px 0;
  z-index: -1;
}

.workflow-node {
  min-height: 66px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #dfe7f1;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(31, 50, 76, 0.08);
}

.workflow-node.active {
  border-color: var(--blue);
  box-shadow: 0 16px 34px rgba(7, 95, 242, 0.14);
}

.workflow-node strong,
.metric strong,
.dashboard-header strong {
  display: block;
  color: #162033;
  font-size: 0.78rem;
  line-height: 1.25;
}

.workflow-node span:not(.node-icon),
.metric span,
.metric small {
  color: #526177;
  font-size: 0.66rem;
}

.connector {
  width: 2px;
  height: 20px;
  margin: 0 auto;
  background: #183253;
}

.node-icon {
  width: 42px;
  height: 42px;
  border-radius: 7px;
  flex: 0 0 auto;
  background: #eaf1fb;
  position: relative;
}

.node-icon::before,
.node-icon::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 2px solid currentColor;
}

.node-icon.signals {
  color: #6d84a0;
}

.node-icon.signals::before {
  inset: 13px;
  border-width: 0;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.node-icon.signals::after {
  inset: 10px;
  border-radius: 50%;
}

.node-icon.triage {
  color: #fff;
  background: var(--blue);
}

.node-icon.triage::before {
  inset: 10px 12px 18px;
  border-width: 0;
  border-bottom: 2px solid currentColor;
}

.node-icon.triage::after {
  inset: 19px 12px 10px;
  border-width: 2px 0 0;
  transform: skewY(-24deg);
}

.node-icon.action {
  color: var(--green);
  background: #effbf5;
}

.node-icon.action::before {
  inset: 10px 12px;
  border-radius: 4px 4px 2px 2px;
}

.node-icon.action::after {
  inset: 18px 9px;
  border-width: 0;
  border-top: 2px solid currentColor;
}

.node-icon.evaluation {
  color: #17336d;
  background: #edf4ff;
}

.node-icon.evaluation::before {
  inset: 10px 13px 12px;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.node-icon.evaluation::after {
  inset: 9px;
  border-radius: 5px;
}

.node-icon.delivery {
  color: var(--blue);
  background: #f1f7ff;
}

.node-icon.delivery::before {
  inset: 12px 10px 16px;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

.node-icon.delivery::after {
  inset: 19px 10px 11px;
  border-width: 0 0 2px;
}

.dashboard-shell {
  min-height: 392px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  border-radius: 8px;
  overflow: hidden;
  transform: translateX(-10px);
}

.dashboard-rail {
  padding: 15px 0;
  background: #132033;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.dashboard-rail img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  padding: 4px;
  border-radius: 5px;
  background: #fff;
}

.dashboard-rail span {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #e6edf7;
  opacity: 0.82;
}

.dashboard-rail span:nth-child(3) {
  border-radius: 50%;
}

.dashboard {
  padding: 28px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d7e1ed;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}

.metric {
  min-height: 92px;
  padding: 16px;
  border: 1px solid #e1e8f1;
  border-radius: 6px;
  background: #fff;
}

.metric-large {
  grid-row: span 2;
  min-height: 226px;
}

.metric-large > strong {
  margin-top: 18px;
  color: var(--green);
  font-size: 1.25rem;
}

.line-chart {
  width: 100%;
  height: 108px;
  margin-top: 20px;
}

.line-chart path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
}

.status-card strong {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.72rem;
}

.status-card i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.activity-card ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.activity-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #526177;
  font-size: 0.67rem;
}

.activity-card li + li {
  margin-top: 9px;
}

.activity-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.bars {
  height: 76px;
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  align-items: end;
  gap: 7px;
}

.bars i {
  height: var(--h);
  min-height: 12px;
  background: linear-gradient(180deg, #65aaf6, #2179e8);
}

.score-card {
  width: 170px;
  justify-self: end;
  transform: translate(18px, -22px);
  box-shadow: 0 18px 44px rgba(31, 50, 76, 0.12);
}

.score {
  width: 96px;
  height: 96px;
  margin: 16px auto 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: conic-gradient(var(--blue) 0 70%, var(--green) 70% 92%, #e7eef7 92% 100%);
  position: relative;
}

.score::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #fff;
}

.score strong,
.score small {
  position: relative;
  z-index: 1;
}

.score strong {
  font-size: 1.2rem;
}

.score small {
  margin-top: -36px;
}

.services {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 96px 60px;
  border-bottom: 1px solid var(--line);
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 0.6fr);
  gap: 80px;
  align-items: start;
  margin-bottom: 54px;
}

.services-intro .section-copy h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.35rem, 4.4vw, 4.35rem);
  line-height: 1.08;
  letter-spacing: -0.052em;
}

.services-intro .section-copy p {
  margin: 26px 0 0;
  max-width: 720px;
  color: #3b4b60;
  font-size: 1.18rem;
}

.service-jump-links {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-jump-links a {
  min-height: 58px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  color: #1e2d44;
  font-weight: 680;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.service-jump-links a::after {
  content: "→";
  color: var(--blue);
}

.service-jump-links a:hover,
.service-jump-links a:focus-visible {
  color: var(--blue);
  background: #f7faff;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(36px, 5vw, 76px);
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.service-detail:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-heading {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 24px;
  align-content: start;
}

.service-heading span {
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 780;
}

.service-heading h3 {
  margin: 10px 0 18px;
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.048em;
}

.service-heading p {
  max-width: 520px;
  margin: 0;
  color: #39485c;
  font-size: 1.12rem;
}

.service-body {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(230px, 0.62fr);
  gap: 24px;
  align-items: stretch;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #edf4ff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px #d5e4fb;
}

.service-icon.ai {
  background: #eaf8f0;
  color: var(--green);
  box-shadow: inset 0 0 0 1px #bee7ce;
}

.service-icon.leadership {
  color: #17336d;
}

.service-icon svg {
  width: 31px;
  height: 31px;
}

.service-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon::after {
  content: "";
  width: 58px;
  height: 3px;
  background: currentColor;
  transform: translateY(33px);
}

.service-capabilities,
.service-outcome {
  border: 1px solid var(--line);
  background: #fff;
}

.service-capabilities {
  padding: 30px 34px;
}

.service-capabilities h4 {
  margin: 0 0 20px;
  color: #172033;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.service-capabilities ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-capabilities li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 14px;
  color: #3d4d62;
  font-size: 1.02rem;
}

.service-capabilities li + li {
  margin-top: 15px;
}

.service-capabilities li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--green);
}

.service-outcome {
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.service-outcome strong {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-outcome p {
  margin: 18px 0 28px;
  color: #26364e;
  font-size: 1.06rem;
  font-weight: 620;
}

.service-outcome a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 680;
  text-decoration: none;
}

.approach,
.industries,
.contact {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 96px 60px;
  border-bottom: 1px solid var(--line);
}

.approach {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(480px, 1.1fr);
  gap: 80px;
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.section-label {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-copy h2,
.industries h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.4vw, 4.35rem);
  line-height: 1.08;
  letter-spacing: -0.052em;
}

.section-copy p,
.contact p {
  margin: 28px 0 0;
  max-width: 650px;
  color: #3b4b60;
  font-size: 1.2rem;
}

.steps {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  align-self: start;
}

.steps article {
  padding: 34px 36px;
  background: #fff;
}

.steps span {
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 780;
}

.steps h3 {
  margin: 10px 0 10px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

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

.industries {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 0.75fr);
  gap: 80px;
  align-items: start;
}

.industries ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.industries li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: #233149;
  font-size: 1.1rem;
  font-weight: 620;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #121923;
  color: #fff;
}

.contact .section-label {
  color: var(--cyan);
}

.contact h2 {
  max-width: 860px;
}

.contact p {
  color: #d5dfed;
}

.contact .button-primary {
  flex: 0 0 auto;
  box-shadow: none;
}

.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--soft);
  border-bottom: 1px solid var(--line);
}

.site-footer p,
.site-footer a {
  margin: 0;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px 28px;
}

.site-footer a {
  color: #24344c;
  font-weight: 620;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--blue);
}

.legal-hero,
.legal-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 76px 60px;
  border-bottom: 1px solid var(--line);
}

.legal-hero {
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.legal-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.052em;
}

.legal-hero p {
  max-width: 760px;
  margin: 26px 0 0;
  color: #3b4b60;
  font-size: 1.22rem;
}

.legal-hero .legal-updated {
  margin-top: 24px;
  color: var(--soft);
  font-size: 0.98rem;
  font-weight: 650;
}

.legal-content {
  max-width: 980px;
}

.legal-content article + article {
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 16px;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.legal-content p,
.legal-content li {
  color: #39485c;
  font-size: 1.06rem;
}

.legal-content p {
  margin: 0;
}

.legal-content p + p {
  margin-top: 16px;
}

.legal-content ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--blue);
  font-weight: 650;
}

@media (max-width: 1120px) {
  .site-header {
    padding: 0 28px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 64px 32px 0;
  }

  .hero h1 {
    max-width: 820px;
  }

  .hero-visual {
    min-height: 440px;
    width: min(780px, 100%);
    margin: 8px auto -1px;
  }

  .services {
    padding: 72px 32px;
  }

  .services-intro,
  .service-detail,
  .service-body {
    grid-template-columns: 1fr;
  }

  .services-intro {
    gap: 34px;
  }

  .approach,
  .industries,
  .contact {
    grid-template-columns: 1fr;
    padding: 72px 32px;
    gap: 44px;
  }

  .site-footer {
    padding: 28px 32px;
  }

  .legal-hero,
  .legal-content {
    padding: 68px 32px;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 78px;
    padding: 0 20px;
  }

  .brand {
    font-size: 1.2rem;
  }

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

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 48px 20px 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .hero-copy p {
    font-size: 1.24rem;
  }

  .hero-actions {
    margin-top: 34px;
  }

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

  .hero-visual {
    min-height: 560px;
    grid-template-columns: 1fr;
    gap: 16px;
    transform: scale(0.94);
    transform-origin: top center;
  }

  .workflow-panel {
    max-width: 310px;
    margin: 0 auto;
  }

  .workflow-panel::after,
  .hero-visual::before {
    display: none;
  }

  .dashboard-shell {
    transform: none;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .dashboard {
    padding: 18px;
  }

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

  .metric-large {
    min-height: 190px;
  }

  .score-card {
    width: auto;
    justify-self: stretch;
    transform: none;
  }

  .services {
    padding: 62px 20px;
  }

  .services-intro {
    margin-bottom: 38px;
  }

  .service-detail {
    padding: 38px 0;
    gap: 26px;
  }

  .service-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-body {
    gap: 18px;
  }

  .service-capabilities,
  .service-outcome {
    padding: 26px 22px;
  }

  .approach,
  .industries,
  .contact {
    padding: 62px 20px;
  }

  .site-footer {
    padding: 28px 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-hero,
  .legal-content {
    padding: 56px 20px;
  }

  .legal-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .section-copy h2,
  .industries h2,
  .contact h2 {
    font-size: clamp(2.4rem, 11vw, 3.15rem);
  }
}

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