:root {
  --mtl-ink: #0f172a;
  --mtl-ink-muted: #475569;
  --mtl-surface: #ffffff;
  --mtl-surface-soft: #f5f6f8;
  --mtl-border: rgba(15, 23, 42, 0.08);
  --mtl-accent-warm: linear-gradient(90deg, #6172f1 0%, #4f8af7 33.33%, #18b8ac 66.66%, #14a89e 100%);
  --mtl-accent-cold: linear-gradient(90deg, #18b8ac 0%, #6172f1 100%);
  --mtl-shadow-soft: 0 28px 60px rgba(15, 23, 42, 0.12);
  --mtl-shadow-card: 0 18px 40px rgba(15, 23, 42, 0.08);
}

body {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(97, 114, 241, 0.08) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 80% 40%, rgba(24, 184, 172, 0.05) 0%, transparent 70%),
              #f7f7f5;
  color: var(--mtl-ink);
}

.mtl-landing {
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  position: relative;
  overflow: hidden;
  padding-bottom: 4rem;
}

.mtl-landing h1,
.mtl-landing h2,
.mtl-landing h3,
.mtl-landing h4 {
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  color: var(--mtl-ink);
}

.mtl-landing a:not(.mtl-btn):not(.mtl-plan__cta):not(.mtl-prompt__button) {
  color: inherit;
  text-decoration: none;
}

.mtl-section {
  padding: 5.5rem 1.5rem;
}

.mtl-container {
  max-width: 1300px;
  margin: 0 auto;
}

.mtl-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  padding: 1rem 0 0;
}

.mtl-nav__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  backdrop-filter: blur(18px);
  background: rgba(245, 246, 248, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 9999px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.mtl-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.mtl-logo > span:last-child {
  background: linear-gradient(to right, #6172f1, #5563d8, #18b8ac);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mtl-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(to bottom right, #6172f1, #5563d8, #18b8ac);
  color: #fff;
  box-shadow: 0 8px 24px rgba(97, 114, 241, 0.35);
}

.mtl-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.95rem;
  color: var(--mtl-ink);
}

.mtl-nav__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #1e293b;
  transition: color 0.2s ease;
}

.mtl-nav__links a svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.mtl-nav__links a:hover {
  color: var(--mtl-ink);
}

.mtl-nav__links a:hover svg {
  opacity: 0.85;
}

.mtl-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mtl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.mtl-btn--primary {
  color: #fff;
  background: #111827;
  box-shadow: 0 18px 35px rgba(17, 24, 39, 0.25);
}

.mtl-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(17, 24, 39, 0.3);
}

.mtl-btn--ghost {
  border-color: rgba(15, 23, 42, 0.15);
  background: #fff;
  color: var(--mtl-ink);
}

.mtl-btn--ghost:hover {
  border-color: rgba(15, 23, 42, 0.35);
}

.mtl-hero {
  position: relative;
  padding: 5rem 1.5rem 4.5rem;
}

.mtl-hero__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem;
  align-items: center;
}

.mtl-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--mtl-ink-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.mtl-hero__title {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.03;
  margin: 1.5rem 0 1.2rem;
}

.mtl-gradient-text {
  background: var(--mtl-accent-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mtl-hero__subtitle {
  font-size: 1.2rem;
  color: var(--mtl-ink-muted);
  max-width: 30rem;
}

.mtl-hero__actions {
  margin: 2rem 0 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.mtl-prompt {
  background: #fff;
  border-radius: 26px;
  padding: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--mtl-shadow-card);
}

.mtl-prompt__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mtl-prompt__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: var(--mtl-ink);
  outline: none;
}

.mtl-prompt__input::placeholder {
  color: rgba(71, 85, 105, 0.8);
}

.mtl-prompt__button {
  background: #111827;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.mtl-prompt__tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(71, 85, 105, 0.8);
  font-size: 0.85rem;
}

.mtl-prompt__tools span {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
}

.mtl-marquee {
  margin-top: 1.4rem;
  overflow: hidden;
  position: relative;
}

.mtl-marquee__track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: mtl-marquee 32s linear infinite;
}

.mtl-marquee__item {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: rgba(15, 23, 42, 0.8);
  font-size: 0.85rem;
  white-space: nowrap;
}

@keyframes mtl-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.mtl-hero__visual {
  position: relative;
}

.mtl-hero-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.06),
    0 32px 64px -12px rgba(15, 23, 42, 0.14),
    0 0 80px -20px rgba(97, 114, 241, 0.08);
  background: #fff;
  animation: mtl-hero-card-in 0.8s ease-out both;
}

@keyframes mtl-hero-card-in {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Chrome bar */
.mtl-hero-card__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 1rem;
  background: rgba(15, 23, 42, 0.025);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.mtl-hero-card__chrome-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.1);
}

.mtl-hero-card__chrome-dot:first-child { background: #f87171; }
.mtl-hero-card__chrome-dot:nth-child(2) { background: #fbbf24; }
.mtl-hero-card__chrome-dot:nth-child(3) { background: #34d399; }

.mtl-hero-card__chrome-url {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.5rem;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.04);
  font-size: 0.68rem;
  color: rgba(15, 23, 42, 0.35);
}

/* Tab bar */
.mtl-hero-card__tabs {
  display: flex;
  gap: 0;
  padding: 0 0.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  overflow-x: auto;
  scrollbar-width: none;
}

.mtl-hero-card__tabs::-webkit-scrollbar { display: none; }

.mtl-hero-card__tabs span {
  padding: 0.5rem 0.7rem;
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.3);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}

.mtl-hero-card__tabs span.is-active {
  color: #6172f1;
  border-bottom-color: #6172f1;
  font-weight: 600;
}

/* Body layout */
.mtl-hero-card__body {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-height: 400px;
}

/* Map area */
.mtl-hero-card__map {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 45% 45%, #eef0ff 0%, #f6f7fb 100%);
  border-right: 1px solid rgba(15, 23, 42, 0.06);
}

.mtl-hero-card__map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Scan line */
.mtl-hero-card__scan {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(97, 114, 241, 0.5) 50%, transparent 100%);
  box-shadow: 0 0 12px 2px rgba(97, 114, 241, 0.15);
  z-index: 4;
  animation: mtl-scan-sweep 4s ease-in-out 0.5s infinite;
  opacity: 0;
}

