:root {
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #172126;
  --ink-soft: #4b5b62;
  --ink-muted: #6b797f;
  --paper: #ffffff;
  --paper-soft: #f4f6f3;
  --line: #dce2de;
  --line-dark: rgba(255, 255, 255, 0.15);
  --graphite: #11191c;
  --graphite-soft: #1a2529;
  --teal: #08756c;
  --teal-dark: #065d56;
  --teal-soft: #e7f2ef;
  --amber: #e59a36;
  --amber-dark: #bd731e;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(23, 33, 38, 0.07);
  --shadow-md: 0 20px 60px rgba(23, 33, 38, 0.11);
}

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

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

body {
  margin: 0;
  color: var(--ink-soft);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

main,
.footer {
  overflow-x: clip;
}

body.mobile-nav-active {
  overflow: hidden;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

a:hover {
  color: var(--teal-dark);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 720;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

p {
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10001;
  transform: translateY(-180%);
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

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

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

.dark-background {
  color: rgba(255, 255, 255, 0.78);
  background: var(--graphite);
}

.section {
  padding: 96px 0;
  scroll-margin-top: 78px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #f1b45d;
}

.section-title {
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 50px;
  text-align: center;
}

.section-title-left {
  max-width: 860px;
  margin-left: 0;
  text-align: left;
}

.section-title h2,
.section-intro-grid h2 {
  margin-bottom: 18px;
  font-size: 2.7rem;
}

.section-title p,
.section-lead p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.section-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 96px;
  align-items: end;
}

.section-intro-grid h2 {
  margin: 0;
}

.section-intro-light h2,
.section-intro-light p {
  color: var(--white);
}

.section-intro-light p {
  color: rgba(255, 255, 255, 0.7);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--teal);
  font-weight: 720;
}

.text-link:hover i,
.product-proof-grid a:hover i {
  transform: translateX(4px);
}

.text-link i,
.product-proof-grid a i {
  transition: transform 180ms ease;
}

.btn-primary-action,
.btn-quiet-action,
.btn-outline-action,
.detail-primary,
.detail-secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 740;
  line-height: 1.25;
}

.btn-primary-action,
.detail-primary {
  color: #11191c;
  background: var(--amber);
}

.btn-primary-action:hover,
.detail-primary:hover {
  color: #11191c;
  background: #f0ad4f;
  transform: translateY(-2px);
}

.btn-quiet-action {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.btn-quiet-action:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.11);
}

.btn-outline-action {
  color: var(--teal-dark);
  border-color: #b9cbc5;
  background: var(--paper);
}

.btn-outline-action:hover {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
}

/* Header and navigation */
.header {
  min-height: 76px;
  padding: 13px 0;
  color: var(--white);
  background: rgba(17, 25, 28, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 220ms ease, box-shadow 220ms ease;
  z-index: 997;
}

.scrolled .header,
.detail-page .header,
.header.header-solid {
  background: rgba(17, 25, 28, 0.96);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.header .logo {
  min-width: 0;
  line-height: 1;
}

.header .logo img {
  width: 178px;
  height: auto;
}

.header .btn-getstarted {
  flex: 0 0 auto;
  margin-left: 24px;
  padding: 10px 16px;
  color: #11191c;
  background: var(--amber);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 760;
}

.header .btn-getstarted:hover {
  color: #11191c;
  background: #f0ad4f;
}

@media (min-width: 1200px) {
  .navmenu ul {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .navmenu a {
    display: flex;
    align-items: center;
    padding: 14px 11px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 650;
    white-space: nowrap;
  }

  .navmenu li:hover > a,
  .navmenu a.active {
    color: #f4bb69;
  }
}

/* Homepage hero */
.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 136px 0 34px;
}

.hero-visual,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-visual {
  object-fit: cover;
  object-position: center center;
  transform: translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0) scale(1.09);
  transform-origin: center;
  will-change: transform, filter;
  animation: hero-image-tone 12s ease-in-out infinite;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 18, 20, 0.99) 0%, rgba(12, 18, 20, 0.96) 33%, rgba(12, 18, 20, 0.72) 55%, rgba(12, 18, 20, 0.2) 100%),
    linear-gradient(0deg, rgba(12, 18, 20, 0.96) 0%, rgba(12, 18, 20, 0.08) 42%);
}

