:root {
  --navy: #123a6f;
  --navy-2: #1a4f87;
  --ink: #173153;
  --charcoal: #26476d;
  --muted: #667085;
  --line: #dfe5ea;
  --soft-line: #edf1f4;
  --paper: #ffffff;
  --off-white: #f8fafb;
  --mist: #eef5f6;
  --teal: #0d766e;
  --teal-soft: #dff3f0;
  --green: #195f4f;
  --orange: #f97316;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--off-white);
}

body.rtl {
  text-align: right;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 96px;
  padding: 18px max(28px, calc((100vw - 1360px) / 2));
  border-bottom: 1px solid rgba(223, 229, 234, 0.88);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 300px;
  color: var(--navy);
}

.brand img {
  width: 255px;
  height: 74px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: #5f6675;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  transition: color 160ms ease;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(18, 58, 111, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(18, 58, 111, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #0b1738);
  box-shadow: 0 12px 24px rgba(5, 11, 31, 0.18);
}

.button.primary:hover {
  box-shadow: 0 16px 34px rgba(5, 11, 31, 0.24);
}

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

.button.small {
  min-height: 44px;
  padding-inline: 20px;
}

.section-shell {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1.22fr);
  gap: 58px;
  align-items: start;
  min-height: calc(100vh - 96px);
  padding-top: 56px;
  padding-bottom: 64px;
}

.hero-copy {
  padding-top: 42px;
}

.hero-product {
  margin-top: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(44px, 4.4vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.pilot-note {
  width: min(650px, 100%);
  margin: -8px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(13, 118, 110, 0.16);
  border-radius: 12px;
  color: var(--charcoal);
  background: rgba(223, 243, 240, 0.55);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-process {
  display: block;
  min-height: auto;
  padding-top: 52px;
  padding-bottom: 76px;
}

.hero-process .hero-copy {
  display: grid;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto 34px;
  padding-top: 0;
  text-align: center;
}

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

.hero-process .hero-text {
  max-width: 760px;
}

.hero-process .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

.hero-night-experiment {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 86px max(28px, calc((100vw - 1360px) / 2)) 88px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 12, 27, 0.12) 0%, rgba(4, 12, 27, 0.22) 38%, rgba(6, 18, 38, 0.78) 66%, rgba(6, 18, 38, 0.94) 100%),
    linear-gradient(180deg, rgba(6, 18, 38, 0.08), rgba(6, 18, 38, 0.36) 62%, rgba(6, 18, 38, 0.78));
}

.hero-night-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("./assets/night-roadworks-hero.jpeg") 30% -120px / cover no-repeat;
  filter: contrast(1.12) saturate(1.08) brightness(1.04);
  transform: scale(1.055);
}

.hero-night-experiment::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(130, 216, 205, 0.16) 48%, transparent 49% 100%),
    linear-gradient(180deg, transparent 0 43%, rgba(130, 216, 205, 0.12) 44%, transparent 45% 100%),
    repeating-linear-gradient(90deg, rgba(130, 216, 205, 0.09) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(180deg, rgba(130, 216, 205, 0.06) 0 1px, transparent 1px 72px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 72%, transparent 100%);
}

.hero-night-experiment::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 18, 38, 0.34) 0%, rgba(6, 18, 38, 0.18) 28%, rgba(6, 18, 38, 0) 48%),
    radial-gradient(ellipse at 72% 15%, rgba(6, 18, 38, 0.68) 0%, rgba(6, 18, 38, 0.52) 8%, rgba(6, 18, 38, 0) 22%),
    linear-gradient(90deg, rgba(6, 18, 38, 0) 0%, rgba(6, 18, 38, 0.1) 48%, rgba(6, 18, 38, 0.48) 72%, rgba(6, 18, 38, 0.72) 100%),
    radial-gradient(circle at 33% 14%, rgba(249, 115, 22, 0.22), transparent 24%),
    radial-gradient(circle at 55% 34%, rgba(255, 255, 255, 0.08), transparent 25%),
    linear-gradient(180deg, rgba(248, 250, 251, 0) 34%, rgba(248, 250, 251, 0.3) 50%, rgba(248, 250, 251, 0.7) 66%, rgba(248, 250, 251, 0.94) 82%, var(--off-white) 100%);
}

.hero-night-experiment > * {
  position: relative;
  z-index: 3;
}

.hero-night-experiment > .hero-night-image {
  position: absolute;
  z-index: 0;
}

.hero-night-experiment .hero-copy {
  justify-items: start;
  width: min(620px, 44vw);
  max-width: 620px;
  margin: 0 0 42px auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: left;
}

.hero-night-experiment .eyebrow {
  color: #82d8cd;
}

.hero-night-experiment h1,
.hero-night-experiment .hero-text {
  color: #fff;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.34),
    0 10px 46px rgba(5, 11, 31, 0.42);
}

.hero-night-experiment h1 {
  max-width: 620px;
}

.hero-night-experiment .hero-text,
.hero-night-experiment .pilot-note {
  max-width: 600px;
}

.hero-night-experiment .pilot-note {
  width: 100%;
  margin: 0;
  padding: 15px 18px;
  text-align: left;
}