@keyframes mtl-scan-sweep {
  0%   { top: 0; opacity: 0; }
  5%   { opacity: 0.7; }
  95%  { opacity: 0.7; }
  100% { top: 100%; opacity: 0; }
}

/* Roads */
.mtl-hero-card__road {
  position: absolute;
  height: 2px;
  background: rgba(15, 23, 42, 0.06);
  border-radius: 1px;
}

.mtl-hero-card__road--v {
  height: auto;
  width: 2px;
}

/* Building footprints */
.mtl-hero-card__bldg {
  position: absolute;
  border-radius: 2px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  z-index: 1;
}

.mtl-hero-card__bldg--tall {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.35);
}

.mtl-hero-card__bldg--sm {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.18);
}

/* Sidewalk */
.mtl-hero-card__sidewalk {
  position: absolute;
  bottom: 30%;
  left: 12%;
  width: 50%;
  height: 2px;
  background: rgba(16, 185, 129, 0.35);
  border-radius: 2px;
  box-shadow: 0 8px 0 0 rgba(16, 185, 129, 0.18);
  z-index: 1;
}

/* Crosswalk */
.mtl-hero-card__crosswalk {
  position: absolute;
  top: calc(38% - 6px);
  left: 44%;
  width: 10px;
  height: 14px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8) 0px, rgba(255, 255, 255, 0.8) 2px,
    transparent 2px, transparent 4px
  );
  border-radius: 1px;
  z-index: 1;
}

/* Heatmap zones */
.mtl-hero-card__heat {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
}

.mtl-hero-card__heat--a {
  width: 150px;
  height: 150px;
  top: 15%;
  left: 20%;
  background: rgba(97, 114, 241, 0.14);
}

.mtl-hero-card__heat--b {
  width: 110px;
  height: 110px;
  top: 45%;
  left: 52%;
  background: rgba(24, 184, 172, 0.1);
}

.mtl-hero-card__heat--c {
  width: 80px;
  height: 80px;
  top: 65%;
  left: 30%;
  background: rgba(16, 185, 129, 0.1);
}

/* Gap zone */
.mtl-hero-card__gap-zone {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 60%;
  left: 28%;
  border-radius: 50%;
  border: 1.5px dashed rgba(16, 185, 129, 0.4);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  z-index: 1;
  animation: mtl-gap-in 0.6s ease-out 1.4s both;
}

@keyframes mtl-gap-in {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* Radius circle */
.mtl-hero-card__radius {
  position: absolute;
  width: 220px;
  height: 220px;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px dashed rgba(97, 114, 241, 0.25);
  background: radial-gradient(circle, rgba(97, 114, 241, 0.03) 0%, transparent 70%);
  animation: mtl-radius-in 0.8s ease-out 0.3s both;
}

@keyframes mtl-radius-in {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.mtl-hero-card__radius-label {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  font-size: 0.5rem;
  color: rgba(97, 114, 241, 0.45);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

/* Pins */
.mtl-hero-card__pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6172f1;
  box-shadow: 0 0 0 4px rgba(97, 114, 241, 0.15), 0 2px 6px rgba(97, 114, 241, 0.2);
  z-index: 2;
  animation: mtl-pin-pop 0.4s ease-out both;
}

.mtl-hero-card__pin:nth-child(7) { animation-delay: 0.3s; }
.mtl-hero-card__pin:nth-child(8) { animation-delay: 0.4s; }
.mtl-hero-card__pin:nth-child(9) { animation-delay: 0.5s; }
.mtl-hero-card__pin:nth-child(10) { animation-delay: 0.6s; }
.mtl-hero-card__pin:nth-child(11) { animation-delay: 0.7s; }
.mtl-hero-card__pin:nth-child(12) { animation-delay: 0.8s; }
.mtl-hero-card__pin:nth-child(13) { animation-delay: 0.9s; }

@keyframes mtl-pin-pop {
  from { opacity: 0; transform: scale(0) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.mtl-hero-card__pin--hot {
  background: #18b8ac;
  box-shadow: 0 0 0 4px rgba(24, 184, 172, 0.15), 0 2px 6px rgba(24, 184, 172, 0.2);
}

.mtl-hero-card__pin--gap {
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15), 0 2px 6px rgba(16, 185, 129, 0.2);
}

.mtl-hero-card__pin--you {
  width: 14px;
  height: 14px;
  background: #111827;
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 5px rgba(17, 24, 39, 0.1), 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 3;
  animation: none;
}

.mtl-hero-card__pin-pulse {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(97, 114, 241, 0.2);
  animation: mtl-hero-pulse 2.5s ease-out infinite;
}

@keyframes mtl-hero-pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Floating tooltips on map */
.mtl-hero-card__tip {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 0.55rem 0.75rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.04);
  z-index: 10;
  animation: mtl-tip-in 0.5s ease-out 1s both;
}

@keyframes mtl-tip-in {
  from { opacity: 0; transform: translateY(6px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mtl-hero-card__tip--business {
  bottom: 58%;
  left: 34%;
  min-width: 160px;
}

.mtl-hero-card__tip--gap {
  bottom: 30%;
  left: 24%;
  min-width: 140px;
  animation-delay: 1.6s;
}

.mtl-hero-card__tip-accent {
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: #6172f1;
}

.mtl-hero-card__tip-accent--gap {
  background: #10b981;
}

.mtl-hero-card__tip-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mtl-ink);
  margin-bottom: 0.2rem;
}

.mtl-hero-card__tip-meta {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  color: var(--mtl-ink-muted);
}

/* Mini traffic bars inside tooltip */
.mtl-hero-card__tip-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 22px;
  margin-top: 0.35rem;
}

.mtl-hero-card__tip-bars > div {
  flex: 1;
  border-radius: 1.5px 1.5px 0 0;
  background: rgba(97, 114, 241, 0.2);
  min-height: 2px;
}

.mtl-hero-card__tip-bars--peak {
  background: #6172f1 !important;
  box-shadow: 0 0 4px rgba(97, 114, 241, 0.35);
}

.mtl-hero-card__tip-peak {
  font-size: 0.55rem;
  color: var(--mtl-ink-muted);
  margin-top: 0.25rem;
}

.mtl-hero-card__tip-peak strong {
  color: var(--mtl-ink);
}

/* Gap tooltip */
.mtl-hero-card__tip-gap-label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  font-weight: 700;
  color: #059669;
}

.mtl-hero-card__tip-gap-text {
  font-size: 0.58rem;
  color: var(--mtl-ink-muted);
  margin-top: 0.1rem;
}

/* Layer toggles */
.mtl-hero-card__layers {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 4px;
  z-index: 5;
}

.mtl-hero-card__layer {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: rgba(15, 23, 42, 0.35);
  font-size: 0.55rem;
  font-weight: 500;
}

.mtl-hero-card__layer.is-on {
  color: var(--mtl-ink);
}

.mtl-hero-card__layer.is-on svg {
  color: #34d399;
}

.mtl-hero-card__layer svg {
  opacity: 0.4;
}

.mtl-hero-card__layer.is-on svg {
  opacity: 1;
}

.mtl-hero-card__layer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Map label */
.mtl-hero-card__map-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 0.58rem;
  color: rgba(15, 23, 42, 0.35);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── Sidebar ── */
.mtl-hero-card__sidebar {
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #fff;
}

.mtl-hero-card__side-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.mtl-hero-card__side-loc {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mtl-ink);
}