.hero .container {
  z-index: 2;
}

.hero-copy {
  width: min(690px, 58%);
  padding-top: 12px;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: 4.5rem;
  font-weight: 780;
  line-height: 0.98;
}

.hero h2 {
  max-width: 650px;
  margin: 23px 0 0;
  color: #f4cf91;
  font-size: 2rem;
  font-weight: 660;
  line-height: 1.25;
}

.hero-copy > p {
  max-width: 650px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.hero-value-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 64px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 16, 18, 0.26);
}

.hero-value-bar > div {
  min-width: 0;
  display: flex;
  gap: 13px;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-value-bar > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-value-bar i {
  flex: 0 0 auto;
  color: #68c9bd;
  font-size: 1.25rem;
  line-height: 1.3;
}

.hero-value-bar span,
.hero-value-bar strong {
  display: block;
}

.hero-value-bar strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.92rem;
}

.hero-value-bar span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* About and business outcomes */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 52px;
  margin-top: 68px;
  border-bottom: 1px solid var(--line);
}

.outcome-grid article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
}

.outcome-grid article > span {
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 780;
}

.outcome-grid h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.outcome-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Connected operations visual */
.operations-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #10181b;
}

.operations-visual-image,
.operations-visual-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.operations-visual-image {
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--operations-shift-y, 0), 0) scale(1.075);
  transform-origin: center;
  will-change: transform, filter;
  animation: operations-image-tone 14s ease-in-out infinite;
}

.operations-visual-shade {
  background:
    linear-gradient(90deg, rgba(12, 18, 20, 0.98) 0%, rgba(12, 18, 20, 0.9) 34%, rgba(12, 18, 20, 0.35) 62%, rgba(12, 18, 20, 0.08) 100%),
    linear-gradient(0deg, rgba(12, 18, 20, 0.78) 0%, transparent 48%);
}

.operations-visual .container {
  position: relative;
  z-index: 1;
}

.operations-visual-copy {
  width: min(570px, 48%);
  padding: 96px 0;
}

.operations-visual h2 {
  margin: 0;
  color: var(--white);
  font-size: 3rem;
  line-height: 1.08;
}

.operations-visual-copy > p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.operations-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
}

.operations-signals span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 680;
}

.operations-signals i {
  color: #70d1c6;
  font-size: 1rem;
}

/* Capability portfolio */
.capability-jump {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.capability-jump a {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 14px;
  color: var(--ink);
  border-left: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.capability-jump a:first-child {
  border-left: 0;
}

.capability-jump a:hover {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.capability-jump i {
  color: var(--teal);
  font-size: 1.1rem;
}

.capability-stack {
  margin-top: 38px;
  border-bottom: 1px solid #cfd7d2;
}

.capability-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.78fr);
  gap: 76px;
  padding: 62px 0;
  border-top: 1px solid #cfd7d2;
  scroll-margin-top: 96px;
}

.capability-heading {
  position: relative;
}

.capability-number {
  display: block;
  margin-bottom: 24px;
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 780;
}

.capability-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--teal);
  border-radius: 6px;
  font-size: 1.45rem;
}

.capability-type {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.capability-heading h3 {
  margin: 0;
  font-size: 1.85rem;
}

.capability-summary {
  max-width: 850px;
  margin: 0;
  color: #33444b;
  font-size: 1.08rem;
  line-height: 1.78;
}

.deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.deliverables span {
  padding: 6px 10px;
  color: #31534f;
  background: #e8f1ee;
  border: 1px solid #d0e2dc;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 680;
}

.business-cases {
  margin-top: 38px;
}

.business-cases h4 {
  margin-bottom: 16px;
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

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

.case-grid > div {
  min-width: 0;
  padding: 24px 22px 0;
  border-left: 1px solid var(--line);
}

.case-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.case-grid i {
  display: block;
  margin-bottom: 15px;
  color: var(--teal);
  font-size: 1.35rem;
}

.case-grid strong {
  display: block;
  min-height: 46px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.4;
}

.case-grid p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Product proof */
.products-proof {
  position: relative;
  overflow: hidden;
  background: #10191c;
}

.products-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}

.products-proof .container {
  position: relative;
  z-index: 1;
}

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

.product-proof-grid article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.product-proof-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
}