.hero-night-experiment .pilot-note {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-night-experiment .hero-flow {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 90px rgba(3, 10, 24, 0.34);
}

.hero-actions-after {
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 0;
}

.hero-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr) 46px minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(13, 118, 110, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff, #f8fbfb);
  box-shadow: var(--shadow);
}

.hero-step {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid #d4dce3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 41, 74, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.hero-step:hover {
  border-color: rgba(13, 118, 110, 0.26);
  box-shadow: 0 20px 46px rgba(16, 41, 74, 0.13);
  transform: translateY(-3px);
}

.step-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 108px;
  padding: 20px;
  border-bottom: 1px solid var(--soft-line);
  background: linear-gradient(180deg, #fbfcfd, #f3f7f8);
}

.step-number {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 950;
}

.step-head strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.1;
}

.step-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.step-media {
  position: relative;
  display: grid;
  place-items: center;
  height: 260px;
  margin: 18px;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: 14px;
  background: #fff;
}

.step-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(130, 216, 205, 0.16) 48%, transparent 54%);
  transform: translateX(-130%);
}

.hero-step:hover .step-media::before {
  opacity: 1;
  animation: media-scan 1100ms ease;
}

.plan-step-media img,
.report-step-media img {
  width: auto;
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
}

.capture-step-media {
  background: #dbe5e8;
}

.capture-step-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capture-step-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 88px;
  background: linear-gradient(180deg, transparent, rgba(5, 11, 31, 0.75));
}

.step-meta {
  display: grid;
  gap: 10px;
  margin: auto 20px 22px;
}

.step-meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.step-meta dt,
.step-meta dd {
  margin: 0;
}

.step-meta dd {
  color: var(--navy);
  text-align: right;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: auto 20px 22px;
}

.step-tags span,
.step-tags strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.step-tags span {
  color: #9a4a0c;
  background: #fff3e8;
}

.step-tags strong {
  color: var(--navy);
  border: 1px solid #cbd4dd;
  background: #fff;
}

.process-arrow {
  display: grid;
  place-items: center;
  align-self: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(13, 118, 110, 0.2);
  border-radius: 50%;
  color: var(--teal);
  background: #fff;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(16, 41, 74, 0.08);
}

.technology-section {
  padding-top: 20px;
}

.technology-panel {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(130, 216, 205, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 20%, rgba(33, 183, 255, 0.2), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(130, 216, 205, 0.15), transparent 36%),
    linear-gradient(135deg, #0b2340 0%, #12355d 52%, #0a203d 100%);
  box-shadow: 0 24px 70px rgba(16, 41, 74, 0.18);
}

.technology-context-visual {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  pointer-events: none;
  opacity: 1;
  z-index: 1;
}

.technology-context-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 35, 64, 0.05), rgba(11, 35, 64, 0.62) 0 45%, transparent 78%),
    repeating-linear-gradient(90deg, transparent 0 86px, rgba(130, 216, 205, 0.045) 87px 88px),
    repeating-linear-gradient(0deg, transparent 0 76px, rgba(130, 216, 205, 0.036) 77px 78px);
  opacity: 0.86;
}

.technology-context-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 73% 45%, transparent 0 34%, rgba(11, 35, 64, 0.32) 68%, rgba(10, 32, 61, 0.58) 100%),
    linear-gradient(180deg, rgba(11, 35, 64, 0.02), rgba(10, 32, 61, 0.18));
  opacity: 1;
}

.technology-context-visual svg {
  position: absolute;
  right: -78px;
  top: -18px;
  width: min(64vw, 860px);
  height: 118%;
  opacity: 0.7;
}

.digital-road path {
  fill: none;
  stroke: url("#techRoadGlow");
  stroke-width: 2.8;
  stroke-linecap: round;
}

.road-cross-lines path {
  fill: none;
  stroke: rgba(130, 216, 205, 0.16);
  stroke-width: 1.2;
  stroke-linecap: round;
}

.sensor-nodes circle {
  fill: rgba(54, 183, 255, 0.86);
  filter: drop-shadow(0 0 12px rgba(54, 183, 255, 0.82));
}

.sensor-posts path {
  fill: none;
  stroke: rgba(54, 183, 255, 0.3);
  stroke-width: 1.6;
  stroke-linecap: round;
}

.verification-boxes rect {
  fill: none;
  stroke: rgba(130, 216, 205, 0.46);
  stroke-width: 2;
  filter: drop-shadow(0 0 10px rgba(130, 216, 205, 0.38));
}

.technology-panel .section-heading .eyebrow {
  color: #82d8cd;
}

.technology-panel h2,
.technology-grid h3,
.technology-grid span,
.technology-note {
  color: #ffffff;
}

