/*
 * Self-hosted Segoe UI — font-display:swap prevents invisible text during load.
 * Performance note: Convert TTFs to WOFF2 (run: python3 optimize-images.py --fonts)
 * to cut font payload from 1.6 MB to ~400 KB. On Windows, local() resolves and
 * no font bytes are downloaded at all.
 */
@font-face {
  font-family: 'Segoe UI';
  src:
    local('Segoe UI'),
    local('SegoeUI'),
    url('../fonts/segoeuithis.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Segoe UI';
  src:
    local('Segoe UI Bold'),
    local('SegoeUI-Bold'),
    url('../fonts/segoeuithibd.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050608;
  --bg-2: #0a0f0c;
  --card: rgba(16, 22, 17, 0.82);
  --stroke: rgba(255, 255, 255, 0.08);
  --primary: #0071e3;
  --primary-rgb: 0, 113, 227;
  --accent: #ffd84d;
  --text: #f7f9f4;
  --muted: #b0b7b0;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #000000;
  color: var(--text);
  min-height: 100vh;
  padding: 0 0 72px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  transition: filter 0.2s ease;
}

.page {
  max-width: clamp(1200px, 88vw, 1520px);
  margin: 0 auto;
  position: relative;
}

.white-region {
  background: #f5f5f7;
  color: #0f1218;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 0;
}

.white-region .page {
  max-width: clamp(1200px, 88vw, 1520px);
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  background: #0f1117;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  padding: 0 0;
}

.nav-inner {
  max-width: none;
  padding: 26px clamp(32px, 4vw, 80px);
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  text-decoration: none;
  font-size: 20px;
}

.brand-logo {
  height: 30px;
  width: auto;
  display: block;
}

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

nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-weight: 600;
  color: var(--text);
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  transition: color 0.18s ease, opacity 0.18s ease, transform 0.25s ease;
}

nav a .caret {
  font-size: 12px;
  opacity: 0.6;
}

nav a:hover {
  color: #e2e11b;
  transform: translateY(-1px) scale(1.02);
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 320px;
  max-width: 540px;
  background: #0f1117;
  color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-item:hover > a,
.nav-item:focus-within > a {
  color: #e2e11b;
  position: relative;
}

.nav-item:hover > a::after,
.nav-item:focus-within > a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  bottom: -8px;
  background: #e2e11b;
  border-radius: 999px;
  z-index: -1;
}


.nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px 28px;
  text-align: left;
}

.nav-grid h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
  cursor: pointer;
  user-select: text;
}

.nav-grid p {
  display: none;
}

.nav-grid h4:hover {
  color: #ffffff;
}

.nav-dropdown a,
.nav-dropdown h4,
.mega-item {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  background: none;
  border: none;
  padding: 6px 0;
  text-align: left;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: block;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible,
.mega-item:hover,
.mega-item:focus-visible {
  color: #ffffff;
}
.mega-item--rich {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  width: 100%;
  text-align: left;
  transition: background 0.15s ease;
}
.mega-item--rich:hover {
  background: rgba(255,255,255,0.06);
}
.mega-item-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
}
.mega-item-icon img {
  display: block;
}
.mega-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-item-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.mega-item-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

.nav-mega {
  position: fixed;
  left: 0;
  right: 0;
  top: 64px;
  background: rgba(15, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 40px 24px 50px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 15;
}

.nav-mega.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-mega-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 40px;
  text-align: left;
}

.nav-mega h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 500;
}

.nav-mega .mega-left h3 {
  font-size: 24px;
  margin: 0 0 18px;
}

.mega-right .mega-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 10px;
}

.mega-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: #ffffff;
}

body.nav-open .page,
body.nav-open .media-block,
body.nav-open .white-region,
body.nav-open .count-band,
body.nav-open .trust,
body.nav-open .hero {
  filter: blur(6px);
}
.actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  color: var(--text);
}

.btn.primary {
  background: linear-gradient(135deg, #0071e3, #0b84ff);
  box-shadow: none;
  color: #ffffff;
}

.btn.ghost {
  border-color: var(--stroke);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #0b84ff, #0063cc);
  box-shadow: none;
  color: #ffffff;
}

.hero {
  padding: 60px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
}

h1 {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: clamp(36px, 4vw, 72px);
  margin: 18px 0 16px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

p.lead {
  color: #000;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.6;
  margin: 0 0 22px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.stat-card {
  padding: 14px 16px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.stat-card strong {
  display: block;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.stat-card span {
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 80% 0%, rgba(var(--primary-rgb), 0.16), transparent);
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.hero-card-title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.badge {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 216, 77, 0.16);
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  border: 1px solid rgba(255, 216, 77, 0.45);
}

.mini-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.route-line {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.route-line::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.08), transparent 45%, transparent 55%, rgba(255, 216, 77, 0.1));
  pointer-events: none;
}

.route-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.route-meta strong {
  font-size: 17px;
}

.route-meta span {
  color: var(--muted);
  font-size: 13px;
}

.progress {
  margin-top: 10px;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0071e3, #5ab4ff);
  width: 68%;
}

.tag-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.pill {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  font-size: 12px;
  color: var(--muted);
}

section {
  padding: 26px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 10px 0 6px;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: clamp(24px, 2.2vw, 38px);
  letter-spacing: -0.01em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.5;
}

.trust {
  padding: 20px 0 10px;
  background: #ffffff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.trust .section-heading {
  justify-content: center;
  text-align: center;
}
.trust .section-heading h2 {
  width: 100%;
  color: #1d1d1f;
}

.ba-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 40px 0 60px;
  background: #ffffff;
  box-shadow: none;
}
.ba-section .section-heading {
  justify-content: center;
  text-align: center;
}
.ba-section .section-heading > div {
  text-align: center;
}
.ba-section .section-heading .ba-subtitle {
  margin: 10px auto 0;
  max-width: 520px;
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
}
.ba-comparison-wrapper {
  margin: 28px 0 0;
}
.ba-comparison {
  display: block;
  width: 100%;
  max-width: none;
  box-shadow: none;
  aspect-ratio: 21 / 9;
  --divider-width: 10px;
  --divider-color: #ffffff;
  --default-handle-width: 80px;
  outline: none;
}
.ba-comparison:focus,
.ba-comparison:focus-visible {
  outline: none;
}
.ba-comparison::part(separator) {
  width: 10px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0.35));
}
.ba-comparison img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-before-duo {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #e8e8ed;
  padding: 24px;
  box-sizing: border-box;
}
.ba-before-duo img {
  width: 70%;
  height: auto;
  max-height: 80%;
  object-fit: contain;
}
.ba-comparison img[slot="second"] {
  object-fit: contain;
  object-position: center;
  transform: scale(0.8) translateY(-10%);
  transform-origin: center center;
}
.ba-handle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}
.ba-handle svg {
  width: 16px;
  height: 16px;
}

