  :root {
    --ink: #050507;
    --ink-2: #0b0f16;
    --ink-3: #121722;
    --paper: #ffffff;
    --paper-2: #f3f5f8;
    --paper-3: #e9edf3;
    --text: #10131a;
    --text-soft: #5d6674;
    --text-faint: #8a93a3;
    --line: rgba(16, 19, 26, 0.12);
    --line-dark: rgba(255, 255, 255, 0.14);
    --blue: #39a4ff;
    --green: #30d47d;
    --amber: #ffbf3d;
    --red: #ff4b5f;
    --violet: #8067ff;
    --cyan: #33d6e8;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    --shadow-soft: 0 18px 48px rgba(21, 31, 47, 0.12);
    --radius: 8px;
  }

  * {
    box-sizing: border-box;
  }

  html {
    background: var(--paper);
    scroll-behavior: auto;
  }

  /* Lenis smooth-scroll integration — let the JS engine own scroll position. */
  html.lenis,
  html.lenis body {
    height: auto;
  }

  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }

  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }

  .lenis.lenis-stopped {
    overflow: hidden;
  }

  body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }

  body.nav-open {
    overflow: hidden;
  }

  img,
  svg {
    display: block;
  }

  button,
  input,
  textarea {
    font: inherit;
  }

  a {
    color: inherit;
  }

  .wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
  }

  .section {
    position: relative;
    padding: 112px 0;
  }

  .section-tight {
    padding: 84px 0;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 760;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .eyebrow svg {
    width: 16px;
    height: 16px;
  }

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

  h1,
  h2 {
    letter-spacing: 0;
  }

  h1 {
    max-width: 650px;
    color: #fff;
    font-size: 78px;
    line-height: 0.95;
    font-weight: 830;
  }

  h1 span {
    display: block;
  }

  h2 {
    max-width: 760px;
    font-size: 56px;
    line-height: 1.02;
    font-weight: 820;
  }

  h3 {
    font-size: 22px;
    line-height: 1.12;
    font-weight: 760;
    letter-spacing: 0;
  }

  .lead {
    max-width: 670px;
    color: var(--text-soft);
    font-size: 20px;
    line-height: 1.55;
  }

  .dark .lead,
  .hero-copy p {
    color: rgba(255, 255, 255, 0.72);
  }

  .site-chrome {
    position: fixed;
    inset: 12px 0 auto;
    z-index: 50;
    pointer-events: none;
  }

  .nav-shell {
    pointer-events: auto;
    width: min(1180px, calc(100% - 40px));
    min-height: 58px;
    margin: 0 auto;
    padding: 8px 8px 8px 14px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(5, 5, 7, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 12px 44px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(22px) saturate(160%);
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
  }

  .brand img {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
  }

  .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-left: auto;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    transition: color 180ms ease;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: #fff;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    color: #0a0d12;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 780;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  }

  .btn svg {
    width: 17px;
    height: 17px;
  }

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

  .btn-dark {
    color: #fff;
    background: var(--ink);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .btn-blue {
    color: #fff;
    background: var(--blue);
    border-color: rgba(57, 164, 255, 0.9);
  }

  .btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .icon-btn {
    width: 44px;
    min-width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    cursor: pointer;
  }

  .icon-btn svg {
    width: 20px;
    height: 20px;
  }

  .hero {
    position: relative;
    min-height: 88svh;
    height: 88svh;
    max-height: 820px;
    padding: 118px 0 28px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
      linear-gradient(180deg, rgba(5, 5, 7, 0.28), rgba(5, 5, 7, 0.98) 78%),
      linear-gradient(112deg, #050507 0%, #090d14 44%, #12151e 100%);
    overflow: hidden;
    isolation: isolate;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
      linear-gradient(90deg, transparent 0 48%, rgba(255,255,255,0.10) 48% 49%, transparent 49% 51%, rgba(255,255,255,0.10) 51% 52%, transparent 52% 100%),
      repeating-linear-gradient(105deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 92px);
    opacity: 0.36;
    transform: skewY(-8deg) translateY(-90px);
  }

  .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 120px;
    z-index: -1;
    background: linear-gradient(180deg, rgba(255,255,255,0), var(--paper));
  }

  .hero-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    align-items: center;
    gap: 36px;
  }

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

  .product-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 5px 12px 5px 5px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 740;
  }

  .product-pill img {
    width: 30px;
    height: 30px;
    border-radius: 7px;
  }

  .hero-copy p {
    max-width: 620px;
    margin-top: 22px;
    font-size: 21px;
    line-height: 1.52;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
  }

  .proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
  }

  .proof {
    min-width: 132px;
  }

  .proof strong {
    display: block;
    color: #fff;
    font-size: 24px;
    line-height: 1;
  }

  .proof span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .device-stage {
    position: relative;
    height: 620px;
    perspective: 1400px;
  }

  .phone {
    position: absolute;
    width: 304px;
    height: 610px;
    padding: 12px;
    background: linear-gradient(145deg, #2b303a, #090a0d 54%, #1b2029);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 46px;
    box-shadow: var(--shadow);
    transform-style: preserve-3d;
  }

  .phone-main {
    right: 86px;
    top: 4px;
    z-index: 4;
  }

  .phone-side {
    right: 310px;
    top: 78px;
    width: 246px;
    height: 500px;
    opacity: 0.72;
    transform: rotate(-5deg) translateZ(-120px);
    filter: saturate(0.88);
  }

  .phone-screen {
    position: relative;
    height: 100%;
    overflow: hidden;
    color: #11141a;
    background: #f7f8fb;
    border-radius: 36px;
  }

  .phone-screen.dark-screen {
    color: #fff;
    background: #080b10;
  }

  .phone-shot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }

  .story-phone {
    width: min(316px, 100%);
    padding: 12px;
    background: linear-gradient(145deg, #2b303a, #090a0d 54%, #1b2029);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 46px;
    box-shadow: var(--shadow);
  }

  .story-phone img {
    display: block;
    width: 100%;
    border-radius: 36px;
  }

  .island {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 88px;
    height: 24px;
    border-radius: 18px;
    transform: translateX(-50%);
    background: #050507;
    z-index: 4;
  }

  .app-ui {
    position: absolute;
    inset: 0;
    padding: 52px 16px 16px;
  }

  .app-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }

  .app-top strong {
    font-size: 18px;
  }

  .mini-avatar {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, var(--blue), var(--violet));
    border-radius: 7px;
    font-size: 13px;
    font-weight: 820;
  }

  .route-card {
    padding: 14px;
    color: #fff;
    background: linear-gradient(145deg, #111822, #080b10);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
  }

  .route-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 760;
  }

  .route-cities {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    font-size: 28px;
    font-weight: 820;
    letter-spacing: 0;
  }

  .route-line {
    position: relative;
    height: 4px;
    margin: 18px 4px 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 99px;
  }

  .route-line span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 61%;
    background: linear-gradient(90deg, var(--green), var(--blue));
    border-radius: inherit;
    transform-origin: left;
  }

  .route-times {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 700;
  }

  .status-card {
    margin-top: 10px;
    padding: 12px;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 10px;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(16, 19, 26, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 16px 30px rgba(14, 23, 36, 0.08);
  }

  .status-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: rgba(48, 212, 125, 0.14);
    color: var(--green);
  }

  .status-icon svg {
    width: 20px;
    height: 20px;
  }

  .status-card strong {
    display: block;
    font-size: 14px;
  }

  .status-card span {
    display: block;
    margin-top: 3px;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 620;
  }

  .connection-risk {
    margin-top: 10px;
    padding: 12px;
    background: rgba(255, 191, 61, 0.14);
    border: 1px solid rgba(255, 191, 61, 0.28);
    border-radius: var(--radius);
  }

  .risk-head {
    display: flex;
    justify-content: space-between;
    color: #7b5100;
    font-size: 12px;
    font-weight: 800;
  }

  .risk-meter {
    height: 8px;
    margin-top: 10px;
    overflow: hidden;
    background: rgba(123, 81, 0, 0.15);
    border-radius: 99px;
  }

  .risk-meter span {
    display: block;
    width: 62%;
    height: 100%;
    background: linear-gradient(90deg, var(--amber), var(--red));
  }

  .stop-list {
    margin-top: 12px;
    display: grid;
    gap: 8px;
  }

  .stop-row {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    background: rgba(16, 19, 26, 0.04);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 720;
  }

  .stop-row span {
    color: var(--text-soft);
  }

  .stop-row em {
    color: var(--green);
    font-style: normal;
  }

  .side-stat {
    margin-top: 8px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
  }

  .side-stat strong {
    display: block;
    font-size: 28px;
    line-height: 1;
  }

  .side-stat span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 700;
  }

  .float-alert {
    position: absolute;
    z-index: 8;
    width: 286px;
    padding: 13px;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 11px;
    align-items: center;
    color: #10131a;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px) saturate(160%);
    animation: alertFloat 6.4s ease-in-out infinite;
  }

  .float-alert:nth-of-type(3) {
    animation-delay: -2.1s;
  }

  .float-alert:nth-of-type(4) {
    animation-delay: -4.2s;
  }

  .float-alert .alert-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: var(--radius);
  }

  .float-alert .alert-icon.warning {
    background: var(--amber);
    color: #3b2700;
  }

  .float-alert .alert-icon.green {
    background: var(--green);
    color: #052715;
  }

  .float-alert svg {
    width: 19px;
    height: 19px;
  }

  .float-alert strong {
    display: block;
    font-size: 13px;
  }

  .float-alert span {
    display: block;
    margin-top: 2px;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 620;
  }

  .alert-one {
    top: 42px;
    right: 0;
  }

  .alert-two {
    top: 244px;
    left: 2px;
  }

  .alert-three {
    right: 18px;
    bottom: 58px;
  }

  .signal-strip {
    padding: 52px 0 72px;
    background: var(--paper);
    overflow: hidden;
  }

  .strip-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
  }

  .strip-head h2 {
    max-width: 660px;
    font-size: 42px;
  }

  .strip-head p {
    max-width: 440px;
    color: var(--text-soft);
    font-size: 17px;
  }

  .ticker {
    position: relative;
    display: flex;
    gap: 12px;
    width: max-content;
    animation: ticker 34s linear infinite;
  }

  .ticker:hover {
    animation-play-state: paused;
  }

  .notice {
    width: 314px;
    min-height: 126px;
    padding: 16px;
    color: var(--text);
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .notice-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
  }

  .notice-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    background: var(--ink);
    border-radius: 999px;
    padding: 5px 8px;
    font-size: 11px;
    font-weight: 800;
  }

  .notice-chip svg {
    width: 13px;
    height: 13px;
  }

  .notice time {
    color: var(--text-faint);
    font-size: 12px;
    font-weight: 700;
  }

  .notice strong {
    display: block;
    font-size: 17px;
    line-height: 1.2;
  }

  .notice p {
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 13px;
  }

  .dark {
    color: #fff;
    background: var(--ink);
  }

  .story {
    overflow: clip;
  }

  .story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(390px, 0.9fr);
    gap: 80px;
    align-items: start;
  }

  .story-kicker {
    position: sticky;
    top: 130px;
    min-height: 620px;
    display: grid;
    place-items: center;
  }

  .live-board {
    position: relative;
    width: min(440px, 100%);
    padding: 18px;
    background: #10151f;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
    overflow: hidden;
  }

  .live-board::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, transparent 0 49%, rgba(255,255,255,0.09) 49% 50%, transparent 50%),
      repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 58px);
    opacity: 0.22;
    pointer-events: none;
  }

  .board-top,
  .board-main,
  .board-footer {
    position: relative;
  }

  .board-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
  }

  .board-top strong {
    font-size: 13px;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .board-pill {
    color: #05160c;
    background: var(--green);
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 820;
  }

  .board-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .board-city {
    min-width: 86px;
  }

  .board-city span {
    color: rgba(255, 255, 255, 0.56);
    display: block;
    font-size: 12px;
    font-weight: 760;
  }

  .board-city strong {
    display: block;
    margin-top: 4px;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0;
  }

  .rail-progress {
    position: relative;
    flex: 1;
    height: 80px;
    display: grid;
    place-items: center;
  }

  .rail-progress::before,
  .rail-progress::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 99px;
  }

  .rail-progress::before {
    background: rgba(255, 255, 255, 0.15);
  }

  .rail-progress::after {
    width: var(--rail-progress, 58%);
    right: auto;
    background: linear-gradient(90deg, var(--green), var(--cyan), var(--blue));
    transition: width 600ms cubic-bezier(.2,.8,.2,1);
  }

  .train-dot {
    position: absolute;
    left: var(--rail-progress, 58%);
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #061014;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 12px 36px rgba(51, 214, 232, 0.28);
    transform: translateX(-50%);
    transition: left 600ms cubic-bezier(.2,.8,.2,1);
  }

  .train-dot svg {
    width: 20px;
    height: 20px;
  }

  .board-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 22px;
  }

  .metric {
    min-height: 84px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
  }

  .metric span {
    display: block;
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
    font-weight: 760;
    text-transform: uppercase;
  }

  .metric strong {
    display: block;
    margin-top: 9px;
    font-size: 24px;
    line-height: 1;
  }

  .board-footer {
    display: grid;
    gap: 8px;
    margin-top: 16px;
  }

  .board-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 10px;
    background: rgba(255, 191, 61, 0.16);
    border: 1px solid rgba(255, 191, 61, 0.28);
    border-radius: var(--radius);
  }

  .board-alert svg {
    width: 20px;
    height: 20px;
    color: var(--amber);
  }

  .board-alert strong {
    display: block;
    font-size: 13px;
  }

  .board-alert span {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
  }

  .steps {
    display: grid;
    gap: 20px;
  }

  .step {
    min-height: 54vh;
    padding: 28px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.45;
    transition: opacity 260ms ease, transform 260ms ease;
  }

  .step.is-active {
    opacity: 1;
    transform: translateX(8px);
  }

  .step h2 {
    max-width: 560px;
    font-size: 50px;
  }

  .step p {
    max-width: 520px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 19px;
    line-height: 1.55;
  }

  .step-tag {
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 10px;
    color: #081018;
    background: #fff;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 840;
    text-transform: uppercase;
  }

  .coverage-lead {
    margin-top: 20px;
    max-width: 640px;
  }

  .coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 44px;
  }

  .network-chip {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
  }

  .network-chip:hover {
    transform: translateY(-4px);
    background: #fff;
    border-color: rgba(57, 164, 255, 0.28);
  }

  .network-flag {
    font-size: 30px;
    line-height: 1;
  }

  .network-chip h3 {
    font-size: 17px;
    font-weight: 760;
  }

  .network-chip p {
    margin-top: 2px;
    color: var(--text-soft);
    font-size: 14px;
  }

  .network-new {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 3px 9px;
    font-size: 11px;
    font-weight: 840;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #052715;
    background: var(--green);
    border-radius: 999px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 44px;
  }

  .feature-card {
    min-height: 236px;
    padding: 22px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
  }

  .feature-card:hover {
    transform: translateY(-4px);
    background: #fff;
    border-color: rgba(57, 164, 255, 0.28);
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    color: #fff;
    background: var(--ink);
    border-radius: var(--radius);
  }

  .feature-card:nth-child(2) .feature-icon {
    background: var(--green);
    color: #052715;
  }

  .feature-card:nth-child(3) .feature-icon {
    background: var(--amber);
    color: #3b2700;
  }

  .feature-card:nth-child(4) .feature-icon {
    background: var(--blue);
  }

  .feature-card:nth-child(5) .feature-icon {
    background: var(--violet);
  }

  .feature-card:nth-child(6) .feature-icon {
    background: var(--red);
  }

  .feature-icon svg {
    width: 21px;
    height: 21px;
  }

  .feature-card p {
    margin-top: 12px;
    color: var(--text-soft);
    font-size: 15px;
  }

  .passport {
    background: var(--paper-2);
    overflow: hidden;
  }

  .passport-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
    gap: 52px;
    align-items: center;
  }

  .stat-wall {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-tile {
    min-height: 182px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

  .stat-tile:nth-child(1) {
    background: var(--ink);
    color: #fff;
  }

  .stat-tile:nth-child(2) {
    background: #f8f0dc;
  }

  .stat-tile:nth-child(3) {
    background: #e6f8ef;
  }

  .stat-tile:nth-child(4) {
    background: #e9f4ff;
  }

  .stat-tile strong {
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0;
  }

  .stat-tile > span {
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 760;
    text-transform: uppercase;
  }

  .stat-tile strong span {
    color: inherit;
    font: inherit;
    text-transform: none;
  }

  .stat-tile:nth-child(1) > span {
    color: rgba(255, 255, 255, 0.62);
  }

  .support-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
    gap: 56px;
    align-items: start;
  }

  .support-panel {
    position: sticky;
    top: 130px;
  }

  .contact-box {
    margin-top: 28px;
    padding: 22px;
    background: var(--ink);
    border-radius: var(--radius);
    color: #fff;
  }

  .contact-box h3 {
    font-size: 19px;
  }

  .contact-box p {
    color: rgba(255, 255, 255, 0.68);
    margin: 10px 0 18px;
    font-size: 15px;
  }

  .field-label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
  }

  .field-label span {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
  }

  .contact-box textarea,
  .contact-box input[type="email"] {
    width: 100%;
    margin-bottom: 16px;
    padding: 12px 14px;
    font: inherit;
    font-size: 15px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    transition: border-color 180ms ease, background 180ms ease;
  }

  .contact-box textarea {
    resize: vertical;
    min-height: 116px;
  }

  .contact-box textarea::placeholder,
  .contact-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  .contact-box textarea:focus,
  .contact-box input[type="email"]:focus {
    outline: none;
    border-color: var(--blue);
    background: rgba(57, 164, 255, 0.08);
  }

  /* Honeypot — visually removed, kept reachable for bots only. */
  .hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .contact-submit {
    width: 100%;
    justify-content: center;
  }

  .contact-submit.is-loading {
    opacity: 0.7;
    cursor: progress;
  }

  .contact-status {
    margin: 14px 0 0;
    font-size: 14px;
  }

  .contact-status.is-ok {
    color: var(--green);
  }

  .contact-status.is-error {
    color: #ff8a96;
  }

  .contact-status.is-pending {
    color: rgba(255, 255, 255, 0.7);
  }

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

  details {
    border-bottom: 1px solid var(--line);
    padding: 21px 0;
  }

  summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    list-style: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 760;
  }

  summary::-webkit-details-marker {
    display: none;
  }

  summary::after {
    content: "+";
    width: 26px;
    height: 26px;
    min-width: 26px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--ink);
    border-radius: 999px;
    font-size: 18px;
    font-weight: 520;
  }

  details[open] summary::after {
    content: "-";
  }

  details p {
    max-width: 780px;
    margin-top: 13px;
    color: var(--text-soft);
    font-size: 15px;
  }

  details a,
  .privacy a {
    color: #006fd6;
    font-weight: 700;
  }

  .privacy {
    color: #fff;
    background: var(--ink);
  }

  .privacy-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 54px;
    align-items: start;
  }

  .privacy h2 {
    color: #fff;
  }

  .privacy .lead,
  .privacy p,
  .privacy li {
    color: rgba(255, 255, 255, 0.68);
  }

  .privacy .updated {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
    font-weight: 720;
  }

  .policy-copy {
    display: grid;
    gap: 24px;
  }

  .policy-copy h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
  }

  .policy-copy ul {
    margin: 10px 0 0;
    padding-left: 20px;
  }

  .policy-copy li {
    margin-bottom: 8px;
  }

  .policy-copy strong {
    color: #fff;
  }

  .privacy a {
    color: #8dccff;
  }

  footer {
    color: rgba(255, 255, 255, 0.58);
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 28px 0 44px;
  }

  .footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 13px;
  }

  .footer-row a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
  }

  html.js [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
  }

  html.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.8,.2,1);
  }

  html.js .signal-strip .strip-head[data-reveal] {
    opacity: 1;
    transform: none;
  }

  @keyframes alertFloat {
    0%, 100% {
      transform: translate3d(0, 0, 0);
    }
    50% {
      transform: translate3d(0, -12px, 0);
    }
  }

  @keyframes ticker {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-50% - 6px));
    }
  }

  @media (max-width: 1080px) {
    h1 {
      font-size: 62px;
    }

    h2 {
      font-size: 46px;
    }

    .hero-inner {
      grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.86fr);
    }

    .phone-main {
      right: 12px;
    }

    .phone-side {
      right: 230px;
    }

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

  @media (max-width: 860px) {
    .site-chrome {
      inset: 10px 0 auto;
    }

    .nav-shell {
      width: min(620px, calc(100% - 24px));
      position: relative;
      min-height: 56px;
    }

    .icon-btn {
      display: grid;
      margin-left: auto;
    }

    .nav-links {
      position: fixed;
      inset: 100px 12px auto;
      display: grid;
      gap: 4px;
      padding: 12px;
      background: rgba(5, 5, 7, 0.94);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--radius);
      box-shadow: 0 18px 58px rgba(0, 0, 0, 0.42);
      transform: translateY(-16px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 180ms ease, transform 180ms ease;
      backdrop-filter: blur(18px) saturate(160%);
    }

    .nav-open .nav-links {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .nav-links a {
      padding: 13px 12px;
      color: #fff;
      border-radius: var(--radius);
    }

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

    .nav-actions .btn {
      display: none;
    }

    .hero {
      min-height: 690px;
      height: 88svh;
      padding-top: 104px;
      align-items: start;
    }

    .hero-inner {
      display: block;
      width: min(620px, calc(100% - 24px));
    }

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

    h1 {
      font-size: 50px;
      line-height: 0.98;
    }

    .hero-copy p {
      max-width: 520px;
      font-size: 18px;
    }

    .proof-row {
      gap: 12px;
    }

    .proof {
      min-width: 118px;
    }

    .device-stage {
      position: absolute;
      left: 50%;
      bottom: -158px;
      width: 520px;
      height: 470px;
      transform: translateX(-50%);
      opacity: 0.9;
    }

    .phone-main {
      width: 218px;
      height: 438px;
      right: 118px;
      top: 14px;
    }

    .phone-side {
      display: none;
    }

    .phone {
      border-radius: 36px;
      padding: 9px;
    }

    .phone-screen {
      border-radius: 28px;
    }

    .app-ui {
      padding: 42px 10px 10px;
    }

    .route-cities {
      font-size: 20px;
    }

    .stop-list,
    .connection-risk {
      display: none;
    }

    .float-alert {
      width: 244px;
      transform: scale(0.84);
    }

    .alert-one {
      top: 30px;
      right: 130px;
    }

    .alert-two {
      left: 20px;
      top: 188px;
    }

    .alert-three {
      display: none;
    }

    .strip-head,
    .story-grid,
    .passport-layout,
    .support-grid,
    .privacy-grid {
      grid-template-columns: 1fr;
      gap: 34px;
    }

    .strip-head {
      display: grid;
    }

    .story-kicker,
    .support-panel {
      position: relative;
      top: auto;
      min-height: auto;
    }

    .story-grid {
      display: flex;
      flex-direction: column-reverse;
    }

    .step {
      min-height: auto;
      padding: 24px 0;
      opacity: 1;
      transform: none;
    }

    .step.is-active {
      transform: none;
    }

    .step h2 {
      font-size: 38px;
    }

    .live-board {
      width: 100%;
    }

    .section {
      padding: 86px 0;
    }

    .section-tight {
      padding: 66px 0;
    }
  }

  @media (max-width: 620px) {
    .wrap {
      width: calc(100% - 24px);
    }

    h1 {
      max-width: 360px;
      font-size: 40px;
    }

    h2,
    .strip-head h2 {
      font-size: 34px;
      line-height: 1.06;
    }

    .strip-head h2 {
      max-width: 350px;
      font-size: 30px;
    }

    h3 {
      font-size: 19px;
    }

    .lead,
    .hero-copy p,
    .step p {
      font-size: 16px;
    }

    /* Let the hero grow with its content and put the phone mock in flow
       below the copy — absolute placement overlapped the paragraph/buttons
       on narrow screens. */
    .hero {
      height: auto;
      min-height: 0;
      padding-bottom: 0;
    }

    .hero-copy p {
      max-width: 350px;
    }

    .device-stage {
      position: relative;
      left: auto;
      bottom: auto;
      transform: none;
      width: 320px;
      height: 470px;
      margin: 34px auto 0;
    }

    .phone-main {
      right: 51px;
    }

    .alert-one {
      display: none;
    }

    .alert-two {
      left: 0;
    }

    .signal-strip {
      padding-top: 42px;
    }

    html.js .signal-strip .strip-head[data-reveal] {
      opacity: 1;
      transform: none;
    }

    .hero-actions {
      gap: 8px;
    }

    .hero-actions .btn {
      min-height: 42px;
      padding: 0 12px;
      font-size: 13px;
    }

    .proof-row {
      display: none;
    }

    .float-alert {
      width: 220px;
      padding: 10px;
      grid-template-columns: 32px 1fr;
    }

    .float-alert .alert-icon {
      width: 32px;
      height: 32px;
    }

    .features-grid,
    .coverage-grid,
    .stat-wall,
    .board-metrics {
      grid-template-columns: 1fr;
    }

    .feature-card {
      min-height: 190px;
    }

    .stat-tile {
      min-height: 146px;
    }

    .board-route {
      gap: 8px;
    }

    .board-city {
      min-width: 64px;
    }

    .board-city strong {
      font-size: 30px;
    }

    .footer-row {
      display: grid;
    }
  }

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

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

  /* Raily Pro */
  .pro-section {
    background:
      radial-gradient(120% 80% at 85% 0%, rgba(128, 103, 255, 0.22), transparent 60%),
      radial-gradient(90% 70% at 0% 100%, rgba(57, 164, 255, 0.18), transparent 55%),
      var(--ink);
    overflow: hidden;
  }

  .pro-section .eyebrow {
    color: #fff;
  }

  .pro-section .eyebrow svg {
    color: var(--amber);
  }

  .pro-lead {
    max-width: 720px;
    margin-top: 18px;
  }

  .pro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 40px;
    margin-top: 48px;
    align-items: start;
  }

  .pro-features {
    display: grid;
    gap: 14px;
  }

  .pro-feature {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    transition: background 220ms ease, border-color 220ms ease;
  }

  .pro-feature:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(128, 103, 255, 0.4);
  }

  .pro-feature-icon {
    flex: none;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, var(--blue), var(--violet));
    border-radius: var(--radius);
  }

  .pro-feature-icon svg {
    width: 21px;
    height: 21px;
  }

  .pro-feature h3 {
    font-size: 17px;
  }

  .pro-feature p {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14.5px;
  }

  .pricing-card {
    position: sticky;
    top: 96px;
    padding: 28px;
    background: linear-gradient(160deg, #12151e, #090b10);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .price-head {
    display: grid;
    gap: 6px;
  }

  .price-head svg {
    width: 26px;
    height: 26px;
    color: var(--amber);
  }

  .price-head strong {
    font-size: 20px;
    margin-top: 4px;
  }

  .price-head span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14.5px;
  }

  .price-plans {
    display: grid;
    gap: 12px;
    margin: 22px 0;
  }

  .plan {
    position: relative;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
  }

  .plan-annual {
    border-color: rgba(128, 103, 255, 0.55);
    background: linear-gradient(150deg, rgba(128, 103, 255, 0.18), rgba(57, 164, 255, 0.08));
  }

  .plan-ribbon {
    position: absolute;
    top: -11px;
    right: 14px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(145deg, var(--blue), var(--violet));
    border-radius: 999px;
  }

  .plan-amount {
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

  .plan-amount strong {
    font-size: 28px;
    letter-spacing: -0.01em;
  }

  .plan-amount span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
  }

  .plan em {
    display: block;
    margin-top: 4px;
    font-style: normal;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
  }

  .price-cta {
    width: 100%;
    justify-content: center;
  }

  .price-fine {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
  }

  .price-fine li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.62);
  }

  .price-fine svg {
    width: 15px;
    height: 15px;
    color: var(--green);
    flex: none;
  }

  @media (max-width: 880px) {
    .pro-layout {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .pricing-card {
      position: static;
    }
  }