.technology-panel .section-intro,
.technology-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.technology-grid article {
  border-color: rgba(130, 216, 205, 0.14);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.technology-grid article::before {
  background: linear-gradient(180deg, rgba(130, 216, 205, 0.85), rgba(54, 183, 255, 0.25));
}

.technology-note {
  border-color: rgba(130, 216, 205, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.technology-panel .section-heading {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.technology-panel h2 {
  margin-bottom: 18px;
}

.technology-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.technology-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(18, 58, 111, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(16, 41, 74, 0.07);
}

.technology-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 30px;
  margin-bottom: 22px;
  border: 1px solid rgba(13, 118, 110, 0.18);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(13, 118, 110, 0.08);
  font-size: 13px;
  font-weight: 950;
}

.technology-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.technology-grid p,
.technology-note {
  margin: 0;
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.65;
}

.technology-note {
  position: relative;
  z-index: 2;
  max-width: 970px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(18, 58, 111, 0.12);
}

.technology-panel .technology-grid article {
  border-color: rgba(130, 216, 205, 0.14);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.technology-panel .technology-grid span {
  color: #82d8cd;
  border-color: rgba(130, 216, 205, 0.24);
  background: rgba(130, 216, 205, 0.1);
}

.technology-panel .technology-grid h3 {
  color: #ffffff;
}

.technology-panel .technology-grid p,
.technology-panel .technology-note {
  color: rgba(255, 255, 255, 0.76);
}

.technology-panel .technology-note {
  border-color: rgba(130, 216, 205, 0.14);
}

.field-image-card {
  position: relative;
  max-width: 660px;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background: var(--navy);
  box-shadow: var(--soft-shadow);
}

.field-image-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.field-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 10%, rgba(5, 11, 31, 0.72) 100%),
    linear-gradient(90deg, rgba(13, 118, 110, 0.3), transparent 55%);
}

.field-image-card figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.field-image-card span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
}

@keyframes media-scan {
  from {
    transform: translateX(-130%);
  }

  to {
    transform: translateX(130%);
  }
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.motion-ready .hero-step:nth-of-type(1) {
  --reveal-delay: 80ms;
}

.motion-ready .hero-step:nth-of-type(2) {
  --reveal-delay: 160ms;
}

.motion-ready .hero-step:nth-of-type(3) {
  --reveal-delay: 240ms;
}

.hero-product {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(13, 118, 110, 0.08), transparent 38%),
    linear-gradient(180deg, #ffffff, #f7fafb);
  box-shadow: var(--shadow);
}

.flow-label {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-label i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(13, 118, 110, 0.08));
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.mockup-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid #cfd7de;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 41, 74, 0.08);
}

.mockup-head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--soft-line);
  background: linear-gradient(180deg, #f9fbfc, #f3f7f8);
  font-size: 17px;
}

.mockup-head em {
  margin-left: auto;
  padding: 4px 10px;
  border: 1px solid #c9d1d8;
  border-radius: 999px;
  color: var(--navy);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.icon,
.mini-icon,
.card-icon,
.large-icon {
  position: relative;
  overflow: hidden;
}

.icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: var(--navy);
  background: linear-gradient(145deg, #eef5f6, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(16, 41, 74, 0.1);
}

.icon::before,
.mini-icon::before,
.card-icon::before,
.large-icon::before {
  position: relative;
  z-index: 1;
  color: currentColor;
  font-weight: 950;
}

.icon-plan::before,
.mini-report::before,
.icon-plan-review::before {
  content: "▤";
}

.icon-capture::before,
.mini-camera::before {
  content: "◉";
}

.icon-alert {
  color: var(--orange);
  background: linear-gradient(145deg, #fff3e9, #ffffff);
}

.icon-alert::before,
.icon-fragment::before {
  content: "△";
}

.plan-frame,
.video-frame,
.report-preview {
  margin: 22px 20px 16px;
}

.plan-frame {
  display: grid;
  place-items: center;
  height: 230px;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: 12px;
  background: #fff;
}

.plan-frame img {
  width: auto;
  max-width: 92%;
  height: 94%;
  object-fit: contain;
}

.video-frame {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-radius: 12px;
  background: #dbe5e8;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 76px;
  background: linear-gradient(180deg, transparent, rgba(5, 11, 31, 0.72));
}

.timestamp,
.site-tag {
  position: absolute;
  z-index: 1;
  bottom: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.timestamp {
  left: 14px;
}

.site-tag {
  right: 14px;
}

.report-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 16px;
  margin: 22px 20px 16px;
  padding: 16px;
  border: 1px solid var(--soft-line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 24% 20%, rgba(13, 118, 110, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff, #fbfcfd);
}

.report-document {
  display: grid;
  place-items: center;
  min-height: 390px;
  border: 1px solid #e6eaee;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(16, 41, 74, 0.02);
}

.report-image {
  width: auto;
  max-width: 100%;
  max-height: 372px;
  object-fit: contain;
  border: 1px solid #e6eaee;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.report-findings-panel {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 18px;
  border: 1px solid rgba(13, 118, 110, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(13, 118, 110, 0.07), rgba(255, 255, 255, 0.95)),
    #fff;
}

.panel-kicker {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-findings-panel h4 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.15;
}

.report-findings-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-findings-panel li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
}

.report-findings-panel li span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.report-findings-panel li:nth-child(3) span {
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 118, 110, 0.14);
}

.report-findings-panel dl {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 41, 74, 0.1);
}

.report-findings-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.report-findings-panel dt,
.report-findings-panel dd {
  margin: 0;
}

.report-findings-panel dd {
  color: var(--navy);
  text-align: right;
}

.meta-list {
  display: grid;
  gap: 10px;
  margin: auto 20px 20px;
}

.meta-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.meta-list dt {
  margin: 0;
  font-weight: 800;
}

.meta-list dd {
  margin: 0;
  color: var(--charcoal);
  font-weight: 900;
  text-align: right;
}

.report-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 20px 20px;
}