.logo-scroller {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.logo-track {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  animation: scroll-logos 26s linear infinite;
  padding: 6px 0;
  min-width: max-content;
  will-change: transform;
}

.logo-static {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 48px;
  padding: 12px 0;
}
.logo-static .logo-img {
  height: 68px;
  width: 210px;
  object-fit: contain;
}

.media-block {
  padding: 0 0 20px;
}

.video-window {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

.video-chrome {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  background: #e5e7eb;
  border-bottom: 1px solid #d6d9df;
}

.video-chrome .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.video-chrome .dot.red { background: #ff5f57; }
.video-chrome .dot.yellow { background: #febc2e; }
.video-chrome .dot.green { background: #28c840; }

.hero-video {
  width: 100%;
  display: block;
  background: #fff;
}

.count-band {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: clamp(80px, 9vw, 160px) 20px clamp(80px, 9vw, 160px);
  background:
    radial-gradient(ellipse 70% 55% at 15% 60%, rgba(var(--primary-rgb), 0.18), transparent 55%),
    radial-gradient(ellipse 55% 65% at 85% 25%, rgba(78, 120, 255, 0.2), transparent 55%),
    radial-gradient(ellipse 45% 50% at 50% 100%, rgba(180, 80, 255, 0.14), transparent 50%),
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(78, 171, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #04060a 0%, #060a12 60%, #050608 100%);
  color: #eaf3ff;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.count-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.count-band::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 171, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.count-content {
  text-align: center;
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.count-number {
  font-size: clamp(96px, 18vw, 160px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, rgba(150, 210, 255, 0.9) 45%, rgba(var(--primary-rgb), 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.count-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 13px;
  color: rgba(234, 243, 255, 0.55);
  margin-top: 4px;
}

.count-subtext {
  font-size: 17px;
  color: rgba(234, 243, 255, 0.75);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.logo-card {
  width: 150px;
  height: 70px;
  display: grid;
  place-items: center;
}

.logo-img {
  width: 120px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.25));
}
.logo-card:nth-of-type(6) .logo-img,
.logo-card:nth-of-type(13) .logo-img {
  width: 170px;
  height: 60px;
}
.logo-card:nth-of-type(5) .logo-img,
.logo-card:nth-of-type(12) .logo-img {
  width: 172px;
  height: 61px;
}
.logo-card:nth-of-type(1) .logo-img,
.logo-card:nth-of-type(8) .logo-img {
  width: 180px;
  height: 63px;
}

.ai-banner {
  padding: clamp(48px, 5vw, 80px) 0;
  background: #fff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.ai-card {
  background: linear-gradient(135deg, #1e2550, #0e132c 50%, #0a1224);
  border-radius: 26px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ai-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(var(--primary-rgb), 0.12), transparent 35%),
              radial-gradient(circle at 80% 30%, rgba(226, 225, 27, 0.12), transparent 35%);
  pointer-events: none;
}

.ai-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 22px;
  justify-self: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.ai-chat-bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 28px 36px;
  filter: blur(4px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ai-chat-msg {
  max-width: 62%;
  padding: 10px 16px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #ffffff;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  flex-shrink: 0;
}
.ai-chat-msg.visible {
  opacity: 1;
  transform: translateY(0);
}
.ai-chat-user {
  align-self: flex-end;
  background: rgba(0, 113, 227, 0.75);
  border-bottom-right-radius: 4px;
}
.ai-chat-bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.14);
  border-bottom-left-radius: 4px;
}
.ai-chat-typing {
  align-self: flex-start;
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  flex-shrink: 0;
}
.ai-chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  animation: typing-dot 1.2s ease-in-out infinite;
}
.ai-chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
  40%           { transform: scale(1);   opacity: 1; }
}
.ai-card-content {
  position: relative;
  z-index: 2;
  display: contents;
}
.ai-card h2 {
  margin: 6px 0;
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.01em;
}

.ai-card p {
  margin: 0;
  color: #d8deec;
  line-height: 1.6;
  max-width: 820px;
  justify-self: center;
}

.ai-card .btn {
  justify-self: center;
  margin-top: 6px;
}

/* Agent image showcase (replaces ai-card chat banner) */
.ai-showcase {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.ai-showcase-copy {
  margin-bottom: 48px;
}
.ai-showcase-copy h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin: 0 0 14px;
  line-height: 1.1;
}
.ai-showcase-copy p {
  font-size: 17px;
  color: #4b5563;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}
.ai-showcase-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.ai-showcase-phones img {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 24px 50px rgba(15,23,42,0.14));
}
.ai-showcase-cta {
  display: inline-block;
}
@media (max-width: 820px) {
  .ai-showcase-phones {
    gap: 16px;
  }
  .ai-showcase-phones img {
    max-width: 44%;
  }
}

#hardware-block {
  background: #ffffff;
  color: #1a1a1a;
}

/* ── Dual Feature Cards ─────────────────────────────── */
.dual-feature {
  padding: 60px 0;
  margin: 0 -22px;
}
.df-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 70%;
  margin: 0 auto;
}
.df-card {
  position: relative;
  background: #1a1a1e;
  border-radius: 22px;
  overflow: hidden;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  cursor: default;
}
.df-card-content {
  padding: 28px 28px 0;
  position: relative;
  z-index: 2;
}

/* Photo variant */
.df-card--white {
  background: #ffffff;
}
.df-card--white .df-bg-img {
  object-position: center 75%;
}
.df-card--photo {
  background: #000;
}
.df-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.df-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.05) 100%);
  z-index: 1;
}
.df-card-content--bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 28px;
  z-index: 2;
}
.df-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.df-headline {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.18;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}
.df-img-wrap {
  flex: 1;
  margin: 20px 0 0;
  background: #111114;
  min-height: 450px;
}
.df-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.df-plus {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s;
  backdrop-filter: blur(6px);
}
.df-plus:hover {
  background: rgba(255,255,255,0.22);
}

/* Card overlay (shown over the individual card) */
.df-card-overlay {
  position: absolute;
  inset: 0;
  background: #1c1c1f;
  border-radius: 22px;
  padding: 32px 32px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
  z-index: 10;
}
.df-card-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.dfm-title {
  font-size: 27px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.dfm-body {
  font-size: 23px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin: 0 0 20px;
}
.dfm-link {
  font-size: 23px;
  color: #3a8ef6;
  text-decoration: none;
  font-weight: 500;
}
.dfm-link:hover { text-decoration: underline; }
.dfm-close {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dfm-close:hover { background: rgba(255,255,255,0.18); }

@media (max-width: 680px) {
  .df-grid { grid-template-columns: 1fr; }
}

.category-showcase {
  padding: 0 0 70px;
  display: grid;
  gap: 18px;
  background: transparent;
  color: var(--text);
  padding: 20px;
  text-align: center;
}

.category-showcase .section-heading {
  justify-content: center;
}

.category-showcase .section-heading h2 {
  width: 100%;
  color: #000000;
}

.category-switcher {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  position: relative;
  padding: 5px;
  justify-content: center;
  background: #ffffff;
  border-radius: 999px;
  max-width: 1100px;
  margin: 0 auto;
}

.category-switcher .tab {
  border: none;
  background: transparent;
  color: rgba(0, 0, 0, 0.55);
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
  z-index: 1;
}

.category-switcher .tab.active {
  background: #1a1a1a;
  color: #ffffff;
}

.category-switcher .tab:hover {
  color: rgba(0, 0, 0, 0.8);
}

.category-switcher .tab:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.3);
  outline-offset: 2px;
}

.switcher-indicator {
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  border-radius: 999px;
  background: #1a1a1a;
  transition: none;
  z-index: 0;
}
.switcher-indicator.ready {
  transition: transform 0.25s ease, width 0.25s ease;
}

.category-placeholder {
  border-radius: 18px;
  border: none;
  background: none;
  padding: 0;
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  max-width: clamp(900px, 85vw, 1320px);
  margin: 0 auto;
  width: 100%;
}

