:root {
  --ink: #081318;
  --muted: #4d5a5c;
  --soft: #fbfaf6;
  --paper: #ffffff;
  --line: rgba(8, 19, 24, 0.12);
  --line-soft: rgba(8, 19, 24, 0.08);
  --green: #006c51;
  --green-2: #008866;
  --green-dark: #002f2b;
  --teal-dark: #012f2e;
  --red: #ff3b25;
  --amber: #ff9f0a;
  --blue: #139ee6;
  --shadow: 0 24px 70px rgba(8, 19, 24, 0.08);
  --radius: 18px;
  --page-pad: clamp(24px, 3vw, 42px);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 250, 246, 0.98) 42%, #fbfaf6),
    var(--soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

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

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

button,
input {
  font: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header,
main,
.site-footer {
  width: min(100%, 1360px);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  padding: 26px var(--page-pad) 16px;
}

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

.brand-mark {
  width: 43px;
  height: 43px;
  color: var(--green);
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 0.95;
  font-weight: 700;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: #536161;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  flex: 1 1 auto;
  padding-top: 3px;
  font-size: 12px;
  font-weight: 700;
}

.main-nav a {
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 47px;
  padding: 0 16px;
  border: 1px solid rgba(8, 19, 24, 0.18);
  border-radius: 8px;
  color: #0c2526;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.language-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 108, 81, 0.32);
  background: rgba(255, 255, 255, 0.92);
}

.language-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-small {
  min-height: 47px;
  padding: 0 22px;
  font-size: 12px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #00745a, #003e35);
  box-shadow: 0 16px 30px rgba(0, 84, 66, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 20px 34px rgba(0, 84, 66, 0.24);
}

.btn-outline,
.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(8, 19, 24, 0.22);
}

.btn-ghost {
  min-height: 47px;
  padding: 0 22px;
  font-size: 12px;
}

.btn-soft {
  min-height: 50px;
  color: #fff;
  background: rgba(31, 135, 103, 0.72);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(390px, 1.22fr);
  align-items: center;
  gap: 22px;
  min-height: 590px;
  padding: 0 var(--page-pad) 20px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 18px;
}

.safety-pill {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(8, 19, 24, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #142023;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.safety-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hero h1 {
  max-width: 520px;
  margin: 43px 0 26px;
  font-family: var(--serif);
  font-size: clamp(48px, 5.8vw, 76px);
  font-weight: 500;
  line-height: 1.02;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-copy > p {
  max-width: 470px;
  margin: 0;
  color: #233034;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 530px;
  margin-top: 54px;
}

.hero-benefits article {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 13px;
  padding: 0 16px;
  text-align: center;
  border-right: 1px solid var(--line-soft);
}

.hero-benefits article:last-child {
  border-right: 0;
}

.hero-benefits svg,
.challenge-stat svg,
.impact-line svg {
  width: 34px;
  height: 34px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-benefits span {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.hero-scene {
  position: relative;
  width: min(100%, 742px);
  min-height: 786px;
}

.dashboard-card {
  position: absolute;
  left: 20px;
  top: 112px;
  width: min(704px, calc(100% - 28px));
  height: 600px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8, 19, 24, 0.13);
  border-radius: 24px;
  box-shadow: 0 24px 62px rgba(8, 19, 24, 0.10);
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 32px 18px;
}

.dashboard-head strong {
  font-size: 14px;
  line-height: 1;
}

.dash-status {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.dash-status svg {
  width: 22px;
  height: 22px;
  color: #111b1f;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dash-status i {
  position: relative;
  display: inline-block;
  width: 31px;
  height: 31px;
  border: 2px solid #111b1f;
  border-radius: 50%;
  background: rgba(8, 19, 24, 0.06);
}

.dash-status i::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 11px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.dash-status i::after {
  content: "";
  position: absolute;
  left: 6px;
  bottom: 5px;
  width: 15px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 11px 11px 0 0;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0bab66;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 18px;
  padding: 0 22px 22px;
}

.dash-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
}

.dash-sidebar .dash-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 10px;
  color: #4a5557;
  font-size: 11px;
  font-weight: 800;
}

.dash-sidebar .dash-nav-item.active {
  color: #0d1b20;
  background: rgba(0, 108, 81, 0.08);
}

.dash-sidebar svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dash-main {
  min-width: 0;
}

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

.dash-stats article {
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  min-height: 78px;
  padding: 12px 13px;
  border: 1px solid rgba(8, 19, 24, 0.11);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 19, 24, 0.025);
}

.dash-stats svg {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dash-stats span {
  align-self: end;
  color: #6b7475;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.15;
}

.dash-stats strong {
  align-self: start;
  color: #0b1519;
  font-size: 22px;
  line-height: 1.15;
}

.dash-stats small {
  font-size: 15px;
}

.green-stroke {
  color: var(--green);
}

.red-stroke,
.red-text {
  color: var(--red);
}

.amber-stroke,
.amber-text {
  color: var(--amber);
}

.dash-workspace {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 204px;
  gap: 14px;
  margin-top: 15px;
  align-items: stretch;
  height: 318px;
}

.dash-map {
  height: 318px;
  overflow: hidden;
  border: 1px solid rgba(8, 19, 24, 0.08);
  border-radius: 10px;
  background:
    linear-gradient(40deg, rgba(8, 19, 24, 0.04) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(138deg, rgba(8, 19, 24, 0.035) 1px, transparent 1px) 0 0 / 38px 38px,
    #fbf8ef;
}

.dash-map svg {
  display: block;
  width: 100%;
  height: 100%;
}

.map-roads path {
  fill: none;
  stroke: rgba(142, 148, 144, 0.26);
  stroke-width: 6;
  stroke-linecap: round;
}

.route {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-green {
  stroke: #0b8b63;
}

.route-amber {
  stroke: #ff9f0a;
}

.route-red {
  stroke: #ff3b25;
}

.nodes circle {
  stroke: #fff;
  stroke-width: 4;
}

.nodes .blue {
  fill: #239ad7;
}

.nodes .green {
  fill: #008966;
}

.nodes .red {
  fill: #ff3b25;
}

.nodes .amber {
  fill: #ff9f0a;
}

.node-plus path {
  fill: none;
  stroke: #fff;
  stroke-width: 5;
  stroke-linecap: round;
}

.route-panel {
  height: 318px;
  overflow: hidden;
  border: 1px solid rgba(8, 19, 24, 0.11);
  border-radius: 10px;
  background: #fff;
}

.route-panel h3 {
  margin: 0;
  height: 56px;
  padding: 17px;
  font-size: 13px;
  line-height: 1.2;
  border-bottom: 1px solid rgba(8, 19, 24, 0.08);
}

.route-panel article {
  position: relative;
  height: 87px;
  min-height: 0;
  padding: 14px 17px;
  border-bottom: 1px solid rgba(8, 19, 24, 0.08);
}

.route-panel article:last-child {
  border-bottom: 0;
}

.route-panel article.selected {
  background: rgba(0, 108, 81, 0.07);
  border: 2px solid rgba(0, 108, 81, 0.42);
  border-radius: 8px;
}

.route-panel p,
.route-panel small,
.route-panel span {
  display: block;
  margin: 0;
}

.route-panel p {
  padding-right: 64px;
  color: #2c383b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  min-height: 15px;
}

.route-panel small {
  margin-top: 8px;
  color: #4a5658;
  font-size: 10px;
}

.route-panel strong {
  position: absolute;
  right: 16px;
  top: 41px;
  color: var(--green);
  font-size: 17px;
}

.route-panel span {
  margin-top: 8px;
  color: #253235;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
}

.heat-widget {
  position: absolute;
  left: -95px;
  bottom: -9px;
  width: 212px;
  padding: 20px 18px 16px;
  border: 1px solid rgba(8, 19, 24, 0.10);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 34px rgba(8, 19, 24, 0.08);
}

.heat-widget strong {
  display: block;
  font-size: 12px;
}

.heat-widget > span {
  display: block;
  height: 5px;
  margin: 18px 0 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0c8d63, #ffd340 42%, #ff3b25);
}

.heat-widget small {
  display: flex;
  justify-content: space-between;
  color: #687174;
  font-size: 9px;
}

.dash-alert {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 14px;
  margin: 20px 0 0 92px;
  min-height: 62px;
  max-height: 62px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 159, 10, 0.18);
  border-radius: 9px;
  background: #fff4df;
}

.dash-alert span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  clip-path: polygon(50% 4%, 96% 92%, 4% 92%);
  color: #ff7a00;
  border: 2px solid currentColor;
  font-size: 18px;
  font-weight: 900;
}

.dash-alert p {
  margin: 0;
  color: #2a3639;
  font-size: 11px;
  line-height: 1.5;
}

.dash-alert strong {
  color: #ff6b00;
}

.challenge-card {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  align-items: center;
  gap: 0;
  margin: 20px var(--page-pad) 0;
  padding: 34px 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(8, 19, 24, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(8, 19, 24, 0.035);
}

.challenge-intro,
.challenge-stat {
  min-height: 94px;
}

.challenge-intro {
  padding: 0 34px 0 8px;
}

.challenge-intro h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.challenge-intro p,
.challenge-stat span {
  margin: 0;
  color: #273335;
  font-size: 12px;
  line-height: 1.7;
}

.challenge-stat {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  column-gap: 18px;
  padding: 0 28px;
  border-left: 1px solid var(--line-soft);
}

.challenge-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}

.challenge-stat span {
  grid-column: 2;
  max-width: 132px;
  color: #435052;
  font-size: 11px;
}

.challenge-stat svg {
  grid-row: span 2;
  color: #0d1b20;
}

.capabilities {
  padding: 48px var(--page-pad) 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 26px;
}

.section-heading span,
.haptic-copy span,
.scenario-card > span,
.pattern-card > span {
  display: block;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 10px auto 0;
  max-width: 780px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.18;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.capability-card {
  display: flex;
  flex-direction: column;
  min-height: 417px;
  padding: 26px 20px 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(8, 19, 24, 0.12);
  border-radius: 14px;
}

.card-icon {
  width: 38px;
  height: 38px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 21px;
}

.card-icon.blue-icon {
  color: #108ee9;
}

.capability-card h3 {
  margin: 0 0 13px;
  font-size: 16px;
  line-height: 1.25;
}

.capability-card p {
  margin: 0;
  color: #253235;
  font-size: 12px;
  line-height: 1.75;
}

.card-media {
  width: 100%;
  margin-top: auto;
  border-radius: 8px;
  border: 1px solid rgba(8, 19, 24, 0.07);
}

.phone-media {
  width: min(100%, 118px);
  margin: auto auto 0;
}

.donut-widget {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  min-height: 122px;
}

.donut {
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 60%, var(--blue) 60% 70%, var(--amber) 70% 90%, #d7d2c5 90% 100%);
}

.donut::before {
  content: "Pilgrims";
  position: absolute;
  inset: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #6b7070;
  font-size: 9px;
  font-weight: 800;
}

.donut-widget ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 9px;
  font-weight: 700;
}

.donut-widget li {
  display: grid;
  grid-template-columns: 9px 1fr auto;
  align-items: center;
  gap: 6px;
}

.donut-widget span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.green { background: var(--green); }
.blue { background: var(--blue); }
.amber { background: var(--amber); }
.gray { background: #d7d2c5; }

.score-card {
  margin-top: auto;
  padding: 16px 12px 0;
  min-height: 128px;
  border: 1px solid rgba(8, 19, 24, 0.09);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #edf8ef);
  overflow: hidden;
}

.score-card span {
  color: #6b7475;
  font-size: 9px;
  font-weight: 700;
}

.score-card strong {
  display: block;
  color: var(--green);
  font-size: 42px;
  line-height: 1;
}

.score-card small {
  color: #0d463d;
  font-size: 22px;
  font-weight: 700;
}

.score-card svg {
  width: 100%;
  height: 54px;
  margin-top: 4px;
  fill: none;
  stroke: #2aa66d;
  stroke-width: 3;
}

.haptic-band {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 1.25fr 1.75fr;
  min-height: 356px;
  margin: 22px var(--page-pad) 0;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(90deg, #002c2c 0%, #062f30 52%, #0a3a37 67%, #f6efe3 67%);
  color: #fff;
}

.haptic-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 30px;
}

.haptic-copy span,
.pattern-card > span {
  color: #80d5b5;
}

.haptic-copy h2 {
  margin: 22px 0 16px;
  max-width: 290px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.12;
}

.haptic-copy p {
  max-width: 270px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.72;
}

.haptic-phone {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
}

.haptic-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pattern-card {
  align-self: center;
  min-height: 285px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(0, 38, 38, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pattern-row {
  display: grid;
  grid-template-columns: 32px 1fr 40px;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.pattern-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-style: normal;
  font-size: 18px;
  font-weight: 900;
}

.pattern-row p {
  margin: 0;
  line-height: 1.2;
}

.pattern-row strong {
  display: block;
  font-size: 13px;
}

.pattern-row small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.pulse {
  position: relative;
  height: 8px;
  border-radius: 999px;
}

.pulse::before,
.pulse::after {
  content: "";
  position: absolute;
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: inherit;
}

.pulse::before {
  left: 0;
}

.pulse::after {
  left: 14px;
}

.pulse {
  width: 36px;
  opacity: 0.95;
}

.crowd-panel {
  min-width: 0;
}

.crowd-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1.12fr);
  gap: 16px;
  margin: 22px var(--page-pad) 20px;
}

.scenario-card,
.cta-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 19, 24, 0.12);
  border-radius: 14px;
  box-shadow: 0 14px 44px rgba(8, 19, 24, 0.035);
}

.scenario-card {
  padding: 31px 32px 28px;
}

.scenario-card > span {
  color: var(--green);
}

.scenario-card h2 {
  max-width: 430px;
  margin: 18px 0 23px;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 500;
}

.route-table {
  overflow: hidden;
  border: 1px solid rgba(8, 19, 24, 0.13);
  border-radius: 8px;
  background: #fff;
}

.table-head,
.route-row {
  display: grid;
  grid-template-columns: 1fr 96px 112px;
  align-items: center;
  column-gap: 12px;
}

.table-head {
  min-height: 43px;
  padding: 0 18px;
  color: #697374;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(8, 19, 24, 0.08);
}

.table-head span:last-child {
  grid-column: 2 / 4;
}

.route-row {
  position: relative;
  min-height: 69px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(8, 19, 24, 0.08);
}

.route-row:last-child {
  border-bottom: 0;
}

.route-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: currentColor;
}

.route-row p {
  margin: 0;
  min-width: 0;
}

.route-row strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
}

.route-row small {
  display: block;
  margin-top: 5px;
  color: #556164;
  font-size: 10px;
}

.route-row b {
  font-size: 18px;
}

.route-row em {
  justify-self: start;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(0, 108, 81, 0.25);
  background: rgba(0, 108, 81, 0.12);
  color: var(--green);
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
}

.route-row.red {
  color: var(--red);
}

.route-row.green {
  color: var(--green);
  background: linear-gradient(90deg, rgba(0, 108, 81, 0.11), rgba(255, 255, 255, 0.96));
}

.route-row.amber {
  color: var(--amber);
}

.impact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 23px;
  color: #142023;
  font-size: 16px;
}