.report-card {
  grid-column: 1 / -1;
  min-height: 410px;
}

.report-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 20px 20px;
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
}

.report-status-bar span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
  text-transform: uppercase;
}

.report-status-bar strong {
  font-size: 15px;
}

.report-tags span,
.report-tags b {
  padding: 6px 10px;
  border: 1px solid #aeb8c2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.report-tags .orange {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
}

.report-tags b {
  width: 100%;
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
  text-align: center;
}

.credibility {
  padding: 52px 24px 60px;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(238, 245, 246, 0.7), rgba(248, 250, 251, 0.95)),
    var(--mist);
  text-align: center;
}

.credibility p {
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.credibility-items,
.team-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 38px 74px;
}

.team-items {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  gap: 22px;
  align-items: start;
}

.credibility-items span,
.team-items span {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 190px;
  color: #344054;
  font-weight: 800;
}

.credibility-items b,
.team-items b {
  font: inherit;
  font-weight: 800;
}

.credibility-items i,
.team-items i,
.card-icon,
.large-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(13, 118, 110, 0.16), rgba(255, 255, 255, 0.92)),
    #f6fafb;
  box-shadow:
    inset 0 0 0 1px rgba(16, 41, 74, 0.1),
    0 12px 28px rgba(16, 41, 74, 0.08);
  font-style: normal;
  font-weight: 900;
}

.brand-svg-icon {
  width: 66px;
  height: 66px;
  overflow: visible;
  filter: drop-shadow(0 14px 24px rgba(16, 41, 74, 0.12));
}

.brand-svg-icon .svg-bg {
  stroke: rgba(16, 41, 74, 0.12);
  stroke-width: 1;
}

.brand-svg-icon .svg-bg {
  fill: #f7fbfb;
}