.product-proof-top span {
  color: #79cfc5;
  font-size: 0.8rem;
  font-weight: 780;
}

.product-proof-top i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #11191c;
  background: var(--amber);
  border-radius: 4px;
  font-size: 1.15rem;
}

.product-proof-grid h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.35rem;
}

.product-proof-grid p {
  flex: 1;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.product-proof-grid a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f0b65f;
  font-weight: 720;
}

.product-proof-grid a:hover {
  color: #ffd69a;
}

/* Delivery approach */
.delivery-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.delivery-steps::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: #cad5d0;
}

.delivery-steps li {
  position: relative;
  min-width: 0;
}

.delivery-steps li > span {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 760;
}

.delivery-steps strong {
  display: block;
  margin-top: 24px;
  color: var(--ink);
  font-size: 1.12rem;
}

.delivery-steps p {
  margin: 9px 0 0;
  font-size: 0.9rem;
  line-height: 1.62;
}

.engagement-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  align-items: center;
  margin-top: 72px;
  padding: 42px;
  color: rgba(255, 255, 255, 0.72);
  background: #162326;
  border-left: 5px solid var(--teal);
  border-radius: 6px;
}

.engagement-band h3 {
  max-width: 760px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.75rem;
}

.engagement-band p {
  max-width: 760px;
  margin: 0;
}

.engagement-band .eyebrow {
  margin-bottom: 12px;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
}

.contact-details {
  border-top: 1px solid var(--line);
}

.contact-details > a,
.contact-details > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 21px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.contact-details > a:hover strong {
  color: var(--teal-dark);
}

.contact-details > a > i,
.contact-details > div > i {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 4px;
}

.contact-details span,
.contact-details small,
.contact-details strong {
  min-width: 0;
  display: block;
}

.contact-details small {
  margin-bottom: 2px;
  color: var(--ink-muted);
  font-size: 0.76rem;
}