.mtl-hero-card__side-cat {
  font-size: 0.58rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(97, 114, 241, 0.08);
  color: #6172f1;
}

/* KPIs */
.mtl-hero-card__kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.mtl-hero-card__kpi {
  padding: 0.45rem 0.5rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.mtl-hero-card__kpi-val {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mtl-ink);
  line-height: 1;
}

.mtl-hero-card__kpi-label {
  font-size: 0.52rem;
  color: var(--mtl-ink-muted);
  margin-top: 0.12rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 500;
}

/* Top competitors */
.mtl-hero-card__competitors {
  padding: 0.45rem 0.5rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.mtl-hero-card__comp-title {
  font-size: 0.52rem;
  color: var(--mtl-ink-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

.mtl-hero-card__comp-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0;
}

.mtl-hero-card__comp-row + .mtl-hero-card__comp-row {
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.mtl-hero-card__comp-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mtl-hero-card__comp-name {
  flex: 1;
  font-size: 0.58rem;
  color: var(--mtl-ink);
  font-weight: 500;
}

.mtl-hero-card__comp-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--mtl-ink);
}

/* Chart */
.mtl-hero-card__chart {
  padding: 0.55rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.mtl-hero-card__chart-title {
  font-size: 0.55rem;
  color: var(--mtl-ink-muted);
  font-weight: 500;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mtl-hero-card__chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 44px;
}

.mtl-hero-card__bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: rgba(97, 114, 241, 0.15);
  position: relative;
  min-height: 3px;
  animation: mtl-bar-grow 0.6s ease-out both;
  transform-origin: bottom;
}

.mtl-hero-card__bar:nth-child(1) { animation-delay: 1.0s; }
.mtl-hero-card__bar:nth-child(2) { animation-delay: 1.05s; }
.mtl-hero-card__bar:nth-child(3) { animation-delay: 1.1s; }
.mtl-hero-card__bar:nth-child(4) { animation-delay: 1.15s; }
.mtl-hero-card__bar:nth-child(5) { animation-delay: 1.2s; }
.mtl-hero-card__bar:nth-child(6) { animation-delay: 1.25s; }
.mtl-hero-card__bar:nth-child(7) { animation-delay: 1.3s; }
.mtl-hero-card__bar:nth-child(8) { animation-delay: 1.35s; }

@keyframes mtl-bar-grow {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}

.mtl-hero-card__bar span {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.45rem;
  color: rgba(15, 23, 42, 0.28);
  white-space: nowrap;
}

.mtl-hero-card__bar--peak {
  background: #6172f1;
  box-shadow: 0 0 6px rgba(97, 114, 241, 0.25);
}

/* Score */
.mtl-hero-card__score {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem;
  border-radius: 10px;
  background: rgba(97, 114, 241, 0.04);
  border: 1px solid rgba(97, 114, 241, 0.08);
}

.mtl-hero-card__score-ring {
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.mtl-hero-card__score-ring svg {
  width: 100%;
  height: 100%;
}

.mtl-hero-card__score-arc {
  stroke-dasharray: 0 201;
  animation: mtl-score-fill 1.4s ease-out 1.2s forwards;
}

@keyframes mtl-score-fill {
  to { stroke-dasharray: 160 201; }
}

.mtl-hero-card__score-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #6172f1;
}

.mtl-hero-card__score-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--mtl-ink);
}

.mtl-hero-card__score-desc {
  font-size: 0.58rem;
  color: var(--mtl-ink-muted);
  margin-top: 0.1rem;
}

/* AI insight */
.mtl-hero-card__insight {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(97, 114, 241, 0.05) 0%, rgba(24, 184, 172, 0.03) 100%);
  border: 1px solid rgba(97, 114, 241, 0.08);
  animation: mtl-insight-in 0.5s ease-out 1.8s both;
}

@keyframes mtl-insight-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mtl-hero-card__insight-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6172f1;
  box-shadow: 0 0 0 3px rgba(97, 114, 241, 0.15);
  flex-shrink: 0;
  margin-top: 4px;
  animation: mtl-dot-blink 2s ease-in-out infinite;
}