.brand-svg-icon .svg-road-main,
.brand-svg-icon .svg-doc,
.brand-svg-icon .svg-camera {
  fill: none;
  stroke: var(--navy-2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.brand-svg-icon .road-side {
  stroke: var(--teal);
}

.brand-svg-icon .svg-road-mark,
.brand-svg-icon .svg-doc-line,
.brand-svg-icon .svg-doc-fold,
.brand-svg-icon .svg-chart-axis,
.brand-svg-icon .svg-chart {
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.brand-svg-icon .svg-lens {
  fill: rgba(13, 118, 110, 0.1);
  stroke: var(--teal);
  stroke-width: 3;
}

.brand-svg-icon .svg-lens-core {
  fill: var(--navy-2);
}

.brand-svg-icon .svg-chart-dot {
  fill: var(--orange);
  stroke: #fff;
  stroke-width: 2;
}

.svg-card-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.svg-card-icon::after {
  display: none;
}

.svg-card-icon .svg-bg {
  fill: #f7fbfb;
  stroke: rgba(16, 41, 74, 0.12);
  stroke-width: 1;
}

.svg-card-icon .svg-checklist,
.svg-card-icon .svg-check,
.svg-card-icon .svg-list-line,
.svg-card-icon .svg-evidence-card,
.svg-card-icon .svg-evidence-line,
.svg-card-icon .svg-eye,
.svg-card-icon .svg-cycle,
.svg-card-icon .svg-arrow,
.svg-card-icon .svg-axis,
.svg-card-icon .svg-trend,
.svg-card-icon .svg-review-doc,
.svg-card-icon .svg-review-check,
.svg-card-icon .svg-person-body,
.svg-card-icon .svg-workflow-node,
.svg-card-icon .svg-helmet,
.svg-card-icon .svg-helmet-brim,
.svg-card-icon .svg-people-line,
.svg-card-icon .svg-cone,
.svg-card-icon .svg-cone-stripe,
.svg-card-icon .svg-map,
.svg-card-icon .svg-map-line,
.svg-card-icon .svg-node-line,
.svg-card-icon .svg-alert-triangle,
.svg-card-icon .svg-alert-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.svg-card-icon .svg-checklist,
.svg-card-icon .svg-evidence-card,
.svg-card-icon .svg-eye,
.svg-card-icon .svg-cycle,
.svg-card-icon .svg-axis,
.svg-card-icon .svg-review-doc,
.svg-card-icon .svg-person-body,
.svg-card-icon .svg-helmet,
.svg-card-icon .svg-people-line,
.svg-card-icon .svg-cone,
.svg-card-icon .svg-map,
.svg-card-icon .svg-node-line,
.svg-card-icon .svg-alert-triangle {
  stroke: var(--navy-2);
}

.svg-card-icon .svg-check,
.svg-card-icon .svg-list-line,
.svg-card-icon .svg-evidence-line,
.svg-card-icon .svg-arrow,
.svg-card-icon .svg-trend,
.svg-card-icon .svg-review-check,
.svg-card-icon .svg-workflow-node,
.svg-card-icon .svg-helmet-brim,
.svg-card-icon .svg-cone-stripe,
.svg-card-icon .svg-map-line,
.svg-card-icon .svg-alert-line {
  stroke: var(--teal);
}

.svg-card-icon .svg-evidence-card.back {
  opacity: 0.42;
}

.svg-card-icon .svg-evidence-card.mid {
  opacity: 0.72;
}

.svg-card-icon .svg-evidence-dot {
  fill: var(--orange);
}

.svg-card-icon .svg-alert-dot-small {
  fill: var(--orange);
}

.svg-card-icon .svg-eye-dot,
.svg-card-icon .svg-person,
.svg-card-icon .svg-node {
  fill: var(--navy-2);
}

.svg-card-icon .svg-person.side {
  fill: var(--teal);
  opacity: 0.88;
}

.svg-card-icon .svg-node {
  stroke: #fff;
  stroke-width: 2;
}

.credibility-items i::after,
.team-items i::after,
.card-icon::after,
.large-icon::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(13, 118, 110, 0.18);
}

.mini-icon::before,
.card-icon::before,
.large-icon::before {
  font-size: 22px;
}

.mini-flow::before,
.icon-consistency::before,
.mini-workflow::before {
  content: "⟲";
}

.mini-visibility::before,
.icon-clarity::before,
.mini-vision::before {
  content: "◉";
}

.icon-barrier::before,
.icon-cone::before {
  content: "◭";
}

.icon-mismatch::before,
.icon-review::before {
  content: "☑";
}

.icon-chart::before {
  content: "▥";
}

.icon-people::before {
  content: "◌";
}

.icon-network::before {
  content: "↗";
}

.mini-infra::before {
  content: "▦";
}

.mini-code::before {
  content: "</>";
  font-size: 14px;
}

.mini-ops::before {
  content: "⚙";
}

.mini-discovery::before {
  content: "□";
}

.brand-svg-icon .svg-bridge,
.brand-svg-icon .svg-code,
.brand-svg-icon .svg-screen,
.brand-svg-icon .svg-code-line,
.brand-svg-icon .svg-screen-stand,
.brand-svg-icon .svg-gear,
.brand-svg-icon .svg-pin-outline {
  fill: none;
  stroke: var(--navy-2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.brand-svg-icon .svg-code-line,
.brand-svg-icon .svg-screen-stand {
  stroke: var(--teal);
}

.brand-svg-icon .svg-gear-core {
  fill: none;
  stroke: var(--teal);
  stroke-width: 3;
}

.brand-svg-icon .svg-pin-dot {
  fill: var(--orange);
}

.centered {
  text-align: center;
}

.centered h2,
.section-heading h2 {
  width: min(860px, 100%);
  margin: 0 auto 18px;
}

.section-intro {
  width: min(820px, 100%);
  margin: 0 auto 58px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.info-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(13, 118, 110, 0.04), transparent 36%),
    #fff;
  box-shadow: var(--soft-shadow);
  text-align: left;
}

.info-card h3 {
  margin: 24px 0 14px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.card-icon.teal {
  color: var(--teal);
  background: var(--teal-soft);
}

.workflow-section {
  position: relative;
  overflow: hidden;
  width: min(1460px, calc(100% - 48px));
  padding: 92px 52px 96px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(18, 58, 111, 0.72), rgba(18, 58, 111, 0.62)),
    linear-gradient(90deg, rgba(18, 58, 111, 0.38), rgba(13, 118, 110, 0.1)),
    url("assets/how-workflow-road-bg.jpeg") center 58% / cover no-repeat;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.14);
}

.workflow-section .eyebrow {
  color: #8ee7db;
}

.workflow-section h2,
.workflow-section .workflow h3 {
  color: #fff;
}

.workflow-section .workflow p {
  color: rgba(255, 255, 255, 0.82);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 62px;
  overflow: hidden;
}

.workflow article {
  position: relative;
  padding: 86px 18px 0;
  text-align: center;
}

.workflow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -14%;
  width: 28%;
  height: 2px;
  background: linear-gradient(90deg, rgba(142, 231, 219, 0.9), rgba(255, 255, 255, 0.38));
}

.workflow span {
  position: absolute;
  top: 10px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  box-shadow:
    0 0 0 10px rgba(142, 231, 219, 0.17),
    0 16px 38px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: 900;
}

.workflow h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.workflow p {
  color: var(--muted);
  line-height: 1.5;
}

.product-output {
  padding-top: 86px;
}

.audience-section {
  padding-top: 76px;
  padding-bottom: 86px;
}

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

.audience-grid article {
  position: relative;
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(13, 118, 110, 0.05), transparent 40%),
    #fff;
  box-shadow: var(--soft-shadow);
  text-align: left;
}

.audience-grid .audience-icon {
  display: inline-grid;
  place-items: center;
  overflow: visible;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.audience-grid .audience-icon svg {
  display: block;
  width: 44px !important;
  height: 44px !important;
  max-width: 44px;
  max-height: 44px;
}

.audience-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}

.audience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.assurance-note {
  width: min(880px, 100%);
  margin: 34px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(18, 58, 111, 0.14);
  border-radius: 14px;
  color: var(--charcoal);
  background: #f7fbfb;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}

.output-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  margin-top: 52px;
  padding: 22px;
  border: 1px solid #cfd9df;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #f4f8f9);
  box-shadow: var(--shadow);
}

