:root {
  --navy: #073b63;
  --navy-deep: #052d4c;
  --yellow: #ffbe17;
  --yellow-soft: #fff3c7;
  --ink: #102a3d;
  --muted: #637789;
  --sky: #e9f5fb;
  --paper: #fbfcfa;
  --line: #dce6ea;
  --green: #25a66a;
  --white: #fff;
  --shadow: 0 24px 70px rgba(5, 45, 76, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 999;
  left: 10px;
  top: -60px;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus {
  top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  transition: 0.25s;
  background: rgba(251, 252, 250, 0.92);
  border-bottom: 1px solid rgba(7, 59, 99, 0.08);
  backdrop-filter: blur(16px);
}
.site-header.scrolled {
  box-shadow: 0 8px 28px rgba(6, 45, 76, 0.08);
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  display: block;
  width: 184px;
  height: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 700;
}
.site-nav > a:not(.button) {
  position: relative;
}
.site-nav > a:not(.button):after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--yellow);
  transition: 0.2s;
}
.site-nav > a:hover:after {
  right: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--navy-deep);
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(255, 190, 23, 0.23);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 190, 23, 0.32);
}
.button-small {
  min-height: 42px;
  padding: 0 19px;
  border-radius: 10px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 10px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
}
.hero {
  position: relative;
  min-height: 760px;
  padding: 82px 0 0;
  overflow: hidden;
  background: linear-gradient(110deg, #f9fcfd 0%, #f6fbfe 35%, #e8f6fc 100%);
}
.hero:before {
  content: "";
  position: absolute;
  inset: auto auto -130px -100px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(7, 59, 99, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(7, 59, 99, 0.025),
    0 0 0 110px rgba(7, 59, 99, 0.018);
}
.hero-art {
  position: absolute;
  inset: 82px 0 0 27%;
  background: url("assets/waynkon-hero.webp") center/cover no-repeat;
}
.hero-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #f9fcfd 0%,
    rgba(249, 252, 253, 0.96) 13%,
    rgba(249, 252, 253, 0.52) 32%,
    transparent 53%
  );
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 678px;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 570px) 1fr;
}
.hero-copy {
  padding: 62px 0 75px;
}
.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.eyebrow span {
  width: 28px;
  height: 4px;
  border-radius: 3px;
  background: var(--yellow);
}
h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", Manrope, sans-serif;
  line-height: 1.12;
  margin: 0;
}
h1 {
  font-size: clamp(48px, 5.4vw, 76px);
  letter-spacing: -0.055em;
  color: var(--navy-deep);
}
h1 em {
  font-style: normal;
  color: #157a9b;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.75;
  max-width: 570px;
  color: #4d6577;
  margin: 26px 0 31px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.text-link {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}
.text-link span {
  color: #1685a8;
  margin-left: 4px;
}
.trust-row {
  display: flex;
  gap: 22px;
  margin-top: 44px;
  color: #526a7b;
  font-size: 12px;
  font-weight: 700;
}
.trust-row i {
  font-style: normal;
  display: inline-grid;
  place-items: center;
  background: #ddf5e9;
  color: #168357;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
}
.intro {
  background: var(--navy);
  color: #fff;
  padding: 70px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 180px 1.25fr 0.8fr;
  gap: 50px;
  align-items: start;
}
.section-kicker {
  margin: 0 0 17px;
}
.section-kicker.light {
  color: #9bd9ed;
}
.intro .section-kicker {
  color: var(--yellow);
}
.intro h2 {
  font-size: clamp(31px, 3.4vw, 48px);
  letter-spacing: -0.035em;
}
.intro > div > p:last-child {
  margin: 2px 0 0;
  color: #c6d6e2;
  line-height: 1.8;
}
.section {
  padding: 112px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  margin-bottom: 54px;
}
.section-heading h2,
.tech-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.045em;
  color: var(--navy-deep);
}
.section-heading > p {
  max-width: 410px;
  color: var(--muted);
  margin: 0 0 5px;
  line-height: 1.75;
}
.section-heading.centered {
  display: block;
  text-align: center;
}
.section-heading.centered > p {
  margin: 18px auto 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  position: relative;
  min-height: 350px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.feature-large {
  grid-column: span 2;
}
.feature-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 20px;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--yellow-soft);
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
}
.radar-icon span {
  width: 22px;
  height: 22px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(7, 59, 99, 0.12);
}
.feature-number {
  position: absolute;
  top: 36px;
  right: 34px;
  font-size: 12px;
  font-weight: 800;
  color: #a4b3bd;
  letter-spacing: 0.12em;
}
.feature h3 {
  font-size: 23px;
  color: var(--navy-deep);
  margin: 24px 0 12px;
}
.feature p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  max-width: 530px;
}
.mini-map {
  position: absolute;
  height: 150px;
  right: 32px;
  left: 52%;
  bottom: 30px;
  border-radius: 17px;
  background: linear-gradient(135deg, #e9f4ef, #d7ecf5);
  overflow: hidden;
}
.mini-map:before,
.geofence-demo:before {
  content: "";
  position: absolute;
  inset: -40%;
  background: repeating-linear-gradient(
    30deg,
    transparent 0 34px,
    rgba(255, 255, 255, 0.8) 35px 38px
  );
}
.route {
  position: absolute;
  z-index: 1;
  height: 4px;
  border-radius: 8px;
  background: #56a9c2;
  transform-origin: left;
}
.route-a {
  width: 180px;
  left: 15%;
  top: 70%;
  transform: rotate(-25deg);
}
.route-b {
  width: 155px;
  left: 45%;
  top: 37%;
  transform: rotate(22deg);
}
.pin,
.bus-dot {
  position: absolute;
  z-index: 2;
  font-style: normal;
}
.pin {
  color: #2fa36b;
  font-size: 25px;
}
.pin-a {
  left: 14%;
  top: 63%;
}
.pin-b {
  right: 15%;
  top: 51%;
}
.bus-dot {
  display: grid;
  place-items: center;
  left: 46%;
  top: 35%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  border: 4px solid #fff;
  color: var(--navy);
  box-shadow: 0 5px 14px rgba(5, 45, 76, 0.25);
}
.notification-card {
  margin-top: 34px;
  padding: 15px;
  background: #f1f8fb;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.notification-card .bell {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--yellow);
  box-shadow: inset 0 0 0 10px var(--yellow-soft);
}
.notification-card div {
  display: flex;
  flex-direction: column;
}
.notification-card b {
  font-size: 12px;
}
.notification-card small {
  font-size: 10px;
  color: var(--muted);
}
.trip-line {
  display: flex;
  align-items: center;
  margin-top: 48px;
}
.trip-line span {
  height: 3px;
  flex: 1;
  background: linear-gradient(90deg, var(--green) 50%, #cddae0 50%);
  position: relative;
}
.trip-line span:before,
.trip-line span:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border: 3px solid #fff;
  border-radius: 50%;
  top: -6px;
  background: var(--green);
}
.trip-line span:before {
  left: 0;
}
.trip-line span:after {
  right: 0;
  background: #a9b9c2;
}
.trip-line i {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  padding: 0 5px;
}
.status-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}
.status-pills span {
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 10px;
  font-weight: 800;
}
.status-on {
  background: #dff6e9;
  color: #178254;
}
.status-off {
  background: #dcecff;
  color: #1762a0;
}
.status-away {
  background: #fff0d4;
  color: #a45a00;
}
.geofence-demo {
  position: relative;
  margin: 5px 0;
  border-radius: 18px;
  min-height: 280px;
  background: #e7f2ed;
  overflow: hidden;
}
.zone {
  position: absolute;
  border: 2px solid var(--yellow);
  background: rgba(255, 190, 23, 0.18);
  border-radius: 50%;
  z-index: 2;
}
.zone.one {
  width: 150px;
  height: 150px;
  left: 17%;
  top: 19%;
}
.zone.two {
  width: 90px;
  height: 90px;
  right: 12%;
  bottom: 10%;
  border-color: #31a06d;
  background: rgba(49, 160, 109, 0.16);
}
.geofence-demo .road {
  position: absolute;
  z-index: 1;
  width: 130%;
  height: 9px;
  background: #fff;
  left: -15%;
  top: 48%;
  transform: rotate(-17deg);
  box-shadow: 0 0 0 2px #d6e3e5;
}
.moving-bus {
  position: absolute;
  z-index: 3;
  left: 51%;
  top: 36%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--navy);
  color: var(--yellow);
  transform: rotate(-17deg);
  box-shadow: 0 7px 15px rgba(5, 45, 76, 0.25);
}
.chat-demo {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 35px;
}
.chat-demo span {
  width: max-content;
  max-width: 90%;
  font-size: 11px;
  padding: 10px 12px;
  border-radius: 12px 12px 12px 3px;
  background: #edf2f5;
}
.chat-demo span:last-child {
  align-self: end;
  background: #dcf8df;
  border-radius: 12px 12px 3px 12px;
}
.safety {
  background: var(--navy-deep);
  color: white;
  overflow: hidden;
}
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.safety h2 {
  font-size: clamp(38px, 4vw, 57px);
  letter-spacing: -0.045em;
}
.safety-copy > p:not(.section-kicker) {
  color: #b9cbd8;
  max-width: 580px;
  margin: 24px 0 30px;
}
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li {
  display: flex;
  gap: 18px;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.check-list li > span {
  font-size: 11px;
  color: var(--yellow);
  font-weight: 800;
}
.check-list li div {
  display: flex;
  flex-direction: column;
}
.check-list b {
  font-size: 14px;
}
.check-list small {
  color: #9eb4c3;
  margin-top: 3px;
}
.phone-scene {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}
.phone-scene:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: #0d507a;
  box-shadow:
    0 0 0 65px rgba(13, 80, 122, 0.34),
    0 0 0 130px rgba(13, 80, 122, 0.16);
}
.phone {
  position: relative;
  z-index: 2;
  width: 300px;
  padding: 11px;
  border-radius: 40px;
  background: #102130;
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.35);
  transform: rotate(4deg);
}
.phone-top {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 20px;
  background: #102130;
  border-radius: 0 0 14px 14px;
}
.phone-screen {
  overflow: hidden;
  border-radius: 30px;
  background: #f6f8f8;
  min-height: 565px;
  color: var(--ink);
}
.mobile-head {
  height: 75px;
  padding: 20px 18px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
}
.mobile-head img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.mobile-head span {
  font-size: 12px;
  font-weight: 800;
  flex: 1;
}
.mobile-map {
  height: 270px;
  background: linear-gradient(135deg, #e1f0e8, #cfe6f2);
  position: relative;
  overflow: hidden;
}
.mobile-map:before {
  content: "";
  position: absolute;
  inset: -20%;
  background: repeating-linear-gradient(
    35deg,
    transparent 0 40px,
    rgba(255, 255, 255, 0.75) 42px 45px
  );
}
.mobile-route {
  position: absolute;
  left: 7%;
  top: 54%;
  width: 270px;
  height: 5px;
  border-radius: 5px;
  background: #5eacc3;
  transform: rotate(-24deg);
}
.mobile-bus,
.home-pin {
  position: absolute;
  font-style: normal;
  display: grid;
  place-items: center;
  border-radius: 50%;
  z-index: 2;
}
.mobile-bus {
  left: 46%;
  top: 37%;
  width: 46px;
  height: 46px;
  background: var(--yellow);
  border: 4px solid white;
  color: var(--navy);
}
.home-pin {
  right: 20%;
  top: 23%;
  width: 34px;
  height: 34px;
  background: #45ae75;
  color: #fff;
}
.arrival-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: -25px 14px 0;
  position: relative;
  z-index: 4;
  padding: 15px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(5, 45, 76, 0.16);
}
.arrival-card > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--yellow);
  font-weight: 800;
}
.arrival-card div {
  display: flex;
  flex-direction: column;
}
.arrival-card b {
  font-size: 13px;
}
.arrival-card small {
  color: var(--muted);
  font-size: 10px;
}
.mobile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  padding: 25px 12px;
}
.mobile-stats span {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}
.mobile-stats span:last-child {
  border: 0;
}
.mobile-stats b {
  font-size: 13px;
}
.mobile-stats small {
  font-size: 9px;
  color: var(--muted);
}
.orbit {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
  font-weight: 800;
}
.orbit-one {
  width: 65px;
  height: 65px;
  right: 5%;
  top: 17%;
  color: var(--green);
  font-size: 26px;
}
.orbit-two {
  width: 55px;
  height: 55px;
  left: 2%;
  bottom: 18%;
  color: #1984a6;
  font-size: 24px;
}
.audience-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 25px;
}
.audience-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.audience-tabs button[aria-selected="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.audience-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border-radius: 24px;
  background: #eef5f7;
  overflow: hidden;
}
.audience-visual {
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), #176f8e);
  overflow: hidden;
}
.big-mark {
  font-size: 280px;
  line-height: 1;
  font-family: "Plus Jakarta Sans";
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
}
.metric {
  position: absolute;
  padding: 25px;
  width: 70%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}