.category-visual {
  font-size: 18px;
  color: #0f1218;
  padding: 0;
  border-radius: 18px;
  background: none;
  border: none;
  transform-origin: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
  text-align: center;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.category-caption {
  max-width: clamp(900px, 85vw, 1320px);
  margin: 18px auto 0;
  padding: 0 4px;
  font-size: 17px;
  line-height: 1.6;
  color: #1a1a1a;
  text-align: left;
}

.category-caption strong {
  font-weight: 700;
}

.category-caption-link {
  color: #0b84ff;
  text-decoration: none;
  font-weight: 600;
}
.category-caption-link:hover {
  text-decoration: underline;
}

.category-corner-logo {
  position: absolute;
  top: 16px;
  left: 32px;
  height: 80px;
  width: auto;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}
.category-corner-logo--right {
  left: auto;
  right: 32px;
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  z-index: 1;
  text-align: left;
}

.category-overlay-title {
  font-size: 24px;
  font-weight: 400;
  color: #0f1218;
  margin: 0 0 14px;
  line-height: 1.3;
}

.category-overlay-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #0f1218;
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
}

.category-overlay-cta::after {
  content: '→';
  font-size: 16px;
  transition: transform 0.2s ease;
}

.category-overlay-cta:hover::after {
  transform: translateX(4px);
}

.category-overlay-cta:hover {
  opacity: 0.7;
}

.category-purpose-img {
  width: 100%;
  height: clamp(320px, 44vw, 620px);
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  display: block;
  margin: 0;
}

.white-divider {
  display: none;
}

.post-sticky {
  background: #ffff;
  color: #1a1a1a;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 0 calc(50vw - 50%);
}

.integrations {
  padding: 12px 20px 20px;
  background: #e8e8ed;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.integrations-inner {
  max-width: clamp(1100px, 88vw, 1480px);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}

.integrations .section-heading h2 {
  font-size: clamp(18px, 1.6vw, 26px);
  color: #000000;
}
.integrations .section-heading p {
  color: #000000;
}
.integrations .section-heading {
  justify-content: center;
  text-align: center;
}
.integrations .section-heading > div {
  text-align: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  margin-top: 6px;
}
.integrations .text-link {
  color: #0071e3;
}

.text-link:hover {
  text-decoration: underline;
}

.int-caption {
  font-size: 17px;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 20px 0 0;
  padding: 0 4px;
}

.int-caption strong {
  font-weight: 700;
}

.int-seg-wrap {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.int-seg {
  display: inline-flex;
  gap: 6px;
  background: #ffffff;
  border-radius: 999px;
  padding: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.int-seg-btn {
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.int-seg-btn:hover {
  color: rgba(0, 0, 0, 0.8);
}

.int-seg-btn.active {
  background: #1a1a1a;
  color: #ffffff;
}

.int-panels {
  margin-top: 14px;
}

.int-panel {
  display: none;
}

.int-panel.active {
  display: block;
}

/* Carousel inside each panel */
.int-car {
  position: relative;
}

.int-car-viewport {
  overflow: hidden;
  border-radius: 18px;
}

.int-car-track {
  display: flex;
  will-change: transform;
}

.int-car-slide {
  flex: 0 0 100%;
  min-width: 0;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}

.int-car-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.int-car-slide--crop-bottom {
  position: relative;
  background: #ffffff;
}

.int-car-slide--contain {
  background: #ffffff;
  aspect-ratio: 40 / 9;
}

.int-car-slide--mychart {
  background: transparent;
  position: relative;
  isolation: isolate;
}

.int-car-slide.int-car-slide--contain img {
  object-fit: contain;
  object-position: center;
  transform: scale(0.9);
}

.int-car-slide--mychart img {
  position: relative;
  z-index: 1;
}

.int-car-slide--crop-bottom img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(15%);
  width: 36%;
  height: auto;
  object-fit: unset;
  background: transparent;
}

.int-panel-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f2f2f2;
  display: grid;
  place-items: center;
  color: #9ca3af;
  font-size: 15px;
  font-weight: 500;
}

@keyframes mychartGradient {
  0% {
    background-position: 0% 40%;
  }
  50% {
    background-position: 100% 60%;
  }
  100% {
    background-position: 0% 40%;
  }
}

@keyframes mychartWaves {
  0% {
    transform: translate3d(-6%, -4%, 0) scale(1);
  }
  50% {
    transform: translate3d(6%, 6%, 0) scale(1.08);
  }
  100% {
    transform: translate3d(-3%, 2%, 0) scale(1.03);
  }
}

.int-car-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.int-car-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.04);
  color: rgba(0,0,0,0.6);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.int-car-arrow:hover {
  background: rgba(0,0,0,0.1);
  color: #000;
}

.int-car-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.int-car-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}

.int-car-dot.active {
  background: #1a1a1a;
  width: 24px;
}

/* Comparison section */
.comparison-section {
  padding: clamp(60px, 7vw, 120px) 20px;
}

.comparison-inner {
  max-width: clamp(1100px, 88vw, 1400px);
  margin: 0 auto;
}

.comparison-head {
  text-align: center;
  margin-bottom: 52px;
}

.eyebrow-comp {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0071e3;
  margin-bottom: 14px;
}

.comp-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 12px;
}

.comp-subtitle {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.comp-table {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comp-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comp-row--last {
  border-bottom: none;
}

.comp-header-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.comp-label-col {
  padding: 18px 24px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.comp-prod {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  gap: 7px;
  text-align: left;
}

.comp-prod--rm {
  background: rgba(var(--primary-rgb), 0.08);
  border-right: 1px solid rgba(var(--primary-rgb), 0.2);
  border-left: 1px solid rgba(var(--primary-rgb), 0.2);
  color: #8fc5ff;
  font-weight: 600;
}

.comp-header-row .comp-prod--rm {
  border-top: 3px solid #0071e3;
  padding-top: 22px;
}

.comp-prod--other {
  color: var(--muted);
  font-weight: 400;
}

.comp-logo {
  height: 26px;
  width: auto;
  display: block;
}

.comp-other-name {
  font-size: 14px;
  font-weight: 600;
  color: #9ca3af;
}

.comp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0071e3;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

.comp-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 10px;
  flex-shrink: 0;
}

.comp-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.routeme-pro {
  padding: 40px 0 60px;
}
.routeme-pro .section-heading {
  justify-content: center;
  text-align: center;
}
.routeme-pro .section-heading > div {
  text-align: center;
  margin: 0 auto;
}
.routeme-pro .section-heading h2 {
  font-size: clamp(26px, 4vw, 34px);
}
.routeme-pro .section-heading p {
  color: #000000;
  max-width: 720px;
}
.routeme-pro-hero {
  margin-top: 20px;
  border-radius: 18px;
  overflow: hidden;
  background: #050608;
  max-width: clamp(700px, 70vw, 1100px);
  margin-left: auto;
  margin-right: auto;
}
.routeme-pro-hero img {
  display: block;
  width: 100%;
  height: auto;
}
.routeme-pro-placeholder {
  border: 1px dashed #d0d0d0;
  background: #ffffff;
  border-radius: 14px;
  min-height: 320px;
  display: grid;
  place-items: center;
  color: #4b5563;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 16px;
  margin-top: 20px;
}

/* ── Analytics Section ── */
/* ── Analytics Section ── */
/* ── Kids Mode ─────────────────────────────────────────── */
.kids-section {
  padding: 80px 20px 0;
  overflow: hidden;
}
.kids-section .section-heading {
  justify-content: center;
  text-align: center;
}
.kids-section .section-heading > div {
  text-align: center;
  margin: 0 auto;
}
.kids-fun-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.kids-fun-text span {
  font-size: clamp(18px, 2.5vw, 28px);
  line-height: 1;
}
.kids-fun-text p {
  margin: 0;
  font-size: clamp(13px, 1.5vw, 20px);
  line-height: 1.4;
  color: #3b2a1a;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  letter-spacing: -0.01em;
}
.kids-fun-text p strong {
  font-size: clamp(15px, 1.8vw, 24px);
  color: #ff6b35;
  display: block;
}
.kids-fun-text p em {
  font-style: normal;
  font-size: clamp(15px, 1.8vw, 24px);
  font-weight: 800;
  color: #7a5af8;
  display: block;
}
.kids-hero {
  position: relative;
  max-width: clamp(700px, 70vw, 1100px);
  margin-left: auto;
  margin-right: auto;
}
.kids-hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}
.kids-overlay-copy {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  max-width: 36%;
  text-align: left;
}
.kids-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #ff6b35, #ff9f1c);
  border-radius: 999px;
  padding: 5px 13px 5px 10px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.35);
}
.kids-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  animation: kids-badge-pulse 1.8s ease-in-out infinite;
}
@keyframes kids-badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.kids-title {
  font-family: "Nunito", "Fredoka One", "Comic Sans MS", cursive;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}