.board-top {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  grid-column: 1 / -1;
}

.board-top div,
.output-side div {
  padding: 18px;
  border: 1px solid var(--soft-line);
  border-radius: 12px;
  background: #fff;
}

.board-top span,
.output-side span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.board-top strong,
.output-side strong {
  color: var(--navy);
  font-size: 16px;
}

.board-top strong {
  overflow-wrap: anywhere;
}

.board-media {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
}

.board-media img {
  width: 100%;
  height: 540px;
  object-fit: contain;
  border: 1px solid var(--soft-line);
  border-radius: 14px;
  background: #fff;
}

.board-media img:last-child {
  padding: 12px;
}

.output-side {
  display: grid;
  gap: 14px;
}

.output-side div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.infrastructure-band {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: grid;
  place-items: center;
  margin: 32px 0 28px;
  color: #fff;
}

.infrastructure-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 74%;
}

.infrastructure-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 31, 0.74), rgba(5, 11, 31, 0.48)),
    linear-gradient(180deg, rgba(13, 118, 110, 0.24), transparent);
}

.infrastructure-band div {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 48px));
}

.infrastructure-band h2 {
  color: #fff;
}

.infrastructure-band p {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  line-height: 1.55;
}

.why-section {
  padding-top: 88px;
}

.why-section .card-grid {
  margin-top: 42px;
}

.why-visual {
  position: relative;
  overflow: hidden;
  width: min(1120px, 100%);
  margin: 46px auto 0;
  border: 1px solid rgba(18, 58, 111, 0.14);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.why-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 24, 49, 0.04), rgba(5, 24, 49, 0.12)),
    radial-gradient(circle at 54% 55%, rgba(17, 184, 173, 0.12), transparent 38%);
}

.why-visual img {
  width: 100%;
  aspect-ratio: 2.25 / 1;
  object-fit: cover;
  object-position: center 55%;
}

.quote-card {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  text-align: left;
}

.rotating-quote {
  position: relative;
}

.quote-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-right: 12px;
  border-radius: 10px;
  color: var(--navy);
  background: #e8edf1;
  font-size: 28px;
  font-weight: 900;
  vertical-align: middle;
}

