/* ==========================================================================
   Kattam — landing (kattam.online)
   Design tokens follow docs/DESIGN.md. No frameworks, mobile-first.
   ========================================================================== */

:root {
  --ink: #0A0F1F;
  --ink-2: #232B42;
  --muted: #5B647C;
  --subtle: #8C94AA;
  --subtle-text: #6B7490; /* subtle, AA contrast for small text on light surfaces */
  --line: #E2E6EF;
  --line-soft: #E8ECF1;
  --bg: #F2F5FA;
  --surface: #FFFFFF;
  --night: #090E1F;
  --night-2: #0D1224;
  --night-3: #070913;
  --brand-cyan: #00B2D6;
  --brand-blue: #1A7CF5;
  --blue: #3E74F0;
  --blue-deep: #2C5BD6;
  --indigo: #4562F0;
  --indigo-2: #5B4CF5;
  --teal: #1FB5CD;
  --teal-deep: #0B87A0;
  --green: #44C18A;
  --green-deep: #1E9B63;
  --green-light: #7BE3B4;
  --green-bg: #E7F6EF;
  --amber: #F5A524;
  --red: #EF4444;

  --g-kattam: linear-gradient(135deg, #00B2D6 0%, #1A7CF5 100%);
  --g-driver: linear-gradient(135deg, #3CC7A0 0%, #1FAE7A 100%);
  --g-beket: linear-gradient(135deg, #4A7BF7 0%, #5B4CF5 100%);
  --g-text: linear-gradient(92deg, #34C38F 0%, #1FB5CD 34%, #3E74F0 68%, #5B4CF5 100%);
  --g-line: linear-gradient(90deg, #3CC792 0%, #1FB5CD 40%, #3E74F0 72%, #5B4CF5 100%);
  --g-cta: linear-gradient(135deg, #00B2D6 0%, #1A7CF5 58%, #3E6BF5 100%);

  --shadow-sm: 0 1px 2px rgba(10, 15, 31, .04), 0 8px 24px rgba(10, 15, 31, .06);
  --shadow-lg: 0 2px 6px rgba(10, 15, 31, .05), 0 28px 64px -12px rgba(10, 15, 31, .16);

  --f-display: 'Unbounded', 'Onest', system-ui, sans-serif;
  --f-sans: 'Onest', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --gutter: 16px;
  --header-h: 64px;
  --maxw: 1200px;
}

@media (min-width: 640px) { :root { --gutter: 24px; } }
@media (min-width: 1024px) { :root { --gutter: 32px; --header-h: 72px; } }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--night-3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  overflow-wrap: break-word;
}

html.i18n-pending body { opacity: 0; }
html.menu-lock { overflow: hidden; }

img { max-width: 100%; height: auto; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
a { color: inherit; }
button { font: inherit; }
table { border-spacing: 0; }

:focus-visible {
  outline: 3px solid #7FB5FF;
  outline-offset: 3px;
  border-radius: 6px;
}

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

.i {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

main:focus { outline: none; }

/* Grid children may shrink below their min-content (inline SVG / phone strips would otherwise blow out tracks) */
.hero-grid > *, .hero-visual > *, .about-grid > *, .systems-grid > *, .flow > *, .city-demo > *,
.benefits-grid > *, .bekets-grid > *, .app-grid > *, .price-grid > *, .contact-grid > *,
.contact-bar > *, .footer-grid > *, .stats > *, .modules > * { min-width: 0; }

.container {
  width: 100%;
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Typography ---------- */
.h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 2.3vw + 17px, 52px);
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 18px;
  text-wrap: balance;
}
.h2--xl { font-size: clamp(34px, 3.6vw + 16px, 72px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.eyebrow::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(11, 135, 160, .16);
}

.text-grad {
  background: var(--g-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.lead {
  max-width: 62ch;
  font-size: clamp(16px, .35vw + 15px, 19px);
  line-height: 1.6;
  color: var(--muted);
}

.mono-label {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--subtle-text);
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding-block: clamp(72px, 7vw + 24px, 128px);
}

.section--light {
  background-color: var(--bg);
  background-image:
    radial-gradient(900px 480px at 100% 0%, rgba(0, 178, 214, .08), transparent 70%),
    radial-gradient(760px 460px at 0% 100%, rgba(91, 76, 245, .05), transparent 70%);
}

.section--white { background: #fff; }

.section--glow {
  background-image:
    radial-gradient(760px 520px at 78% 40%, rgba(0, 178, 214, .13), transparent 70%),
    radial-gradient(640px 460px at 100% 100%, rgba(91, 76, 245, .08), transparent 70%);
}

.section--dark,
.hero {
  color: #fff;
  background-color: var(--night-3);
  background-image:
    radial-gradient(720px 480px at 88% -5%, rgba(31, 181, 205, .16), transparent 65%),
    radial-gradient(760px 540px at 104% 106%, rgba(91, 76, 245, .22), transparent 65%),
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: auto, auto, 64px 64px, 64px 64px;
}
.section--dark .lead { color: rgba(255, 255, 255, .66); }
.section--dark .eyebrow { color: var(--teal); }
.section--dark .eyebrow::before { box-shadow: 0 0 0 4px rgba(31, 181, 205, .2); }
.section--dark .mono-label { color: rgba(255, 255, 255, .45); }

.section-head {
  max-width: 860px;
  margin-bottom: clamp(36px, 3vw + 20px, 60px);
}

.section-head--row {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 40px;
}
.section-head--row > div { max-width: 760px; }

/* ---------- Buttons ---------- */
.btn {
  --h: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--h);
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s, background-color .2s, border-color .2s, color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .i { width: 20px; height: 20px; }
.btn-icon { width: 22px; height: 22px; border-radius: 6px; flex: none; }

.btn--sm { --h: 40px; padding: 0 16px; font-size: 14px; border-radius: 10px; }
.btn--sm .i { width: 18px; height: 18px; }
.btn--lg { --h: 54px; padding: 0 26px; font-size: 16px; border-radius: 14px; }
.btn--block { width: 100%; }

.btn--primary {
  color: #fff;
  background: var(--g-cta);
  box-shadow: 0 10px 30px -10px rgba(26, 124, 245, .75), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.btn--primary:hover { box-shadow: 0 16px 36px -10px rgba(26, 124, 245, .9), inset 0 1px 0 rgba(255, 255, 255, .25); }

.btn--indigo {
  color: #fff;
  background: var(--g-beket);
  box-shadow: 0 10px 30px -10px rgba(91, 76, 245, .75), inset 0 1px 0 rgba(255, 255, 255, .22);
}

.btn--green {
  color: #fff;
  background: linear-gradient(135deg, #3CC7A0 0%, #1FAE7A 55%, #18A0A8 100%);
  box-shadow: 0 10px 30px -10px rgba(31, 174, 122, .75), inset 0 1px 0 rgba(255, 255, 255, .22);
}

.btn--glass {
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .16);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .28); }

.btn--ghost-light {
  color: rgba(255, 255, 255, .86);
  background: transparent;
  border-color: rgba(255, 255, 255, .14);
}
.btn--ghost-light:hover { color: #fff; border-color: rgba(255, 255, 255, .3); }

@media (max-width: 479px) {
  .btn--lg { width: 100%; white-space: normal; text-align: center; padding: 10px 18px; }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  padding-bottom: 1px;
  transition: border-color .2s, color .2s;
}
.link-arrow .i { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.link-arrow:hover { border-color: var(--teal); color: #BFF3FF; }
.link-arrow:hover .i { transform: translateX(3px); }

/* ---------- Shared bits ---------- */
.tile {
  --s: 40px;
  width: var(--s);
  height: var(--s);
  flex: none;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--g-kattam);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 8px 18px -10px rgba(26, 124, 245, .7);
}
.tile .i { width: 20px; height: 20px; }
.tile--sm { --s: 30px; border-radius: 9px; }
.tile--sm .i { width: 16px; height: 16px; }
.tile--lg { --s: 52px; border-radius: 15px; }
.tile--lg .i { width: 24px; height: 24px; }
.tile--indigo { background: var(--g-beket); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 8px 18px -10px rgba(91, 76, 245, .8); }
.tile--blue { background: linear-gradient(135deg, #1FB5CD 0%, #1A7CF5 100%); }
.tile--teal { background: linear-gradient(135deg, #1FB5CD 0%, #3E74F0 60%, #5B4CF5 100%); }
.tile--green { background: var(--g-driver); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 8px 18px -10px rgba(31, 174, 122, .8); }
.tile--grad { background: linear-gradient(135deg, #3CC792 0%, #1FB5CD 45%, #5B4CF5 100%); }

.lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--ink);
  white-space: nowrap;
}
.lockup b { font-weight: 600; }
.lockup img { border-radius: 7px; flex: none; }
.lockup--xs { gap: 7px; font-size: 14px; }
.lockup--xs img { border-radius: 5px; }
.lockup--white,
.lockup--dark { color: #fff; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.pill--online { background: var(--green-bg); color: var(--green-deep); }
.pill--outline { border: 1px solid var(--line); background: #fff; color: var(--ink-2); }
.pill--live { background: rgba(68, 193, 138, .14); color: var(--green-light); }

.dot {
  display: inline-block;
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(68, 193, 138, .22);
  animation: dot-pulse 2s ease-in-out infinite;
}

.bar {
  display: block;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
}
.bar > span {
  display: block;
  width: var(--p, 0%);
  height: 100%;
  border-radius: inherit;
  background: currentColor;
  transform-origin: left center;
}
.bar--hero > span,
.bar--green > span { background: linear-gradient(90deg, #34C38F, #1FB5CD); }
.bar--grad > span { background: var(--g-line); }
.bar--indigo > span { background: var(--g-beket); }
.bar--blue > span { background: linear-gradient(90deg, #1FB5CD, #1A7CF5); }
.bar--teal > span { background: linear-gradient(90deg, #1FB5CD, #5B4CF5); }
.bar--amber > span { background: var(--amber); }

.js .is-in .bar > span,
.js .bar.is-in > span { animation: bar-grow 1.2s var(--ease) both .2s; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  color: #fff;
  background: rgba(7, 9, 19, .78);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  color: inherit;
  text-decoration: none;
  border-radius: 10px;
}
.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 8px 20px -8px rgba(0, 178, 214, .9);
}
.brand-word {
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.025em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.header-cta { display: none; }
@media (min-width: 768px) { .header-cta { display: inline-flex; } }

/* Narrow phones (320–399px): keep brand + language switch + menu on one line */
@media (max-width: 399px) {
  .header-inner { gap: 8px; }
  .header-actions { gap: 6px; }
  .brand { gap: 8px; }
  .brand-icon { width: 30px; height: 30px; }
  .brand-word { font-size: 18px; }
  .lang-btn { min-width: 31px; height: 30px; padding: 0 4px; font-size: 12px; letter-spacing: .02em; }
  .burger { width: 42px; height: 42px; }
}

.lang-switch {
  display: inline-flex;
  flex: none;
  padding: 3px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
}
.lang-btn {
  appearance: none;
  min-width: 36px;
  height: 32px;
  padding: 0 7px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, .64);
  font-family: var(--f-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background-color .2s, color .2s;
}
.lang-btn:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.lang-btn[aria-pressed="true"] { background: #fff; color: var(--ink); }

.burger {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  cursor: pointer;
}
.burger .i { width: 22px; height: 22px; }
.burger .i-close { display: none; }
.nav-open .burger .i-open { display: none; }
.nav-open .burger .i-close { display: block; }

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  display: block;
  color: rgba(255, 255, 255, .74);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s, background-color .2s;
}
.nav-list a:hover,
.nav-list a[aria-current="true"] { color: #fff; }

/* Mobile / tablet: slide-down panel */
@media (max-width: 1279px) {
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px var(--gutter) 28px;
    background: var(--night-3);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
  }
  .nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s;
  }
  .nav-list a {
    padding: 14px 4px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }
  .nav-ctas {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }
  .nav-ctas .btn { --h: 52px; }
}

/* Desktop: inline navigation */
@media (min-width: 1280px) {
  .site-nav { flex: 1; display: flex; justify-content: center; }
  .nav-list { display: flex; gap: 2px; }
  .nav-list a { padding: 8px 11px; border-radius: 10px; font-size: 15px; }
  .nav-list a:hover { background: rgba(255, 255, 255, .06); }
  .nav-extra, .nav-ctas, .burger { display: none; }
  .header-actions { margin-left: 0; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 4vw + 16px, 80px) 0 clamp(36px, 3vw + 20px, 64px);
  background-image:
    radial-gradient(640px 460px at 72% 18%, rgba(31, 181, 205, .15), transparent 65%),
    radial-gradient(760px 540px at 104% 106%, rgba(91, 76, 245, .24), transparent 65%),
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 32px; }
}

.hero-h1 { display: flex; flex-direction: column; gap: 22px; font-weight: 400; }

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 1.4vw + 8px, 24px);
}
.hero-icon {
  width: clamp(62px, 4vw + 46px, 96px);
  height: auto;
  border-radius: 22%;
  box-shadow: 0 24px 60px -14px rgba(0, 178, 214, .7), 0 0 0 1px rgba(255, 255, 255, .08);
}
.hero-wordmark {
  font-family: var(--f-display);
  font-size: clamp(46px, 4.4vw + 30px, 86px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.035em;
  color: #fff;
}
.hero-title {
  max-width: 23ch;
  font-family: var(--f-sans);
  font-size: clamp(26px, 1.9vw + 18px, 44px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: #fff;
  text-wrap: balance;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}
.chip {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .84);
}

.hero-lead {
  max-width: 54ch;
  margin-top: 22px;
  font-size: clamp(16px, .45vw + 14.5px, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, .7);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-demo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin-top: 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
}

/* Route map */
.hero-visual { position: relative; display: grid; gap: 14px; }
.route-map { display: block; width: 100%; min-width: 0; height: auto; overflow: visible; }

.route-map .hub-glow { animation: glow 4s ease-in-out infinite alternate; transform-box: fill-box; transform-origin: center; }
.route-map .route-intl {
  fill: none;
  stroke: rgba(255, 255, 255, .42);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: .007 .013;
}
.route-map .routes-halo use { fill: none; stroke-width: 16; stroke-linecap: round; stroke-linejoin: round; opacity: .12; }
.route-map .route {
  fill: none;
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.js .route-map .route {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw 1.8s var(--ease) var(--rd, 0s) forwards;
}
.route-map .stops circle { fill: var(--night-3); stroke: #fff; stroke-width: 3.5; }
.route-map .stops .stop-intl { stroke: rgba(255, 255, 255, .5); stroke-width: 2.5; }
.js .route-map .stops,
.js .route-map .labels,
.js .route-map .buses { animation: fade-in .8s ease 1.1s both; }
.route-map .buses circle { fill: #fff; filter: drop-shadow(0 0 6px rgba(127, 227, 255, .95)); }
.route-map .hub-core { fill: #fff; filter: drop-shadow(0 0 10px rgba(31, 181, 205, .95)); }
.route-map .hub-ring {
  fill: none;
  stroke: #1FB5CD;
  stroke-width: 2;
  opacity: .5;
  transform-box: fill-box;
  transform-origin: center;
  animation: ring 3.2s ease-out infinite;
}
.route-map .hub-ring--2 { animation-delay: 1.6s; }

.route-map .lbl { font-family: var(--f-sans); font-size: 19px; font-weight: 500; fill: rgba(255, 255, 255, .8); }
.route-map .lbl--hub { font-size: 27px; font-weight: 700; fill: #fff; }
.route-map .lbl--intl { font-family: var(--f-mono); font-size: 14px; font-weight: 400; letter-spacing: .03em; fill: rgba(255, 255, 255, .46); }

@media (max-width: 639px) {
  .route-map .lbl { font-size: 32px; }
  .route-map .lbl--hub { font-size: 38px; }
  .route-map .lbl--minor,
  .route-map .lbl--intl { display: none; }
}

/* Floating cards */
.float-card {
  position: relative;
  padding: 16px 18px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(180deg, rgba(22, 28, 52, .9), rgba(12, 16, 34, .9));
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .65), inset 0 1px 0 rgba(255, 255, 255, .06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.fc-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}
.fc-route { margin: 8px 0 14px; font-size: 19px; font-weight: 700; line-height: 1.25; }
.fc-route .arr { color: var(--teal); }
.fc-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .62);
}
.fc-foot b { color: #fff; font-variant-numeric: tabular-nums; white-space: nowrap; }
.fc-amount {
  margin: 12px 0 14px;
  font-family: var(--f-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.fc-amount small { margin-left: 2px; font-size: 15px; color: rgba(255, 255, 255, .62); letter-spacing: 0; }

.mini-bars { display: flex; align-items: flex-end; gap: 5px; height: 54px; }
.mini-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, #6076FA, #4A4CF0);
  transform-origin: bottom;
}
.js .mini-bars i { animation: grow .9s var(--ease) both; animation-delay: calc(var(--i) * 45ms + .7s); }

@media (min-width: 560px) and (max-width: 1023px) {
  .hero-visual { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .route-map { grid-column: 1 / -1; }
}

.js .float-card { animation: card-in .8s var(--ease) 1s both; }
.js .float-card--revenue { animation-delay: 1.15s; }
.js .float-card .bar > span { animation: bar-grow 1.2s var(--ease) 1.5s both; }

@media (min-width: 1200px) {
  .hero-visual { display: block; padding-bottom: 100px; }
  .float-card--trip {
    position: absolute;
    right: 0;
    top: 33%;
    width: clamp(232px, 40%, 280px);
  }
  .float-card--revenue {
    position: absolute;
    left: 34%;
    bottom: 0;
    width: clamp(264px, 48%, 320px);
  }
  .js .float-card--trip { animation: card-in .8s var(--ease) 1s both, floaty 6s ease-in-out 1.8s infinite alternate; }
  .js .float-card--revenue { animation: card-in .8s var(--ease) 1.15s both, floaty 6s ease-in-out 2.4s infinite alternate; }
}

/* Products row */
.product-row {
  display: grid;
  gap: 8px;
  margin-top: clamp(40px, 3vw + 24px, 64px);
  padding: 24px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
@media (min-width: 768px) { .product-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; } }

.product-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  margin-inline: -14px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  transition: background-color .2s, border-color .2s;
}
@media (min-width: 768px) { .product-link { margin-inline: 0; } }
.product-link:hover { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .09); }
.product-link img { width: 44px; height: 44px; flex: none; border-radius: 11px; }
.pl-text { min-width: 0; }
.pl-name {
  display: block;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.pl-name b { font-weight: 600; }
.pl-role { display: block; margin-top: 3px; font-size: 13.5px; color: rgba(255, 255, 255, .55); }

/* ==========================================================================
   About
   ========================================================================== */
.about-grid { display: grid; gap: 44px; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; } }

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
  padding: 0;
  list-style: none;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 480px) { .stat { padding: 22px 20px; } .stats { gap: 14px; } }
.stat-value {
  width: fit-content;
  font-family: var(--f-display);
  font-size: clamp(30px, 2.4vw + 18px, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.035em;
  white-space: nowrap;
}
.stat-text { font-size: 14.5px; line-height: 1.45; color: var(--muted); }

.rev-card {
  padding: clamp(20px, 2vw + 12px, 32px);
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.rc-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.rc-route { margin-top: 8px; font-size: clamp(17px, .8vw + 13px, 22px); line-height: 1.3; }
.rc-route strong { font-weight: 700; }
.rc-meta { font-size: .78em; color: var(--subtle-text); white-space: nowrap; }
.rc-total {
  margin: 10px 0 18px;
  font-family: var(--f-display);
  font-size: clamp(40px, 3vw + 26px, 64px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.rc-total small { font-size: .36em; letter-spacing: 0; color: var(--muted); }
.rc-list { padding: 0; list-style: none; border-top: 1px solid var(--line-soft); }
.rc-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.rc-name b { display: block; font-size: 15.5px; font-weight: 600; line-height: 1.3; }
.rc-name small { display: block; margin-top: 2px; font-size: 12.5px; line-height: 1.35; color: var(--subtle-text); }
.rc-sum { font-size: 16px; font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; }
.rc-sum small { font-size: 11px; font-weight: 600; color: var(--subtle); }
.rc-plan { margin-top: 18px; }
.rc-plan-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 8px; font-size: 14px; color: var(--muted); }
.rc-plan-head b { color: var(--ink); }
.rev-card .bar { height: 8px; background: var(--line-soft); }
.rc-plan-foot { margin-top: 8px; font-size: 12.5px; color: var(--subtle-text); }

/* ==========================================================================
   Systems
   ========================================================================== */
.systems-grid { display: grid; gap: 16px; }
@media (min-width: 960px) { .systems-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.sys-card {
  --glow: rgba(0, 178, 214, .16);
  --accent: #6FD8EE;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  border: 1px solid rgba(255, 255, 255, .09);
  overflow: hidden;
  isolation: isolate;
}
.sys-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(460px 240px at 0% 0%, var(--glow), transparent 70%);
}
.sys-card--driver { --glow: rgba(60, 199, 160, .15); --accent: var(--green-light); }
.sys-card--beket { --glow: rgba(91, 76, 245, .24); --accent: #AEB8FF; border-color: rgba(123, 110, 255, .22); }

.sys-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.sys-icon { width: 60px; height: 60px; border-radius: 14px; box-shadow: 0 14px 32px -12px rgba(0, 0, 0, .7); }
.tag {
  max-width: 62%;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, .64);
}
.sys-name {
  margin: 24px 0 18px;
  font-family: var(--f-display);
  font-size: clamp(22px, .9vw + 16px, 28px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.sys-name b { font-weight: 600; }
.sys-list { display: grid; gap: 4px; margin-bottom: 22px; }
.sys-list dt {
  margin-top: 12px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}
.sys-list dt:first-child { margin-top: 0; }
.sys-list dd { font-size: 15.5px; line-height: 1.5; color: rgba(255, 255, 255, .84); }
.sys-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.sys-link .i { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.sys-link:hover .i { transform: translateX(4px); }

.note-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  font-size: 15.5px;
  color: rgba(255, 255, 255, .74);
}
.note-bar strong { color: #fff; }

.note-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 16px;
  color: var(--ink-2);
}
.section--dark .note-line { color: rgba(255, 255, 255, .8); }

/* ==========================================================================
   Flow diagrams (intercity / city)
   ========================================================================== */
.flow { position: relative; display: grid; }
.flow-lanes { display: grid; gap: 30px; min-width: 0; }

.lane-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--subtle-text);
}
.lane-label::after { content: ""; flex: 1; max-width: 280px; height: 1px; background: var(--line); }
.section--dark .lane-label { color: rgba(255, 255, 255, .45); }
.section--dark .lane-label::after { background: rgba(255, 255, 255, .1); }

.lane-track { display: flex; flex-direction: column; align-items: stretch; }

.node {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 66px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.node .tile { --s: 36px; border-radius: 10px; }
.node .tile .i { width: 18px; height: 18px; }
.node-text { min-width: 0; }
.node-text b { display: block; font-size: 14.5px; font-weight: 600; line-height: 1.25; }
.node-text small { display: block; margin-top: 2px; font-size: 12px; line-height: 1.3; color: var(--subtle-text); }
.section--dark .node { background: rgba(255, 255, 255, .035); border-color: rgba(255, 255, 255, .09); box-shadow: none; }
.section--dark .node-text small { color: rgba(255, 255, 255, .5); }

.node-group { display: grid; gap: 10px; min-width: 0; }
@media (min-width: 520px) and (max-width: 1099px) { .node-group { grid-template-columns: 1fr 1fr; } }

/* Connectors — vertical on mobile */
.fc {
  --c1: var(--teal);
  --c2: var(--blue);
  position: relative;
  display: block;
  align-self: center;
  width: 2px;
  height: 28px;
  margin: 4px 0 8px;
  background: linear-gradient(var(--c1), var(--c2));
}
.fc::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--c2);
  transform: translateX(-50%);
}
.fc--out { display: none; }

.flow-result {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 44px;
  padding: 22px;
  border-radius: 22px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #3CC792, #1FB5CD 45%, #5B4CF5) border-box;
  box-shadow: 0 24px 60px -24px rgba(62, 116, 240, .45);
}
.flow-result::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -38px;
  width: 2px;
  height: 28px;
  background: linear-gradient(var(--teal), var(--blue));
}
.flow-result::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -12px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--blue);
  transform: translateX(-50%);
}
.section--dark .flow-result {
  background:
    linear-gradient(#0B1024, #0B1024) padding-box,
    linear-gradient(135deg, #3CC792, #1FB5CD 45%, #5B4CF5) border-box;
  box-shadow: 0 0 70px -18px rgba(62, 116, 240, .5);
}
.fr-title { margin-top: 14px; font-size: 20px; font-weight: 700; line-height: 1.2; }
.fr-mono {
  margin-top: 4px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--subtle-text);
}
.section--dark .fr-mono { color: rgba(255, 255, 255, .45); }
.fr-amount {
  margin-top: 14px;
  font-family: var(--f-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.035em;
  white-space: nowrap;
}
.fr-amount small { font-size: .4em; letter-spacing: 0; color: var(--subtle); }
.section--dark .fr-amount small { color: rgba(255, 255, 255, .55); }
.fr-online {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
}
.section--dark .fr-online { color: var(--green-light); }

@media (min-width: 1100px) {
  .flow { grid-template-columns: minmax(0, 1fr) 236px; align-items: stretch; }
  .lane-track {
    display: grid;
    grid-template-columns:
      minmax(0, 1fr) 34px minmax(0, 1.1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr) 38px;
    align-items: center;
  }
  .fc {
    width: auto;
    height: 2px;
    margin: 0 5px 0 3px;
    background: linear-gradient(90deg, var(--c1), var(--c2));
  }
  .fc::after {
    left: auto;
    right: -2px;
    bottom: auto;
    top: 50%;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid var(--c2);
    border-right: 0;
    transform: translateY(-50%);
  }
  .fc::before {
    content: "";
    position: absolute;
    left: -3px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c1);
    transform: translateY(-50%);
  }
  .fc--out { display: block; margin-right: 0; }
  .fc--span3 { grid-column: span 3; }

  /* fan-out: one node → two */
  .fc--fork, .fc--join, .fc--pair {
    align-self: stretch;
    height: auto;
    background: none;
    color: var(--teal);
  }
  .fc--fork {
    background: linear-gradient(90deg, var(--teal), var(--teal)) no-repeat left center / 50% 2px;
  }
  .fc--fork::before,
  .fc--fork::after,
  .fc--join::before,
  .fc--join::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 0;
    width: auto;
    height: auto;
    border: 0 solid currentColor;
    border-radius: 0;
    background: none;
    transform: none;
  }
  .fc--fork::before { top: calc(25% - 1px); bottom: 50%; border-left-width: 2px; border-top-width: 2px; border-top-left-radius: 10px; }
  .fc--fork::after { top: 50%; bottom: calc(25% - 1px); border-left-width: 2px; border-bottom-width: 2px; border-bottom-left-radius: 10px; }

  /* fan-in: two nodes → one */
  .fc--join {
    color: var(--blue);
    background: linear-gradient(90deg, var(--blue), var(--blue)) no-repeat right center / 50% 2px;
  }
  .fc--join::before { left: 0; right: 50%; top: calc(25% - 1px); bottom: 50%; border-right-width: 2px; border-top-width: 2px; border-top-right-radius: 10px; }
  .fc--join::after { left: 0; right: 50%; top: 50%; bottom: calc(25% - 1px); border-right-width: 2px; border-bottom-width: 2px; border-bottom-right-radius: 10px; }

  /* two parallel arrows */
  .fc--pair {
    background:
      linear-gradient(90deg, var(--teal), var(--blue)) no-repeat 0 calc(25% - 1px) / 100% 2px,
      linear-gradient(90deg, var(--teal), var(--blue)) no-repeat 0 calc(75% + 1px) / 100% 2px;
  }
  .fc--pair::before,
  .fc--pair::after {
    content: "";
    position: absolute;
    left: auto;
    right: -2px;
    width: 0;
    height: 0;
    border-radius: 0;
    background: none;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid var(--blue);
    transform: translateY(-50%);
  }
  .fc--pair::before { top: 25%; }
  .fc--pair::after { top: 75%; bottom: auto; }

  .flow-result { margin-top: 0; }
  .flow-result::before, .flow-result::after { display: none; }
}

/* City demo: steps + sticker + phone */
.city-demo {
  display: grid;
  gap: 48px;
  align-items: center;
  margin-top: clamp(56px, 5vw + 24px, 88px);
}
@media (min-width: 1100px) { .city-demo { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); } }

.city-steps { display: grid; gap: 14px; padding: 0; list-style: none; }
.city-steps li {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}
.step-n {
  flex: none;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, #3CC792, #1FB5CD 50%, #5B4CF5);
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.city-steps h3 { margin: 5px 0 4px; font-size: 17px; font-weight: 600; line-height: 1.3; }
.city-steps p { font-size: 15px; color: rgba(255, 255, 255, .62); }

.city-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
@media (min-width: 640px) {
  .city-visual { flex-direction: row; justify-content: center; gap: 0; padding: 12px 0 24px; }
  .qr-sticker { transform: rotate(-4deg); }
  .phone--receipt { margin: 48px 0 0 -40px; transform: rotate(3deg); }
}

.qr-sticker {
  position: relative;
  z-index: 1;
  width: min(300px, 100%);
  flex: none;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .7);
}
.qs-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  color: #fff;
  background: linear-gradient(120deg, #00B2D6 0%, #1A7CF5 70%, #3E6BF5 100%);
}
.qs-head img { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 0 0 2px rgba(255, 255, 255, .3); }
.qs-brand { font-family: var(--f-display); font-size: 20px; font-weight: 600; letter-spacing: -.02em; }
.qs-title { margin-left: auto; text-align: right; line-height: 1.2; }
.qs-title b { display: block; font-size: 14.5px; font-weight: 700; }
.qs-title small { font-size: 11.5px; opacity: .85; }
.qs-body { padding: 20px; }
.qs-qr { display: block; width: 100%; max-width: 220px; height: auto; margin: 0 auto; }
.qs-meta { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 10px; }
.qs-meta small { display: block; font-size: 12px; color: var(--subtle); }
.qs-meta b { font-family: var(--f-display); font-size: 26px; font-weight: 600; line-height: 1.1; letter-spacing: -.02em; }
.qs-meta em { font-style: normal; font-size: .72em; }
.qs-fare { text-align: right; }
.qs-hint {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--bg);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  color: var(--muted);
}

/* ==========================================================================
   Phones (shared)
   ========================================================================== */
.phone {
  position: relative;
  width: 272px;
  flex: none;
  padding: 9px;
  border-radius: 46px;
  background: #0B0F1C;
  box-shadow: 0 0 0 1.5px #2A3146, 0 40px 80px -30px rgba(10, 15, 31, .55);
  color: var(--ink);
  text-align: left;
}
.phone--dark { background: #1A2033; box-shadow: 0 0 0 1.5px #39415C, 0 40px 80px -30px rgba(0, 0, 0, .8); }
.phone-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 556px;
  overflow: hidden;
  border-radius: 37px;
  background: #fff;
}
.statusbar {
  position: relative;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 0 22px 0 26px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}
.statusbar--light { color: #fff; }
.island {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 84px;
  height: 24px;
  border-radius: 14px;
  background: #000;
  transform: translateX(-50%);
}
.sb-icons { display: inline-flex; align-items: center; gap: 5px; }
.sig {
  display: block;
  width: 15px;
  height: 9px;
  background: repeating-linear-gradient(90deg, currentColor 0 3px, transparent 3px 4px);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.bat {
  position: relative;
  display: block;
  width: 22px;
  height: 10px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
}
.bat::after { content: ""; position: absolute; inset: 1.5px 5px 1.5px 1.5px; border-radius: 1px; background: currentColor; }

.phones { display: flex; justify-content: center; align-items: flex-start; gap: 28px; }
.phone-fig { display: flex; flex-direction: column; align-items: center; gap: 18px; flex: none; }
.phone-cap { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; }
.phone-cap .num {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 24px;
  padding: 0 6px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
}
.section--dark .phone-cap .num { background: #fff; color: var(--ink); }

/* Scaled illustrations (JS sets transform + height) */
.fit { position: relative; overflow: hidden; }
.fit-inner { transform-origin: 0 0; margin-inline: auto; }

@media (max-width: 899px) {
  .fit--strip { overflow: visible; height: auto !important; }
  .fit--strip .fit-inner {
    width: auto !important;
    transform: none !important;
    justify-content: flex-start;
    gap: 16px;
    margin-inline: calc(var(--gutter) * -1);
    padding: 6px var(--gutter) 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .fit--strip .fit-inner::-webkit-scrollbar { display: none; }
  .fit--strip .phone-fig { scroll-snap-align: start; }
}

/* Without JavaScript the mock-ups are not scaled: let them scroll instead of being cropped */
.no-js .fit { overflow-x: auto; }
.no-js .fit--strip .fit-inner { justify-content: flex-start; overflow-x: auto; padding-bottom: 12px; }

/* Receipt phone */
.rcpt-head { display: flex; justify-content: space-between; align-items: center; padding: 6px 18px 0; }
.rcpt-head small { font-size: 12px; color: var(--subtle); }
.rcpt-check {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 26px auto 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 193, 138, .2), rgba(68, 193, 138, .05) 70%);
}
.rcpt-check span {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #3CC7A0, #1FB5CD);
  box-shadow: 0 14px 30px -10px rgba(31, 174, 122, .85);
}
.rcpt-check .i { width: 36px; height: 36px; stroke-width: 3; }
.js .is-in .rcpt-check span { animation: pop .6s var(--ease) .4s both; }
.rcpt-paid { margin-top: 14px; font-size: 16px; font-weight: 600; text-align: center; color: var(--muted); }
.rcpt-sum {
  margin-top: 2px;
  font-family: var(--f-display);
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.03em;
  text-align: center;
}
.rcpt-sum small { font-size: .42em; letter-spacing: 0; }
.rcpt-route { margin-top: 8px; font-size: 12.5px; text-align: center; color: var(--subtle-text); }
.rcpt-list { margin: 16px 14px 0; padding: 2px 14px; border-radius: 16px; background: var(--bg); }
.rcpt-list div { display: flex; justify-content: space-between; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.rcpt-list div:last-child { border-bottom: 0; }
.rcpt-list dt { font-size: 12.5px; color: var(--subtle-text); }
.rcpt-list dd { font-size: 12.5px; font-weight: 600; text-align: right; }
.rcpt-btn {
  display: grid;
  place-items: center;
  height: 46px;
  margin: auto 14px 18px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

/* ==========================================================================
   Benefits + dashboard
   ========================================================================== */
.benefits-grid { display: grid; gap: 48px; }
@media (min-width: 1100px) {
  .benefits-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; align-items: start; }
  .benefits-visual { position: sticky; top: calc(var(--header-h) + 40px); }
}

.benefit-list { display: grid; gap: 22px; padding: 0; list-style: none; }
@media (min-width: 640px) and (max-width: 1099px) { .benefit-list { grid-template-columns: 1fr 1fr; gap: 26px 28px; } }
.benefit { display: flex; align-items: flex-start; gap: 16px; }
.benefit h3 { margin: 3px 0 4px; font-size: 18px; font-weight: 700; line-height: 1.3; letter-spacing: -.01em; }
.benefit p { font-size: 15.5px; line-height: 1.5; color: var(--muted); }

.laptop { width: 100%; }
.laptop-lid {
  position: relative;
  margin: 0 5%;
  padding: 14px 12px 12px;
  border-radius: 20px 20px 8px 8px;
  background: #0D1120;
  box-shadow: inset 0 0 0 1.5px #2B3147, 0 40px 80px -40px rgba(10, 15, 31, .55);
}
.laptop-lid::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2B3147;
  transform: translateX(-50%);
}
.laptop-lid .fit { --fit-w: 880; border-radius: 8px; }
@media (max-width: 639px) {
  .laptop-lid { margin: 0; padding: 10px 8px 8px; border-radius: 16px 16px 8px 8px; }
  .laptop-lid .fit { --fit-w: 600; }
  .dash { width: 600px; grid-template-columns: minmax(0, 1fr); }
  .dash-side { display: none; }
}
.laptop-base {
  position: relative;
  height: 16px;
  border-radius: 2px 2px 16px 16px;
  background: linear-gradient(#EEF1F6, #C4CBD8);
  box-shadow: 0 24px 40px -22px rgba(10, 15, 31, .45);
}
.laptop-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 16%;
  height: 6px;
  border-radius: 0 0 8px 8px;
  background: #B7BFCD;
  transform: translateX(-50%);
}

.dash {
  display: grid;
  grid-template-columns: 196px minmax(0, 1fr);
  width: 880px;
  background: #F4F6FB;
  color: var(--ink);
  font-size: 12.5px;
  line-height: 1.35;
}
.dash-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 12px 14px;
  background: var(--night);
  color: #fff;
}
.dash-side .lockup { font-size: 13.5px; padding: 0 6px; }
.dash-menu { display: grid; gap: 2px; padding: 0; list-style: none; }
.dash-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 9px;
  color: rgba(255, 255, 255, .62);
}
.dash-menu .i { width: 15px; height: 15px; }
.dash-menu .is-active { background: var(--g-beket); color: #fff; box-shadow: 0 8px 20px -8px rgba(91, 76, 245, .9); }
.dash-user { display: flex; align-items: center; gap: 10px; margin-top: auto; padding: 12px 6px 0; border-top: 1px solid rgba(255, 255, 255, .08); }
.avatar {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 9px;
  background: var(--g-beket);
  font-size: 13px;
  font-weight: 700;
}
.dash-user b { display: block; font-size: 12px; }
.dash-user small { display: block; font-size: 10.5px; color: rgba(255, 255, 255, .5); }

.dash-main { display: grid; gap: 12px; align-content: start; padding: 18px 20px 20px; }
.dash-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.dash-h { font-size: 18px; font-weight: 700; }
.dash-sub { margin-top: 2px; font-size: 11.5px; color: var(--subtle); }
.dash-pills { display: flex; gap: 6px; }
.dash-pills .pill { padding: 6px 10px; font-size: 11px; }
.kpis { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 10px; }
.kpi { padding: 10px 12px; border-radius: 12px; background: #fff; border: 1px solid var(--line); }
.kpi small { display: block; font-size: 11px; color: var(--subtle); }
.kpi b { display: block; margin-top: 4px; font-size: 21px; font-weight: 700; letter-spacing: -.01em; white-space: nowrap; }
.kpi em { font-size: 11px; font-style: normal; font-weight: 600; opacity: .85; }
.kpi--main { background: var(--g-beket); border-color: transparent; color: #fff; box-shadow: 0 12px 24px -12px rgba(91, 76, 245, .8); }
.kpi--main small { color: rgba(255, 255, 255, .82); }
.dash-row { display: grid; grid-template-columns: 1.35fr 1fr; gap: 10px; }
.panel { padding: 12px 14px; border-radius: 12px; background: #fff; border: 1px solid var(--line); }
.panel-h { margin-bottom: 10px; font-size: 12px; font-weight: 700; }
.hbars { display: flex; align-items: flex-end; gap: 6px; height: 118px; padding-bottom: 16px; }
.hbars span { position: relative; flex: 1; height: var(--h); border-radius: 4px 4px 2px 2px; background: #DCE2FB; transform-origin: bottom; }
.hbars .is-peak { background: linear-gradient(180deg, #6076FA, #4A4CF0); }
.hbars i {
  position: absolute;
  bottom: -16px;
  left: 50%;
  font-family: var(--f-mono);
  font-size: 9px;
  font-style: normal;
  color: var(--subtle);
  transform: translateX(-50%);
}
.js .is-in .hbars span { animation: grow .9s var(--ease) both .3s; }
.channels { display: grid; gap: 11px; padding: 0; list-style: none; }
.channels li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 5px 8px; font-size: 11.5px; }
.channels .bar { grid-column: 1 / -1; height: 5px; background: var(--line-soft); }
.plan-table { width: 100%; font-size: 11.5px; border-collapse: collapse; }
.plan-table th { padding: 0 6px 6px; font-size: 10.5px; font-weight: 500; text-align: left; color: var(--subtle); }
.plan-table td { padding: 7px 6px; border-top: 1px solid var(--line-soft); white-space: nowrap; }
.plan-table td:first-child { font-weight: 600; }
.plan-table .num { text-align: right; font-variant-numeric: tabular-nums; }
.plan-table .muted { color: var(--subtle); }
.plan-table .bar { width: 120px; height: 5px; background: var(--line-soft); }

/* ==========================================================================
   Kattam.Бекет modules + tablo
   ========================================================================== */
.bekets-grid { display: grid; gap: 44px; }
@media (min-width: 1100px) {
  .bekets-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; align-items: start; }
  .tablo-wrap { position: sticky; top: calc(var(--header-h) + 40px); }
}

.modules { display: grid; gap: 12px; padding: 0; list-style: none; }
@media (min-width: 640px) { .modules { grid-template-columns: 1fr 1fr; } }
.module {
  position: relative;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.module:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: #D3DAF0; }
.module-num { position: absolute; top: 18px; right: 20px; font-family: var(--f-mono); font-size: 12px; color: var(--subtle-text); }
.module h3 { margin: 14px 0 6px; font-size: 17px; font-weight: 700; line-height: 1.3; }
.module p { font-size: 14.5px; line-height: 1.5; color: var(--muted); }

.monitor {
  padding: 12px;
  border-radius: 22px;
  background: #171B29;
  box-shadow: inset 0 0 0 1.5px #2B3147, 0 40px 80px -30px rgba(10, 15, 31, .55);
}
.monitor .fit { border-radius: 12px; }
.monitor-stand { position: relative; height: 54px; }
.monitor-stand::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 64px;
  height: 42px;
  background: linear-gradient(90deg, #BFC6D3, #EEF1F6 50%, #BFC6D3);
  transform: translateX(-50%);
}
.monitor-stand::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 190px;
  height: 12px;
  border-radius: 8px;
  background: linear-gradient(#EEF1F6, #C4CBD8);
  transform: translateX(-50%);
}

.tablo {
  width: 460px;
  padding: 22px 22px 16px;
  background: var(--night-3);
  color: #fff;
}
.tablo-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.tablo-title { font-family: var(--f-display); font-size: 25px; font-weight: 600; line-height: 1.1; letter-spacing: -.02em; }
.tablo-sub { margin-top: 7px; font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .4); }
.tablo-clock { font-family: var(--f-mono); font-size: 32px; font-weight: 500; line-height: 1; color: #FFC94A; }
.tablo-clock .colon { animation: blink 1s steps(1) infinite; }
.tablo-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 58px 132px;
  align-items: center;
  gap: 8px;
  margin: 0 -10px;
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
}
.tablo-row:nth-child(odd) { background: rgba(255, 255, 255, .03); }
.tablo-row--head {
  padding-top: 12px;
  padding-bottom: 8px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  background: none !important;
}
.tablo-row--head span:nth-child(3) { text-align: center; }
.tablo-row--head span:last-child { text-align: right; }
.tablo-row .t { font-family: var(--f-mono); font-size: 18px; font-weight: 500; color: #FFD66B; }
.tablo-row .p { font-family: var(--f-mono); font-size: 17px; text-align: center; }
.tablo-row > span:last-child { text-align: right; }
.st { font-size: 11.5px; font-weight: 500; color: rgba(255, 255, 255, .55); }
.st--boarding {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 7px;
  background: #1FAE8A;
  color: #fff;
  font-weight: 600;
  animation: glow-pill 2.4s ease-in-out infinite;
}
.st--delay { color: var(--amber); font-weight: 600; }
.tablo-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 12.5px;
  color: rgba(255, 255, 255, .72);
}
.tablo-foot img { border-radius: 6px; flex: none; }
.ticker {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker > span { display: inline-block; padding-left: 100%; animation: ticker 11s linear infinite; }

/* ==========================================================================
   Apps (passenger / driver)
   ========================================================================== */
.app-grid { display: grid; gap: 44px; }
@media (min-width: 1100px) {
  .app-grid { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 40px; align-items: center; }
  .app-grid--driver { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }
}

.app-copy > .btn { margin-top: 4px; }

.feature-list { display: grid; gap: 18px; margin-bottom: 26px; padding: 0; list-style: none; }
@media (min-width: 640px) and (max-width: 1099px) { .feature-list { grid-template-columns: 1fr 1fr; gap: 20px 28px; } }
.feature-list li { display: flex; align-items: flex-start; gap: 14px; }
.feature-list h3 { margin: 1px 0 2px; font-size: 17px; font-weight: 700; line-height: 1.3; }
.feature-list p { font-size: 15px; line-height: 1.45; color: var(--muted); }
.feature-list--dark p { color: rgba(255, 255, 255, .6); }

.soon-box {
  margin-bottom: 26px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1.5px dashed #C4CEE2;
  background: rgba(255, 255, 255, .55);
}
.soon-box .mono-label { color: var(--teal-deep); }
.soon-box p:last-child { margin-top: 6px; color: var(--ink-2); }

/* Passenger: search */
.app-hero {
  flex: none;
  padding-bottom: 16px;
  border-radius: 0 0 26px 26px;
  background: linear-gradient(160deg, #00B2D6 0%, #1A7CF5 62%, #3E6BF5 100%);
  color: #fff;
}
.app-bar { display: flex; justify-content: space-between; align-items: center; padding: 6px 16px 0; }
.icon-btn { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; background: rgba(255, 255, 255, .18); }
.icon-btn .i { width: 17px; height: 17px; }
.icon-btn--soft { background: var(--bg); color: var(--ink); }
.app-title { margin: 12px 18px 12px; font-size: 21px; font-weight: 700; line-height: 1.2; }
.search-card {
  position: relative;
  margin: 0 14px;
  padding: 8px 14px 10px;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 26px -14px rgba(10, 15, 31, .4);
}
.sc-row { display: flex; align-items: center; gap: 10px; padding: 6px 44px 6px 0; }
.sc-row + .sc-row { border-top: 1px solid var(--line-soft); }
.sc-row small { display: block; font-size: 10.5px; color: var(--subtle); }
.sc-row b { font-size: 15px; }
.sc-dot { flex: none; width: 10px; height: 10px; border-radius: 50%; border: 2.5px solid var(--teal); }
.sc-dot--to { background: var(--blue); border-color: #C9D8FB; }
.sc-swap {
  position: absolute;
  right: 12px;
  top: 32px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #EEF3FE;
  color: var(--blue);
}
.sc-swap .i { width: 16px; height: 16px; }
.sc-date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--bg);
  font-size: 11.5px;
  color: var(--ink-2);
}
.sc-date .i { width: 14px; height: 14px; }
.app-caption { margin: 14px 18px 8px; font-size: 11.5px; color: var(--subtle); }
.trip { flex: none; margin: 0 14px 8px; padding: 10px 12px; border-radius: 14px; border: 1px solid var(--line); background: #fff; }
.trip.is-selected { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(62, 116, 240, .12); }
.trip-times { display: flex; align-items: center; gap: 8px; }
.trip-times b { font-size: 15px; font-weight: 700; }
.trip-times i { flex: 0 1 36px; border-top: 1.5px dashed #C3CAD6; }
.trip-price { margin-left: auto; font-size: 15px; font-weight: 700; color: var(--blue); white-space: nowrap; }
.trip-price small { font-size: 10px; }
.trip-meta { display: flex; justify-content: space-between; gap: 8px; margin-top: 4px; font-size: 10.5px; color: var(--subtle); }
.tabbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-around;
  padding: 8px 10px 16px;
  border-top: 1px solid var(--line-soft);
  background: #fff;
}
.tabbar span { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--subtle); }
.tabbar small { font-size: 10px; }
.tabbar .i { width: 18px; height: 18px; }
.tabbar .is-active { color: var(--blue); }

/* Passenger: seats */
.seats-head { display: flex; align-items: center; gap: 10px; padding: 4px 16px 0; }
.seats-head b { display: block; font-size: 14.5px; }
.seats-head small { display: block; font-size: 10.5px; color: var(--subtle); }
.legend { display: flex; flex-wrap: wrap; gap: 6px 12px; padding: 10px 16px 6px; font-size: 10.5px; color: var(--muted); }
.legend > span { display: inline-flex; align-items: center; gap: 5px; }
.sq { display: inline-block; width: 11px; height: 11px; border-radius: 3px; }
.sq--free { border: 1.5px solid #9FB4E8; background: #fff; }
.sq--taken { background: var(--line-soft); }
.sq--mine { background: var(--blue); }
.bus {
  margin: 4px 34px 0;
  padding: 10px 14px 12px;
  border: 1.5px solid var(--line);
  border-radius: 26px 26px 16px 16px;
  background: #FBFCFE;
}
.bus-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; color: var(--subtle); }
.bus-top .i { width: 18px; height: 18px; }
.bus-top small { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; }
.seat-grid { display: grid; grid-template-columns: 26px 26px 14px 26px 26px; justify-content: center; gap: 5px; }
.seat-grid i {
  height: 20px;
  border-radius: 6px;
  background: var(--line-soft);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  color: var(--blue-deep);
}
.seat-grid i.f { border: 1.5px solid #B8C8F0; background: #fff; line-height: 17px; }
.seat-grid i.m { background: var(--blue); color: #fff; box-shadow: 0 4px 10px -4px rgba(62, 116, 240, .9); }
.seats-foot { margin-top: auto; padding: 10px 16px 16px; border-top: 1px solid var(--line-soft); background: #fff; }
.sf-row { display: flex; justify-content: space-between; align-items: flex-end; }
.sf-row small { display: block; font-size: 10.5px; color: var(--subtle); }
.sf-row b { font-size: 17px; font-weight: 700; }
.sf-row b small { display: inline; font-size: 11px; color: inherit; }
.sf-row .right { text-align: right; }
.pay-btn {
  display: grid;
  place-items: center;
  height: 42px;
  margin-top: 10px;
  border-radius: 13px;
  background: var(--g-cta);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 20px -10px rgba(26, 124, 245, .85);
}

/* Passenger: ticket */
.app-ticket { background: var(--bg); }
.tk-title { margin: 4px 18px 10px; font-size: 21px; font-weight: 700; }
.seg { display: grid; grid-template-columns: 1fr 1fr; margin: 0 16px 12px; padding: 3px; border-radius: 12px; background: #E6EBF3; }
.seg span { padding: 7px; border-radius: 9px; font-size: 12px; font-weight: 600; text-align: center; color: var(--subtle); }
.seg .is-active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.ticket { margin: 0 14px; overflow: hidden; border-radius: 20px; background: #fff; box-shadow: 0 14px 30px -14px rgba(10, 15, 31, .3); }
.tk-top { padding: 12px 14px 14px; color: #fff; background: linear-gradient(135deg, #00B2D6, #1A7CF5 72%); }
.tk-brand { display: flex; justify-content: space-between; align-items: center; }
.tk-brand small { font-family: var(--f-mono); font-size: 10.5px; opacity: .9; }
.tk-times { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 10px; }
.tk-times b { display: block; font-family: var(--f-display); font-size: 20px; font-weight: 600; line-height: 1; letter-spacing: -.02em; }
.tk-times small { display: block; margin-top: 4px; font-size: 10px; opacity: .88; }
.tk-times .right { text-align: right; }
.tk-dur { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 0 8px 4px; }
.tk-dur small { margin: 0 0 4px; font-size: 9px; }
.tk-dur i { width: 100%; border-top: 1.5px dashed rgba(255, 255, 255, .6); }
.tk-date { margin-top: 10px; font-size: 11px; opacity: .92; }
.tk-body { position: relative; padding: 12px 14px; border-top: 2px dashed var(--line); }
.tk-body::before,
.tk-body::after {
  content: "";
  position: absolute;
  top: -9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
}
.tk-body::before { left: -8px; }
.tk-body::after { right: -8px; }
.tk-info { display: grid; grid-template-columns: auto auto minmax(0, 1fr); gap: 14px; }
.tk-info small { display: block; font-size: 9.5px; color: var(--subtle); }
.tk-info b { font-size: 13px; font-weight: 700; white-space: nowrap; }
.tk-qr { display: block; width: 136px; height: 136px; margin: 10px auto 0; }
.tk-hint { margin-top: 6px; font-size: 10.5px; text-align: center; color: var(--muted); }
.tk-paid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px 14px 0;
  padding: 10px;
  border-radius: 12px;
  background: var(--green-bg);
  font-size: 12px;
  font-weight: 600;
  color: var(--green-deep);
}
.tk-paid .i { width: 16px; height: 16px; }

/* Driver app */
.drv { background: var(--night); color: #fff; padding-bottom: 12px; }
.drv-bar { display: flex; justify-content: space-between; align-items: center; gap: 6px; padding: 4px 12px 0; }
.drv-bar .lockup { font-size: 11.5px; }
.drv-bar .pill { padding: 5px 8px; font-size: 10px; gap: 5px; }
.drv-bar .dot { width: 6px; height: 6px; }
.drv-card { margin: 10px 12px 0; padding: 12px 14px; border-radius: 18px; background: var(--night-2); border: 1px solid rgba(255, 255, 255, .07); }
.drv-mono { font-family: var(--f-mono); font-size: 9.5px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: rgba(255, 255, 255, .45); }
.drv-route { margin-top: 6px; font-size: 17px; font-weight: 700; }
.drv-meta { margin-top: 3px; font-size: 11px; color: rgba(255, 255, 255, .5); }
.drv-board {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.ring { width: 56px; height: 56px; flex: none; transform: rotate(-90deg); }
.ring circle { fill: none; stroke: rgba(255, 255, 255, .1); stroke-width: 6; }
.ring .ring-val { stroke: #34C38F; stroke-linecap: round; stroke-dasharray: var(--v) 100; }
.js .is-in .ring-val { animation: ring-fill 1.4s var(--ease) both .3s; }
.ring-pct { position: absolute; left: 0; top: 10px; display: grid; place-items: center; width: 56px; height: 56px; font-size: 12.5px; font-weight: 700; }
.drv-board small { display: block; font-size: 11px; color: rgba(255, 255, 255, .55); }
.drv-board b { font-family: var(--f-display); font-size: 28px; font-weight: 600; line-height: 1.1; }
.drv-board em { font-family: var(--f-sans); font-size: 14px; font-style: normal; color: rgba(255, 255, 255, .45); }
.drv-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  margin: 10px 12px 0;
  border-radius: 14px;
  background: linear-gradient(90deg, #34C38F, #1FB5CD);
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 10px 24px -12px rgba(52, 195, 143, .9);
}
.drv-btn .i { width: 18px; height: 18px; }
.drv-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 8px 12px 0; }
.drv-btns > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px;
  border-radius: 12px;
  background: var(--night-2);
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: 12px;
  font-weight: 600;
}
.drv-btns .i { width: 16px; height: 16px; }
.drv-label { margin: 12px 14px 4px; font-size: 11px; font-weight: 500; color: rgba(255, 255, 255, .5); }
.feed { margin: 0 12px; padding: 0; list-style: none; }
.feed li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: 12px;
  color: rgba(255, 255, 255, .74);
}
.feed li > span:nth-child(2) { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed b { font-size: 12.5px; color: var(--green-light); white-space: nowrap; }
.feed time { margin-left: 6px; font-size: 11px; color: rgba(255, 255, 255, .4); }
.feed .is-new { animation: feed-in .6s var(--ease) both; }
.ft { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: rgba(31, 181, 205, .12); color: var(--teal); }
.ft .i { width: 15px; height: 15px; }
.drv-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin: auto 12px 0;
  padding: 11px 14px;
  border-radius: 14px;
  background: var(--night-2);
  border: 1px solid rgba(255, 255, 255, .07);
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}
.drv-total b { font-size: 15px; color: #fff; white-space: nowrap; }
.drv-small { margin-top: 6px; font-size: 11.5px; color: rgba(255, 255, 255, .55); }
.drv-big {
  margin-top: 2px;
  font-family: var(--f-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.drv-big small { font-size: .42em; letter-spacing: 0; color: rgba(255, 255, 255, .55); }
.drv-card .bar { margin-top: 10px; }
.drv-card .bar > span { transition: width .6s var(--ease); }
.drv-plan { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11px; color: rgba(255, 255, 255, .55); }
.drv-plan b { color: #fff; }
.drv-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 10px 12px 0; }
.drv-stats > span { padding: 8px 8px; border-radius: 12px; background: var(--night-2); border: 1px solid rgba(255, 255, 255, .07); }
.drv-stats b { display: block; font-size: 17px; font-weight: 700; font-variant-numeric: tabular-nums; }
.drv-stats small { display: block; font-size: 9.5px; letter-spacing: -.01em; color: rgba(255, 255, 255, .5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.price-grid { display: grid; gap: 14px; }
@media (min-width: 640px) { .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .price-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.price-card {
  padding: 26px 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.price-card h3 { margin: 16px 0 6px; font-size: 18px; font-weight: 700; }
.price-card h3 + p { font-size: 15px; line-height: 1.5; color: var(--muted); }
.zero {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
}
.zero > span:last-child { font-size: 22px; letter-spacing: 0; color: var(--ink); }

.price-card--main {
  position: relative;
  grid-column: 1 / -1;
  overflow: hidden;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #1FB5CD 0%, #3E74F0 48%, #5B4CF5 100%);
  box-shadow: 0 30px 60px -24px rgba(62, 116, 240, .65);
}
.price-card--main::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .25), transparent 70%);
  pointer-events: none;
}
@media (min-width: 1024px) { .price-card--main { grid-column: span 2; } }
.price-card--main .mono-label { color: rgba(255, 255, 255, .78); }
.comm { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; margin-top: 12px; }
.comm-big {
  font-family: var(--f-display);
  font-size: clamp(72px, 4vw + 52px, 112px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.05em;
}
.comm-text { max-width: 17ch; font-size: 19px; font-weight: 600; line-height: 1.3; }
.price-card--main .comm-low {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.price-card--main .comm-note { margin-top: 6px; font-size: 13px; color: rgba(255, 255, 255, .8); }

.example {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 480px) { .example { grid-template-columns: auto minmax(0, 1fr) auto auto; } }
@media (min-width: 1024px) { .example { grid-column: span 2; } }
.ex-title h3 {
  margin-top: 3px;
  font-family: var(--f-display);
  font-size: clamp(18px, .8vw + 13px, 23px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.ex-rate { display: inline-flex; flex-direction: column; align-items: center; gap: 2px; color: var(--blue); }
.ex-rate b {
  padding: 4px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3CC792, #1FB5CD 50%, #5B4CF5);
  font-size: 12px;
  color: #fff;
}
.ex-rate .i { width: 18px; height: 18px; }
.ex-result { text-align: right; }
.ex-result b {
  display: block;
  width: fit-content;
  margin-left: auto;
  font-family: var(--f-display);
  font-size: clamp(34px, 1.8vw + 24px, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.035em;
  white-space: nowrap;
}
.ex-result small { display: block; margin-top: 4px; font-size: 12.5px; color: var(--subtle-text); }

.facts { display: grid; gap: 12px; margin-top: 16px; padding: 0; list-style: none; }
@media (min-width: 900px) { .facts { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.facts li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--muted);
}
.facts .i { color: var(--blue); }
.facts strong { color: var(--ink); }
.fine-print { margin-top: 16px; font-size: 14px; color: var(--muted); }

/* ==========================================================================
   Launch steps
   ========================================================================== */
.steps { position: relative; display: grid; gap: 16px; padding: 0 0 0 36px; list-style: none; }
.steps::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, #3CC792, #1FB5CD 40%, #3E74F0 72%, #5B4CF5);
}
.step { position: relative; }
.step-dot {
  position: absolute;
  left: -36px;
  top: 24px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--c, var(--blue));
  box-shadow: 0 0 0 5px rgba(62, 116, 240, .13);
}
.step:nth-child(1) { --c: #34C38F; }
.step:nth-child(2) { --c: #1FB5CD; }
.step:nth-child(3) { --c: #3E74F0; }
.step:nth-child(4) { --c: #5B4CF5; }
.step-card {
  height: 100%;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.step-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.step-num { font-family: var(--f-display); font-size: 44px; font-weight: 600; line-height: 1; letter-spacing: -.04em; }
.step h3 { margin: 18px 0 6px; font-size: 18px; font-weight: 700; }
.step p { font-size: 14.5px; line-height: 1.5; color: var(--muted); }

@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 46px 0 0; }
  .steps::before {
    left: 30px;
    right: calc((100% - 48px) / 4 - 30px);
    top: 8px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: var(--g-line);
  }
  .step-dot { left: 21px; top: -46px; }
}

.need-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: 20px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.need-label {
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.need-bar p { display: flex; align-items: center; gap: 10px; flex: 1 1 280px; font-size: 15px; color: var(--muted); }
.need-bar .i { color: var(--blue); }
.need-bar strong { color: var(--ink); }

/* ==========================================================================
   Contacts + footer
   ========================================================================== */
.section--contact { overflow: hidden; padding-bottom: 44px; }
.contact-map {
  position: absolute;
  top: -20px;
  right: -80px;
  width: min(760px, 110vw);
  height: auto;
  opacity: .5;
  pointer-events: none;
}
.contact-map path { fill: none; stroke-width: 3; stroke-linecap: round; opacity: .7; }
.contact-map .cm-intl { stroke: rgba(255, 255, 255, .4); stroke-width: 2; stroke-dasharray: 4 9; }
.contact-map .cm-stops circle { fill: var(--night-3); stroke: rgba(255, 255, 255, .6); stroke-width: 2.5; }
@media (max-width: 899px) { .contact-map { opacity: .3; top: 0; } }

.contact-grid { position: relative; display: grid; gap: 44px; align-items: center; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 1fr) auto; } }
.lockup--xl { display: flex; gap: 14px; width: fit-content; margin-bottom: 44px; color: #fff; }
.lockup--xl img { width: 56px; height: 56px; border-radius: 13px; box-shadow: 0 16px 40px -12px rgba(0, 178, 214, .75); }
.lockup--xl .brand-word { font-size: 32px; }
.contact-copy .lead { color: rgba(255, 255, 255, .7); }

.qr-card {
  justify-self: start;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7);
}
@media (min-width: 900px) { .qr-card { justify-self: end; } }
.qr-card img { display: block; width: 176px; height: 176px; margin: 0 auto; }
.qr-cap { margin-top: 10px; font-size: 14px; font-weight: 600; }
.qr-url { margin-top: 2px; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--subtle-text); }

.contact-bar {
  position: relative;
  display: grid;
  gap: 26px;
  margin-top: clamp(56px, 4vw + 32px, 88px);
  padding-top: 28px;
  background: linear-gradient(rgba(255, 255, 255, .08), rgba(255, 255, 255, .08)) no-repeat center top / calc(100% - var(--gutter) * 2) 1px;
}
@media (min-width: 1100px) { .contact-bar { grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 40px; } }
.adamtech {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-decoration: none;
}
.adamtech-mark { width: 46px; height: 36px; flex: none; }
.contact-items { display: grid; gap: 16px; padding: 0; list-style: none; }
@media (min-width: 560px) { .contact-items { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .contact-items { grid-template-columns: repeat(4, auto); justify-content: end; gap: 28px; } }
.contact-items li { display: flex; align-items: center; gap: 12px; min-width: 0; }
.ci-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 11px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--teal);
}
.ci-icon .i { width: 18px; height: 18px; }
.contact-items small {
  display: block;
  margin-bottom: 3px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}
.contact-items li > span:last-child { min-width: 0; font-size: 15px; font-weight: 600; color: #fff; }
.contact-items a { color: #fff; text-decoration: none; white-space: nowrap; }
.contact-items a:hover { color: #BFF3FF; }

.site-footer {
  padding: 48px 0 28px;
  background: var(--night-3);
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .62);
  font-size: 14.5px;
}
.footer-grid { display: grid; gap: 32px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.site-footer .brand { color: #fff; }
.footer-brand p { max-width: 36ch; margin-top: 14px; }
.footer-h {
  margin-bottom: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}
.footer-col ul { display: grid; gap: 10px; padding: 0; list-style: none; }
.footer-col a { color: rgba(255, 255, 255, .8); text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-col b { color: #fff; font-weight: 600; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  margin-top: 40px;
  padding-top: 20px;
  background: linear-gradient(rgba(255, 255, 255, .07), rgba(255, 255, 255, .07)) no-repeat center top / calc(100% - var(--gutter) * 2) 1px;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255, 255, 255, .82); }
.footer-bottom a:hover { color: #fff; }

/* ==========================================================================
   Privacy page
   ========================================================================== */
.doc-hero { padding: clamp(48px, 5vw + 24px, 88px) 0 clamp(40px, 4vw + 16px, 64px); }
.doc-hero .h2 { max-width: 20ch; }
.doc-hero .lead { color: rgba(255, 255, 255, .7); }
.doc-meta { margin-top: 18px; font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .5); }
.doc-body { background: #fff; padding-block: clamp(48px, 5vw + 20px, 88px); }
.doc { max-width: 780px; margin-inline: auto; color: var(--ink-2); font-size: 16.5px; line-height: 1.7; }
.doc section + section { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line-soft); }
.doc h2 {
  margin-bottom: 14px;
  font-family: var(--f-display);
  font-size: clamp(20px, 1vw + 15px, 26px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--ink);
}
.doc h3 { margin: 20px 0 8px; font-size: 17px; font-weight: 700; color: var(--ink); }
.doc p + p, .doc p + ul, .doc ul + p { margin-top: 12px; }
.doc ul { padding-left: 22px; }
.doc li + li { margin-top: 6px; }
.doc li::marker { color: var(--blue); }
.doc a { color: var(--blue-deep); text-underline-offset: 3px; }
.doc strong { color: var(--ink); }
.doc-contacts {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--bg);
  list-style: none;
}
.doc-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; }

/* ==========================================================================
   Reveal + motion
   ========================================================================== */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease) var(--d, 0s), transform .7s var(--ease) var(--d, 0s);
}
.js:not(.js-ready) [data-reveal] { animation: reveal-fallback 0s 3s forwards; }
.js [data-reveal].is-in { opacity: 1; transform: none; }

@keyframes reveal-fallback { to { opacity: 1; transform: none; } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fade-in { from { opacity: 0; } }
@keyframes card-in { from { opacity: 0; transform: translateY(16px); } }
@keyframes grow { from { transform: scaleY(0); } }
@keyframes bar-grow { from { transform: scaleX(0); } }
@keyframes floaty { from { transform: translateY(0); } to { transform: translateY(-8px); } }
@keyframes ring { 0% { transform: scale(.6); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }
@keyframes glow { from { opacity: .7; } to { opacity: 1; } }
@keyframes dot-pulse { 50% { box-shadow: 0 0 0 5px rgba(68, 193, 138, .08); } }
@keyframes blink { 50% { opacity: 0; } }
@keyframes ticker { to { transform: translateX(-100%); } }
@keyframes glow-pill { 50% { box-shadow: 0 0 0 4px rgba(31, 174, 138, .22); } }
@keyframes pop { from { transform: scale(.4); opacity: 0; } }
@keyframes ring-fill { from { stroke-dasharray: 0 100; } }
@keyframes feed-in { from { opacity: 0; transform: translateY(-10px); background: rgba(68, 193, 138, .12); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .js .route-map .route { stroke-dasharray: none; stroke-dashoffset: 0; }
  .route-map .buses { display: none; }
  .ticker > span { padding-left: 0; }
}

@media print {
  .site-header, .skip-link, .route-map .buses { display: none; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