.kids-word-1 { color: #ff4500; }
.kids-word-2 { color: #0071e3; }
.kids-promo-title {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 800;
  line-height: 1.25;
  color: #1d1d1f;
  margin: 0 0 14px;
}
.kids-promo-sub {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 500;
  line-height: 1.6;
  color: #444;
  margin: 0 0 20px;
}
.kids-cta {
  display: inline-block;
}

/* ── FAQ Section ────────────────────────────────────────── */
.faq-section {
  padding: 100px 20px 100px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.faq-list .a11y-entry[open] {
  --option-label-display: flex;
}
.faq-list {
  width: 100%;
}
.faq-list .a11y-entry {
  width: 100%;
}
.faq-list .a11y-panel {
  max-width: 100%;
  padding: 0 1.75rem 1.75rem;
}
.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}
.faq-head {
  text-align: center;
  margin-bottom: 48px;
}
.faq-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #1d1d1f;
  margin: 0 0 12px;
}
.faq-sub {
  font-size: 1rem;
  color: #6e6e73;
  margin: 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  interpolate-size: allow-keywords;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: #f5f5f7;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 64px 20px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand {
  flex-shrink: 0;
  max-width: 200px;
}
.footer-logo {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: #6e6e73;
  line-height: 1.5;
  margin: 0;
}
.footer-nav {
  display: flex;
  gap: 48px;
  flex: 1;
  flex-wrap: wrap;
}
.footer-col h4.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1d1d1f;
  margin: 0 0 14px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: #6e6e73;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-col ul li a:hover {
  color: #1d1d1f;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.8rem;
  color: #6e6e73;
  margin: 0;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: #6e6e73;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-legal a:hover {
  color: #1d1d1f;
}

.analytics-section {
  padding: 100px 20px 120px;
  position: relative;
}

.analytics-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(var(--primary-rgb), 0.04), transparent 70%);
  pointer-events: none;
}

.analytics-inner {
  max-width: clamp(700px, 70vw, 1100px);
  margin: 0 auto;
  position: relative;
  background: #050608;
  border-radius: 28px;
  padding: clamp(36px, 4vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.analytics-head {
  text-align: center;
  margin-bottom: 64px;
}

.analytics-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.analytics-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.2;
}

.analytics-sub {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.analytics-dashboard {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 14px;
  align-items: stretch;
  max-width: clamp(700px, 70vw, 1100px);
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.acard {
  border-radius: 22px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.acard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
}

.acard--glow {
  background: rgba(var(--primary-rgb), 0.04);
  border-color: rgba(var(--primary-rgb), 0.14);
}

.acard--glow::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.18), transparent 70%);
  pointer-events: none;
}

.acard-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}

.acard-top {
  margin-bottom: 20px;
}

.acard-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.acard-num {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}

.acard-num--sm {
  font-size: clamp(28px, 3vw, 38px);
}

.acard-trend {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}

.acard-trend--up {
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
}

.acard-meta {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* Sparkline */
.sparkline-wrap {
  margin-top: 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sparkline {
  width: 100%;
  flex: 1;
  min-height: 80px;
  overflow: visible;
}

.sp-fill {
  fill: url(#spGrad);
}

.sp-line {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(var(--primary-rgb), 0.6));
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.analytics-section.is-visible .sp-line {
  stroke-dashoffset: 0;
}

.sparkline-days {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  padding: 0 2px;
}

.sparkline-days span {
  font-size: 10px;
  color: var(--muted);
  opacity: 0.6;
}

/* Destinations */
.dest-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 16px;
}

.dest-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dest-rank {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.18);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  width: 18px;
}

.dest-info {
  flex: 1;
  min-width: 0;
}

.dest-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 5px;
}

.dest-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.dest-pct {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  flex-shrink: 0;
}

.dest-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  overflow: hidden;
}

.dest-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--primary), rgba(var(--primary-rgb), 0.4));
  border-radius: 999px;
  box-shadow: 0 0 6px rgba(var(--primary-rgb), 0.4);
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.analytics-section.is-visible .dest-fill {
  width: var(--w);
}

.dest-item:nth-child(1) .dest-fill { transition-delay: 0.1s; }
.dest-item:nth-child(2) .dest-fill { transition-delay: 0.2s; }
.dest-item:nth-child(3) .dest-fill { transition-delay: 0.3s; }
.dest-item:nth-child(4) .dest-fill { transition-delay: 0.4s; }
.dest-item:nth-child(5) .dest-fill { transition-delay: 0.5s; }

/* Gauge */
.gauge-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin: 8px 0 16px;
}

.gauge-svg {
  width: 140px;
  height: 140px;
  transform: rotate(-90deg);
}

.gauge-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 8;
}

.gauge-fill {
  fill: none;
  stroke: var(--primary);
  stroke-width: 8;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(var(--primary-rgb), 0.7));
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.analytics-section.is-visible .gauge-fill {
  stroke-dashoffset: 17;
}

.gauge-val {
  fill: var(--text);
  font-size: 18px;
  font-weight: 700;
  transform: rotate(90deg);
  transform-origin: 60px 60px;
  letter-spacing: -0.03em;
}

.gauge-lbl {
  fill: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: 60px 60px;
}

.category-visual.slide {
  animation: carouselSlide 0.55s ease;
}

.category-link {
  display: inline-block;
  margin-top: 10px;
  color: #1a4d2e;
  font-weight: 700;
  text-decoration: none;
}

.category-link:hover {
  text-decoration: underline;
}