.contact-details strong {
  color: var(--ink);
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.contact-brief {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.contact-brief > span {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 740;
}

.contact-brief ul {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.contact-brief li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-brief li i {
  color: var(--teal);
  font-size: 1.15rem;
  line-height: 1.4;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

/* Product detail pages */
.detail-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 132px 0 72px;
  background:
    linear-gradient(112deg, rgba(17, 25, 28, 0.99), rgba(20, 40, 41, 0.95) 60%, rgba(8, 117, 108, 0.68)),
    #11191c;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

.detail-hero .container {
  position: relative;
  z-index: 1;
}

.detail-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: #f2b75f;
  font-size: 0.8rem;
  font-weight: 760;
  text-transform: uppercase;
}

.detail-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: 3.7rem;
  line-height: 1.04;
}

.detail-hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.06rem;
  line-height: 1.75;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.detail-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
}

.detail-secondary:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.detail-hero-screen,
.feature-shot {
  padding: 9px;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.detail-hero-screen img,
.feature-shot img {
  width: 100%;
  aspect-ratio: 1.44;
  display: block;
  object-fit: cover;
  border-radius: 3px;
}

.detail-summary {
  padding-top: 72px;
}

.proof-stat {
  height: 100%;
  min-height: 178px;
  padding: 25px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.proof-stat strong,
.proof-stat span {
  display: block;
}

.proof-stat strong {
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 1.1;
}

.proof-stat span {
  margin-top: 9px;
  color: var(--teal-dark);
  font-weight: 740;
}

.proof-stat p {
  margin: 9px 0 0;
  font-size: 0.92rem;
}

.pitch-panel {
  height: 100%;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.pitch-panel h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.pitch-panel ul,
.benefit-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.pitch-panel li,
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pitch-panel li i,
.benefit-list i {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 1.05rem;
  line-height: 1.45;
}

.feature-showcase {
  padding: 60px 0;
  border-top: 1px solid var(--line);
}

.feature-showcase:first-child {
  padding-top: 0;
  border-top: 0;
}

.feature-showcase h3 {
  margin-bottom: 14px;
  font-size: 1.85rem;
}

.feature-showcase p {
  color: var(--ink-soft);
}

.feature-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.feature-shot {
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}

.benefit-card {
  height: 100%;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.benefit-card > i {
  color: var(--teal);
  font-size: 1.9rem;
}

.benefit-card h3 {
  margin: 16px 0 9px;
  font-size: 1.14rem;
}

.benefit-card p {
  margin: 0;
  font-size: 0.92rem;
}

.detail-cta {
  padding: 42px;
  color: rgba(255, 255, 255, 0.72);
  background: #162326;
  border-left: 5px solid var(--teal);
  border-radius: 6px;
}

.detail-cta h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 2rem;
}

.detail-cta p {
  margin: 0;
}

/* Footer */
.footer {
  padding: 0 0 28px;
  color: rgba(255, 255, 255, 0.66);
  background: #0c1214;
  font-size: 0.88rem;
}

.footer-top {
  padding-top: 64px;
  padding-bottom: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.55fr) minmax(160px, 1fr) minmax(130px, 0.72fr) minmax(210px, 1fr);
  gap: 48px;
}

.footer-about img,
.footer .footer-about img {
  width: 166px;
  height: auto;
  margin-bottom: 18px;
}

.footer-about p {
  max-width: 420px;
  margin: 0;
  line-height: 1.7;
}

.footer h4 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.92rem;
}

.footer-links ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  display: block;
  padding: 0;
}

.footer-links li i {
  display: none;
}

.footer a {
  color: rgba(255, 255, 255, 0.68);
}

.footer a:hover {
  color: #f2bd6f;
}

.footer-contact p {
  margin: 0 0 7px;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright p {
  margin: 0;
}

.scroll-top {
  position: fixed;
  right: 16px;
  bottom: -18px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  visibility: hidden;
  color: #11191c;
  background: var(--amber);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 180ms ease, bottom 180ms ease, background-color 180ms ease;
}

.scroll-top i {
  color: #11191c;
  font-size: 1.55rem;
  line-height: 0;
}

.scroll-top:hover {
  color: #11191c;
  background: #f0ad4f;
}

.scroll-top.active {
  bottom: 16px;
  visibility: visible;
  opacity: 1;
}

/* Motion and interaction system */
.reading-progress {
  --reading-progress: 0;
  position: fixed;
  inset: 0 0 auto;
  z-index: 10002;
  height: 2px;
  pointer-events: none;
  background: var(--amber);
  box-shadow: 0 0 12px rgba(229, 154, 54, 0.5);
  opacity: 0;
  transform: scaleX(var(--reading-progress));
  transform-origin: left center;
  transition: opacity 180ms ease;
}

.reading-progress.is-active {
  opacity: 1;
}

.eyebrow {
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  transform-origin: left center;
}

.motion-ready .hero-visual {
  opacity: 0.62;
  transition: opacity 1400ms ease;
}

.motion-ready.page-ready .hero-visual {
  opacity: 1;
}

.motion-ready .header .logo,
.motion-ready .header .navmenu li,
.motion-ready .header .btn-getstarted,
.motion-ready .hero-copy > *,
.motion-ready .hero-value-bar,
.motion-ready .detail-hero .row > div {
  opacity: 0;
  translate: 0 20px;
  transition:
    opacity 720ms ease,
    translate 860ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .header .logo,
.motion-ready .header .navmenu li,
.motion-ready .header .btn-getstarted {
  translate: 0 -10px;
}

.motion-ready.page-ready .header .logo,
.motion-ready.page-ready .header .navmenu li,
.motion-ready.page-ready .header .btn-getstarted,
.motion-ready.page-ready .hero-copy > *,
.motion-ready.page-ready .hero-value-bar,
.motion-ready.page-ready .detail-hero .row > div {
  opacity: 1;
  translate: 0 0;
}

.motion-ready .header .logo {
  transition-delay: 80ms;
}

.motion-ready .header .navmenu li:nth-child(1) { transition-delay: 140ms; }
.motion-ready .header .navmenu li:nth-child(2) { transition-delay: 180ms; }
.motion-ready .header .navmenu li:nth-child(3) { transition-delay: 220ms; }
.motion-ready .header .navmenu li:nth-child(4) { transition-delay: 260ms; }
.motion-ready .header .navmenu li:nth-child(5) { transition-delay: 300ms; }
.motion-ready .header .navmenu li:nth-child(6) { transition-delay: 340ms; }
.motion-ready .header .btn-getstarted { transition-delay: 380ms; }

.motion-ready .hero-copy > .eyebrow,
.motion-ready .detail-hero .row > div:first-child {
  transition-delay: 200ms;
}

.motion-ready .hero-copy > h1 { transition-delay: 300ms; }
.motion-ready .hero-copy > h2 { transition-delay: 410ms; }
.motion-ready .hero-copy > p { transition-delay: 520ms; }
.motion-ready .hero-copy > .hero-actions { transition-delay: 630ms; }
.motion-ready .hero-value-bar { transition-delay: 790ms; }
.motion-ready .detail-hero .row > div:last-child { transition-delay: 340ms; }

.motion-ready .motion-reveal {
  opacity: 0;
  translate: 0 28px;
  transition:
    opacity 700ms ease var(--reveal-delay, 0ms),
    translate 820ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    scale 820ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.motion-ready .motion-reveal--left {
  translate: -32px 0;
}

.motion-ready .motion-reveal--right {
  translate: 32px 0;
}

.motion-ready .motion-reveal--media {
  translate: 0 24px;
  scale: 0.985;
}

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}

.motion-ready .motion-reveal--timeline {
  opacity: 1;
  translate: 0 0;
}

.motion-ready .motion-reveal--timeline::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1) 120ms;
}

.motion-ready .motion-reveal--timeline.is-visible::before {
  transform: scaleX(1);
}

.feature-shot {
  position: relative;
  overflow: hidden;
}

.motion-ready .feature-shot.motion-reveal--media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #162326;
  border-left: 3px solid var(--amber);
  transform: scaleX(1);
  transform-origin: right center;
  transition: transform 1000ms cubic-bezier(0.77, 0, 0.18, 1) calc(var(--reveal-delay, 0ms) + 120ms);
}