@keyframes mtl-dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.mtl-hero-card__insight p {
  font-size: 0.62rem;
  line-height: 1.45;
  color: var(--mtl-ink-muted);
  margin: 0;
}

.mtl-hero-card__insight strong {
  color: var(--mtl-ink);
}

.mtl-hero__ball {
  display: none;
}

.mtl-hero__ball--warm {
  background: radial-gradient(41.77% 21.03% at 50% 21.03%, #6172f1 0%, #4f8af7 69.5%, #18b8ac 100%);
  top: -50px;
  right: 18%;
}

.mtl-hero__ball--cold {
  background: radial-gradient(40.03% 28.86% at 49.97% 34.28%, #18b8ac 31%, #a9c1ff 100%);
  bottom: -50px;
  left: 8%;
  animation-delay: 1.5s;
}

@keyframes mtl-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(18px); }
}

/* ── Sources strip ── */

.mtl-sources {
  padding: 2rem 1.5rem 3rem;
}

.mtl-sources__label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--mtl-ink-muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.mtl-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.mtl-badge-row--center {
  justify-content: center;
}

.mtl-badge {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.75);
}

/* ── Shared section ── */

.mtl-section__header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.mtl-section__sub {
  color: var(--mtl-ink-muted);
  font-size: 1.05rem;
  margin-top: 0.7rem;
}

.mtl-section--soft {
  background: var(--mtl-surface-soft);
}

/* ── How it works: 3 steps ── */

.mtl-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mtl-step {
  text-align: center;
}

.mtl-step h3 {
  font-size: 1.1rem;
  margin: 0.75rem 0 0.4rem;
}

.mtl-step p {
  color: var(--mtl-ink-muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.5;
}

.mtl-step__num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mtl-ink-muted);
  letter-spacing: 0.05em;
  opacity: 0.5;
}

.mtl-step__illu {
  height: 200px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--mtl-border);
  box-shadow: var(--mtl-shadow-card);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mtl-step__illu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* Step 1: Pin illustration */
.mtl-illu-pin {
  position: relative;
  width: 36px;
  height: 48px;
}

.mtl-illu-pin__head {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111827;
  box-shadow: 0 0 0 8px rgba(17, 24, 39, 0.1);
}

.mtl-illu-pin__stem {
  width: 4px;
  height: 16px;
  background: #111827;
  margin: -2px auto 0;
  border-radius: 0 0 4px 4px;
}

.mtl-illu-radius {
  width: 80px;
  height: 40px;
  border: 2px dashed rgba(97, 114, 241, 0.4);
  border-radius: 50%;
  margin-top: -20px;
}

.mtl-illu-input {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--mtl-border);
}

.mtl-illu-input__cursor {
  width: 2px;
  height: 14px;
  background: #6172f1;
  animation: mtl-blink 1s steps(2) infinite;
}

.mtl-illu-input__text {
  font-size: 0.7rem;
  color: var(--mtl-ink-muted);
}

@keyframes mtl-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Step 2: Scan orb illustration */
.mtl-scan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.mtl-scan__orb {
  position: relative;
  width: 64px;
  height: 64px;
}

.mtl-scan__pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(97, 114, 241, 0.25);
  animation: mtl-orb-pulse 2.4s ease-out infinite;
}

.mtl-scan__pulse--2 {
  inset: -20px;
  border-color: rgba(97, 114, 241, 0.12);
  animation-delay: 0.6s;
}

@keyframes mtl-orb-pulse {
  0% { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.mtl-scan__core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #6172f1 0%, #18b8ac 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(97, 114, 241, 0.35);
}

.mtl-scan__counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.mtl-scan__num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--mtl-ink);
  letter-spacing: -0.02em;
}

.mtl-scan__label {
  font-size: 0.68rem;
  color: var(--mtl-ink-muted);
}

.mtl-scan__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.mtl-scan__tags span {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--tag-color);
  background: color-mix(in srgb, var(--tag-color) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--tag-color) 20%, transparent);
}

/* Step 3: Mini dashboard illustration */
.mtl-mini-dash {
  width: calc(100% - 1.2rem);
  height: calc(100% - 1.2rem);
  margin: 0.6rem;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.mtl-mini-dash__chrome {
  display: flex;
  gap: 4px;
  padding: 7px 10px;
  background: rgba(15, 23, 42, 0.03);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.mtl-mini-dash__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.12);
}

