:root {
  --bg: #050505;
  --surface: #0c0c0e;
  --text: #f7f7fa;
  --muted: #a7a7b0;
  --accent: #ff710a;
  --line: #29292e;
  --sans: "Manrope", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --gutter: clamp(22px, 5.5vw, 88px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
p,
h1,
h2,
h3,
h4 {
  margin: 0;
}
svg {
  display: block;
  max-width: 100%;
}
.container {
  width: min(100% - var(--gutter) * 2, 1280px);
  margin-inline: auto;
}
.mono,
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.045em;
}
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  line-height: 1.8;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: 10px;
  transform: translateY(-150%);
  z-index: 100;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--bg);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  top: 0;
  background: rgb(5 5 5 / 94%);
  backdrop-filter: blur(16px);
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 14px;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 0;
  transition: color 0.2s;
}
nav a:hover,
nav a[aria-current="location"] {
  color: var(--accent);
}
nav .nav-contact {
  color: var(--text);
}
.hero {
  padding-top: 43px;
}
.hero-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.hero-topline .eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
}
.edition {
  color: var(--muted);
  font-size: 12px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 61px 0 57px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
h1 {
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 500;
  line-height: 1.09;
  letter-spacing: -0.067em;
}
h1 > span {
  color: var(--accent);
}
.hero-description {
  max-width: 470px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 27px;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  min-height: 52px;
  background: var(--accent);
  color: #080808;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #ff8b32;
  transform: translateY(-2px);
}
.button > span[aria-hidden] {
  font-size: 21px;
  line-height: 1;
}
.system-figure {
  margin-top: 13px;
}
.flow-diagram {
  width: 100%;
  overflow: visible;
}
.diagram-label {
  fill: #b5b5a8;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
}
.figure-caption {
  font-size: 12px;
  display: flex;
  gap: 12px;
  color: var(--muted);
  justify-content: center;
}
.small-cross {
  color: var(--accent);
}
.flow-pulse {
  animation: flow 5s linear infinite;
}
@keyframes flow {
  0% {
    transform: translateX(-66px);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(50px);
    opacity: 0;
  }
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.hero-bottom a:hover {
  color: var(--text);
}
.section {
  padding-block: 98px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  align-items: end;
  margin-bottom: 45px;
}
.section-heading .eyebrow {
  grid-column: 1/-1;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(34px, 3.6vw, 49px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.045em;
}
.section-heading > p:last-child {
  max-width: 365px;
  justify-self: end;
  color: var(--muted);
  padding-bottom: 3px;
}
.case-study {
  border: 1px solid var(--line);
  padding: 32px 38px;
}
.case-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.case-category {
  font-size: 12px;
  color: var(--accent);
}
.case-index {
  font-size: 12px;
  color: var(--muted);
}
.case-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 31px;
}
h3 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.3;
}
.case-intro p,
.product-copy > p:not(.product-name) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.case-intro p + p,
.product-copy > p + p {
  margin-top: 12px;
}
.results {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 35px;
  padding: 32px 0 34px;
}
.result + .result {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}
.result-value {
  font-size: 68px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.065em;
  color: var(--accent);
  white-space: nowrap;
}
.result-value span {
  font-size: 35px;
  letter-spacing: -0.045em;
}
.result-value.time-value {
  font-size: 48px;
  line-height: 1.7;
}
.result-value.time-value span {
  font-size: 29px;
  margin: 0 3px;
}
.result p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 225px;
  margin-top: 7px;
}
.case-details {
  border-top: 1px solid var(--line);
}
summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  min-height: 54px;
  padding-top: 13px;
}
summary::-webkit-details-marker {
  display: none;
}
summary:hover {
  color: var(--accent);
}
.detail-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.detail-icon:before,
.detail-icon:after {
  content: "";
  position: absolute;
  background: var(--accent);
  top: 6px;
  left: 0;
  width: 14px;
  height: 1px;
}
.detail-icon:after {
  transform: rotate(90deg);
  transition: transform 0.2s;
}
details[open] .detail-icon:after {
  transform: rotate(0);
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 25px 0 5px;
}
.detail-grid h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.detail-grid p,
.personal-detail p {
  font-size: 14px;
  color: var(--muted);
}
.product-case {
  margin-top: 24px;
  background: linear-gradient(120deg, #101013, #060607);
}
.product-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  padding: 30px 0 34px;
}
.product-name {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.product-copy h3 {
  margin-bottom: 19px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 23px;
  border-bottom: 1px solid #b45014;
  padding-bottom: 5px;
}
.text-link span {
  color: var(--accent);
}
.text-link:hover {
  color: var(--accent);
}
.pipeline-panel {
  border: 1px solid #343439;
  align-self: center;
  background: #08080a;
  padding: 23px 25px;
}
.pipeline-top {
  display: flex;
  justify-content: space-between;
  color: #b8b8c0;
  font-size: 12px;
}
.pipeline {
  list-style: none;
  padding: 0;
  margin: 27px 0 25px;
}
.pipeline li {
  display: flex;
  gap: 18px;
  position: relative;
  padding-bottom: 28px;
}
.pipeline li:last-child {
  padding-bottom: 0;
}
.pipeline li:not(:last-child):before {
  content: "";
  position: absolute;
  left: 13px;
  top: 30px;
  bottom: 2px;
  width: 1px;
  background: #643016;
}
.pipeline-number {
  border: 1px solid #8f4117;
  color: var(--accent);
  font: 12px var(--mono);
  height: 28px;
  width: 28px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pipeline strong {
  font-size: 14px;
  font-weight: 500;
}
.pipeline p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.pipeline-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  font-size: 12px;
  color: var(--muted);
}
.personal-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  padding: 25px 0 5px;
}
.about-section {
  background: #0a0a0c;
  border-block: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.about-grid .eyebrow {
  margin-bottom: 27px;
}
.muted-heading {
  color: var(--muted);
}
.about-copy p {
  color: var(--muted);
  font-size: 16px;
}
.about-copy p + p {
  margin-top: 20px;
}
.about-copy .lead {
  font-size: 21px;
  color: var(--text);
  line-height: 1.65;
  letter-spacing: -0.02em;
}
.role-note {
  margin-top: 31px;
  display: flex;
  gap: 13px;
  align-items: center;
  border-left: 1px solid #ff710a;
  padding-left: 20px;
}
.role-note .mono {
  font-size: 12px;
  color: var(--muted);
}
.role-note strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-top: 3px;
}
.scope-list {
  margin-top: 63px;
}
.scope-row {
  display: grid;
  grid-template-columns: 55px 1fr 1.2fr;
  gap: 22px;
  align-items: baseline;
  padding: 27px 0;
  border-top: 1px solid #29292e;
}
.scope-index {
  color: var(--accent);
  font-size: 12px;
}
.scope-row h3 {
  font-size: 20px;
}
.scope-row p {
  font-size: 14px;
  color: var(--muted);
  max-width: 480px;
}
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.leadership-grid .eyebrow {
  margin-bottom: 25px;
}
.leadership-intro {
  color: var(--muted);
  max-width: 360px;
  margin-top: 23px;
  font-size: 16px;
}
.principles > div {
  display: flex;
  gap: 24px;
  padding-bottom: 28px;
}
.principles > div + div {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.principles > div:last-child {
  padding-bottom: 0;
}
.principles .mono {
  font-size: 12px;
  color: var(--accent);
  margin-top: 7px;
}
.principles h3 {
  font-size: 20px;
}
.principles p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
}
.contact-section {
  border-top: 1px solid #71320c;
  padding: 34px 0 73px;
  position: relative;
}
.contact-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.contact-top > .mono {
  font-size: 12px;
  color: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: end;
  padding-top: 33px;
}
.contact-grid h2 {
  font-size: clamp(35px, 4.2vw, 57px);
  letter-spacing: -0.05em;
}
.contact-grid h2 > span {
  color: var(--accent);
}
.contact-grid p {
  color: var(--muted);
  font-size: 14px;
  max-width: 360px;
}
.contact-grid .button {
  margin-top: 23px;
}
footer {
  border-top: 1px solid var(--line);
  padding-block: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
footer .footer-name {
  font-size: 14px;
  font-weight: 700;
}
footer p {
  font-size: 12px;
  color: var(--muted);
}
footer > .mono {
  font-size: 12px;
  color: var(--muted);
}
@media (min-width: 1600px) {
  .hero-grid {
    padding-block: 80px;
  }
  .hero-description {
    font-size: 19px;
  }
}
@media (max-width: 1000px) {
  nav {
    gap: 22px;
  }
  .edition {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
  }
  h1 {
    font-size: clamp(42px, 6.3vw, 70px);
  }
  .hero-description {
    font-size: 16px;
    max-width: 390px;
  }
  .section {
    padding-block: 75px;
  }
  .section-heading,
  .about-grid,
  .leadership-grid {
    gap: 45px;
  }
  .case-study {
    padding: 27px;
  }
  .case-intro,
  .product-grid {
    gap: 35px;
  }
  .result-value {
    font-size: 55px;
  }
  .result-value span {
    font-size: 27px;
  }
  .result-value.time-value {
    font-size: 37px;
  }
  .result + .result {
    padding-left: 22px;
  }
  .results {
    gap: 22px;
  }
  .contact-grid {
    gap: 35px;
  }
  .figure-caption {
    font-size: 12px;
  }
  .scope-row {
    grid-template-columns: 35px 1fr 1.2fr;
  }
  .pipeline-panel {
    padding: 20px;
  }
}
@media (max-width: 720px) {
  html {
    scroll-padding-top: 86px;
  }
  .header-inner {
    min-height: 77px;
  }
  .wordmark {
    gap: 10px;
    font-size: 12px;
  }
  nav {
    gap: 20px;
  }
  nav a {
    font-size: 12px;
  }
  .nav-contact {
    display: none;
  }
  .hero {
    padding-top: 28px;
  }
  .hero-topline .eyebrow {
    font-size: 12px;
    gap: 8px;
    letter-spacing: 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 32px;
    gap: 25px;
  }
  h1 {
    font-size: clamp(43px, 8.7vw, 65px);
    letter-spacing: -0.06em;
  }
  .hero-description {
    font-size: 16px;
    max-width: 490px;
    margin-top: 22px;
  }
  .system-figure {
    width: min(100%, 390px);
    margin: 0 auto;
  }
  .flow-diagram {
    max-height: 250px;
  }
  .figure-caption {
    font-size: 12px;
    margin-top: 3px;
  }
  .hero-bottom {
    font-size: 12px;
    padding-block: 18px;
  }
  .hero-bottom > span {
    display: none;
  }
  .hero-bottom a {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .section {
    padding-block: 59px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 29px;
  }
  .section-heading .eyebrow {
    margin: 0;
  }
  .section-heading > p:last-child {
    justify-self: start;
    max-width: 450px;
    font-size: 16px;
  }
  .eyebrow {
    font-size: 12px;
  }
  h2 {
    font-size: 35px;
  }
  .case-study {
    padding: 24px;
  }
  .case-category {
    font-size: 12px;
    letter-spacing: 0.01em;
  }
  .case-index {
    font-size: 12px;
    white-space: nowrap;
  }
  .case-intro,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-top: 24px;
  }
  h3 {
    font-size: 29px;
  }
  .results {
    grid-template-columns: 1fr;
    margin-top: 25px;
    padding: 0 0 25px;
    gap: 0;
  }
  .result {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    padding: 16px 0;
  }
  .result + .result {
    padding: 16px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .result-value {
    font-size: 52px;
    min-width: 150px;
  }
  .result-value span {
    font-size: 27px;
  }
  .result-value.time-value {
    font-size: 34px;
    line-height: 1.3;
  }
  .result-value.time-value span {
    font-size: 24px;
  }
  .result p {
    max-width: 120px;
    font-size: 12px;
    margin: 0;
  }
  .detail-grid,
  .personal-detail {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .product-grid {
    padding-top: 0;
    margin-top: 27px;
    gap: 31px;
  }
  .product-name {
    margin-bottom: 18px;
  }
  .pipeline-panel {
    width: 100%;
    padding: 25px;
  }
  .pipeline strong {
    font-size: 14px;
  }
  .pipeline p {
    font-size: 12px;
  }
  .pipeline-top,
  .pipeline-bottom {
    font-size: 12px;
  }
  .about-grid,
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .about-copy .lead {
    font-size: 20px;
  }
  .scope-list {
    margin-top: 40px;
  }
  .scope-row {
    grid-template-columns: 25px 1fr;
    gap: 10px 16px;
    padding-block: 23px;
  }
  .scope-row p {
    grid-column: 2;
  }
  .scope-row h3 {
    font-size: 19px;
  }
  .leadership-intro {
    max-width: 440px;
  }
  .contact-section {
    padding: 28px 0 49px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 27px;
  }
  .contact-grid h2 {
    font-size: clamp(33px, 7.5vw, 48px);
  }
  .contact-grid p {
    max-width: 430px;
  }
  .contact-top > .mono {
    display: none;
  }
  footer {
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 23px;
  }
  footer p {
    display: none;
  }
  footer > .mono {
    font-size: 12px;
  }
}
@media (max-width: 370px) {
  :root {
    --gutter: 18px;
  }
  .header-inner {
    gap: 8px;
  }
  nav {
    gap: 15px;
  }
  .wordmark {
    font-size: 12px;
    gap: 7px;
  }
  h1 {
    font-size: 39px;
  }
  .hero-topline .eyebrow {
    font-size: 12px;
  }
  .case-study {
    padding: 19px;
  }
  .result-value {
    min-width: 130px;
    font-size: 45px;
  }
  .result-value.time-value {
    font-size: 30px;
  }
  .result-value span {
    font-size: 23px;
  }
  .result p {
    font-size: 12px;
  }
  .case-category {
    font-size: 12px;
  }
  .contact-grid h2 {
    font-size: 31px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .flow-pulse {
    opacity: 0.8;
  }
}

/* High-contrast visual direction: black glass, copper light, sharp type. */
h1 {
  font-weight: 600;
  letter-spacing: -0.06em;
}
h2 {
  font-weight: 600;
}
.hero-grid {
  grid-template-columns: 1.12fr 1fr;
  gap: 0;
  padding-block: 54px 48px;
}
.hero-copy {
  margin-right: -30px;
}
.hero-description {
  color: #b3b3bc;
}
h1 > span {
  color: #ff710a;
}
.header-inner {
  border-bottom-color: #25252b;
}
.button {
  background: #ff710a;
  box-shadow: inset 0 1px 0 #ffad66;
  border: 1px solid #ff852a;
}
.button:hover {
  background: #ff8525;
  box-shadow:
    0 8px 35px #ff650026,
    inset 0 1px 0 #ffbd83;
}
.hero-bottom {
  border-top-color: #36363d;
  position: relative;
}
.hero-bottom::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 88px;
  height: 2px;
  background: #ff710a;
  box-shadow: 0 0 14px #ff710a60;
}
.signal-canvas,
.signal-labels {
  display: none;
}
.system-figure {
  position: relative;
  margin-top: 0;
}
.enhanced-flow {
  min-width: 0;
}
.enhanced-flow .flow-diagram {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.enhanced-flow .signal-canvas {
  display: block;
  width: 100%;
  aspect-ratio: 620 / 460;
}
.enhanced-flow .signal-labels {
  display: block;
  position: absolute;
  inset: 0 0 35px;
  pointer-events: none;
}
.signal-label {
  position: absolute;
  color: #b4b4bf;
  font: 11px var(--mono);
  letter-spacing: 0.09em;
}
.label-cloud {
  left: 5%;
  top: 10%;
}
.label-data {
  left: 5%;
  top: 42%;
}
.label-teams {
  left: 5%;
  top: 75%;
}
.label-delivery {
  right: 3%;
  top: 10%;
  color: #ff8629;
}
.enhanced-flow .figure-caption {
  color: #91919e;
  padding-block: 16px 0;
  border-top: 1px solid #232329;
  margin: 0 22px;
  font-size: 11px;
}
.case-study {
  background: #09090b;
  position: relative;
  border-color: #303037;
  transition: border-color 0.25s;
}
.case-study:hover {
  border-color: #704022;
}
.case-study::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 32px;
  height: 36px;
  width: 3px;
  background: #ff710a;
  box-shadow: 0 0 18px #ff710a40;
}
.case-heading {
  padding-bottom: 21px;
  border-bottom: 1px solid #242429;
}
.case-index {
  color: #8b8b99;
}
.case-intro h3 {
  font-size: 34px;
  font-weight: 600;
}
.results {
  padding: 0;
  margin-block: 36px;
  gap: 0;
  border: 1px solid #29292e;
}
.result {
  padding: 28px;
}
.result + .result {
  padding: 28px;
}
.result:first-child {
  background: #ff710a;
}
.result:first-child .result-value {
  color: #080808;
  font-weight: 600;
}
.result:first-child p {
  color: #15100a;
  font-weight: 600;
}
.result-value {
  font-weight: 600;
}
.result p {
  color: #b8b8c1;
}
.product-case {
  background: linear-gradient(125deg, #101014 0%, #070708 70%);
}
.product-name {
  color: #fff;
  font-size: 25px;
}
.pipeline-panel {
  border-color: #37373f;
  background: #050506;
  box-shadow: 0 20px 50px #0008;
  position: relative;
}
.pipeline-panel::before {
  content: "";
  position: absolute;
  width: 62px;
  height: 2px;
  top: -1px;
  left: 25px;
  background: #ff710a;
}
.pipeline-number {
  color: #ff872c;
}
.about-section {
  background: #09090b;
}
.about-grid h2 {
  color: #f7f7fa;
}
.muted-heading {
  color: #9f9fab;
}
.scope-row {
  transition: border-color 0.2s;
}
.scope-row:hover {
  border-color: #a54c15;
}
.scope-index {
  color: #ff710a;
}
.contact-section {
  border-top-color: #ff710a;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100px;
  height: 2px;
  background: #ff710a;
  box-shadow: 0 0 20px #ff710a80;
}
.contact-grid h2 {
  font-weight: 500;
}
@media (min-width: 1100px) {
  .hero-grid {
    min-height: 485px;
  }
  h1 {
    font-size: clamp(65px, 5.9vw, 84px);
  }
}
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
  }
  h1 {
    font-size: clamp(42px, 5.9vw, 59px);
  }
  .result,
  .result + .result {
    padding: 22px;
  }
  .result-value.time-value {
    font-size: 33px;
  }
}
@media (max-width: 720px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 35px;
    padding-bottom: 30px;
  }
  .hero-copy {
    margin-right: 0;
  }
  h1 {
    font-size: clamp(42px, 8.7vw, 65px);
  }
  .system-figure {
    width: 100%;
  }
  .enhanced-flow .signal-canvas {
    aspect-ratio: 620 / 430;
  }
  .enhanced-flow .signal-labels {
    bottom: 40px;
  }
  .signal-label {
    font-size: 10px;
  }
  .enhanced-flow .figure-caption {
    margin-inline: 0;
    font-size: 10px;
  }
  .case-intro h3 {
    font-size: 29px;
  }
  .case-heading {
    gap: 12px;
  }
  .results {
    margin-block: 26px;
  }
  .result,
  .result + .result {
    padding: 20px 16px;
  }
  .result-value {
    min-width: 130px;
    font-size: 45px;
  }
  .result-value.time-value {
    font-size: 30px;
  }
  .result-value span {
    font-size: 25px;
  }
  .result p {
    font-size: 12px;
  }
  .result {
    gap: 12px;
  }
}
@media (max-width: 370px) {
  h1 {
    font-size: 37px;
  }
  .result,
  .result + .result {
    display: block;
    padding: 17px;
  }
  .result p {
    max-width: none;
    margin-top: 6px;
  }
  .result-value {
    min-width: 0;
  }
  .signal-label {
    font-size: 9px;
  }
}

/* The name anchors the page; arrows are reserved for external destinations. */
.wordmark {
  font-size: 18px;
  letter-spacing: -0.035em;
}
@media (max-width: 720px) {
  .wordmark {
    font-size: 16px;
  }
}
@media (max-width: 370px) {
  .wordmark {
    font-size: 15px;
  }
}