.motion-ready .feature-shot.motion-reveal--media.is-visible::after {
  transform: scaleX(0);
}

.product-proof-grid article,
.proof-stat,
.pitch-panel,
.benefit-card,
.contact-brief,
.engagement-band,
.detail-cta,
.feature-shot,
.detail-hero-screen,
.capability-icon,
.contact-details > a > i {
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 300ms ease,
    background-color 300ms ease,
    box-shadow 420ms ease;
}

.feature-shot img,
.detail-hero-screen img {
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.deliverables span {
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.page-ready .detail-hero-screen {
  animation: detail-screen-float 8s ease-in-out 1200ms infinite;
}

.products-proof::before,
.detail-hero::after {
  animation: technical-grid-drift 28s linear infinite;
}

.scroll-top {
  transform: translateY(8px) scale(0.92);
  transition: opacity 180ms ease, bottom 180ms ease, background-color 180ms ease, transform 220ms ease;
}

.scroll-top.active {
  transform: translateY(0) scale(1);
}

@media (min-width: 1200px) {
  .navmenu a {
    position: relative;
  }

  .navmenu a::after {
    content: "";
    position: absolute;
    right: 11px;
    bottom: 6px;
    left: 11px;
    height: 2px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 240ms ease;
  }

  .navmenu li:hover > a::after,
  .navmenu a.active::after {
    transform: scaleX(1);
  }
}

@media (hover: hover) and (pointer: fine) {
  .header .logo:hover {
    transform: scale(1.025);
  }

  .product-proof-grid article:hover,
  .proof-stat:hover,
  .pitch-panel:hover,
  .benefit-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 58px rgba(11, 25, 28, 0.15);
  }

  .product-proof-grid article:hover {
    border-color: rgba(112, 209, 198, 0.48);
    background: rgba(255, 255, 255, 0.085);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.22);
  }

  .outcome-grid article {
    transition: transform 320ms ease, background-color 320ms ease;
  }

  .outcome-grid article:hover {
    transform: translateX(6px);
  }

  .capability-row:hover .capability-icon {
    transform: translateY(-4px) rotate(-3deg);
    box-shadow: 0 14px 28px rgba(8, 117, 108, 0.22);
  }

  .deliverables span:hover {
    color: var(--teal-dark);
    background: #f3faf7;
    border-color: #9fc9bd;
    transform: translateY(-2px);
  }

  .feature-shot:hover,
  .detail-hero-screen:hover {
    transform: translateY(-5px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
  }

  .feature-shot:hover img,
  .detail-hero-screen:hover img {
    transform: scale(1.012);
    filter: saturate(1.04) contrast(1.01);
  }

  .contact-details > a:hover > i {
    transform: translateX(4px);
  }

  .scroll-top:hover {
    transform: translateY(-3px) scale(1.04);
  }
}

@keyframes hero-image-tone {
  0%, 100% { filter: saturate(0.94) contrast(1.02) brightness(0.92); }
  50% { filter: saturate(1.05) contrast(1.04) brightness(1); }
}

@keyframes operations-image-tone {
  0%, 100% { filter: saturate(0.92) brightness(0.88); }
  50% { filter: saturate(1.04) brightness(0.98); }
}

@keyframes technical-grid-drift {
  from { background-position: 0 0; }
  to { background-position: 64px 64px; }
}

@keyframes detail-screen-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}