.metric small,
.metric b {
  display: block;
}
.metric small {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.metric b {
  font-size: 16px;
  margin: 5px 0 18px;
}
.metric-bars {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 55px;
}
.metric-bars i {
  display: block;
  flex: 1;
  height: 45%;
  background: #9dd9e7;
  border-radius: 5px 5px 0 0;
}
.metric-bars i:nth-child(2) {
  height: 70%;
}
.metric-bars i:nth-child(3) {
  height: 55%;
}
.metric-bars i:nth-child(4) {
  height: 92%;
  background: var(--yellow);
}
.metric-bars i:nth-child(5) {
  height: 78%;
}
.audience-content {
  padding: 60px 65px;
  align-self: center;
}
.audience-content h3 {
  font-size: 34px;
  color: var(--navy-deep);
  margin-bottom: 16px;
}
.audience-content > p:not(.section-kicker) {
  color: var(--muted);
}
.audience-content ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.audience-content li {
  padding: 11px 0;
  border-top: 1px solid #cfdee3;
  font-size: 13px;
  font-weight: 700;
}
.audience-content li:before {
  content: "✓";
  color: var(--green);
  margin-right: 10px;
}
.technology {
  background: #eef7fa;
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tech-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 16px;
  max-width: 550px;
}
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 27px;
}
.tech-tags span {
  font-size: 11px;
  font-weight: 800;
  background: #fff;
  border: 1px solid #d5e4e9;
  border-radius: 999px;
  padding: 8px 13px;
}
.tech-card-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tech-card-stack > div {
  background: white;
  border-radius: 16px;
  padding: 22px 25px;
  display: grid;
  grid-template-columns: 44px 1fr;
  box-shadow: 0 10px 30px rgba(7, 59, 99, 0.07);
}
.tech-card-stack span {
  grid-row: span 2;
  color: #1684a5;
  font-weight: 800;
}
.tech-card-stack b {
  font-size: 14px;
}
.tech-card-stack small {
  color: var(--muted);
}
.about {
  padding-bottom: 0;
}
.about-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: var(--navy);
  color: #fff;
  border-radius: 27px;
  padding: 70px;
}
.about-card h2 {
  font-size: clamp(34px, 4vw, 50px);
}
.about-card > div:last-child > p:first-child {
  color: #c6d5df;
  font-size: 16px;
  margin-top: 34px;
}
.development-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  font-size: 12px;
}
.development-note span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 190, 23, 0.16);
}
.contact-card {
  text-align: center;
  background: linear-gradient(135deg, #fff6d6, #fff1b4);
  border: 1px solid #f5dda0;
  border-radius: 27px;
  padding: 70px;
}
.contact-card h2 {
  font-size: clamp(36px, 4vw, 54px);
  color: var(--navy-deep);
}
.contact-card p:not(.section-kicker) {
  max-width: 660px;
  margin: 20px auto 28px;
  color: #596b77;
}
.button-dark {
  background: var(--navy);
  color: white;
  box-shadow: 0 12px 25px rgba(7, 59, 99, 0.18);
}
.contact-email {
  display: block;
  margin-top: 15px;
  color: #647682;
}
.site-footer {
  background: #061f34;
  color: #fff;
  padding: 75px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
}
.footer-brand img {
  width: 190px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}
.footer-brand p {
  color: #91abba;
  font-size: 13px;
}
.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-grid b {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8fb0c2;
  margin-bottom: 8px;
}
.footer-grid a {
  font-size: 13px;
  color: #d1dce3;
}
.footer-grid a:hover {
  color: var(--yellow);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 52px;
  padding-top: 22px;
  color: #7894a6;
  font-size: 11px;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .container {
    width: min(100% - 30px, 720px);
  }
  .menu-toggle {
    display: block;
  }
  .site-nav {
    position: fixed;
    inset: 82px 0 auto;
    background: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    transform: translateY(-130%);
    transition: 0.25s;
    box-shadow: 0 20px 30px rgba(5, 45, 76, 0.12);
  }
  .site-nav.open {
    transform: none;
  }
  .site-nav a {
    text-align: center;
  }
  .hero {
    min-height: auto;
  }
  .hero-art {
    position: relative;
    inset: auto;
    height: 410px;
    margin-top: 82px;
    background-position: 62% center;
  }
  .hero-art:after {
    background: linear-gradient(0deg, #f9fcfd 0%, transparent 42%);
  }
  .hero-grid {
    min-height: auto;
    display: block;
  }
  .hero-copy {
    padding: 20px 0 70px;
    text-align: center;
  }
  .eyebrow {
    justify-content: center;
  }
  .hero-lead {
    margin-inline: auto;
  }
  .hero-actions,
  .trust-row {
    justify-content: center;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-large,
  .feature-wide {
    grid-column: span 2;
  }
  .safety-grid,
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .phone-scene {
    min-height: 580px;
  }
  .audience-panel {
    grid-template-columns: 1fr;
  }
  .audience-visual {
    min-height: 280px;
  }
  .audience-content {
    padding: 42px;
  }
  .about-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 50px;
  }
  .about-card > div:last-child > p:first-child {
    margin-top: 0;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - 28px);
  }
  .nav-wrap {
    height: 70px;
  }
  .brand img {
    width: 156px;
  }
  .site-nav {
    top: 70px;
  }
  .hero-art {
    height: 330px;
    margin-top: 70px;
    background-position: 65% center;
  }
  .hero-copy {
    padding-top: 12px;
  }
  h1 {
    font-size: 42px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }
  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    text-align: left;
    width: max-content;
    margin: 35px auto 0;
  }
  .section {
    padding: 78px 0;
  }
  .intro {
    padding: 55px 0;
  }
  .intro h2 {
    font-size: 32px;
  }
  .feature-grid {
    display: block;
  }
  .feature {
    margin-bottom: 14px;
    min-height: 310px;
    padding: 28px;
  }
  .feature-wide {
    display: block;
  }
  .feature-number {
    top: 30px;
    right: 28px;
  }
  .mini-map {
    left: 28px;
  }
  .geofence-demo {
    margin-top: 25px;
    min-height: 220px;
  }
  .safety-grid {
    gap: 30px;
  }
  .phone-scene {
    min-height: 510px;
    transform: scale(0.88);
    margin: -30px;
  }
  .audience-tabs {
    justify-content: flex-start;
    overflow: auto;
    padding-bottom: 6px;
  }
  .audience-tabs button {
    white-space: nowrap;
  }
  .audience-content {
    padding: 34px 27px;
  }
  .audience-content h3 {
    font-size: 28px;
  }
  .audience-visual {
    min-height: 240px;
  }
  .about-card,
  .contact-card {
    padding: 38px 25px;
    border-radius: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .section-heading {
    margin-bottom: 38px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .button {
    transition: none;
  }
}

/* Localized navigation and bidirectional layout */
.page-main section {
  order: initial !important;
}
.inner-hero {
  padding: 172px 0 92px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(72, 187, 220, 0.2), transparent 34%),
    var(--navy-deep);
}
.inner-hero .section-kicker {
  color: var(--yellow);
}
.inner-hero h1 {
  max-width: 920px;
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
}
.inner-hero > div > p:last-child {
  max-width: 720px;
  margin: 25px 0 0;
  color: #c4d7e3;
  font-size: 18px;
}
.site-nav > a.nav-active:not(.button)::after {
  right: 0;
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
}
.language-switcher a {
  min-width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.language-switcher a.active {
  color: #fff;
  background: var(--navy);
}
html[dir="rtl"] body {
  font-family: "Noto Sans Arabic", Manrope, Arial, sans-serif;
  text-align: right;
}
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  font-family: "Noto Sans Arabic", "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0;
}
html[dir="rtl"] .hero-art {
  inset-inline: 0 27%;
  transform: scaleX(-1);
}
html[dir="rtl"] .feature-number {
  right: auto;
  left: 36px;
}
html[dir="rtl"] .mini-map {
  left: auto;
  right: 36px;
}
html[dir="rtl"] .trust-row i {
  margin-right: 0;
  margin-left: 5px;
}
html[dir="rtl"] .showcase-caption li::before {
  margin-right: 0;
  margin-left: 9px;
}
html[dir="rtl"] .text-link [aria-hidden="true"] {
  display: inline-block;
  transform: scaleX(-1);
}
html[dir="rtl"] .screen-frame img {
  object-position: top right;
}
@media (max-width: 900px) {
  .site-nav .language-switcher {
    margin-inline: auto;
  }
  html[dir="rtl"] .hero-art {
    inset: auto;
    transform: scaleX(-1);
    background-position: 65% center;
  }
}
@media (max-width: 600px) {
  .inner-hero {
    padding: 128px 0 65px;
  }
  .inner-hero > div > p:last-child {
    font-size: 16px;
  }
  html[dir="rtl"] .feature-number {
    right: auto;
    left: 28px;
  }
  html[dir="rtl"] .mini-map {
    left: auto;
    right: 28px;
  }
}