.impact-line svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}

.impact-line strong {
  color: var(--green);
}

.trust-stack {
  display: flex;
  min-height: 100%;
}

.trust-stack .cta-card {
  flex: 1;
}

.cta-card h2 {
  margin: 0;
  color: var(--green);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}

.cta-card p {
  margin: 10px 0 0;
  color: #3f4b4d;
  font-size: 13px;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 215px;
  align-items: stretch;
  overflow: hidden;
  min-height: 198px;
}

.cta-card > div {
  position: relative;
  z-index: 1;
  padding: 39px 34px 30px;
}

.cta-card h2 {
  color: var(--ink);
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cta-actions .btn {
  min-height: 48px;
  padding: 0 24px;
  font-size: 12px;
}

.cta-card img {
  align-self: stretch;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 2fr 1.55fr;
  gap: 50px;
  padding: 34px var(--page-pad) 24px;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 137, 101, 0.22), transparent 44%),
    linear-gradient(135deg, #002725, #001715 82%);
}

.footer-logo .brand-mark {
  color: #b7e8ce;
}

.footer-logo strong {
  color: #fff;
  font-size: 31px;
}

.footer-brand p {
  max-width: 300px;
  margin: 21px 0 23px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0 48px;
}

.footer-links h3,
.newsletter h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.footer-links a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.footer-contact {
  display: block;
  margin: 10px 0;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  text-align: left;
}