/* Tablet navigation */
@media (max-width: 1199px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 12px 0 0;
  }

  .navmenu {
    order: 3;
  }

  .mobile-nav-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 0;
    border-radius: 4px;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 66px 16px auto;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    margin: 0;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.25);
    list-style: none;
  }

  .navmenu a {
    display: block;
    padding: 12px 13px;
    color: var(--ink);
    border-radius: 3px;
    font-weight: 680;
  }

  .navmenu a:hover,
  .navmenu a.active {
    color: var(--teal-dark);
    background: var(--teal-soft);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(8, 13, 15, 0.88);
  }

  .mobile-nav-active .navmenu ul {
    display: block;
    position: absolute;
    inset: 78px 18px auto;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 16px;
    right: 18px;
    z-index: 9999;
  }

  .hero-copy {
    width: min(680px, 65%);
  }

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

  .hero-value-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

  .hero-value-bar > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

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

  .capability-jump a:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .capability-jump a:nth-child(5) {
    border-top: 1px solid var(--line);
  }

  .capability-row {
    gap: 48px;
  }
}

@media (max-width: 991px) {
  .section {
    padding: 78px 0;
  }

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

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    width: min(650px, 76%);
  }

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

  .hero h2 {
    font-size: 1.75rem;
  }

  .operations-visual {
    min-height: 570px;
  }

  .operations-visual-copy {
    width: min(590px, 62%);
    padding: 82px 0;
  }

  .operations-visual h2 {
    font-size: 2.55rem;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .capability-heading {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 18px;
    align-items: center;
  }

  .capability-number {
    grid-column: 1 / -1;
    margin-bottom: 18px;
  }

  .capability-icon {
    grid-row: 2 / span 2;
    margin: 0;
  }

  .capability-type {
    margin: 0;
  }

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

  .product-proof-grid article {
    min-height: 0;
  }

  .delivery-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 30px;
  }

  .delivery-steps::before {
    display: none;
  }

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

  .engagement-band .btn-primary-action {
    justify-self: start;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .header {
    min-height: 68px;
    padding: 10px 0;
  }

  .header .logo img {
    width: 146px;
  }

  .header .btn-getstarted {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    padding-bottom: 36px;
  }

  .section-title h2,
  .section-intro-grid h2 {
    font-size: 2rem;
  }

  .section-title p,
  .section-lead p {
    font-size: 1rem;
  }

  .hero {
    min-height: 740px;
    padding: 104px 0 24px;
  }

  .hero-visual {
    object-position: 63% center;
    transform: translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0) scale(1.1);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 18, 20, 0.99) 0%, rgba(12, 18, 20, 0.9) 68%, rgba(12, 18, 20, 0.64) 100%),
      linear-gradient(0deg, rgba(12, 18, 20, 0.98) 0%, rgba(12, 18, 20, 0.26) 56%);
  }

  .hero-copy {
    width: 100%;
    max-width: 560px;
  }

  .hero h1 {
    font-size: 2.65rem;
    line-height: 1.02;
  }

  .hero h2 {
    margin-top: 17px;
    font-size: 1.45rem;
  }

  .hero-copy > p {
    margin-top: 17px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

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

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

  .hero-value-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 34px;
    padding: 12px 0;
  }

  .hero-value-bar > div {
    min-height: 58px;
    align-items: center;
    padding: 8px 10px;
  }

  .hero-value-bar > div:first-child,
  .hero-value-bar > div:nth-child(3) {
    padding-left: 0;
  }

  .hero-value-bar > div:nth-child(3),
  .hero-value-bar > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .hero-value-bar span {
    font-size: 0;
  }

  .hero-value-bar strong {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .operations-visual {
    min-height: 610px;
  }

  .operations-visual-image {
    object-position: 62% center;
    transform: translate3d(0, var(--operations-shift-y, 0), 0) scale(1.12);
  }

  .operations-visual-shade {
    background:
      linear-gradient(90deg, rgba(12, 18, 20, 0.98) 0%, rgba(12, 18, 20, 0.91) 70%, rgba(12, 18, 20, 0.58) 100%),
      linear-gradient(0deg, rgba(12, 18, 20, 0.9) 0%, rgba(12, 18, 20, 0.22) 62%);
  }

  .operations-visual-copy {
    width: 100%;
    max-width: 540px;
    padding: 72px 0;
  }

  .operations-visual h2 {
    font-size: 2.05rem;
  }

  .operations-visual-copy > p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .operations-signals {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 46px;
  }

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

  .capability-jump a {
    min-height: 66px;
    padding: 10px;
    font-size: 0.78rem;
  }

  .capability-jump a:nth-child(3),
  .capability-jump a:nth-child(5) {
    border-left: 0;
  }

  .capability-jump a:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .capability-jump a:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .capability-row {
    padding: 48px 0;
  }

  .capability-heading h3 {
    font-size: 1.55rem;
  }

  .capability-summary {
    font-size: 1rem;
  }

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

  .case-grid > div,
  .case-grid > div:first-child {
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .case-grid > div:first-child {
    border-top: 0;
  }

  .case-grid strong {
    min-height: 0;
  }

  .product-proof-grid {
    margin-top: 44px;
  }

  .product-proof-grid article {
    padding: 24px;
  }

  .product-proof-top {
    margin-bottom: 26px;
  }

  .delivery-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .delivery-steps li {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 16px;
  }

  .delivery-steps strong {
    margin-top: 0;
  }

  .delivery-steps p {
    margin-top: 5px;
  }

  .engagement-band,
  .detail-cta {
    margin-top: 52px;
    padding: 28px 23px;
  }

  .engagement-band .btn-primary-action {
    width: 100%;
  }

  .contact-brief {
    padding: 25px 22px;
  }

  .contact-buttons a {
    width: 100%;
  }

  .detail-hero {
    min-height: auto;
    padding: 110px 0 58px;
  }

  .detail-hero h1 {
    font-size: 2.45rem;
  }

  .detail-hero p {
    font-size: 1rem;
  }

  .detail-actions a {
    width: 100%;
  }

  .detail-hero-screen {
    margin-top: 8px;
  }

  .detail-summary {
    padding-top: 58px;
  }

  .feature-showcase {
    padding: 44px 0;
  }

  .feature-showcase h3 {
    font-size: 1.55rem;
  }

  .detail-cta {
    margin-top: 0;
  }

  .detail-cta .detail-primary {
    width: 100%;
    margin-top: 8px;
  }

  .footer-top {
    padding-top: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 430px) {
  .hero {
    min-height: 760px;
  }

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

  .hero h2 {
    font-size: 1.3rem;
  }

  .operations-visual {
    min-height: 570px;
  }

  .operations-visual h2 {
    font-size: 1.82rem;
  }

  .hero-value-bar i {
    font-size: 1.05rem;
  }

  .hero-value-bar strong {
    font-size: 0.74rem;
  }

  .capability-jump a {
    flex-direction: column;
    gap: 4px;
  }

  .contact-details strong {
    font-size: 0.92rem;
  }
}

@media (max-width: 430px) and (max-height: 650px) {
  .hero {
    min-height: 520px;
    align-items: flex-start;
    padding: 86px 0 14px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 0.62rem;
  }

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

  .hero h2 {
    margin-top: 10px;
    font-size: 1.05rem;
    line-height: 1.25;
  }

  .hero-copy > p {
    margin-top: 10px;
    font-size: 0.84rem;
    line-height: 1.45;
  }

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

  .hero-actions .btn-primary-action {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 0.88rem;
  }

  .hero-actions .btn-quiet-action,
  .hero-value-bar {
    display: none;
  }

  .hero + .about {
    padding-top: 20px;
  }
}

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

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