
    :root {
      --green: #22c55e;
      --green-dark: #16a34a;
      --green-soft: #dcfce7;
      --ink: #0b2545;
      --ink-2: #132f4f;
      --text: #20364f;
      --muted: #60748a;
      --paper: #f4f6f8;
      --white: #ffffff;
      --line: #d2dce6;
      --line-dark: rgba(214, 228, 241, 0.22);
      --warning: #facc15;
      --navy-soft: rgba(11, 37, 69, 0.08);
      --nav-offset: 124px;
      --radius: 8px;
      --shadow: 0 18px 42px rgba(11, 37, 69, 0.14);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background: var(--paper);
      font-family: "Aptos", "Segoe UI", sans-serif;
      text-rendering: optimizeLegibility;
    }

    .toast-region {
      position: fixed;
      right: 1rem;
      top: 1rem;
      z-index: 1000;
      display: grid;
      gap: 0.55rem;
      width: min(92vw, 360px);
      pointer-events: none;
    }

    .toast {
      border: 1px solid rgba(11, 37, 69, 0.16);
      border-radius: 10px;
      padding: 0.72rem 0.84rem;
      background: #eef4fb;
      color: #183a5b;
      box-shadow: 0 10px 26px rgba(11, 37, 69, 0.16);
      font-size: 0.9rem;
      font-weight: 700;
      line-height: 1.35;
      opacity: 0;
      transform: translateY(-6px);
      transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .toast.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .toast-success {
      border-color: rgba(34, 197, 94, 0.36);
      background: #eaf9f0;
      color: #166534;
    }

    .toast-error {
      border-color: rgba(220, 38, 38, 0.28);
      background: #fff1f2;
      color: #991b1b;
    }

    a {
      color: inherit;
    }

    .container {
      width: min(1140px, 92%);
      margin: 0 auto;
    }

    .site-nav {
      position: sticky;
      top: 0;
      z-index: 10;
      border-bottom: 1px solid rgba(11, 37, 69, 0.08);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 12px 30px rgba(11, 37, 69, 0.06);
      backdrop-filter: blur(14px);
    }

    #top-anchor,
    #solucion,
    #beneficios,
    #equipos,
    #contacto {
      scroll-margin-top: var(--nav-offset);
    }

    .nav-inner {
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.2rem;
      padding: 0.8rem 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.72rem;
      color: var(--ink);
      font-weight: 800;
      text-decoration: none;
    }

    .brand-mark {
      width: 70px;
      height: 70px;
      display: grid;
      place-items: center;
      overflow: hidden;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .brand-logo {
      width: 70px;
      height: 70px;
      display: block;
      object-fit: contain;
      transform: scale(1.56);
      transform-origin: center;
    }

    .brand-copy {
      display: grid;
      gap: 0.12rem;
    }

    .brand-title {
      display: inline-flex;
      align-items: baseline;
      gap: 0.22rem;
      font-size: 1.12rem;
      line-height: 1;
      white-space: nowrap;
    }

    .brand-title small {
      color: inherit;
      font-size: inherit;
      font-weight: inherit;
      letter-spacing: 0;
      text-transform: none;
    }

    .nav-pills {
      display: inline-flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 0.28rem;
      margin-left: auto;
    }

    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      border: 1px solid rgba(11, 37, 69, 0.14);
      border-radius: 12px;
      background: #ffffff;
      color: var(--ink);
      cursor: pointer;
    }

    .nav-toggle span {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform 0.22s ease, opacity 0.22s ease;
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0.42rem;
      min-height: 38px;
      padding: 0.55rem 0.86rem;
      border: 1px solid transparent;
      border-radius: 14px;
      color: #40536a;
      font-size: 0.84rem;
      font-weight: 800;
      text-decoration: none;
      transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .nav-link::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.34);
      transform: scale(0.65);
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      color: var(--ink);
      border-color: rgba(11, 37, 69, 0.12);
      background: var(--white);
      box-shadow: 0 8px 18px rgba(11, 37, 69, 0.08);
      transform: translateY(-2px);
      outline: none;
    }

    .nav-link:hover::before,
    .nav-link:focus-visible::before {
      background: var(--green);
      transform: scale(1);
    }

    .nav-link.is-active,
    .nav-link[aria-current="true"] {
      color: var(--ink);
      background: var(--white);
      border-color: rgba(11, 37, 69, 0.1);
      box-shadow: 0 8px 18px rgba(11, 37, 69, 0.06);
    }

    .nav-link.is-active::before,
    .nav-link[aria-current="true"]::before {
      background: var(--green);
      transform: scale(1);
    }

    .hero-actions,
    .cta-actions {
      display: flex;
      align-items: center;
      gap: 0.68rem;
      flex-wrap: wrap;
    }

    .nav-link-access {
      margin-left: 0.28rem;
      color: var(--white);
      background: var(--ink);
      border-color: rgba(11, 37, 69, 0.28);
      box-shadow: 0 8px 18px rgba(11, 37, 69, 0.18);
    }

    .nav-link-access::before {
      background: rgba(255, 255, 255, 0.56);
      transform: scale(1);
    }

    .nav-link-access:hover,
    .nav-link-access:focus-visible {
      color: var(--white);
      background: var(--ink-2);
      border-color: rgba(11, 37, 69, 0.38);
      box-shadow: 0 10px 20px rgba(11, 37, 69, 0.24);
    }

    .nav-link-access:hover::before,
    .nav-link-access:focus-visible::before {
      background: var(--green-soft);
    }

    @media (max-width: 1180px) {
      :root {
        --nav-offset: 168px;
      }

      .nav-inner {
        justify-content: center;
      }

      .nav-pills {
        order: 3;
        width: 100%;
        justify-content: center;
      }
    }

    .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 0.68rem 1.08rem;
      font-size: 0.92rem;
      font-weight: 800;
      text-decoration: none;
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-2px);
      outline: none;
    }

    .btn-primary {
      color: var(--white);
      background: var(--green);
      border-color: var(--green-dark);
      box-shadow: 0 10px 22px rgba(34, 197, 94, 0.24);
      animation: buttonBreath 5.2s ease-in-out infinite;
    }

    .btn-primary:hover {
      background: var(--green-dark);
    }

    .hero {
      position: relative;
      min-height: 650px;
      overflow: hidden;
      color: var(--white);
      background: var(--ink);
      isolation: isolate;
    }

    .hero > .container,
    .capabilities > .container,
    .passenger > .container,
    .demo-section > .container {
      position: relative;
      z-index: 1;
    }

    .ambient-artifacts {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .artifact {
      position: absolute;
      display: block;
      color: rgba(34, 197, 94, 0.34);
      opacity: 0.46;
      animation: artifactDrift 8s ease-in-out infinite;
      animation-delay: var(--delay, 0s);
      translate: 0 0;
    }

    .artifact-muted {
      color: rgba(11, 37, 69, 0.16);
    }

    .artifact-light {
      color: rgba(220, 232, 244, 0.24);
    }

    .artifact-stop {
      width: 13px;
      height: 13px;
      border: 2px solid currentColor;
      border-radius: 999px;
      box-shadow: 0 0 0 7px color-mix(in srgb, currentColor 18%, transparent);
    }

    .artifact-pin {
      width: 18px;
      height: 18px;
      border: 2px solid currentColor;
      border-radius: 999px;
    }

    .artifact-pin::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 100%;
      width: 2px;
      height: 12px;
      border-radius: 999px;
      background: currentColor;
      transform: translateX(-50%);
    }

    .artifact-a {
      left: 6%;
      top: 18%;
      --dx: 14px;
      --dy: -10px;
    }

    .artifact-b {
      right: 9%;
      top: 16%;
      --dx: -12px;
      --dy: 12px;
      --delay: -2.2s;
    }

    .artifact-c {
      left: 18%;
      bottom: 18%;
      --dx: 10px;
      --dy: 14px;
      --delay: -4.8s;
    }

    .artifact-d {
      right: 19%;
      bottom: 14%;
      --dx: -14px;
      --dy: -8px;
      --delay: -1.4s;
    }

    .artifact-e {
      left: 45%;
      top: 10%;
      --dx: 9px;
      --dy: 12px;
      --delay: -3.4s;
    }

    .artifact-f {
      right: 32%;
      top: 31%;
      --dx: -8px;
      --dy: 10px;
      --delay: -5.6s;
    }

    .artifact-g {
      left: 31%;
      bottom: 33%;
      --dx: 12px;
      --dy: -6px;
      --delay: -6.4s;
    }

    .artifact-h {
      right: 44%;
      bottom: 20%;
      --dx: -10px;
      --dy: -12px;
      --delay: -7.2s;
    }

    .artifact-i {
      left: 58%;
      top: 24%;
      --dx: 8px;
      --dy: 11px;
      --delay: -8s;
    }

    .artifact-j {
      right: 8%;
      bottom: 38%;
      --dx: -7px;
      --dy: 13px;
      --delay: -4.2s;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.2;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='M0 17.5h18M17.5 0v18' stroke='%23ffffff' stroke-opacity='.55' stroke-width='.5'/%3E%3C/svg%3E");
      z-index: -3;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 1px;
      background: var(--line-dark);
    }

    .hero-inner {
      position: relative;
      min-height: 650px;
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
      align-items: center;
      gap: 2.4rem;
      padding: 3rem 0 2.2rem;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 660px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.48rem;
      margin: 0 0 0.95rem;
      color: #b7c7d8;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .signal {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.46);
      animation: ping 2.4s ease-out infinite;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    .hero h1 {
      margin-bottom: 0.8rem;
      color: var(--white);
      font-size: clamp(3rem, 5.2vw, 3.65rem);
      line-height: 1.06;
      letter-spacing: 0;
      max-width: 18ch;
    }

    .hero-lead {
      max-width: 54ch;
      margin-bottom: 1.25rem;
      color: #d7e3ef;
      font-size: 1.05rem;
      line-height: 1.58;
    }

    .hero-proof {
      max-width: 48ch;
      margin: 1rem 0 0;
      color: #b8c8d8;
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.7rem;
      margin-top: 0.9rem;
      max-width: 100%;
    }

    .metric {
      min-height: 92px;
      border: 1px solid var(--line-dark);
      border-radius: var(--radius);
      padding: 0.72rem;
      background: rgba(255, 255, 255, 0.06);
      box-shadow: 0 12px 24px rgba(11, 37, 69, 0);
      transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
    }

    .metric:hover {
      transform: translateY(-6px) scale(1.01);
      border-color: rgba(34, 197, 94, 0.52);
      background: rgba(255, 255, 255, 0.1);
      box-shadow: 0 18px 34px rgba(3, 14, 28, 0.24);
    }

    .metric strong {
      display: block;
      margin-bottom: 0.26rem;
      color: var(--white);
      font-size: 1.06rem;
      line-height: 1.1;
    }

    .metric span {
      color: #b8c8d8;
      font-size: 0.8rem;
      line-height: 1.32;
    }

    .capabilities {
      position: relative;
      overflow: hidden;
      padding-top: 1.7rem;
      padding-bottom: 1.7rem;
    }

    .capabilities .artifact {
      opacity: 0.58;
    }

    .capabilities .section-intro {
      max-width: 56ch;
      margin-bottom: 1rem;
      color: #4f6277;
    }

    .capabilities h2 {
      max-width: 44ch;
      line-height: 1.14;
      text-wrap: balance;
      margin-bottom: 0.7rem;
    }

    .capabilities > .container > h2,
    .capabilities > .container > .section-intro {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .capabilities .metric {
      background: var(--white);
      border-color: var(--line);
      box-shadow: 0 14px 26px rgba(11, 37, 69, 0.1);
    }

    .capabilities .metric:hover {
      background: var(--white);
      border-color: rgba(34, 197, 94, 0.56);
      box-shadow: 0 18px 34px rgba(11, 37, 69, 0.16);
    }

    .capabilities .metric strong {
      color: var(--ink);
    }

    .capabilities .metric span {
      color: var(--muted);
    }

    .solution-route {
      position: relative;
      margin-top: 1.1rem;
      padding: 0.8rem 0 0.3rem;
    }

    .reveal-ready .solution-route[data-route-draw] .solution-route-base,
    .reveal-ready .solution-route[data-route-draw] .solution-route-live,
    .reveal-ready .solution-route[data-route-draw] .solution-route-node {
      opacity: 0;
    }

    .reveal-ready .solution-route[data-route-draw].is-route-visible .solution-route-base:not(.solution-route-segment) {
      animation: routeLineFade 0.65s ease both;
    }

    .reveal-ready .solution-route[data-route-draw].is-route-visible .solution-route-live:not(.solution-route-segment) {
      animation: routeLineFade 0.65s ease both, solutionFlow 2.2s linear 0.65s infinite;
    }

    .reveal-ready .solution-route[data-route-draw].is-route-visible .solution-route-segment {
      animation: routeSegmentAppear 0.34s ease both var(--segment-delay, 0s);
    }

    .reveal-ready .solution-route[data-route-draw].is-route-visible .solution-route-live.solution-route-segment {
      animation:
        routeSegmentAppear 0.34s ease both var(--segment-delay, 0s),
        solutionFlow 2.2s linear calc(var(--segment-delay, 0s) + 0.34s) infinite;
    }

    .reveal-ready .solution-route[data-route-draw].is-route-visible .solution-route-node {
      animation: routeNodePop 0.48s ease both;
      animation-delay: var(--node-delay, 0.22s);
    }

    .solution-route-line {
      position: absolute;
      inset: 0 0 auto 0;
      width: 100%;
      height: 380px;
      pointer-events: none;
      z-index: 0;
      transform: translateZ(0);
    }

    .solution-route-base {
      fill: none;
      stroke: rgba(78, 187, 44, 0.22);
      stroke-width: 5;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 14 10;
      shape-rendering: geometricPrecision;
      vector-effect: non-scaling-stroke;
    }

    .solution-route-live {
      fill: none;
      stroke: #4ebb2c;
      stroke-width: 5;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 14 10;
      shape-rendering: geometricPrecision;
      vector-effect: non-scaling-stroke;
      will-change: stroke-dashoffset;
      animation: solutionFlow 2.2s linear infinite;
    }

    .solution-route-node {
      fill: #4ebb2c;
      filter: drop-shadow(0 0 4px rgba(78, 187, 44, 0.46));
    }

    .solution-route-node:nth-of-type(4) {
      --node-delay: 0.32s;
    }

    .solution-route-node:nth-of-type(5) {
      --node-delay: 0.42s;
    }

    .solution-route-node:nth-of-type(6) {
      --node-delay: 0.52s;
    }

    .solution-route-node:nth-of-type(7) {
      --node-delay: 0.62s;
    }

    .solution-route-node:nth-of-type(8) {
      --node-delay: 0.72s;
    }

    .solution-route-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      grid-template-areas:
        "fleet contract plan"
        "monitor notify report";
      row-gap: 3.2rem;
      column-gap: 1.9rem;
      align-items: start;
      padding-top: 2px;
    }

    .solution-card {
      position: relative;
      min-height: 126px;
      padding: 0.84rem 0.96rem;
      width: 92%;
      margin: 0 auto;
      border: 1px solid #7fd463;
      border-radius: 12px;
      background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
      box-shadow: 0 10px 22px rgba(11, 37, 69, 0.09);
      overflow: hidden;
      transform-origin: center center;
      transform: translateY(0) scale(1);
      transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease, background 0.24s ease;
    }

    .solution-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(180deg, rgba(78, 187, 44, 0.06) 0%, rgba(78, 187, 44, 0.02) 100%);
      opacity: 0;
      transition: opacity 0.24s ease;
      pointer-events: none;
    }

    .solution-card:hover {
      border-color: #4ebb2c;
      background: linear-gradient(180deg, #ffffff 0%, #f3faff 100%);
      box-shadow: 0 24px 44px rgba(11, 37, 69, 0.24), 0 14px 24px rgba(78, 187, 44, 0.2);
      transform: translateY(-8px) scale(1.045);
    }

    .solution-card:hover::before {
      opacity: 1;
    }

    .solution-card strong {
      display: block;
      margin-bottom: 0.34rem;
      color: var(--ink);
      font-size: 0.95rem;
      line-height: 1.2;
      letter-spacing: 0;
    }

    .solution-card span {
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.45;
    }

    .solution-card-fleet {
      grid-area: fleet;
    }

    .solution-card-contract {
      grid-area: contract;
    }

    .solution-card-plan {
      grid-area: plan;
    }

    .solution-card-monitor {
      grid-area: monitor;
    }

    .solution-card-report {
      grid-area: report;
      box-shadow: 0 12px 26px rgba(11, 37, 69, 0.14);
    }

    .solution-card-notify {
      grid-area: notify;
    }

    .solution-card-report strong,
    .solution-card-notify strong {
      font-size: 0.95rem;
      color: #111827;
    }

    .solution-card-report span,
    .solution-card-notify span {
      color: #111827;
      font-size: 0.84rem;
      line-height: 1.45;
    }

    .operation-shift {
      position: relative;
      overflow: hidden;
      padding-top: 2.1rem;
      padding-bottom: 2.4rem;
      background: linear-gradient(180deg, #f5f7fa 0%, #eef3f8 100%);
      border-top: 1px solid rgba(11, 37, 69, 0.06);
      border-bottom: 1px solid rgba(11, 37, 69, 0.06);
    }

    .operation-shift-header {
      text-align: center;
      max-width: 860px;
      margin: 0 auto 1.5rem;
    }

    .operation-shift-header h2 {
      margin: 0;
      color: var(--ink);
      font-size: clamp(2rem, 4.2vw, 3.35rem);
      line-height: 1.02;
    }

    .operation-shift-divider {
      display: inline-block;
      width: 108px;
      height: 6px;
      margin: 1rem auto 0.95rem;
      border-radius: 999px;
      background: linear-gradient(90deg, #16a34a, #34d399);
      transform-origin: center;
    }

    .operation-shift-header p {
      margin: 0;
      color: #526a83;
      font-size: 1.02rem;
      line-height: 1.58;
    }

    .operation-shift-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .operation-shift-card {
      display: grid;
      grid-template-columns: 92px 1fr;
      gap: 1rem;
      align-items: center;
      min-height: 186px;
      border: 1px solid rgba(11, 37, 69, 0.08);
      border-radius: 14px;
      background: #ffffff;
      box-shadow: 0 14px 26px rgba(11, 37, 69, 0.08);
      padding: 1.2rem 1.25rem;
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .operation-shift-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 34px rgba(11, 37, 69, 0.14);
      border-color: rgba(11, 37, 69, 0.18);
    }

    .operation-shift-icon {
      width: 84px;
      height: 84px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 1.86rem;
      font-weight: 900;
      line-height: 1;
    }

    .reveal-ready .operation-shift-header .operation-shift-divider {
      transform: scaleX(0.2);
      opacity: 0;
    }

    .reveal-ready .operation-shift-header.is-visible .operation-shift-divider {
      animation: operationDividerReveal 0.55s ease both 0.16s;
    }

    .reveal-ready .operation-shift-card .operation-shift-icon {
      transform: scale(0.88);
      opacity: 0.88;
    }

    .reveal-ready .operation-shift-card.is-visible .operation-shift-icon {
      animation: operationIconPop 0.48s ease both;
    }

    .operation-shift-card strong {
      display: block;
      margin-bottom: 0.45rem;
      font-size: 1.18rem;
      line-height: 1.16;
    }

    .operation-shift-card p {
      margin: 0;
      color: #22384d;
      font-size: 1rem;
      line-height: 1.42;
    }

    .operation-shift-card-problem strong {
      color: #dc2626;
    }

    .operation-shift-card-problem .operation-shift-icon {
      color: #ef4444;
      border: 1px solid rgba(239, 68, 68, 0.28);
      background: rgba(254, 226, 226, 0.76);
    }

    .operation-shift-card-solution strong {
      color: #16a34a;
    }

    .operation-shift-card-solution .operation-shift-icon {
      color: #16a34a;
      border: 1px solid rgba(22, 163, 74, 0.22);
      background: rgba(220, 252, 231, 0.82);
    }

    @keyframes solutionFlow {
      from {
        stroke-dashoffset: 0;
      }

      to {
        stroke-dashoffset: -24;
      }
    }

    @keyframes routeLineFade {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes routeSegmentAppear {
      from {
        opacity: 0;
        stroke-dashoffset: 24;
      }

      to {
        opacity: 1;
        stroke-dashoffset: 0;
      }
    }

    @keyframes routeNodePop {
      from {
        opacity: 0;
        transform: scale(0.3);
        transform-origin: center;
      }

      to {
        opacity: 1;
        transform: scale(1);
        transform-origin: center;
      }
    }

    .metric,
    .proof-point,
    .use-case-card,
    .role-card,
    .insight-panel,
    .cta {
      position: relative;
      isolation: isolate;
      overflow: hidden;
    }

    .metric::after,
    .proof-point::after,
    .role-card::after,
    .insight-panel::after,
    .cta::after {
      content: "";
      position: absolute;
      inset: -40% auto auto -30%;
      width: 150px;
      height: 180%;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
      opacity: 0;
      transform: rotate(18deg) translateX(-26px);
      transition: opacity 0.28s ease, transform 0.42s ease;
      pointer-events: none;
      z-index: -1;
    }

    .metric:hover::after,
    .proof-point:hover::after,
    .role-card:hover::after,
    .insight-panel:hover::after,
    .cta:hover::after {
      opacity: 1;
      transform: rotate(18deg) translateX(28px);
    }

    .command-scene {
      position: relative;
      width: 100%;
      min-height: 520px;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .smart-city-scene {
      isolation: isolate;
      overflow: visible;
    }

    .hero-map-shell {
      position: relative;
      width: min(100%, 760px);
      padding: 1rem;
      border: 1px solid rgba(214, 228, 241, 0.16);
      border-radius: 30px;
      background:
        linear-gradient(180deg, rgba(18, 53, 87, 0.94), rgba(8, 28, 52, 0.96)),
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.18), transparent 42%);
      box-shadow: 0 34px 60px rgba(3, 14, 28, 0.28);
      animation: phoneFloat 7s ease-in-out infinite;
    }

    .hero-map-shell::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(214, 228, 241, 0.08);
      border-radius: 24px;
      pointer-events: none;
    }

    .hero-map-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 0.95rem;
      padding: 0.3rem 0.2rem 0;
      color: #d7e3ef;
    }

    .hero-map-title {
      display: grid;
      gap: 0.18rem;
    }

    .hero-map-title strong {
      font-size: 1rem;
      color: var(--white);
    }

    .hero-map-title span {
      font-size: 0.8rem;
      color: #9fb4c9;
    }

    .hero-map-status {
      display: inline-flex;
      align-items: center;
      gap: 0.48rem;
      padding: 0.5rem 0.82rem;
      border: 1px solid rgba(34, 197, 94, 0.24);
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.14);
      font-size: 0.77rem;
      font-weight: 800;
      letter-spacing: 0.02em;
    }

    .hero-map-status::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.42);
      animation: ping 2.4s ease-out infinite;
    }

    .hero-map-stage {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(214, 228, 241, 0.12);
      border-radius: 24px;
      background:
        radial-gradient(circle at 22% 18%, rgba(93, 155, 229, 0.2), transparent 24%),
        radial-gradient(circle at 82% 24%, rgba(34, 197, 94, 0.22), transparent 26%),
        linear-gradient(180deg, rgba(232, 242, 255, 0.06), rgba(232, 242, 255, 0.02)),
        #103152;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .hero-map-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(214, 228, 241, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(214, 228, 241, 0.07) 1px, transparent 1px);
      background-size: 40px 40px;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.38));
      pointer-events: none;
    }

    .hero-map-svg {
      position: relative;
      display: block;
      width: 100%;
      height: auto;
    }

    .map-route-base {
      fill: none;
      stroke: rgba(214, 228, 241, 0.3);
      stroke-width: 24;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .map-route-live {
      fill: none;
      stroke: var(--green);
      stroke-width: 8;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 14 12;
      filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.54));
      animation: routeTrace 3.4s linear infinite;
    }

    .map-stop {
      fill: #e8f2ff;
      stroke: #5d9be5;
      stroke-width: 5;
    }

    .map-stop-core {
      fill: #5d9be5;
    }

    .map-stop-label,
    .map-note-title,
    .map-note-copy,
    .map-kpi-label,
    .map-kpi-value,
    .map-chip {
      font-family: "Aptos", "Segoe UI", sans-serif;
    }

    .map-stop-label {
      fill: #e8f2ff;
      font-size: 15px;
      font-weight: 700;
    }

    .map-ghost-route {
      fill: none;
      stroke: rgba(93, 155, 229, 0.52);
      stroke-width: 3;
      stroke-dasharray: 6 10;
      stroke-linecap: round;
      animation: dataFlow 2.6s linear infinite;
    }

    .map-note {
      fill: rgba(8, 28, 52, 0.88);
      stroke: rgba(214, 228, 241, 0.18);
      stroke-width: 1.4;
    }

    .map-note-title {
      fill: var(--white);
      font-size: 17px;
      font-weight: 800;
    }

    .map-note-copy {
      fill: #aac0d6;
      font-size: 13px;
    }

    .map-chip-bg {
      fill: rgba(34, 197, 94, 0.16);
      stroke: rgba(34, 197, 94, 0.3);
      stroke-width: 1.2;
    }

    .map-chip {
      fill: #dffbea;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .map-kpi-card {
      fill: rgba(255, 255, 255, 0.06);
      stroke: rgba(214, 228, 241, 0.14);
      stroke-width: 1.2;
    }

    .map-kpi-value {
      fill: var(--white);
      font-size: 22px;
      font-weight: 800;
    }

    .map-kpi-label {
      fill: #a7bdd2;
      font-size: 12px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .map-bus-shadow {
      fill: rgba(3, 14, 28, 0.28);
    }

    .map-bus-body {
      fill: #e8f2ff;
      stroke: #5d9be5;
      stroke-width: 1.4;
    }

    .map-bus-window {
      fill: #5d9be5;
    }

    .map-bus-wheel {
      fill: #081c34;
    }

    .map-bus-group {
      transform-box: fill-box;
      transform-origin: center;
      animation: busBob 2.6s ease-in-out infinite;
    }

    .hero-map-footer {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 0.88rem;
      margin-top: 0.92rem;
    }

    .hero-map-card {
      padding: 0.95rem 1rem;
      border: 1px solid rgba(214, 228, 241, 0.1);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.05);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
    }

    .hero-map-card strong {
      display: block;
      margin-bottom: 0.3rem;
      color: var(--white);
      font-size: 0.93rem;
    }

    .hero-map-card p {
      margin-bottom: 0;
      color: #9fb4c9;
      font-size: 0.8rem;
      line-height: 1.42;
    }

    .hero-map-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
    }

    .hero-map-badge {
      display: inline-flex;
      align-items: center;
      padding: 0.42rem 0.68rem;
      border: 1px solid rgba(214, 228, 241, 0.12);
      border-radius: 999px;
      color: #d7e3ef;
      background: rgba(255, 255, 255, 0.06);
      font-size: 0.76rem;
      font-weight: 700;
    }

    .hero-app-showcase {
      position: relative;
      width: min(100%, 780px);
      min-height: 540px;
      perspective: 1600px;
      animation: phoneFloat 7s ease-in-out infinite;
    }

    .app-shot {
      position: absolute;
      overflow: hidden;
      border: 1px solid rgba(214, 228, 241, 0.18);
      border-radius: 22px;
      color: #24364a;
      background: #f5f7fb;
      box-shadow: 0 32px 70px rgba(3, 14, 28, 0.36);
      transform-style: preserve-3d;
    }

    .app-shot-dashboard {
      inset: 0 auto auto 0;
      width: 72%;
      min-height: 455px;
      z-index: 2;
      transform: rotateY(-10deg) rotateX(3deg);
    }

    .app-shot-trafic {
      right: 0;
      bottom: 4px;
      width: 56%;
      min-height: 370px;
      z-index: 3;
      transform: translateY(22px) rotateY(12deg) rotateX(2deg);
    }

    .app-shot-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      padding: 0.82rem 0.95rem;
      color: #d7e3ef;
      background: #0b2545;
    }

    .app-shot-brand {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      min-width: 0;
      font-size: 0.78rem;
      font-weight: 800;
    }

    .app-shot-brand::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.14);
    }

    .app-shot-live {
      display: inline-flex;
      align-items: center;
      gap: 0.34rem;
      white-space: nowrap;
      padding: 0.34rem 0.58rem;
      border: 1px solid rgba(34, 197, 94, 0.26);
      border-radius: 999px;
      color: #dffbea;
      background: rgba(34, 197, 94, 0.12);
      font-size: 0.7rem;
      font-weight: 800;
    }

    .app-shot-body {
      padding: 1rem;
    }

    .app-shot-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.85rem;
      margin-bottom: 0.9rem;
    }

    .app-shot-title {
      display: grid;
      gap: 0.18rem;
    }

    .app-shot-title strong {
      color: var(--ink);
      font-size: 1rem;
      line-height: 1.15;
    }

    .app-shot-title span {
      color: #60748a;
      font-size: 0.72rem;
      line-height: 1.25;
    }

    .app-shot-chip {
      white-space: nowrap;
      padding: 0.38rem 0.58rem;
      border: 1px solid #d2dce6;
      border-radius: 999px;
      color: #40536a;
      background: #ffffff;
      font-size: 0.68rem;
      font-weight: 800;
    }

    .app-kpi-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.58rem;
      margin-bottom: 0.8rem;
    }

    .app-kpi {
      min-height: 72px;
      padding: 0.62rem;
      border: 1px solid #dce5ee;
      border-radius: 12px;
      background: #ffffff;
      box-shadow: 0 10px 20px rgba(11, 37, 69, 0.07);
    }

    .app-kpi strong {
      display: block;
      color: var(--ink);
      font-size: 1.25rem;
      line-height: 1;
    }

    .app-kpi span {
      display: block;
      margin-top: 0.38rem;
      color: #60748a;
      font-size: 0.66rem;
      font-weight: 800;
      line-height: 1.22;
    }


    .app-panel-grid {
      display: grid;
      grid-template-columns: 1.4fr 0.9fr;
      gap: 0.72rem;
    }

    .app-panel {
      border: 1px solid #dce5ee;
      border-radius: 14px;
      background: #ffffff;
      box-shadow: 0 12px 22px rgba(11, 37, 69, 0.07);
    }

    .app-panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.6rem;
      padding: 0.7rem 0.78rem 0;
      color: var(--ink);
      font-size: 0.78rem;
      font-weight: 800;
    }

    .app-chart {
      display: flex;
      align-items: end;
      gap: 0.38rem;
      height: 150px;
      padding: 0.8rem 0.8rem 0.9rem;
    }

    .app-chart span {
      flex: 1;
      min-width: 0;
      border-radius: 999px 999px 4px 4px;
      background: linear-gradient(180deg, #22c55e, #5d9be5);
      box-shadow: 0 8px 18px rgba(34, 197, 94, 0.18);
    }

    .app-alert-list {
      display: grid;
      gap: 0.55rem;
      padding: 0.72rem;
    }

    .app-alert-row {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 0.5rem;
      color: #40536a;
      font-size: 0.68rem;
      font-weight: 800;
    }

    .app-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--green);
    }

    .app-dot-warning {
      background: var(--warning);
    }

    .app-dot-info {
      background: #5d9be5;
    }

    .trafic-mini-map {
      position: relative;
      height: 164px;
      margin-bottom: 0.78rem;
      overflow: hidden;
      border: 1px solid #dce5ee;
      border-radius: 14px;
      background: #f3eee7;
    }

    .trafic-map-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: saturate(0.9) contrast(0.98);
    }

    .trafic-mini-map::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(245, 247, 251, 0.08), rgba(245, 247, 251, 0.28));
      pointer-events: none;
    }

    .trafic-table-preview {
      display: grid;
      gap: 0.48rem;
    }

    .trafic-row-preview {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 0.65rem;
      align-items: center;
      padding: 0.62rem 0.68rem;
      border: 1px solid #dce5ee;
      border-radius: 12px;
      background: #ffffff;
      color: #40536a;
      font-size: 0.68rem;
      font-weight: 800;
      box-shadow: 0 10px 18px rgba(11, 37, 69, 0.06);
    }

    .trafic-row-preview small {
      display: block;
      margin-top: 0.18rem;
      color: #60748a;
      font-size: 0.62rem;
      font-weight: 700;
    }

    .trafic-state {
      padding: 0.3rem 0.48rem;
      border-radius: 999px;
      color: #137333;
      background: #dcfce7;
      font-size: 0.62rem;
    }

    .trafic-state-warning {
      color: #7a4d00;
      background: #fef3c7;
    }

    .passenger-node::before {
      content: "";
      position: absolute;
      left: 7px;
      top: 17px;
      width: 12px;
      height: 18px;
      border-radius: 7px 7px 4px 4px;
      background: #5d9be5;
      box-shadow: 0 8px 0 -5px rgba(3, 14, 28, 0.42);
    }

    .passenger-node:nth-child(2)::before {
      background: var(--green);
    }

    .passenger-avatar {
      position: absolute;
      top: 3px;
      left: 5px;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: #d7e9fb;
      box-shadow: inset 0 -4px 0 #5d9be5;
    }

    .passenger-phone {
      position: absolute;
      right: -3px;
      top: 15px;
      width: 8px;
      height: 14px;
      border: 1px solid rgba(255, 255, 255, 0.78);
      border-radius: 3px;
      background: rgba(34, 197, 94, 0.22);
      box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
      animation: receivePulse 2.1s ease-out infinite;
    }

    .section {
      padding: 3rem 0;
    }

    .section-tight {
      padding: 2.2rem 0;
    }

    .section h2 {
      position: relative;
      margin-bottom: 0.55rem;
      color: var(--ink);
      font-size: 2rem;
      line-height: 1.12;
      letter-spacing: 0;
    }

    .section h2::after {
      content: "";
      display: block;
      width: 46px;
      height: 3px;
      margin-top: 0.62rem;
      border-radius: 999px;
      background: var(--green);
      transform: scaleX(0.62);
      transform-origin: left center;
      transition: transform 0.36s ease, opacity 0.36s ease;
    }

    .section:hover h2::after {
      transform: scaleX(1);
    }

    .section-intro {
      max-width: 68ch;
      margin-bottom: 1.4rem;
      color: var(--muted);
      line-height: 1.54;
    }

    .proof-band {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 246, 248, 0.98));
    }

    .proof-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
      gap: 1.35rem;
      align-items: stretch;
    }

    .proof-copy {
      display: grid;
      align-content: start;
    }

    .proof-kicker {
      margin: 0 0 0.9rem;
      color: var(--green-dark);
      font-size: 0.8rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .proof-stack {
      display: grid;
      gap: 0.8rem;
    }

    .proof-point {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 0.85rem 0.95rem;
      background: rgba(255, 255, 255, 0.78);
      box-shadow: 0 10px 24px rgba(11, 37, 69, 0.06);
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
    }

    .proof-point:hover {
      transform: translateY(-5px);
      border-color: rgba(34, 197, 94, 0.24);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 18px 36px rgba(11, 37, 69, 0.12);
    }

    .proof-point:hover strong,
    .role-card:hover h3,
    .insight-panel:hover h3 {
      color: var(--green-dark);
    }

    .proof-point strong {
      display: block;
      margin-bottom: 0.28rem;
      color: var(--ink);
      font-size: 0.96rem;
    }

    .proof-point p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.45;
    }

    .experience-panel {
      margin-top: 0.85rem;
      border-left: 4px solid var(--green);
      padding: 0.9rem 0 0.9rem 1rem;
      background: rgba(34, 197, 94, 0.08);
    }

    .experience-panel strong {
      display: block;
      margin-bottom: 0.24rem;
      color: var(--ink);
      font-size: 0.94rem;
    }

    .experience-panel p {
      margin-bottom: 0;
      color: var(--text);
      line-height: 1.46;
    }

    .use-case-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.85rem;
    }

    .use-case-card {
      position: relative;
      height: 220px;
      padding: 0;
      perspective: 1200px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: transparent;
      box-shadow: 0 14px 30px rgba(11, 37, 69, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    }

    .use-case-card:hover {
      transform: translateY(-8px);
      border-color: rgba(34, 197, 94, 0.56);
      box-shadow: 0 24px 46px rgba(11, 37, 69, 0.16);
    }

    .use-case-card::after {
      content: "";
      position: absolute;
      right: 1rem;
      bottom: 1rem;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(34, 197, 94, 0.26);
      border-radius: 50%;
      opacity: 0.7;
      transform: scale(0.78);
      transition: transform 0.32s ease, opacity 0.32s ease;
    }

    .use-case-card:hover::after {
      opacity: 1;
      transform: scale(1);
    }

    .use-case-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .use-case-card:hover .use-case-card-inner {
      transform: rotateY(180deg);
    }

    .use-case-face {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
      height: 100%;
      gap: 0.85rem;
      padding: 1rem;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }

    .use-case-face::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 5px;
      background: var(--green);
      opacity: 0.95;
    }

    .use-case-face-front {
      background: linear-gradient(180deg, #ffffff, #f8fcfa);
    }

    .use-case-face-back {
      color: var(--white);
      background: linear-gradient(145deg, #0f2d4f, #183b5f);
      transform: rotateY(180deg);
    }

    .use-case-head {
      display: flex;
      align-items: center;
      gap: 0.78rem;
    }

    .use-case-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      border: 1px solid rgba(34, 197, 94, 0.22);
      border-radius: 14px;
      color: var(--green-dark);
      background: rgba(34, 197, 94, 0.1);
      font-size: 1.18rem;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    .use-case-card h3 {
      margin-bottom: 0;
      color: var(--ink);
      font-size: 1rem;
    }

    .use-case-card p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 0.96rem;
      line-height: 1.5;
    }

    .use-case-face-back h3,
    .use-case-face-back p,
    .use-case-face-back li {
      color: var(--white);
    }

    .use-case-back-copy {
      margin: 0;
      color: #d8e7f5;
      font-size: 0.92rem;
      line-height: 1.52;
    }

    .use-case-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .use-case-tags li {
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 999px;
      padding: 0.26rem 0.55rem;
      color: #d8e7f5;
      background: rgba(255, 255, 255, 0.08);
      font-size: 0.75rem;
      line-height: 1.2;
    }

    .flow {
      display: grid;
      grid-template-columns: 0.7fr 1.3fr;
      gap: 2.5rem;
      align-items: start;
    }

    .capabilities .flow {
      margin-top: 3rem;
    }

    .flow-list {
      display: grid;
      gap: 0.55rem;
    }

    .flow-step {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 0.85rem;
      align-items: start;
      padding: 0.78rem 0;
      border-top: 1px solid var(--line);
      transition: transform 0.22s ease, border-color 0.22s ease;
    }

    .flow-step:hover {
      transform: translateX(4px);
      border-color: rgba(34, 197, 94, 0.45);
    }

    .step-index {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--ink);
      background: var(--green-soft);
      font-weight: 900;
    }

    .flow-step h3 {
      margin-bottom: 0.22rem;
      color: var(--ink);
      font-size: 1.02rem;
    }

    .flow-step p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.45;
    }

    .roles-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.85rem;
    }

    .role-card {
      min-height: 124px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1rem;
      background: var(--white);
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }

    .role-card:hover {
      transform: translateY(-6px);
      border-color: rgba(34, 197, 94, 0.28);
      box-shadow: 0 18px 34px rgba(11, 37, 69, 0.14);
    }

    .role-card h3 {
      margin-bottom: 0.38rem;
      color: var(--ink);
      font-size: 1rem;
    }

    .role-card p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 0.93rem;
      line-height: 1.46;
    }

    .passenger {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background: var(--ink-2);
    }

    .passenger-grid {
      display: grid;
      grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
      padding-top: 0;
    }

    .passenger h2,
    .passenger h3 {
      color: var(--white);
    }

    .passenger .section-intro,
    .passenger p,
    .passenger li {
      color: #c5d6e7;
    }

    .passenger-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin: 1rem 0 0;
      padding: 0;
      list-style: none;
    }

    .passenger-list li {
      border: 1px solid var(--line-dark);
      border-radius: 999px;
      padding: 0.32rem 0.62rem;
      background: rgba(255, 255, 255, 0.08);
      line-height: 1.25;
    }

    .passenger-checklist {
      display: grid;
      gap: 0.5rem;
      margin-top: 1rem;
      max-width: 42ch;
    }

    .passenger-checklist li {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      border: 0;
      border-radius: 0;
      padding: 0;
      background: transparent;
      color: #e9f4ff;
      font-weight: 700;
      line-height: 1.32;
    }

    .passenger-checklist li::before {
      content: "✓";
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #082340;
      background: #34d399;
      font-size: 0.72rem;
      font-weight: 900;
      box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18);
    }

    .mobile-carousel {
      display: grid;
      gap: 1.2rem;
      overflow-anchor: none;
    }

    .mobile-carousel-viewport {
      overflow: hidden;
      overflow-anchor: none;
    }

    .mobile-carousel-track {
      display: flex;
      transition: transform 0.78s cubic-bezier(0.2, 0.86, 0.2, 1);
      will-change: transform;
    }

    .mobile-carousel[data-active-app="driver"] .mobile-carousel-track {
      transform: translateX(-100%);
    }

    .mobile-carousel-slide {
      flex: 0 0 100%;
      min-width: 0;
    }

    .mobile-copy-kicker {
      display: inline-flex;
      align-items: center;
      margin-bottom: 0.8rem;
      border: 1px solid rgba(34, 197, 94, 0.38);
      border-radius: 999px;
      padding: 0.3rem 0.7rem;
      color: #def7e7;
      background: rgba(34, 197, 94, 0.12);
      font-size: 0.74rem;
      font-weight: 900;
    }

    .mobile-proof-note {
      margin: 0.85rem 0 0;
      max-width: 42ch;
      color: #d7e4f1;
      font-size: 0.92rem;
      line-height: 1.45;
    }

    .mobile-suite-note {
      display: grid;
      justify-items: center;
      text-align: center;
      gap: 0.4rem;
      margin-top: 0.7rem;
    }

    .mobile-suite-note h3 {
      margin: 0;
      color: #eff7ff;
      font-size: clamp(1.1rem, 2.2vw, 1.45rem);
      line-height: 1.25;
    }

    .mobile-suite-note p {
      margin: 0;
      max-width: 72ch;
      color: #d3e1ee;
      font-size: 0.96rem;
      line-height: 1.55;
    }

    .phone-wrap {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      align-items: center;
    }

    .mobile-app-switch {
      display: inline-flex;
      align-items: center;
      justify-self: center;
      gap: 0.46rem;
      padding: 0.34rem;
      border: 1px solid rgba(214, 228, 241, 0.18);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.07);
    }

    .mobile-app-option {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 112px;
      min-height: 44px;
      border: 0;
      border-radius: 999px;
      padding: 0.48rem 1.12rem;
      color: #c5d6e7;
      background: transparent;
      cursor: pointer;
      font-family: inherit;
      font-size: 0.92rem;
      font-weight: 900;
      transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .mobile-app-option.is-active {
      color: var(--ink);
      background: var(--white);
      box-shadow: 0 10px 22px rgba(3, 14, 28, 0.2);
    }

    .mobile-app-option:hover,
    .mobile-app-option:focus-visible {
      color: var(--white);
      background: rgba(255, 255, 255, 0.12);
      outline: none;
    }

    .mobile-app-option.is-active:hover,
    .mobile-app-option.is-active:focus-visible {
      color: var(--ink);
      background: var(--white);
    }

    .mobile-phone-figure {
      display: grid;
      gap: 0.64rem;
      justify-items: center;
      align-content: start;
      margin: 0;
      transform-origin: center bottom;
      will-change: opacity, transform;
    }

    .mobile-phone-label {
      width: min(100%, 340px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      color: #e9f2fb;
      font-size: 0.96rem;
      font-weight: 900;
    }

    .mobile-app-tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 26px;
      border: 1px solid rgba(214, 228, 241, 0.32);
      border-radius: 999px;
      padding: 0.16rem 0.58rem;
      color: #d5e4f2;
      font-size: 0.7rem;
      font-weight: 800;
      white-space: nowrap;
    }

    .mobile-app-tag-live {
      border-color: rgba(34, 197, 94, 0.5);
      color: #def7e7;
      background: rgba(34, 197, 94, 0.16);
    }

    .mobile-app-phone {
      max-width: 390px;
    }

    .phone {
      width: min(100%, 390px);
      justify-self: center;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      overflow: visible;
      animation: none;
    }

    .phone.mobile-app-phone {
      animation: phoneFloat 7.2s ease-in-out infinite;
      filter: drop-shadow(0 26px 34px rgba(3, 14, 28, 0.24));
    }

    .phone-top {
      display: none;
    }

    .phone-status-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.7rem;
      color: #6b7f95;
      font-size: 0.68rem;
      font-weight: 800;
    }

    .phone-notch {
      width: 88px;
      height: 18px;
      border-radius: 999px;
      background: #0c1f35;
      margin: 0 auto;
    }

    .phone-app-label {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0.2rem 0.75rem;
      border: 1px solid #dbe6ef;
      border-radius: 999px;
      color: var(--ink);
      background: #ffffff;
      font-size: 0.72rem;
      font-weight: 900;
      box-shadow: 0 8px 16px rgba(11, 37, 69, 0.08);
    }

    .phone-body {
      display: grid;
      gap: 0;
      padding: 0;
      color: var(--text);
      background: transparent;
    }

    .phone-screenshot-window {
      width: 100%;
      height: 700px;
      border-radius: 34px;
      overflow: hidden;
      background: transparent;
      box-shadow: 0 26px 54px rgba(3, 14, 28, 0.32);
    }

    .phone-screenshot {
      width: 100%;
      height: auto;
      border-radius: 0;
      border: 0;
      background: transparent;
      display: block;
      box-shadow: none;
    }

    .phone-card {
      border: 1px solid #d7e3ee;
      border-radius: 22px;
      padding: 0.9rem;
      background: #ffffff;
      box-shadow: 0 16px 30px rgba(11, 37, 69, 0.08);
    }

    .phone-card-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0.6rem;
      margin-bottom: 0.8rem;
    }

    .phone-card-head strong {
      display: block;
      color: var(--ink);
      font-size: 0.84rem;
    }

    .phone-card-head span {
      color: #698097;
      font-size: 0.7rem;
      line-height: 1.35;
    }

    .phone-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      color: var(--green-dark);
      background: rgba(34, 197, 94, 0.12);
      font-size: 0.66rem;
      font-weight: 900;
      white-space: nowrap;
    }

    .phone-map-stage {
      position: relative;
      height: 148px;
      border-radius: 18px;
      overflow: hidden;
      background:
        radial-gradient(circle at top left, rgba(34, 197, 94, 0.14), transparent 30%),
        linear-gradient(180deg, #eef5fb, #e4edf7);
    }

    .phone-map-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.55;
      background-image: linear-gradient(rgba(11, 37, 69, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 37, 69, 0.05) 1px, transparent 1px);
      background-size: 22px 22px;
    }

    .phone-route-path {
      position: absolute;
      left: 18px;
      right: 18px;
      top: 56%;
      height: 4px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(34, 197, 94, 0.9), rgba(11, 37, 69, 0.35));
      transform: rotate(-12deg);
      transform-origin: left center;
    }

    .phone-route-path::after {
      content: "";
      position: absolute;
      left: 12%;
      right: 10%;
      top: 26px;
      height: 4px;
      border-radius: 999px;
      background: rgba(11, 37, 69, 0.18);
      transform: rotate(17deg);
      transform-origin: left center;
    }

    .phone-stop-pin,
    .phone-bus-pin {
      position: absolute;
      display: grid;
      place-items: center;
      border-radius: 50%;
    }

    .phone-stop-pin {
      width: 14px;
      height: 14px;
      border: 3px solid #ffffff;
      background: #8aa1b8;
      box-shadow: 0 8px 16px rgba(11, 37, 69, 0.14);
    }

    .phone-stop-start {
      left: 26px;
      top: 78px;
    }

    .phone-stop-end {
      right: 34px;
      top: 38px;
    }

    .phone-bus-pin {
      width: 34px;
      height: 34px;
      left: 50%;
      top: 62px;
      color: #ffffff;
      background: var(--green);
      box-shadow: 0 12px 24px rgba(34, 197, 94, 0.28);
      transform: translateX(-50%);
      font-size: 0.95rem;
    }

    .phone-map-bubble {
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.55rem 0.7rem;
      border-radius: 16px;
      color: #eff7ff;
      background: rgba(11, 37, 69, 0.82);
      backdrop-filter: blur(8px);
    }

    .phone-map-bubble strong {
      display: block;
      font-size: 0.74rem;
    }

    .phone-map-bubble span {
      font-size: 0.66rem;
      color: #c7d8ea;
    }

    .phone-summary-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.45rem;
      margin-top: 0.7rem;
    }

    .phone-summary-chip {
      border: 1px solid #dbe5ef;
      border-radius: 16px;
      padding: 0.55rem 0.45rem;
      background: #f8fbfd;
    }

    .phone-summary-chip strong {
      display: block;
      margin-bottom: 0.16rem;
      color: #5d758c;
      font-size: 0.62rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .phone-summary-chip span {
      color: var(--ink);
      font-size: 0.7rem;
      font-weight: 700;
      line-height: 1.3;
    }

    .phone-driver-list {
      display: grid;
      gap: 0.55rem;
    }

    .phone-driver-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.65rem;
      padding: 0.7rem 0.75rem;
      border: 1px solid #dbe5ef;
      border-radius: 18px;
      background: #f8fbfd;
    }

    .phone-driver-item strong {
      display: block;
      color: var(--ink);
      font-size: 0.76rem;
    }

    .phone-driver-item span {
      color: #698097;
      font-size: 0.67rem;
      line-height: 1.35;
    }

    .phone-driver-status {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 72px;
      min-height: 28px;
      padding: 0.2rem 0.5rem;
      border-radius: 999px;
      color: var(--ink);
      background: #e8f1fb;
      font-size: 0.63rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .phone-driver-status-live {
      color: var(--green-dark);
      background: rgba(34, 197, 94, 0.14);
    }

    .insight-panel {
      border: 1px solid var(--line-dark);
      border-radius: var(--radius);
      padding: 1rem;
      background: rgba(255, 255, 255, 0.08);
      transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
    }

    .insight-panel:hover {
      transform: translateY(-6px);
      border-color: rgba(34, 197, 94, 0.26);
      background: rgba(255, 255, 255, 0.12);
      box-shadow: 0 18px 34px rgba(3, 14, 28, 0.2);
    }

    .insight-panel h3 {
      margin-bottom: 0.48rem;
      font-size: 1.05rem;
    }

    .insight-panel p {
      margin-bottom: 0.9rem;
      font-size: 0.94rem;
      line-height: 1.46;
    }

    .insight-row {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.55rem 0;
      border-top: 1px solid var(--line-dark);
      color: #d7e4f1;
      font-size: 0.84rem;
    }

    .insight-row strong {
      color: var(--green);
    }

    .cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.3rem;
      background: var(--white);
      box-shadow: 0 12px 30px rgba(11, 37, 69, 0.08);
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .cta:hover {
      transform: translateY(-6px);
      border-color: rgba(34, 197, 94, 0.3);
      box-shadow: 0 20px 40px rgba(11, 37, 69, 0.14);
    }

    .cta h2 {
      margin-bottom: 0.25rem;
      font-size: 1.45rem;
    }

    .cta p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .demo-section {
      padding-bottom: 4.5rem;
      background: var(--paper);
    }

    .demo-panel {
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
      gap: 2rem;
      align-items: stretch;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 18px 42px rgba(11, 37, 69, 0.11);
      overflow: hidden;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .demo-panel:hover {
      transform: translateY(-4px);
      box-shadow: 0 26px 54px rgba(11, 37, 69, 0.15);
    }

    .demo-copy {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 2rem;
      padding: 2rem;
      color: #dce8f4;
      background: var(--ink);
      overflow: hidden;
    }

    .demo-copy > * {
      position: relative;
      z-index: 1;
    }

    .demo-copy h2 {
      max-width: 12ch;
      margin: 0;
      color: var(--white);
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 0.98;
    }

    .demo-copy p {
      max-width: 34rem;
      margin: 1rem 0 0;
      color: #c6d6e6;
      line-height: 1.65;
    }

    .demo-route-motion {
      margin-top: 1.45rem;
      border: 1px solid rgba(220, 232, 244, 0.18);
      border-radius: 8px;
      padding: 1.05rem 0.95rem;
      background: rgba(255, 255, 255, 0.04);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    }

    .demo-route-track {
      position: relative;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 12px;
    }

    .demo-route-track::before {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      top: 50%;
      height: 2px;
      background: rgba(220, 232, 244, 0.3);
      transform: translateY(-50%);
    }

    .demo-stop {
      position: relative;
      z-index: 1;
      width: 13px;
      height: 13px;
      border: 2px solid rgba(255, 255, 255, 0.82);
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.13);
      animation: demoStopPulse 2.8s ease-in-out infinite;
    }

    .demo-stop:nth-child(2) {
      animation-delay: 0.45s;
    }

    .demo-stop:nth-child(3) {
      animation-delay: 0.9s;
    }

    .demo-stop:nth-child(4) {
      animation-delay: 1.35s;
    }

    .demo-vehicle {
      position: absolute;
      z-index: 2;
      left: 18px;
      top: 50%;
      width: 34px;
      height: 18px;
      border-radius: 999px;
      background: var(--white);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
      transform: translate(-50%, -50%);
      animation: demoVehicleMove 5.6s cubic-bezier(0.66, 0, 0.34, 1) infinite;
    }

    .demo-vehicle::before {
      content: "";
      position: absolute;
      inset: 5px 8px auto auto;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--green);
    }

    .demo-points {
      display: grid;
      gap: 0.75rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .demo-points li {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      color: #eef6ff;
      font-size: 0.92rem;
      font-weight: 700;
    }

    .demo-points li::before {
      content: "";
      width: 9px;
      height: 9px;
      flex: 0 0 auto;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.14);
    }

    @keyframes demoStopPulse {
      0%,
      100% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
        transform: scale(1);
      }

      50% {
        box-shadow: 0 0 0 9px rgba(34, 197, 94, 0.2);
        transform: scale(1.08);
      }
    }

    @keyframes demoVehicleMove {
      0%,
      12% {
        left: 18px;
      }

      34%,
      46% {
        left: 35%;
      }

      66%,
      78% {
        left: 65%;
      }

      96%,
      100% {
        left: calc(100% - 18px);
      }
    }

    @keyframes operationDividerReveal {
      from {
        transform: scaleX(0.2);
        opacity: 0;
      }

      to {
        transform: scaleX(1);
        opacity: 1;
      }
    }

    @keyframes operationIconPop {
      0% {
        transform: scale(0.88);
        opacity: 0.88;
      }

      60% {
        transform: scale(1.06);
        opacity: 1;
      }

      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    .demo-form {
      display: grid;
      gap: 1rem;
      padding: 2rem;
    }

    .demo-form-header h3 {
      margin: 0;
      color: var(--ink);
      font-size: 1.35rem;
    }

    .demo-form-header p {
      margin: 0.35rem 0 0;
      color: var(--muted);
      line-height: 1.5;
    }

    .demo-form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.95rem;
    }

    .demo-field {
      display: grid;
      gap: 0.4rem;
    }

    .demo-field-full {
      grid-column: 1 / -1;
    }

    .demo-field label {
      color: #31445b;
      font-size: 0.82rem;
      font-weight: 800;
    }

    .demo-field input,
    .demo-field textarea {
      width: 100%;
      min-height: 46px;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 0.72rem 0.82rem;
      color: var(--ink);
      background: #f9fbfd;
      font: inherit;
      transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .demo-field textarea {
      min-height: 112px;
      resize: vertical;
    }

    .demo-captcha {
      grid-column: 1 / -1;
    }

    .demo-captcha .cf-turnstile {
      min-height: 65px;
    }

    .demo-captcha-unavailable {
      grid-column: 1 / -1;
      margin: 0;
      border: 1px solid rgba(211, 69, 69, 0.24);
      border-radius: 8px;
      padding: 0.78rem 0.86rem;
      color: #8f2d2d;
      background: rgba(255, 244, 244, 0.86);
      font-size: 0.88rem;
      font-weight: 800;
    }

    .demo-field input:focus,
    .demo-field textarea:focus {
      border-color: rgba(34, 197, 94, 0.72);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.13);
      outline: none;
    }

    .demo-alert {
      margin: 0;
      border-radius: 8px;
      padding: 0.8rem 0.9rem;
      font-size: 0.9rem;
      font-weight: 700;
    }

    .demo-alert-success {
      border: 1px solid rgba(34, 197, 94, 0.28);
      color: #166534;
      background: #eaf9f0;
    }

    .demo-alert-error {
      border: 1px solid rgba(220, 38, 38, 0.24);
      color: #991b1b;
      background: #fff1f2;
    }

    .demo-alert-info {
      border: 1px solid rgba(11, 37, 69, 0.2);
      color: #23415f;
      background: #eef4fb;
    }

    .demo-form-actions {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    .demo-form-actions .btn:disabled {
      cursor: not-allowed;
      opacity: 0.75;
      transform: none;
      box-shadow: none;
      animation: none;
    }

    .demo-form-note {
      margin: 0;
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.45;
    }

    .demo-honeypot {
      position: absolute;
      left: -10000px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .site-footer {
      border-top: 1px solid rgba(210, 220, 230, 0.38);
      padding: 2.6rem 0;
      color: #c8d6e4;
      background: #081d34;
      font-size: 0.9rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.7fr) minmax(220px, 0.8fr);
      gap: 2rem;
      align-items: start;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--white);
      font-weight: 900;
    }

    .footer-brand img {
      width: 50px;
      height: 50px;
      object-fit: contain;
      transform: scale(1.45);
    }

    .site-footer p {
      max-width: 30rem;
      margin: 0.8rem 0 0;
      color: #9fb1c5;
      line-height: 1.6;
    }

    .footer-title {
      display: block;
      margin-bottom: 0.85rem;
      color: var(--white);
      font-size: 0.78rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .footer-links,
    .footer-contact {
      display: grid;
      gap: 0.55rem;
    }

    .site-footer a {
      color: #dce8f4;
      text-decoration: none;
    }

    .site-footer a:hover,
    .site-footer a:focus-visible {
      color: var(--green);
      outline: none;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 2rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(220, 232, 244, 0.14);
      color: #8fa3ba;
      font-size: 0.82rem;
    }

    @media (max-width: 1080px) {
      :root {
        --nav-offset: 180px;
      }

      .hero-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 1.7rem;
        padding: 2.2rem 0 1.8rem;
      }

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

      .hero h1 {
        max-width: 20ch;
        font-size: clamp(2.2rem, 6vw, 3rem);
      }

      .command-scene {
        min-height: auto;
      }

      .hero-app-showcase {
        min-height: 500px;
      }

      .app-shot-dashboard {
        width: 74%;
      }

      .app-shot-trafic {
        width: 58%;
      }
    }

    @media (max-width: 900px) {
      :root {
        --nav-offset: 96px;
      }

      .container {
        width: min(1140px, 94%);
      }

      .site-nav {
        position: sticky;
      }

      .nav-inner {
        justify-content: space-between;
        gap: 0.7rem;
        min-height: 76px;
      }

      .brand {
        width: auto;
        justify-content: flex-start;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .nav-pills {
        display: none;
        width: 100%;
        margin: 0;
        padding: 0.6rem;
        border: 1px solid rgba(11, 37, 69, 0.12);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 16px 32px rgba(11, 37, 69, 0.1);
      }

      .site-nav.is-open .nav-pills {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.35rem;
      }

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

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

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

      .nav-link {
        width: 100%;
        justify-content: flex-start;
        min-height: 42px;
        padding: 0.62rem 0.82rem;
        font-size: 0.95rem;
      }

      .nav-link-access {
        margin-left: 0;
      }

      .hero {
        min-height: auto;
      }

      .hero-inner {
        gap: 1.35rem;
        padding-top: 1.6rem;
      }

      .hero-copy {
        max-width: 680px;
        margin: 0 auto;
        text-align: center;
      }

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

      .hero h1 {
        max-width: 14ch;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-lead {
        max-width: 34ch;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-app-showcase {
        width: 100%;
        max-width: 640px;
        min-height: 430px;
        margin: 0 auto;
      }

      .app-shot-dashboard {
        width: 74%;
        min-height: 385px;
        transform: rotateY(-8deg) rotateX(2.5deg);
      }

      .app-shot-trafic {
        width: 60%;
        min-height: 320px;
        transform: translateY(12px) rotateY(10deg) rotateX(2deg);
      }

      .passenger-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
      }

      .mobile-carousel-slide > div:first-child {
        text-align: center;
      }

      .passenger-checklist {
        margin-left: auto;
        margin-right: auto;
      }

      .mobile-proof-note {
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 980px) {
      .solution-route-line {
        display: none;
      }

      .solution-route-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
          "fleet contract"
          "plan monitor"
          "notify report";
        gap: 0.9rem;
        padding-top: 0;
      }

      .solution-card {
        width: 100%;
        min-height: 118px;
      }

      .demo-panel,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .demo-copy h2 {
        max-width: 18ch;
      }

      .operation-shift-grid {
        grid-template-columns: 1fr;
      }

      .operation-shift-card {
        grid-template-columns: 78px 1fr;
      }

      .operation-shift-icon {
        width: 72px;
        height: 72px;
        font-size: 1.5rem;
      }
    }

    @media (max-width: 720px) {
      :root {
        --nav-offset: 92px;
      }

      .brand-mark,
      .brand-logo {
        width: 52px;
        height: 52px;
      }

      .brand-logo {
        transform: scale(1.4);
      }

      .brand-title {
        font-size: 0.92rem;
      }

      .hero-inner {
        padding-top: 1.3rem;
        gap: 1rem;
      }

      .hero-copy {
        width: 100%;
        max-width: none;
        padding-inline: 0;
      }

      .hero h1 {
        max-width: none;
        font-size: clamp(2.05rem, 11vw, 2.65rem);
        line-height: 1.08;
        color: #eef4fb;
      }

      .hero-lead {
        max-width: none;
        font-size: 1rem;
        color: #d6e2ef;
      }

      .command-scene {
        margin-top: 1.8rem;
      }

      .hero-app-showcase {
        min-height: 360px;
      }

      .app-shot {
        border-radius: 18px;
      }

      .app-shot-dashboard {
        width: 84%;
        min-height: 250px;
        transform: none;
      }

      .app-shot-trafic {
        width: 66%;
        min-height: 210px;
        bottom: -8px;
        transform: translateY(8px);
      }

      .app-shot-body {
        padding: 0.75rem;
      }

      .app-shot-title strong {
        font-size: 0.88rem;
      }

      .app-shot-chip {
        font-size: 0.62rem;
      }

      .mobile-app-switch {
        width: 100%;
        max-width: 300px;
        justify-content: space-between;
      }

      .mobile-app-option {
        min-width: 0;
        flex: 1;
        min-height: 42px;
        font-size: 0.88rem;
      }

      .phone-wrap {
        justify-items: center;
      }

      .mobile-phone-figure {
        width: 100%;
        max-width: 320px;
      }

      .mobile-app-phone {
        max-width: 300px;
      }

      .phone {
        width: 100%;
        max-width: 300px;
      }

      .phone-screenshot-window {
        height: 520px;
        border-radius: 24px;
      }

      .mobile-suite-note p {
        max-width: 34ch;
      }

      .capabilities h2 {
        max-width: 24ch;
        font-size: clamp(1.85rem, 6.1vw, 2.2rem);
        line-height: 1.16;
      }

      .capabilities .section-intro {
        max-width: 34ch;
      }

      .solution-route-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
          "fleet"
          "contract"
          "plan"
          "monitor"
          "notify"
          "report";
      }
    }

    @media (max-width: 560px) {
      :root {
        --nav-offset: 88px;
      }

      .nav-inner {
        min-height: 70px;
        padding: 0.55rem 0;
      }

      .hero h1 {
        max-width: none;
        font-size: clamp(1.8rem, 10.5vw, 2.2rem);
        color: #e8f0f8;
      }

      .hero-lead {
        max-width: none;
        font-size: 0.96rem;
        color: #cfdeed;
      }

      .hero-app-showcase {
        min-height: 350px;
      }

      .app-shot-dashboard {
        width: 88%;
        min-height: 225px;
      }

      .app-shot-trafic {
        width: 70%;
        min-height: 190px;
        bottom: -10px;
      }

      .mobile-phone-figure {
        max-width: 286px;
      }

      .mobile-app-phone,
      .phone {
        max-width: 272px;
      }

      .phone-screenshot-window {
        height: 470px;
      }
    }

    @media (max-width: 820px) {
      html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
      }

      body {
        overflow-x: hidden;
      }

      .hero {
        overflow: hidden;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
      }

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

      .hero h1 {
        max-width: 11ch;
        font-size: clamp(2rem, 10vw, 2.7rem);
        line-height: 1.06;
        overflow-wrap: anywhere;
        text-wrap: balance;
      }

      .hero-lead {
        max-width: 34ch;
      }

      .command-scene,
      .hero-app-showcase {
        min-height: auto;
        height: auto;
      }

      .hero-app-showcase {
        display: grid;
        gap: 0.9rem;
        perspective: none;
        animation: none;
      }

      .app-shot {
        position: relative;
        width: 100%;
        min-height: 0;
        transform: none;
      }

      .app-shot-dashboard,
      .app-shot-trafic {
        inset: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        min-height: 0;
        transform: none;
      }
    }

    @supports (-webkit-touch-callout: none) {
      @media (max-width: 820px) {
        .hero h1 {
          font-size: clamp(1.95rem, 9.5vw, 2.45rem);
        }

        .hero-app-showcase {
          max-width: 100%;
        }
      }
    }

    [data-reveal] {
      opacity: 1;
      transform: none;
    }

    .reveal-ready [data-reveal] {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.62s ease, transform 0.62s ease;
      transition-delay: var(--reveal-delay, 0s);
    }

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

    .reveal-ready [data-reveal-delay="1"] {
      --reveal-delay: 0.08s;
    }

    .reveal-ready [data-reveal-delay="2"] {
      --reveal-delay: 0.16s;
    }

    .reveal-ready .solution-route .solution-card[data-reveal] {
      transition-delay: calc(var(--reveal-delay, 0s) + 0.72s);
    }

    @keyframes ping {
      0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.46);
      }

      80%,
      100% {
        box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
      }
    }

    @keyframes routeTrace {
      0% {
        stroke-dashoffset: 0;
      }

      100% {
        stroke-dashoffset: -46;
      }
    }

    @keyframes dataFlow {
      0% {
        stroke-dashoffset: 0;
      }

      100% {
        stroke-dashoffset: -26;
      }
    }

    @keyframes receivePulse {
      0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
      }

      70%,
      100% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
      }
    }

    @keyframes artifactDrift {

      0%,
      100% {
        translate: 0 0;
      }

      50% {
        translate: var(--dx, 10px) var(--dy, -10px);
      }
    }
    @keyframes heroDataFlow {
      from { stroke-dashoffset: 0; }
      to { stroke-dashoffset: -28; }
    }

    @keyframes heroRouteFlow {
      from { stroke-dashoffset: 0; }
      to { stroke-dashoffset: -36; }
    }

    @keyframes packetPulse {
      0%, 100% { opacity: 0.42; transform: scale(0.9); }
      50% { opacity: 1; transform: scale(1.08); }
    }

    @keyframes revealUp {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes phoneFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    @keyframes buttonBreath {
      0%, 100% { box-shadow: 0 10px 22px rgba(34, 197, 94, 0.24); }
      50% { box-shadow: 0 16px 30px rgba(34, 197, 94, 0.34); }
    }

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