.mtl-mini-dash__dot:first-child { background: #f87171; }
.mtl-mini-dash__dot:nth-child(2) { background: #fbbf24; }
.mtl-mini-dash__dot:nth-child(3) { background: #34d399; }

.mtl-mini-dash__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.mtl-mini-dash__tabs span {
  padding: 5px 8px;
  font-size: 0.58rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.35);
  border-bottom: 2px solid transparent;
}

.mtl-mini-dash__tabs span.is-active {
  color: #6172f1;
  border-bottom-color: #6172f1;
}

.mtl-mini-dash__content {
  flex: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  min-height: 0;
}

.mtl-mini-dash__map {
  position: relative;
  background: radial-gradient(circle at 40% 40%, #f0f2ff 0%, #f8f9fb 100%);
  border-right: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.mtl-mini-dash__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.mtl-mini-dash__circle {
  position: absolute;
  width: 65%;
  height: 80%;
  top: 10%;
  left: 12%;
  border-radius: 50%;
  border: 1.5px dashed rgba(97, 114, 241, 0.3);
  background: radial-gradient(circle, rgba(97, 114, 241, 0.04) 0%, transparent 70%);
}

.mtl-mini-dash__marker {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6172f1;
  box-shadow: 0 0 0 4px rgba(97, 114, 241, 0.18), 0 2px 6px rgba(97, 114, 241, 0.25);
}

.mtl-mini-dash__marker--b {
  background: #18b8ac;
  box-shadow: 0 0 0 4px rgba(24, 184, 172, 0.18), 0 2px 6px rgba(24, 184, 172, 0.25);
}

.mtl-mini-dash__tip {
  position: absolute;
  top: 22%;
  left: 48%;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 0.58rem;
  color: var(--mtl-ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3px;
}

.mtl-mini-dash__tip-accent {
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: #6172f1;
}

.mtl-mini-dash__sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px;
}

.mtl-mini-dash__kpi {
  display: flex;
  flex-direction: column;
  padding: 5px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.mtl-mini-dash__kpi-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mtl-ink);
  line-height: 1;
}

.mtl-mini-dash__kpi-label {
  font-size: 0.55rem;
  color: var(--mtl-ink-muted);
  margin-top: 1px;
}

.mtl-mini-dash__chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding-top: 6px;
  min-height: 32px;
}

.mtl-mini-dash__bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: rgba(97, 114, 241, 0.25);
}

.mtl-mini-dash__bar--peak {
  background: #6172f1;
  box-shadow: 0 0 6px rgba(97, 114, 241, 0.3);
}

/* ── Dashboard preview (dark section) ── */

.mtl-section--dark {
  background: #0f172a;
  padding: 5.5rem 1.5rem;
}

.mtl-section--dark h2,
.mtl-section--dark p,
.mtl-section--dark .mtl-section__sub {
  color: #e2e8f0;
}

/* Browser frame */
.mtl-dbp {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  overflow: hidden;
  background: #1a2332;
  box-shadow:
    0 0 0 1px rgba(148, 163, 184, 0.06),
    0 40px 80px -20px rgba(0, 0, 0, 0.5),
    0 0 120px -40px rgba(97, 114, 241, 0.15);
}

/* Chrome bar */
.mtl-dbp__chrome {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.2rem;
  background: rgba(15, 23, 42, 0.5);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.mtl-dbp__dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.mtl-dbp__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mtl-dbp__dot--red { background: #f87171; }
.mtl-dbp__dot--yellow { background: #fbbf24; }
.mtl-dbp__dot--green { background: #34d399; }

.mtl-dbp__url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  background: rgba(148, 163, 184, 0.08);
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.4);
  max-width: 360px;
}

/* Tabs */
.mtl-dbp__tabs {
  display: flex;
  gap: 0;
  padding: 0 0.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  overflow-x: auto;
  scrollbar-width: none;
}

.mtl-dbp__tabs::-webkit-scrollbar { display: none; }

.mtl-dbp__tab {
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.35);
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}

.mtl-dbp__tab.is-active {
  color: #fff;
  border-bottom-color: #6172f1;
}

/* Body grid */
.mtl-dbp__body {
  display: grid;
  grid-template-columns: 1fr 280px;
  min-height: 440px;
}

/* ── Map area ── */
.mtl-dbp__map {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 45% 45%, #1e293b 0%, #141c2b 100%);
}

.mtl-dbp__map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* Roads */
.mtl-dbp__road {
  position: absolute;
  background: rgba(148, 163, 184, 0.08);
  border-radius: 1px;
}

.mtl-dbp__road--h1 { height: 2px; width: 85%; top: 40%; left: 8%; }
.mtl-dbp__road--h2 { height: 2px; width: 70%; top: 65%; left: 15%; }
.mtl-dbp__road--v1 { width: 2px; height: 75%; top: 12%; left: 48%; }

/* Heatmap zones */
.mtl-dbp__heat {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
}

.mtl-dbp__heat--a {
  width: 180px;
  height: 180px;
  top: 20%;
  left: 25%;
  background: rgba(97, 114, 241, 0.12);
}

.mtl-dbp__heat--b {
  width: 140px;
  height: 140px;
  top: 45%;
  left: 55%;
  background: rgba(24, 184, 172, 0.08);
}

/* Radius */
.mtl-dbp__radius {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 50%;
  left: 46%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px dashed rgba(97, 114, 241, 0.3);
  background: radial-gradient(circle, rgba(97, 114, 241, 0.04) 0%, transparent 70%);
}

.mtl-dbp__radius-label {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  font-size: 0.62rem;
  color: rgba(97, 114, 241, 0.5);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

/* Building footprints */
.mtl-dbp__bldg {
  position: absolute;
  border-radius: 3px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.mtl-dbp__bldg--tall {
  background: rgba(59, 130, 246, 0.22);
  border-color: rgba(59, 130, 246, 0.4);
}

.mtl-dbp__bldg--sm {
  background: rgba(59, 130, 246, 0.1);
}

/* Sidewalk */
.mtl-dbp__sidewalk {
  position: absolute;
  bottom: 28%;
  left: 12%;
  width: 55%;
  height: 2px;
  background: rgba(16, 185, 129, 0.4);
  border-radius: 2px;
  box-shadow: 0 10px 0 0 rgba(16, 185, 129, 0.2);
}

/* Pins */
.mtl-dbp__pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6172f1;
  box-shadow: 0 0 0 5px rgba(97, 114, 241, 0.2), 0 2px 8px rgba(97, 114, 241, 0.3);
  z-index: 2;
}

.mtl-dbp__pin--hot {
  background: #18b8ac;
  box-shadow: 0 0 0 5px rgba(24, 184, 172, 0.2), 0 2px 8px rgba(24, 184, 172, 0.3);
}

.mtl-dbp__pin--warm {
  background: #eab308;
  box-shadow: 0 0 0 5px rgba(234, 179, 8, 0.2), 0 2px 8px rgba(234, 179, 8, 0.3);
}

.mtl-dbp__pin--you {
  width: 16px;
  height: 16px;
  background: #111827;
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.mtl-dbp__pin-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  animation: mtl-pin-pulse 2.5s ease-out infinite;
}

@keyframes mtl-pin-pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Floating tooltip */
.mtl-dbp__tooltip {
  position: absolute;
  top: 12%;
  left: 36%;
  background: #fff;
  border-radius: 16px;
  padding: 0.85rem 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 200px;
  z-index: 10;
}

.mtl-dbp__tooltip-accent {
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: #6172f1;
}

.mtl-dbp__tooltip-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mtl-ink);
}

.mtl-dbp__tooltip-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--mtl-ink-muted);
}