.quote-card figcaption {
  display: inline-flex;
  padding: 5px 12px;
  border: 1px solid #9da8b2;
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.quote-card blockquote {
  margin: 28px 0 20px;
  color: var(--ink);
  font-size: 21px;
  font-style: italic;
  line-height: 1.55;
}

.quote-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.quote-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.quote-nav {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(18, 58, 111, 0.22);
  border-radius: 50%;
  color: var(--navy);
  background: #f7fbfb;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.quote-nav:hover {
  transform: translateY(-1px);
  border-color: rgba(13, 118, 110, 0.38);
  background: #eaf5f4;
}

.quote-nav:focus-visible {
  outline: 3px solid rgba(13, 118, 110, 0.28);
  outline-offset: 3px;
}

.rotating-quote blockquote,
.rotating-quote figcaption,
.rotating-quote cite {
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.rotating-quote.is-changing blockquote,
.rotating-quote.is-changing figcaption,
.rotating-quote.is-changing cite {
  opacity: 0;
  transform: translateY(6px);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(920px, 100%);
  margin: 22px auto 0;
}

.quote-card.compact {
  width: 100%;
  margin: 0;
  padding: 28px;
}

.quote-card.compact blockquote {
  font-size: 18px;
  line-height: 1.5;
}

.field-professionals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.field-copy p {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.6;
}

.field-copy > strong {
  display: block;
  margin: 22px 0 28px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.5;
}

.field-professionals > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  color: var(--teal);
  font-size: 13px;
}

.team-section {
  padding-top: 74px;
}

.team-items {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  gap: 22px;
  align-items: start;
  margin-top: 48px;
}

.team-items span {
  max-width: none;
}

.brand-svg-icon .svg-eye-ring {
  fill: none;
  stroke: var(--teal);
  stroke-width: 3;
}

.brand-svg-icon .svg-eye {
  fill: none;
  stroke: var(--navy-2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.brand-svg-icon .svg-eye-spark {
  fill: var(--orange);
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 100px 24px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(13, 118, 110, 0.08), transparent 42%),
    #fff;
  text-align: center;
}

.final-cta h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.final-cta p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 20px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 58px 24px 70px;
  border-top: 1px solid var(--line);
  background: #f3f7f8;
  text-align: center;
}

.footer-brand {
  min-width: 0;
  justify-content: center;
}

.footer-brand img {
  width: 275px;
  height: 82px;
  object-position: center;
}

body.rtl .brand img {
  object-position: right center;
}

body.rtl .hero-process .hero-copy,
body.rtl .centered,
body.rtl .section-heading,
body.rtl .credibility,
body.rtl .team-section,
body.rtl .final-cta,
body.rtl .site-footer {
  text-align: center;
}

body.rtl .info-card,
body.rtl .field-copy,
body.rtl .quote-card {
  text-align: right;
}

body.rtl .step-meta dd,
body.rtl .meta-list dd {
  text-align: left;
}

body.rtl .timestamp {
  right: 14px;
  left: auto;
}

body.rtl .site-tag {
  right: auto;
  left: 14px;
}

body.rtl .check-list li {
  padding-right: 34px;
  padding-left: 0;
}

body.rtl .check-list li::before {
  right: 0;
  left: auto;
}

.site-footer h2 {
  margin: 0;
  font-size: 22px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.site-footer a {
  color: var(--orange);
  font-weight: 900;
}

.site-footer .footer-contact {
  margin: 10px 0 4px;
  color: #fff;
}

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

.footer-links a {
  color: var(--navy);
}

.site-footer small {
  margin-top: 24px;
  color: #98a2b3;
  font-weight: 800;
}

.legal-page {
  background: #f6f9fb;
}

.legal-header {
  position: static;
}

.legal-shell {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-shell h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(42px, 5vw, 64px);
}

.legal-shell h2 {
  margin: 44px 0 14px;
  font-size: 24px;
  line-height: 1.25;
}

.legal-shell p {
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.75;
}

.legal-shell a {
  color: var(--orange);
  font-weight: 900;
}

.legal-updated {
  margin-bottom: 42px;
  color: var(--muted);
  font-weight: 800;
}

.legal-shell section {
  padding-bottom: 2px;
}

.legal-shell hr {
  margin: 54px 0 36px;
  border: 0;
  border-top: 1px solid var(--line);
}

@media (max-width: 1450px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav-links {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 22px;
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .hero-night-experiment {
    background:
      linear-gradient(90deg, rgba(4, 12, 27, 0.2), rgba(6, 18, 38, 0.78)),
      linear-gradient(180deg, rgba(6, 18, 38, 0.1), rgba(6, 18, 38, 0.74));
  }

  .hero-night-image {
    background-position: 28% top;
  }

  .hero-night-experiment .hero-copy {
    width: min(680px, 100%);
    margin: 0 auto 36px;
  }

  .process-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .mockup-grid,
  .card-grid.three,
  .field-professionals,
  .audience-grid,
  .technology-grid,
  .output-board {
    grid-template-columns: 1fr;
  }

  .card-grid.five {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-items {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

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

@media (max-width: 820px) {
  .site-header {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px 14px;
    padding: 14px 18px;
    overflow: visible;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 176px;
    height: 58px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: none;
    font-size: 15px;
    transition: max-height 220ms ease, padding 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  }

  .site-header.menu-open .nav-links {
    max-height: 440px;
    padding: 8px;
    border-color: rgba(18, 58, 111, 0.12);
    box-shadow: 0 18px 40px rgba(18, 58, 111, 0.12);
  }

  .nav-links a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background: rgba(25, 135, 125, 0.08);
  }

  .site-header .button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .section-shell {
    width: min(100% - 32px, 1360px);
    padding: 74px 0;
  }

  .technology-panel {
    padding: 28px;
    border-radius: 20px;
  }

  .technology-context-visual {
    top: 18px;
    right: 10px;
    width: 310px;
    height: 220px;
    opacity: 0.38;
  }

  .tech-plan-ghost {
    width: 132px;
    height: 168px;
  }

  .tech-video-ghost {
    width: 170px;
    height: 116px;
  }

  .tech-connector-line {
    top: 90px;
    left: 118px;
    width: 104px;
    height: 42px;
  }

  .technology-grid article {
    min-height: auto;
    padding: 20px;
  }

  .hero-night-experiment {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 52px 18px 54px;
    background:
      linear-gradient(180deg, rgba(6, 18, 38, 0.54), rgba(6, 18, 38, 0.76) 42%, var(--off-white) 74%);
  }

  .hero-night-image {
    background-image: url("./assets/night-roadworks-hero-2048.jpeg");
    height: 560px;
    bottom: auto;
    background-position: 41% top;
    background-size: auto 560px;
    filter: contrast(1.08) saturate(1.04) brightness(0.98);
    transform: none;
  }

  .hero-night-experiment::before {
    opacity: 0.16;
    mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
  }

  .motion-ready .hero-night-experiment .hero-copy,
  .motion-ready .hero-night-experiment .hero-flow {
    transform: none;
  }

  .hero-night-experiment::after {
    background:
      linear-gradient(180deg, rgba(6, 18, 38, 0.52) 0%, rgba(6, 18, 38, 0.28) 35%, rgba(248, 250, 251, 0.24) 58%, rgba(248, 250, 251, 0.84) 80%, var(--off-white) 100%),
      linear-gradient(90deg, rgba(6, 18, 38, 0.34), rgba(6, 18, 38, 0.12) 52%, rgba(6, 18, 38, 0.3));
  }

  .hero {
    gap: 42px;
    min-height: auto;
    padding-top: 48px;
  }

  .hero-process {
    padding-top: 52px;
    padding-bottom: 54px;
  }

  .hero-process .hero-copy {
    margin-bottom: 34px;
  }

  .hero-flow {
    padding: 14px;
    border-radius: 20px;
  }

  .hero-step {
    min-height: auto;
  }

  .step-head {
    min-height: auto;
    padding: 18px;
  }

  .step-media {
    height: 330px;
    margin: 16px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-text,
  .section-intro,
  .field-copy p,
  .infrastructure-band p {
    font-size: 18px;
  }

  .flow-label {
    display: none;
  }

  .hero-product {
    padding: 14px;
    border-radius: 18px;
  }

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

  .plan-frame {
    height: 330px;
  }

  .video-frame {
    height: 230px;
  }

  .report-split {
    grid-template-columns: 1fr;
  }

  .report-document,
  .report-findings-panel {
    min-height: auto;
  }

  .report-image {
    max-height: 360px;
  }

  .workflow,
  .board-top,
  .board-media,
  .card-grid.five,
  .audience-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .workflow-section {
    width: min(100% - 24px, 680px);
    padding: 68px 22px 72px;
    border-radius: 26px;
    background-position: 42% center;
  }

  .why-section {
    padding-top: 58px;
  }

  .why-visual {
    width: 100%;
    margin-top: 28px;
    border-radius: 20px;
  }

  .why-visual img {
    min-height: 250px;
    aspect-ratio: auto;
    object-position: 42% center;
  }

  .board-media img {
    height: 440px;
  }

  .workflow article:not(:last-child)::after {
    display: none;
  }

  .credibility-items,
  .team-items {
    gap: 28px;
  }

  .team-items {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .info-card {
    min-height: auto;
    padding: 24px;
  }

  .board-media img,
  .field-professionals > img {
    height: 320px;
  }
}

@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;
  }

  .hero-night-image,
  .motion-ready .hero-night-experiment .hero-copy,
  .motion-ready .hero-night-experiment .hero-flow,
  .motion-ready [data-reveal] {
    transform: none !important;
  }

  .motion-ready [data-reveal] {
    opacity: 1 !important;
  }
}

@media (max-width: 520px) {
  .nav-links {
    font-size: 14px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-actions {
    display: grid;
  }

  .field-image-card figcaption {
    position: relative;
    inset: auto;
    padding: 14px;
    background: var(--navy);
  }

  .field-image-card::after {
    display: none;
  }

  .mockup-head {
    min-height: 58px;
    padding: 14px 16px;
    font-size: 16px;
  }

  .plan-frame,
  .video-frame,
  .report-preview,
  .meta-list,
  .report-tags {
    margin-inline: 16px;
  }
}

/* Current landing-page refinements */
.eyebrow {
  font-size: 18px;
  line-height: 1.35;
}

.button.primary,
.step-number,
.workflow span,
.report-status-bar {
  background: linear-gradient(135deg, var(--navy), #1c4f86);
}

.hero-flow {
  align-items: start;
}

.process-arrow {
  align-self: start;
  margin-top: 22px;
}

.workflow article:not(:last-child)::after {
  display: none;
}

.credibility p {
  width: min(980px, 100%);
  margin-inline: auto;
  font-size: 22px;
  line-height: 1.45;
}

.field-band {
  position: relative;
  display: grid;
  min-height: 620px;
  margin: 34px 0 28px;
  overflow: hidden;
  color: #fff;
  direction: ltr;
}

.field-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
}

.field-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 58, 111, 0.86) 0%, rgba(18, 58, 111, 0.72) 36%, rgba(18, 58, 111, 0.2) 72%),
    linear-gradient(180deg, rgba(18, 58, 111, 0.18), rgba(18, 58, 111, 0.26));
}

.field-band .field-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-self: start;
  width: min(680px, calc(100% - 48px));
  min-height: 620px;
  margin-left: max(24px, calc((100vw - 1360px) / 2));
  padding: 76px 0;
}

.field-band h2 {
  color: #fff;
}

.field-band .field-copy p,
.field-band .field-copy > strong {
  color: rgba(255, 255, 255, 0.9);
}

.field-band .check-list {
  max-width: 620px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.field-band .check-list li {
  color: #fff;
}

.field-band .check-list li::before {
  border-color: rgba(255, 255, 255, 0.82);
  color: #fff;
}

body.rtl .field-band .field-copy {
  direction: rtl;
  justify-self: start;
  margin-right: auto;
  margin-left: max(24px, calc((100vw - 1360px) / 2));
}

body.rtl .field-band::after {
  background:
    linear-gradient(90deg, rgba(18, 58, 111, 0.86) 0%, rgba(18, 58, 111, 0.72) 36%, rgba(18, 58, 111, 0.2) 72%),
    linear-gradient(180deg, rgba(18, 58, 111, 0.18), rgba(18, 58, 111, 0.26));
}

@media (max-width: 1180px) {
  .process-arrow {
    margin-top: 0;
  }

  .field-band,
  .field-band .field-copy {
    min-height: 680px;
  }
}

@media (max-width: 820px) {
  .eyebrow {
    font-size: 16px;
  }

  .credibility p {
    font-size: 19px;
  }

  .field-band {
    min-height: 760px;
  }

  .field-band > img {
    object-position: 62% center;
  }

  .field-band::after,
  body.rtl .field-band::after {
    background:
      linear-gradient(180deg, rgba(18, 58, 111, 0.88), rgba(18, 58, 111, 0.62) 62%, rgba(18, 58, 111, 0.3)),
      linear-gradient(90deg, rgba(18, 58, 111, 0.42), transparent);
  }

  .field-band .field-copy,
  body.rtl .field-band .field-copy {
    width: min(100% - 32px, 680px);
    min-height: 760px;
    margin-inline: auto;
    padding: 54px 0;
  }
}