.footer-contact:hover {
  color: #fff;
}

.newsletter p {
  max-width: 300px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.6;
}

.newsletter label {
  display: grid;
  grid-template-columns: 1fr 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.newsletter input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 18px;
  color: #fff;
  background: transparent;
  font-size: 12px;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.newsletter button {
  border: 0;
  color: #fff;
  background: rgba(130, 203, 171, 0.22);
  cursor: pointer;
}

.newsletter button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.language {
  margin-left: auto;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 23, 21, 0.48);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.contact-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 34px;
  border: 1px solid rgba(8, 19, 24, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(8, 19, 24, 0.24);
}

.contact-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(8, 19, 24, 0.12);
  border-radius: 50%;
  color: #122023;
  background: rgba(251, 250, 246, 0.82);
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
}

.contact-label {
  display: block;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.contact-dialog h2 {
  margin: 14px 42px 10px 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.16;
}

.contact-dialog p {
  margin: 0;
  color: #4a5658;
  font-size: 14px;
}

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

.contact-methods a {
  display: grid;
  gap: 5px;
  padding: 17px 18px;
  border: 1px solid rgba(0, 108, 81, 0.14);
  border-radius: 10px;
  background: rgba(0, 108, 81, 0.055);
}

.contact-methods span {
  color: #617073;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.contact-methods strong {
  color: var(--green);
  font-size: 18px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

body.modal-open {
  overflow: hidden;
}

[dir="rtl"] body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  letter-spacing: 0;
}

[dir="rtl"] .brand,
[dir="rtl"] .btn,
[dir="rtl"] .language-toggle,
[dir="rtl"] .hero-benefits article,
[dir="rtl"] .challenge-stat,
[dir="rtl"] .impact-line,
[dir="rtl"] .pattern-row,
[dir="rtl"] .dash-status,
[dir="rtl"] .dash-sidebar .dash-nav-item {
  direction: rtl;
}

[dir="rtl"] .main-nav,
[dir="rtl"] .header-actions {
  direction: rtl;
}

[dir="rtl"] .brand small,
[dir="rtl"] .safety-pill,
[dir="rtl"] .section-heading span,
[dir="rtl"] .haptic-copy span,
[dir="rtl"] .scenario-card > span,
[dir="rtl"] .pattern-card > span {
  letter-spacing: 0;
}

[dir="rtl"] .hero-copy,
[dir="rtl"] .challenge-intro,
[dir="rtl"] .capability-card,
[dir="rtl"] .haptic-copy,
[dir="rtl"] .scenario-card,
[dir="rtl"] .cta-card,
[dir="rtl"] .site-footer,
[dir="rtl"] .dashboard-card,
[dir="rtl"] .route-panel {
  text-align: right;
}

[dir="rtl"] .hero {
  direction: ltr;
}

[dir="rtl"] .hero-copy {
  direction: rtl;
  max-width: 540px;
}

[dir="rtl"] .hero h1 {
  max-width: 510px;
  font-size: clamp(43px, 4.9vw, 68px);
  line-height: 1.13;
}

[dir="rtl"] .hero-copy > p {
  max-width: 455px;
}

[dir="rtl"] .hero-buttons,
[dir="rtl"] .cta-actions,
[dir="rtl"] .footer-bottom {
  direction: rtl;
}

[dir="rtl"] .dashboard-body {
  direction: ltr;
  grid-template-columns: 116px 1fr;
}

[dir="rtl"] .dash-sidebar {
  grid-column: 1;
  grid-row: 1;
  direction: rtl;
}

[dir="rtl"] .dash-main {
  grid-column: 2;
  grid-row: 1;
  direction: rtl;
}

[dir="rtl"] .dash-workspace {
  direction: ltr;
  grid-template-columns: minmax(0, 1fr) 204px;
}

[dir="rtl"] .route-panel {
  grid-column: 2;
  direction: rtl;
}

[dir="rtl"] .dash-map {
  grid-column: 1;
}

[dir="rtl"] .route-panel p {
  padding-right: 64px;
  padding-left: 0;
}

[dir="rtl"] .route-panel strong {
  right: 16px;
  left: auto;
}

[dir="rtl"] .heat-widget {
  left: -95px;
  right: auto;
  direction: rtl;
}

[dir="rtl"] .dash-alert {
  direction: rtl;
  margin: 20px 0 0 92px;
}

[dir="rtl"] .challenge-stat {
  border-left: 0;
  border-right: 1px solid var(--line-soft);
}

[dir="rtl"] .challenge-stat:nth-child(2) {
  border-right: 0;
}

[dir="rtl"] .route-row::before {
  left: auto;
  right: 0;
}

[dir="rtl"] .footer-links {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

[dir="rtl"] .newsletter label {
  grid-template-columns: 56px 1fr;
}

[dir="rtl"] .footer-contact {
  text-align: right;
}

[dir="rtl"] .contact-dialog {
  text-align: right;
}

[dir="rtl"] .contact-close {
  right: auto;
  left: 18px;
}

[dir="rtl"] .contact-dialog h2 {
  margin: 14px 0 10px 42px;
}

[dir="rtl"] .contact-label,
[dir="rtl"] .contact-methods span {
  letter-spacing: 0;
}

[dir="rtl"] .newsletter button {
  grid-column: 1;
  grid-row: 1;
}

[dir="rtl"] .newsletter input {
  grid-column: 2;
  grid-row: 1;
  text-align: right;
}

[dir="rtl"] .language {
  margin-left: 0;
  margin-right: auto;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 24px;
  }

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

  .capability-card {
    min-height: 360px;
  }

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

  .challenge-intro {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 0 8px 24px;
  }

  .challenge-stat:nth-child(2),
  .challenge-stat:nth-child(4) {
    border-left: 0;
  }

  .haptic-band {
    grid-template-columns: 1fr 0.9fr 1.1fr;
  }

  .crowd-panel {
    grid-column: 1 / -1;
    height: 230px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    border-left: 0;
    border-right: 0;
    padding: 0;
  }

  .language {
    margin-left: 0;
  }
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .header-actions {
    margin-left: auto;
  }

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

  .hero h1 {
    font-size: 50px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-buttons .btn {
    min-height: 52px;
    padding: 0 20px;
  }

  .hero-benefits article {
    padding: 0 9px;
  }

  .hero-visual {
    justify-content: center;
  }

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

@media (max-width: 760px) {
  :root {
    --page-pad: 18px;
  }

  .site-header {
    min-height: auto;
    padding-top: 18px;
  }

  .brand strong {
    font-size: 30px;
  }

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

  .header-actions {
    width: 100%;
    margin-left: 0;
  }

  .header-actions .btn {
    flex: 1;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 24px;
  }

  .hero h1 {
    margin-top: 26px;
    font-size: 48px;
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-scene {
    width: 100%;
    overflow: hidden;
  }

  .dashboard-card {
    left: 12px;
    width: min(704px, calc(100% - 24px));
  }

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

  .hero-benefits article:nth-child(2) {
    border-right: 0;
  }

  .challenge-card {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }

  .challenge-stat {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    padding: 18px 0;
  }

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

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

  .card-media {
    width: min(100%, 220px);
    margin-top: 24px;
  }

  .donut-widget,
  .score-card {
    margin-top: 24px;
  }

  .haptic-band {
    grid-template-columns: 1fr;
    background: #062f30;
  }

  .haptic-phone {
    max-height: 330px;
  }

  .pattern-card {
    margin: 18px;
  }

  .crowd-panel {
    grid-column: auto;
  }

  .table-head,
  .route-row {
    grid-template-columns: 1fr auto;
  }

  .route-row em {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-card img {
    height: 190px;
  }

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

  .footer-bottom {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 24px;
  }
}

@media (max-width: 600px) {
  .hero-scene {
    min-height: 620px;
  }

  .dashboard-card {
    width: 704px;
    max-width: none;
    transform: scale(0.72);
    transform-origin: top left;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 42px;
  }

  .safety-pill {
    height: auto;
    min-height: 42px;
    padding: 12px 16px;
    line-height: 1.4;
  }

  .hero-buttons,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .contact-dialog {
    padding: 28px 22px;
  }

  .contact-methods strong {
    font-size: 15px;
  }

  .challenge-stat {
    grid-template-columns: 36px 1fr;
  }

  .challenge-stat strong {
    font-size: 24px;
  }

  .scenario-card,
  .cta-card > div {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-scene {
    min-height: 520px;
  }

  .dashboard-card {
    transform: scale(0.54);
  }
}

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