.mtl-dbp__tooltip-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-weight: 600;
  color: var(--mtl-ink);
}

.mtl-dbp__tooltip-traffic {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 28px;
  margin-top: 0.25rem;
}

.mtl-dbp__tooltip-tbar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: rgba(97, 114, 241, 0.2);
}

.mtl-dbp__tooltip-tbar--peak {
  background: #6172f1;
  box-shadow: 0 0 6px rgba(97, 114, 241, 0.4);
}

.mtl-dbp__tooltip-peak {
  font-size: 0.65rem;
  color: var(--mtl-ink-muted);
}

.mtl-dbp__tooltip-peak strong {
  color: var(--mtl-ink);
}

/* Layer toggles */
.mtl-dbp__layer-bar {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  gap: 6px;
  z-index: 5;
}

.mtl-dbp__layer-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.7rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  color: rgba(226, 232, 240, 0.45);
  font-size: 0.7rem;
  font-weight: 500;
}

.mtl-dbp__layer-toggle.is-on {
  color: #fff;
  border-color: rgba(148, 163, 184, 0.2);
}

.mtl-dbp__layer-toggle svg {
  opacity: 0.5;
}

.mtl-dbp__layer-toggle.is-on svg {
  opacity: 1;
  color: #34d399;
}

.mtl-dbp__layer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Sidebar ── */
.mtl-dbp__sidebar {
  border-left: 1px solid rgba(148, 163, 184, 0.1);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: rgba(15, 23, 42, 0.3);
}

.mtl-dbp__side-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mtl-dbp__side-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

.mtl-dbp__side-badge {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(97, 114, 241, 0.15);
  color: rgba(157, 170, 255, 0.9);
}

/* KPI grid */
.mtl-dbp__kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mtl-dbp__kpi {
  padding: 0.7rem;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.08);
}

.mtl-dbp__kpi-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.mtl-dbp__kpi-label {
  font-size: 0.62rem;
  color: rgba(226, 232, 240, 0.4);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 500;
}

/* Chart card */
.mtl-dbp__chart-card {
  padding: 0.8rem;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.08);
}

.mtl-dbp__chart-title {
  font-size: 0.68rem;
  color: rgba(226, 232, 240, 0.4);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mtl-dbp__chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 64px;
}

.mtl-dbp__cbar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(97, 114, 241, 0.25);
  position: relative;
  min-height: 4px;
}

.mtl-dbp__cbar span {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.52rem;
  color: rgba(226, 232, 240, 0.3);
  white-space: nowrap;
}

.mtl-dbp__cbar--peak {
  background: #6172f1;
  box-shadow: 0 0 8px rgba(97, 114, 241, 0.3);
}

/* Score card */
.mtl-dbp__score-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  border-radius: 12px;
  background: rgba(97, 114, 241, 0.08);
  border: 1px solid rgba(97, 114, 241, 0.15);
}

.mtl-dbp__score-ring {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.mtl-dbp__score-ring svg {
  width: 100%;
  height: 100%;
}

.mtl-dbp__score-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.mtl-dbp__score-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
}

.mtl-dbp__score-verdict {
  font-size: 0.65rem;
  color: rgba(226, 232, 240, 0.5);
  line-height: 1.4;
  margin-top: 0.15rem;
}

/* ── 7 Data layers grid ── */

.mtl-layers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.mtl-layer-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--mtl-shadow-card);
}

.mtl-layer-card h3 {
  font-size: 1.05rem;
  margin: 0.75rem 0 0.3rem;
}