@keyframes carouselSlide {
  0% { transform: translateX(24px) scale(0.96); opacity: 0; }
  60% { transform: translateX(-4px) scale(1.02); opacity: 1; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

.logo-scroller:hover .logo-track {
  animation-play-state: paused;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Scroll showcase */
.scroll-showcase {
  padding: 30px 0 60px;
}

.scroll-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
  gap: 24px;
  align-items: center;
}

.scroll-visual {
  position: sticky;
  top: 120px;
}

.phone-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  border: 1px solid #d0d0d0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  transition: background 0.4s ease;
}

.phone-variant-1 { background: linear-gradient(135deg, #0f9b8e, #0b4d9c); }
.phone-variant-2 { background: linear-gradient(135deg, #1f1f1f, #3a3a3a); }
.phone-variant-3 { background: linear-gradient(135deg, #ff9a3c, #c83737); }
.phone-variant-4 { background: linear-gradient(135deg, #5f4b8b, #1b1f3a); }

.scroll-steps {
  display: grid;
  gap: 14px;
}

.scroll-step {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.scroll-step h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #0f1218;
}

.scroll-step p {
  margin: 0;
  color: #4b5563;
  line-height: 1.5;
}

.scroll-step.active {
  border-color: #1a4d2e;
  background: #f4f7f2;
}

.scroll-mech {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  height: 300vh;
  background: linear-gradient(to bottom, #1f2023, #000000);
  color: #e8ebf2;
}

.scroll-mech-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 40px clamp(28px, 5vw, 100px) 50px;
  overflow: hidden;
}

.scroll-copy {
  padding-left: clamp(40px, 5vw, 120px);
}

.scroll-copy h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
}

.scroll-copy .scroll-subhead {
  margin: 0 0 18px;
  color: #cfd3dc;
  line-height: 1.6;
}

.scroll-copy .scroll-anim {
  will-change: opacity, transform;
}

.scroll-copy .text-enter {
  animation: scrollTextIn 0.5s ease forwards;
}

.scroll-copy .text-exit {
  animation: scrollTextOut 0.28s ease forwards;
}

.scroll-title-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin: 10px 0 14px;
}

.scroll-title-row h2 {
  margin: 0;
  flex: 0 0 auto;
}

/* Accessibility switch */
.a11y-switch {
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.a11y-switch.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.a11y-switch-track {
  width: 88px;
  height: 48px;
  border-radius: 24px;
  background: #3a3a3a;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: background 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}

.a11y-switch-track.on {
  background: #3a8ef6;
  border-color: rgba(58, 142, 246, 0.4);
}

.a11y-switch-knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  color: #555;
}


.a11y-switch-track.on .a11y-switch-knob {
  transform: translateX(40px);
  color: #3a8ef6;
}


.scroll-eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 12px;
  color: #9ea3b0;
}

.progress-readout {
  font-size: 14px;
  color: #cfd3dc;
}

.panel-container {
  position: relative;
  width: 100%;
  max-width: none;
  height: min(75vh, 700px);
  background: none;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
  background: transparent;
}

.panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.panel-card {
  display: none;
}

.panel-stack {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0;
}
.panel-img {
  position: relative;
  width: auto;
  max-width: 90vw;
  height: auto;
  max-height: 90%;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}
.panel-img--motion {
  width: auto;
  max-width: 90vw;
  height: auto;
  max-height: 90%;
  opacity: 1;
  transform: none;
  transition: none;
}

.word-rotate {
  display: inline-block;
  transition: opacity 0.22s ease, transform 0.22s ease;
  background: linear-gradient(90deg, #0071e3 0%, #3a8ef6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hl-slide[data-slide="5"] {
  background: #ffffff;
}
.hl-slide[data-slide="5"] .hl-title,
.hl-slide[data-slide="5"] .hl-sub {
  color: #1d1d1f;
}
.word-font {
  display: inline-block;
  color: #0071e3;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.word-font--out {
  opacity: 0;
  transform: translateY(-8px);
}
.word-rotate--out {
  opacity: 0;
  transform: translateY(-8px);
}

.word-auto {
  font-style: italic;
  background: linear-gradient(90deg, #f7971e 0%, #ffd200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.word-auto--out {
  opacity: 0;
  transform: translateY(-8px);
}

.word-motion {
  font-style: italic;
  background: linear-gradient(90deg, #0071e3 0%, #3a8ef6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: wordMotion 1.8s ease-in-out infinite;
}

@keyframes wordMotion {
  0%, 100% { transform: translateX(0) skewX(0deg); }
  20%       { transform: translateX(5px) skewX(-4deg); }
  50%       { transform: translateX(-4px) skewX(3deg); }
  75%       { transform: translateX(3px) skewX(-2deg); }
}

.arm-img {
  position: absolute;
  right: 0;
  bottom: -60px;
  height: 70%;
  width: auto;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0;
  transform: translateX(120px);
  will-change: opacity, transform;
  pointer-events: none;
}

.panel-img {
  width: 120%;
  height: 120%;
  margin-left: -10%;
  margin-top: -5%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 20px;
  opacity: 0;
  display: block;
}

#scene1Img {
  width: 92%;
  height: 92%;
  margin: auto;
  position: absolute;
  inset: 0;
  object-fit: contain;
  object-position: center center;
  transform-origin: center center;
  will-change: opacity, transform;
}

.hl-slide[data-slide="2"] {
  background: #f7f7fb;
  color: #0f1218;
  align-items: stretch;
  justify-items: start;
  grid-template-columns: 1fr;
  padding: 0;
}
.hl-slide[data-slide="2"] .hl-title,
.hl-slide[data-slide="2"] .hl-sub {
  color: #0f1218;
}
.a11y-visual {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 1.1fr;
  align-items: center;
  gap: clamp(28px, 4vw, 54px);
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.hl-slide[data-slide="2"] .hl-visual {
  align-items: stretch;
  height: 100%;
}
.hl-slide[data-slide="2"] .a11y-visual {
  justify-content: flex-start;
  margin: 0;
  max-width: none;
  grid-template-columns: 1fr;
}
.a11y-shell {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.a11y-layout {
  flex: 1;
  min-width: 0;
}
.ada-preview {
  width: 40%;
  opacity: 1;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 16px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  overflow: hidden;
}
.a11y-shell.ada-hidden .ada-preview {
  width: 0;
  opacity: 0;
}
.a11y-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: stretch;
  position: relative;
}
.a11y-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  padding-top: 0;
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  align-self: start;
}
.a11y-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid #e1e4ec;
  background: #f3f4f7;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 16px rgba(15, 18, 24, 0.08);
  color: #1a1d24;
}
.a11y-nav-btn:hover {
  background: #eceef3;
  border-color: #d5dbe7;
  transform: translateY(-1px);
}
.a11y-nav-btn:focus-visible {
  outline: 2px solid #0f1218;
  outline-offset: 2px;
}
.a11y-nav-btn svg {
  display: block;
}
.a11y-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: min(600px, 100%);
  max-height: min(620px, 70vh);
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #cfd5e2 transparent;
  interpolate-size: allow-keywords;
}
.a11y-list::-webkit-scrollbar {
  width: 8px;
}
.a11y-list::-webkit-scrollbar-track {
  background: transparent;
}
.a11y-list::-webkit-scrollbar-thumb {
  background: #cfd5e2;
  border-radius: 999px;
}
.a11y-entry {
  display: block;
  margin: 0;
  position: relative;
  background-color: #f2f4f7;
  border-radius: 1.75rem;
  transition-property: background-color;
  transition-duration: 0.5s;
  overflow: clip;
}
.a11y-entry[open] {
  --option-item-opacity: 1;
  --option-label-display: none;
  --option-item-content-height: auto;
}
.a11y-entry:focus-visible,
.a11y-entry:hover {
  background-color: #e8eaee;
}
.a11y-entry::details-content {
  opacity: var(--option-item-opacity, 0);
  height: var(--option-item-content-height, 0);
  transition-property: height, content-visibility, opacity;
  transition-duration: 0.45s;
  transition-delay: 0s, 0s, 0.05s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-behavior: allow-discrete, allow-discrete;
}
.a11y-summary {
  line-height: 4rem;
  list-style: none;
  display: var(--option-label-display, flex);
  gap: 0.8rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.05px;
  align-items: center;
  padding-inline: 1rem 2rem;
  color: #0f1218;
  background: transparent;
  border: none;
  width: 100%;
}
.a11y-summary::-webkit-details-marker {
  display: none;
}
.a11y-summary:focus-visible {
  outline: 2px solid #0f1218;
  outline-offset: 2px;
}
.a11y-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.a11y-label {
  text-align: left;
}
.a11y-indicator {
  display: none;
}
.a11y-panel {
  max-width: 25rem;
  padding: 1.75rem;
  color: #222733;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}
.a11y-panel p {
  margin: 0;
}
.a11y-panel p + p {
  margin-top: 6px;
}
@media (max-width: 600px) {
  .a11y-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .a11y-nav {
    flex-direction: row;
    gap: 10px;
  }
  .a11y-nav-btn {
    width: 48px;
    height: 48px;
  }
}
.a11y-device {
  justify-self: stretch;
  display: grid;
  place-items: center;
}
.a11y-device img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 45px rgba(0, 0, 0, 0.24));
}
@media (max-width: 960px) {
  .a11y-visual {
    grid-template-columns: 1fr;
  }
  .a11y-device img {
    max-width: 320px;
  }
}
.hl-slide[data-slide="2"] .a11y-device {
  display: none;
}

/* Scene 1 — side-by-side phones */
.panel-stack--duo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.panel-stack--duo .panel-img {
  width: auto;
  height: 80%;
  max-height: 80%;
  max-width: 55%;
  margin: 0;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
}

.panel-stack--duo .panel-img:nth-child(1) {
  position: relative;
  z-index: 1;
}

.panel-stack--duo .panel-img:nth-child(2) {
  position: relative;
  z-index: 2;
  margin-left: -28px;
  box-shadow: -6px 14px 44px rgba(0, 0, 0, 0.55);
}

@keyframes scene1SlideIn {
  from { opacity: 0; transform: translateX(80px); }
  to   { opacity: 1; transform: translateX(0); }
}

.panel.active .panel-stack--duo .panel-img:nth-child(1),
.hl-slide--active .panel-stack--duo .panel-img:nth-child(1) {
  animation: scene1SlideIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.panel.active .panel-stack--duo .panel-img:nth-child(2),
.hl-slide--active .panel-stack--duo .panel-img:nth-child(2) {
  animation: scene1SlideIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.13s forwards;
}

@keyframes scrollTextIn {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes scrollTextOut {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-12px); }
}
/* Contact page */
.contact-page {
  padding: 50px 0 80px;
  display: grid;
  gap: 28px;
}

.contact-head h1 {
  margin: 10px 0 8px;
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: -0.02em;
}

.contact-head .lead {
  max-width: 720px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  align-items: start;
}

.contact-copy .muted {
  color: var(--muted);
  line-height: 1.6;
}

.mini-trust {
  margin-top: 16px;
}

.mini-logo-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.mini-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.2));
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 18px;
  display: grid;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  border-color: rgba(var(--primary-rgb), 0.6);
  background: rgba(0, 0, 0, 0.35);
}

.contact-card select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
                    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 14px) calc(50% + 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-card textarea {
  resize: vertical;
}

.consent {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-card .btn {
  justify-self: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  height: 100%;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.4);
  display: grid;
  place-items: center;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.step {
  position: relative;
  padding-left: 52px;
}

.step-number {
  position: absolute;
  left: 0;
  top: 2px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 216, 77, 0.14);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 800;
  border: 1px solid rgba(255, 216, 77, 0.4);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.step h4 {
  margin: 0 0 6px;
  font-size: 17px;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.price-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price-card h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.price span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.cta-band {
  margin-top: 34px;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.16), rgba(255, 216, 77, 0.14));
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
  align-items: center;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.cta-band h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* ── FAQ ───────────────────────────────────────────── */
.faq {
  margin: 50px 0 30px;
  padding: 40px 28px;
  border-radius: 28px;
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(58, 142, 246, 0.08));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.faq-item {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.faq-item.open {
  border-color: rgba(var(--primary-rgb), 0.35);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-weight: 600;
  font-size: 17px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: rgba(var(--primary-rgb), 0.5);
  background: rgba(var(--primary-rgb), 0.12);
}
.faq-answer {
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item.open .faq-answer {
  max-height: 320px;
}

footer {
  margin-top: 36px;
  padding: 20px 0 10px;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 980px) {
  .nav-inner {
    flex-wrap: wrap;
    gap: 12px;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

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

@media (max-width: 640px) {
  body {
    padding: 0;
  }

  .site-header {
    position: sticky;
  }

  h1 {
    font-size: clamp(30px, 8vw, 44px);
  }
}

/* ── Large screens: 1440px+ ───────────────────────── */
@media (min-width: 1440px) {
  .hero-grid {
    gap: clamp(38px, 4vw, 80px);
  }

  .stat-card strong {
    font-size: clamp(20px, 1.5vw, 28px);
  }

  .stat-card span {
    font-size: clamp(14px, 1vw, 16px);
  }

  nav a {
    font-size: clamp(15px, 1.1vw, 17px);
  }

  .section-heading p {
    max-width: clamp(520px, 40vw, 720px);
    font-size: clamp(15px, 1.1vw, 18px);
  }

  .scroll-mech-inner {
    grid-template-columns: 1fr 1.2fr;
  }

  .dual-feature {
    margin: 0 -40px;
  }

  .int-carousel {
    max-width: 900px;
  }
}

/* ── Very large screens: 1920px+ ─────────────────── */
@media (min-width: 1920px) {
  body {
    font-size: 17px;
  }

  .hero-grid {
    gap: 100px;
  }

  nav a {
    font-size: 17px;
    gap: 8px;
  }

  nav {
    gap: 44px;
  }

  .section-heading p {
    font-size: 18px;
    max-width: 760px;
  }

  .scroll-mech-inner {
    padding: 60px clamp(80px, 6vw, 140px) 60px;
  }

  .dual-feature {
    margin: 0 -60px;
  }

  .analytics-inner,
  .comparison-inner {
    max-width: 1520px;
  }
}

/* ── Highlights Carousel ──────────────────────────── */
.highlights-carousel {
  background: #f5f5f7;
  padding: clamp(60px, 8vh, 100px) 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.hl-inner {
  width: 100%;
  overflow: hidden;
}

.hl-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  max-width: min(calc(88vw - 40px), 1480px);
  margin-left: auto;
  margin-right: auto;
}

.hl-eyebrow {
  font-size: clamp(24px, 2.2vw, 38px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #1a1a1a;
  margin: 0;
  text-align: center;
}

.hl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 0;
  position: relative;
  z-index: 5;
}

.hl-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.6);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.hl-arrow:hover { background: rgba(0,0,0,0.12); color: #000; }

.hl-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hl-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease;
}
.hl-dot.active {
  background: #1a1a1a;
  width: 24px;
}
.hl-pause {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  border: none;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.hl-pause:hover { background: rgba(0,0,0,0.12); color: #000; }

.hl-viewport {
  overflow: hidden;
}

.hl-track {
  display: flex;
  gap: 20px;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding-left: calc((100vw - min(calc(80vw - 75px), 1345px)) / 2);
  padding-right: calc((100vw - min(calc(80vw - 75px), 1345px)) / 2);
  box-sizing: border-box;
}

.hl-slide {
  width: min(calc(80vw - 75px), 1345px);
  flex-shrink: 0;
  flex-grow: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
  background: #0a0d14;
  border-radius: 24px;
  padding: clamp(40px, 5vw, 72px);
  min-height: clamp(234px, 31.8vh, 352px);
  box-sizing: border-box;
}

.hl-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hl-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hl-title {
  font-size: clamp(26px, 3.2vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
}
.hl-title.small-title {
  font-size: clamp(20px, 2.4vw, 34px);
}

.hl-sub {
  font-size: clamp(14px, 1.1vw, 17px);
  color: rgba(255,255,255,0.52);
  line-height: 1.68;
  margin: 0;
  max-width: 460px;
}

.hl-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(300px, 42vh, 520px);
  overflow: hidden;
  position: relative;
}

.hl-visual .panel-stack--duo {
  width: 100%;
  height: 100%;
  overflow: hidden;
  align-items: flex-start;
}

.hl-visual .panel-stack--duo .panel-img {
  width: 48%;
  height: auto;
  max-height: 120%;
  max-width: none;
  flex: 0 0 48%;
  object-fit: unset;
  object-position: top center;
}

.hl-visual--arm {
  position: relative;
  overflow: visible;
}

.hl-arm-img {
  position: absolute;
  left: -40px;
  right: auto;
  bottom: 4%;
  height: 100%;
  width: auto;
  max-width: none;
  max-height: none;
  display: block;
}

.hl-visual .a11y-features {
  margin: 0;
  width: 100%;
  align-self: stretch;
}

/* No Beacon slide */
.hl-slide[data-slide="nobeacon"] {
  background: #ffffff;
}
.hl-slide[data-slide="nobeacon"] .hl-title,
.hl-slide[data-slide="nobeacon"] .hl-sub {
  color: #1d1d1f;
}
.hl-slide[data-slide="nobeacon"] .hl-sub {
  color: rgba(15, 18, 24, 0.55);
}
.hl-placeholder {
  width: 100%;
  height: 280px;
  background: #f0f0f5;
  border-radius: 16px;
  border: 2px dashed #d0d0da;
}

/* App Free slide */
.hl-slide[data-slide="appfree"] {
  background: #ffffff;
}
.hl-slide[data-slide="appfree"] .hl-title,
.hl-slide[data-slide="appfree"] .hl-sub {
  color: #1d1d1f;
}
.hl-slide[data-slide="appfree"] .hl-arm-img {
  height: 130%;
  left: auto;
  right: -20px;
  bottom: 0;
}

/* Slide 2: arm image flush to card right edge */
.hl-slide[data-slide="1"] {
  padding-right: 0;
  padding-bottom: 0;
  background: #ffffff;
}
.hl-slide[data-slide="1"] .hl-title {
  color: #0f1218;
}
.hl-slide[data-slide="1"] .hl-sub {
  color: rgba(15, 18, 24, 0.55);
}
.hl-slide[data-slide="1"] .hl-visual {
  justify-content: flex-end;
  overflow: visible;
}
.hl-slide[data-slide="1"] .hl-arm-img {
  height: 120%;
  left: auto;
  right: 20px;
  bottom: 0;
}

/* Slide 1: phones flush to card bottom */
.hl-slide[data-slide="0"] {
  padding-bottom: 0;
  align-items: center;
  background: #ffffff;
}
.hl-slide[data-slide="0"] .hl-title,
.hl-slide[data-slide="3"] .hl-title {
  color: #0f1218;
}
.hl-slide[data-slide="0"] .hl-sub,
.hl-slide[data-slide="3"] .hl-sub {
  color: rgba(15, 18, 24, 0.55);
}
.hl-slide[data-slide="3"] {
  background: #ffffff;
}
.hl-slide[data-slide="4"] {
  background: #ffffff;
}
.hl-slide[data-slide="4"] .hl-title {
  color: #0f1218;
}
.hl-slide[data-slide="4"] .hl-sub {
  color: rgba(15, 18, 24, 0.55);
}
.hl-visual--range {
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  align-items: flex-start;
  height: 115%;
  margin-top: calc(-1 * clamp(40px, 5vw, 72px));
}
.range-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 20px;
}
.hl-visual--whitelabel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.whitelabel-img {
  width: 130%;
  height: 130%;
  object-fit: contain;
  display: block;
}
.hl-visual--installer {
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
}
.installer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.hl-slide[data-slide="0"] .hl-visual {
  justify-content: flex-end;
  overflow: visible;
}
.hl-slide[data-slide="0"] .panel-stack--duo .panel-img {
  box-shadow: none;
  opacity: 1;
  animation: none !important;
}
.hl-slide[data-slide="0"] .panel-stack--duo .panel-img:nth-child(2) {
  margin-left: 0;
  box-shadow: none;
}

/* ============================================================
   MOBILE NAV HAMBURGER
   ============================================================ */
.mob-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  margin-left: auto;
}
.mob-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease,
              width 0.3s ease;
  transform-origin: center;
}
.mob-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-menu-btn.open span:nth-child(2) { opacity: 0; width: 0; }
.mob-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
  display: none;
  flex-direction: column;
  background: #1d1d1f;
  padding: 12px 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 8px;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mob-menu a:last-child { border-bottom: none; }
.mob-menu a:hover { color: #fff; }
.mob-menu-cta {
  margin-top: 8px;
  background: #0071e3 !important;
  color: #fff !important;
  border-radius: 980px;
  padding: 12px 20px !important;
  text-align: center;
  font-weight: 600 !important;
  border-bottom: none !important;
}
.mob-menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mob-menu-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mob-menu-group:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.mob-menu-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 4px 6px;
  cursor: pointer;
  border-radius: 10px;
  transition: color 0.15s ease, background 0.15s ease;
}
.mob-menu-group-toggle:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.04);
}
.mob-menu-chevron {
  font-size: 14px;
  transition: transform 0.2s ease;
  display: inline-block;
}
.mob-menu-group.is-open .mob-menu-group-toggle {
  color: #ffffff;
}
.mob-menu-group.is-open .mob-menu-chevron {
  transform: rotate(180deg);
}
.mob-menu-group-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 6px 4px 2px;
}
.mob-menu-group-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px 4px;
}
.mob-menu-group-items[hidden] { display: none; }
.mob-menu-group-items .mob-menu-link {
  border: none;
  padding: 10px 8px;
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
}
.mob-menu-group-items .mob-menu-link + .mob-menu-link {
  margin-top: 4px;
}
.mob-menu-link {
  display: block;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 4px;
  border-radius: 10px;
  border-bottom: none !important;
}
.mob-menu-link:hover { color: #fff; }
.mob-menu-link--static {
  color: rgba(255,255,255,0.6);
  cursor: default;
}
.mob-menu-item-sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  margin-top: 2px;
}

/* ============================================================
   MOBILE BREAKPOINT — 768px and below
   ============================================================ */
@media (max-width: 768px) {

  /* --- NAV --- */
  .site-header nav,
  .site-header .actions {
    display: none;
  }
  .mob-menu-btn {
    display: flex;
  }
  .nav-inner {
    padding: 20px 16px;
  }

  /* --- HERO --- */
  .hero {
    padding-top: 72px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .hero-grid .hero-actions {
    justify-content: center;
  }
  .cta-row {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-img-wrap {
    display: none;
  }

  /* --- LOGOS --- */
  .logo-card img {
    height: 36px !important;
    width: auto !important;
  }

  /* --- INTEGRATIONS --- */
  .int-seg-wrap {
    width: 100%;
  }
  .int-seg {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    gap: 2px;
    padding: 4px;
    justify-content: space-between;
  }
  .int-seg-btn {
    font-size: 11px;
    padding: 7px 6px;
    flex: 1;
    text-align: center;
    white-space: nowrap;
  }
  .int-car-slide {
    aspect-ratio: 4 / 3;
  }
  .int-car-slide--contain {
    aspect-ratio: 4 / 3;
  }

  /* --- HIGHLIGHTS CAROUSEL --- */
  .hl-slide {
    grid-template-columns: 1fr;
    padding: clamp(24px, 5vw, 36px);
    min-height: unset;
    gap: 20px;
  }
  .hl-visual {
    height: clamp(180px, 40vw, 260px);
  }
  .hl-visual--arm {
    overflow: hidden;
  }
  .hl-arm-img {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    transform: none;
    height: 100%;
    width: auto;
    margin: 0 auto;
    display: block;
  }
  .hl-slide[data-slide="0"] .hl-visual {
    overflow: visible;
  }
  .hl-slide[data-slide="0"] .panel-stack--duo {
    overflow: visible;
    align-items: flex-end;
    gap: 0;
  }
  .hl-slide[data-slide="0"] .panel-stack--duo .panel-img:nth-child(2) {
    margin-left: -60px;
  }
  .hl-slide[data-slide="0"] .panel-stack--duo .panel-img {
    width: auto;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .hl-slide[data-slide="appfree"] .hl-arm-img,
  .hl-slide[data-slide="1"] .hl-arm-img {
    height: 100%;
    left: auto;
    right: auto;
    bottom: auto;
    position: relative;
    transform: none;
  }
  .hl-slide[data-slide="2"] {
    grid-template-columns: 1fr;
    padding: clamp(24px, 5vw, 36px);
  }
  .hl-slide[data-slide="2"] .hl-visual,
  .hl-slide[data-slide="2"] .a11y-visual {
    order: -1;
    height: clamp(405px, 90vw, 585px);
  }
  .hl-slide[data-slide="2"] .a11y-shell {
    height: 100%;
    overflow: hidden;
    padding: 1rem;
  }
  .hl-slide[data-slide="2"] .ada-preview,
  .hl-slide[data-slide="2"] .a11y-nav {
    display: none;
  }
  .hl-slide[data-slide="2"] .a11y-list {
    max-height: 100%;
    overflow-y: auto;
    width: 100%;
  }
  .hl-visual--range {
    margin-top: 0;
    height: clamp(160px, 38vw, 240px);
    overflow: visible;
  }
  .range-video {
    object-fit: contain;
    object-position: center center;
  }

  /* --- SECTION HEADINGS --- */
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* --- CATEGORY SHOWCASE --- */
  .category-showcase {
    padding: 16px;
  }
  .category-switcher-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -16px;
    padding: 0 16px;
  }
  .category-switcher-wrap::-webkit-scrollbar { display: none; }
  .category-switcher {
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between;
    gap: 2px;
    padding: 4px;
  }
  .category-switcher .tab {
    font-size: 11px;
    padding: 7px 6px;
    flex: 1;
    white-space: nowrap;
    text-align: center;
  }
  .category-switcher .tab.active {
    background: #1a1a1a;
    color: #ffffff;
  }

  /* --- KIDS MODE & ROUTEME PRO --- */
  .routeme-pro {
    padding-bottom: 24px;
  }
  .kids-section {
    padding-top: 24px;
  }
  .kids-hero,
  .routeme-pro-hero {
    max-width: 100%;
  }
  .kids-hero {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
  }
  .kids-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
  }
  .kids-section {
    padding: 40px 0 0;
  }
  .kids-section .section-heading {
    padding: 0 16px;
  }
  .kids-overlay-copy {
    max-width: 42%;
    left: 4%;
  }
  .kids-title {
    font-size: clamp(18px, 7vw, 30px) !important;
  }
  .kids-promo-title,
  .kids-promo-sub {
    display: none;
  }

  /* --- GENERAL SPACING --- */
  .hiw-section,
  .analytics-section,
  .faq-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .faq-section {
    padding-bottom: 0;
  }
  .faq-list .a11y-summary {
    line-height: 1.4;
    padding: 14px 16px;
  }

  /* --- ANALYTICS --- */
  .analytics-section {
    padding: 40px 12px 48px;
  }
  .analytics-inner {
    max-width: 100%;
    width: 100%;
    padding: 20px 16px 24px;
    border-radius: 18px;
  }
  .analytics-dashboard {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 10px;
  }
  .analytics-head {
    text-align: center;
  }
  .analytics-title {
    font-size: clamp(22px, 7vw, 32px);
    text-align: center;
  }
  .analytics-sub {
    text-align: center;
  }

  /* --- AI BANNER ("A new way to navigate") --- */
  .ai-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-left: 16px;
    padding-right: 16px;
    padding-top: clamp(40px, 8vw, 60px);
    padding-bottom: clamp(40px, 8vw, 60px);
  }
  .ai-card {
    padding: 28px 20px;
  }

  /* --- LOGOS --- */
  .media-block {
    background: #ffffff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .trust {
    padding-top: 0;
    padding-bottom: 40px;
    margin-top: 0;
  }
  .logo-static {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px 4px;
    justify-items: center;
    align-items: center;
  }
  .logo-static .logo-card:nth-child(1) { grid-column: 1 / 3; }
  .logo-static .logo-card:nth-child(2) { grid-column: 3 / 5; }
  .logo-static .logo-card:nth-child(3) { grid-column: 5 / 7; }
  .logo-static .logo-card:nth-child(4) { grid-column: 2 / 4; }
  .logo-static .logo-card:nth-child(5) { grid-column: 4 / 6; }
  .logo-card {
    width: auto;
    height: auto;
    padding: 0;
  }
  .logo-img,
  .logo-static .logo-img {
    width: auto !important;
    height: 36px !important;
    max-width: 160px;
  }
  .logo-card:nth-of-type(6) .logo-img,
  .logo-card:nth-of-type(13) .logo-img,
  .logo-card:nth-of-type(5) .logo-img,
  .logo-card:nth-of-type(12) .logo-img,
  .logo-card:nth-of-type(1) .logo-img,
  .logo-card:nth-of-type(8) .logo-img {
    width: auto !important;
    height: 36px !important;
    max-width: 160px;
  }

  /* --- HIGHLIGHTS CAROUSEL --- */
  .hl-track {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hl-slide {
    width: calc(100vw - 32px);
  }

  /* --- CATEGORY SHOWCASE image --- */
  .category-visual,
  .category-placeholder {
    max-width: 100%;
    width: 100%;
  }
  .category-purpose-img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .category-corner-logo {
    height: 36px !important;
    top: 12px;
    left: 14px;
  }
  .category-corner-logo--right {
    left: auto;
    right: 14px;
  }
  .logo-img[alt="MIA"] {
    height: 36px !important;
    width: auto !important;
  }

  /* --- FOOTER --- */
  .site-footer {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    padding: 40px 16px 32px;
  }
  .footer-top {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 32px;
  }
  .footer-brand {
    max-width: 100%;
  }
  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