.mtl-layer-card p {
  color: var(--mtl-ink-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.mtl-layer-card--accent {
  background: #0f172a;
  border-color: rgba(148, 163, 184, 0.15);
}

.mtl-layer-card--accent h3 { color: #fff; }
.mtl-layer-card--accent p { color: rgba(226, 232, 240, 0.7); }

.mtl-layer-card__illu {
  height: 140px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mtl-layer-card--accent .mtl-layer-card__illu {
  background: rgba(148, 163, 184, 0.08);
}

/* Competitors illustration */
.mtl-illu-competitors {
  position: relative;
  width: 100%;
  height: 100%;
}

.mtl-illu-comp__pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6172f1;
  box-shadow: 0 0 0 5px rgba(97, 114, 241, 0.15);
}

.mtl-illu-comp__pin--hot {
  background: #18b8ac;
  box-shadow: 0 0 0 5px rgba(24, 184, 172, 0.15);
}

.mtl-illu-comp__zone {
  position: absolute;
  top: 25%;
  left: 30%;
  width: 45%;
  height: 50%;
  border: 2px dashed rgba(97, 114, 241, 0.2);
  border-radius: 50%;
}

/* Traffic illustration */
.mtl-illu-traffic {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.6rem 1rem 0;
  position: relative;
}

.mtl-illu-traffic__peak-tag {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 0.58rem;
  font-weight: 600;
  color: #0ea5e9;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.1);
}

.mtl-illu-traffic__bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  flex: 1;
  width: 100%;
  padding-bottom: 18px;
}

.mtl-illu-traffic__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.mtl-illu-traffic__col span {
  font-size: 0.52rem;
  color: rgba(15, 23, 42, 0.3);
  margin-top: 4px;
}

.mtl-illu-traffic__col--peak span {
  color: #0ea5e9;
  font-weight: 600;
}

.mtl-illu-traffic__bar {
  width: 100%;
  border-radius: 3px 3px 0 0;
  background: rgba(14, 165, 233, 0.18);
  min-height: 3px;
}

.mtl-illu-traffic__bar--peak {
  background: linear-gradient(180deg, #0ea5e9 0%, rgba(14, 165, 233, 0.6) 100%);
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.3);
}

/* Demographics illustration */
.mtl-illu-demo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mtl-illu-demo__ring {
  width: 80px;
  height: 80px;
}

.mtl-illu-demo__labels {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mtl-illu-demo__labels span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--mtl-ink-muted);
}

.mtl-illu-demo__labels i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

/* Weather illustration */
.mtl-illu-weather {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.mtl-illu-weather__sun {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eab308;
  box-shadow: 0 0 0 8px rgba(234, 179, 8, 0.15), 0 0 0 16px rgba(234, 179, 8, 0.06);
}

.mtl-illu-weather__cloud {
  position: absolute;
  top: 20px;
  right: -10px;
  width: 36px;
  height: 18px;
  background: rgba(148, 163, 184, 0.25);
  border-radius: 18px;
}

.mtl-illu-weather__cloud::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 16px;
  background: rgba(148, 163, 184, 0.25);
  border-radius: 50%;
  top: -8px;
  left: 10px;
}

.mtl-illu-weather__temp {
  display: flex;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.mtl-illu-weather__hi { color: #dc2626; }
.mtl-illu-weather__lo { color: #2563eb; }

.mtl-illu-weather__tag {
  font-size: 0.68rem;
  color: var(--mtl-ink-muted);
  padding: 0.2rem 0.5rem;
  background: rgba(234, 179, 8, 0.1);
  border-radius: 999px;
}

/* Buildings illustration */
.mtl-illu-buildings {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.mtl-illu-bldg {
  position: absolute;
  bottom: 20px;
  border-radius: 4px 4px 0 0;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-bottom: none;
}

.mtl-illu-bldg--tall {
  background: rgba(59, 130, 246, 0.35);
  border-color: rgba(59, 130, 246, 0.5);
}

.mtl-illu-bldg--short {
  background: rgba(59, 130, 246, 0.15);
}

/* Walkability illustration */
.mtl-illu-walk {
  position: relative;
  width: 100%;
  height: 100%;
}

.mtl-illu-walk__road {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 24px;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.08);
  border-radius: 4px;
}

.mtl-illu-walk__sidewalk {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 3px;
  background: #10b981;
  border-radius: 2px;
}

.mtl-illu-walk__sidewalk--top { top: calc(50% - 18px); }
.mtl-illu-walk__sidewalk--bottom { top: calc(50% + 18px); }

.mtl-illu-walk__crossing {
  position: absolute;
  top: calc(50% - 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 24px;
  background: repeating-linear-gradient(
    to bottom,
    #fff 0px, #fff 3px,
    rgba(15, 23, 42, 0.12) 3px, rgba(15, 23, 42, 0.12) 6px
  );
  border-radius: 2px;
}

.mtl-illu-walk__light {
  position: absolute;
  width: 4px;
  height: 20px;
  background: rgba(234, 179, 8, 0.5);
  border-radius: 2px;
}

.mtl-illu-walk__light::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -4px;
  width: 12px;
  height: 8px;
  border-radius: 50%;
  background: rgba(234, 179, 8, 0.3);
}

.mtl-illu-walk__light--1 { top: calc(50% - 28px); left: 25%; }
.mtl-illu-walk__light--2 { top: calc(50% - 28px); left: 70%; }

.mtl-illu-walk__transit {
  position: absolute;
  bottom: 18px;
  right: 18%;
  width: 24px;
  height: 16px;
  border: 2px solid rgba(30, 64, 175, 0.4);
  border-radius: 6px;
  background: rgba(30, 64, 175, 0.1);
}

/* Satellite illustration */
.mtl-illu-sat {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mtl-illu-sat__globe {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #bfdbfe 0%, #6da1d4 100%);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
  overflow: hidden;
}

.mtl-illu-sat__land {
  position: absolute;
  border-radius: 40%;
  background: rgba(16, 185, 129, 0.4);
}

.mtl-illu-sat__land--1 {
  width: 28px;
  height: 22px;
  top: 18%;
  left: 22%;
  transform: rotate(-15deg);
}

.mtl-illu-sat__land--2 {
  width: 20px;
  height: 18px;
  top: 52%;
  left: 48%;
  transform: rotate(10deg);
}

.mtl-illu-sat__glow {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 30%;
  left: 35%;
  border-radius: 50%;
  background: rgba(234, 179, 8, 0.6);
  filter: blur(5px);
}

.mtl-illu-sat__orbit {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px dashed rgba(59, 130, 246, 0.25);
  animation: mtl-orbit 8s linear infinite;
}

@keyframes mtl-orbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.mtl-illu-sat__icon {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
}

.mtl-illu-sat__lights span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #eab308;
  box-shadow: 0 0 6px rgba(234, 179, 8, 0.6);
  animation: mtl-twinkle 2s ease-in-out infinite alternate;
}

.mtl-illu-sat__lights span:nth-child(2) { animation-delay: 0.4s; }
.mtl-illu-sat__lights span:nth-child(3) { animation-delay: 0.8s; }
.mtl-illu-sat__lights span:nth-child(4) { animation-delay: 1.2s; }
.mtl-illu-sat__lights span:nth-child(5) { animation-delay: 1.6s; }

@keyframes mtl-twinkle {
  0% { opacity: 0.3; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1.2); }
}

/* AI illustration */
.mtl-illu-ai {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.mtl-illu-ai__chat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 200px;
}

.mtl-illu-ai__bubble {
  padding: 0.4rem 0.65rem;
  border-radius: 12px;
  font-size: 0.65rem;
  line-height: 1.35;
}

.mtl-illu-ai__bubble--user {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.mtl-illu-ai__bubble--ai {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.mtl-illu-ai__typing {
  display: flex;
  gap: 4px;
  padding: 0.15rem 0;
}

.mtl-illu-ai__typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: mtl-typing-dot 1.4s ease-in-out infinite;
}

.mtl-illu-ai__typing span:nth-child(2) { animation-delay: 0.2s; }
.mtl-illu-ai__typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes mtl-typing-dot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* ── AI Assistant demo ── */

.mtl-ai-demo {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.mtl-ai-demo__window {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--mtl-border);
  box-shadow: var(--mtl-shadow-soft);
  overflow: hidden;
}

.mtl-ai-demo__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid var(--mtl-border);
}

.mtl-ai-demo__dot-row {
  display: flex;
  gap: 5px;
}

.mtl-ai-demo__dot-row span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.1);
}

.mtl-ai-demo__title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mtl-ink-muted);
}

.mtl-ai-demo__messages {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mtl-ai-msg {
  padding: 0.9rem 1.1rem;
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.mtl-ai-msg--user {
  background: #0f172a;
  color: #fff;
  margin-left: 2rem;
  border-bottom-right-radius: 6px;
}

.mtl-ai-msg--ai {
  background: rgba(15, 23, 42, 0.04);
  color: var(--mtl-ink);
  margin-right: 1rem;
  border-bottom-left-radius: 6px;
}

.mtl-ai-msg__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 0.8rem 0;
}

.mtl-ai-msg__hl {
  padding: 0.6rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--mtl-border);
  text-align: center;
}

.mtl-ai-msg__hl-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: #6172f1;
}

.mtl-ai-msg__hl-label {
  font-size: 0.68rem;
  color: var(--mtl-ink-muted);
  margin-top: 0.15rem;
}

.mtl-ai-demo__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1.4rem 1.2rem;
}

.mtl-ai-demo__quick span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(97, 114, 241, 0.08);
  color: #6172f1;
  font-size: 0.78rem;
  font-weight: 500;
}

.mtl-ai-demo__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.mtl-ai-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.mtl-ai-feat__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.mtl-ai-feat__icon--map {
  background: rgba(97, 114, 241, 0.1);
}

.mtl-ai-feat__icon--map::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #6172f1;
  box-shadow: 0 0 0 4px rgba(97, 114, 241, 0.2);
}

.mtl-ai-feat__icon--compare {
  background: rgba(24, 184, 172, 0.1);
}

.mtl-ai-feat__icon--compare::before {
  content: "";
  width: 8px;
  height: 14px;
  border: 2px solid #18b8ac;
  border-radius: 3px;
  box-shadow: 10px 0 0 0 rgba(24, 184, 172, 0.4);
}

.mtl-ai-feat__icon--export {
  background: rgba(16, 185, 129, 0.1);
}

.mtl-ai-feat__icon--export::before {
  content: "";
  width: 14px;
  height: 18px;
  border: 2px solid #10b981;
  border-radius: 3px;
}

.mtl-ai-feat strong {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.2rem;
}

.mtl-ai-feat p {
  color: var(--mtl-ink-muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

/* ── Card utilities ── */

.mtl-card__title {
  font-size: 1.15rem;
  font-weight: 600;
}

.mtl-card__text {
  color: var(--mtl-ink-muted);
  font-size: 0.95rem;
}

/* ── CTA ── */

.mtl-cta {
  background: #0f172a;
  color: #fff;
  border-radius: 32px;
  padding: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.mtl-cta h2,
.mtl-cta p {
  color: #fff;
}

.mtl-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.mtl-cta .mtl-hero__subtitle {
  max-width: 28rem;
  margin: 0 auto;
}

.mtl-cta .mtl-hero__actions {
  justify-content: center;
}

.mtl-cta__ball {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  right: -80px;
  top: -90px;
  background: radial-gradient(29.53% 21.03% at 50% 21.03%, #6172f1 0%, #4f8af7 50%, #18b8ac 100%);
  opacity: 0.7;
}

.mtl-cta__ball--2 {
  right: auto;
  top: auto;
  left: -60px;
  bottom: -100px;
  background: radial-gradient(40% 28% at 50% 34%, #18b8ac 31%, #a9c1ff 100%);
  opacity: 0.5;
  width: 180px;
  height: 180px;
}

.mtl-btn--cta {
  color: #0f172a;
  background: #fff;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
}

.mtl-btn--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
}

.mtl-btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
}

.mtl-btn--ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

/* ── Footer ── */

.mtl-footer {
  background: #0b0f1f;
  color: #e2e8f0;
  padding: 4rem 1.5rem;
}

.mtl-footer__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
}

.mtl-footer__title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.mtl-footer__link {
  display: block;
  color: rgba(226, 232, 240, 0.7);
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.mtl-footer__link:hover {
  color: #fff;
}

.mtl-footer__bottom {
  max-width: 1300px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.7);
}

/* ── Responsive ── */

@media (max-width: 960px) {
  .mtl-hero__grid {
    grid-template-columns: 1fr;
  }

  .mtl-nav__links {
    display: none;
  }

  .mtl-hero__visual {
    order: -1;
  }

  .mtl-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .mtl-dbp__body {
    grid-template-columns: 1fr;
  }

  .mtl-dbp__sidebar {
    border-left: none;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
  }

  .mtl-dbp__tooltip {
    display: none;
  }

  .mtl-ai-demo {
    grid-template-columns: 1fr;
  }

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

  .mtl-hero-card__map {
    min-height: 260px;
    border-right: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }

  .mtl-hero-card__tip {
    display: none;
  }

  .mtl-hero-card__layers {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .mtl-hero {
    padding-top: 4.5rem;
  }

  .mtl-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mtl-btn {
    justify-content: center;
  }

  .mtl-cta {
    padding: 2.5rem 1.8rem;
  }

  .mtl-ai-msg__highlights {
    grid-template-columns: 1fr;
  }

  .mtl-dbp__layer-bar {
    flex-wrap: wrap;
  }

  .mtl-dbp__map {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mtl-hero__ball,
  .mtl-marquee__track,
  .mtl-dbp__pin-pulse,
  .mtl-scan__pulse,
  .mtl-illu-sat__orbit,
  .mtl-illu-sat__lights span,
  .mtl-hero-card__pin-pulse,
  .mtl-hero-card__score-arc,
  .mtl-hero-card,
  .mtl-hero-card__pin,
  .mtl-hero-card__bar,
  .mtl-hero-card__tip,
  .mtl-hero-card__insight,
  .mtl-hero-card__insight-dot,
  .mtl-hero-card__scan,
  .mtl-hero-card__radius,
  .mtl-hero-card__gap-zone {
    animation: none;
  }
}
