:root {
  color-scheme: light;
  --background: #ffffff;
  --surface: #f4f6f6;
  --surface-strong: #e9eeee;
  --foreground: #171919;
  --muted: #626969;
  --muted-light: #8a9292;
  --border: #dfe4e4;
  --brand: #214c57;
  --brand-dark: #173943;
  --brand-soft: #e6eef0;
  --dark: #17272c;
  --dark-muted: #b8c4c7;
  --positive: #1f9d61;
  --neutral: #c98922;
  --negative: #d64a45;
  --radius: 18px;
  --radius-small: 10px;
  --shadow-small: 0 2px 8px rgba(23, 39, 44, 0.06);
  --shadow-medium: 0 22px 60px rgba(23, 39, 44, 0.11);
  --max-width: 1180px;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3,
strong {
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(50px, 4.7vw, 70px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.12;
}

section,
#faq {
  scroll-margin-top: 92px;
}

.section-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--foreground);
  border-radius: var(--radius-small);
  color: #ffffff;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-lede {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.section-intro {
  margin-bottom: 44px;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.65fr);
  gap: 64px;
  align-items: end;
}

.split-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max-width));
  min-height: var(--header-height);
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(223, 228, 228, 0.92);
  border-radius: 16px;
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    box-shadow 220ms ease,
    background 220ms ease,
    top 220ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 34px rgba(23, 39, 44, 0.1);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.brand {
  min-height: 42px;
  padding-inline: 8px;
}

.brand img,
.footer-brand img {
  width: 28px;
  height: 28px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  padding: 10px 11px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  transition:
    background 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--surface);
  color: var(--foreground);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 5px;
  background: var(--brand);
  color: #ffffff;
}

.site-nav .nav-access {
  margin-left: 5px;
  padding-inline: 12px;
  color: var(--foreground);
  background: #ffffff;
  border: 1px solid var(--border);
}

.site-nav .language-link,
.language-link {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

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

.page-header-actions .language-link {
  display: inline-grid;
  min-width: 38px;
  min-height: 38px;
  place-items: center;
  border-radius: 8px;
}

.page-header-actions .language-link:hover,
.page-header-actions .language-link:focus-visible {
  background: var(--surface);
  outline: none;
}

.page-header-actions .nav-access {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 38px;
  align-items: center;
  padding-inline: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--foreground);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.page-header-actions .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.page-header-actions .nav-access:hover,
.page-header-actions .nav-access:focus-visible {
  background: var(--surface);
  outline: none;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--brand-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.site-nav .nav-access:hover,
.site-nav .nav-access:focus-visible {
  background: var(--surface);
  color: var(--foreground);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--foreground);
  border-radius: 999px;
  content: "";
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-2px) rotate(-45deg);
}

.nav-toggle:focus-visible,
.button:focus-visible,
.faq-list summary:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid rgba(33, 76, 87, 0.28);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  box-shadow: var(--shadow-small);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(23, 39, 44, 0.12);
}

.button.primary {
  background: var(--brand);
  color: #ffffff;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--brand-dark);
}

.button:disabled,
.button:disabled:hover {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.button.secondary {
  background: #ffffff;
  border-color: var(--border);
  color: var(--foreground);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: #c5cccc;
}

.button.light {
  background: #ffffff;
  color: var(--dark);
}

.hero {
  padding-top: 126px;
  padding-bottom: 86px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(440px, 0.94fr);
  gap: 54px;
  align-items: center;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.48;
}

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

.cta-note {
  max-width: 610px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-product {
  position: relative;
  min-width: 0;
}

.product-carousel {
  overflow: hidden;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-medium);
}

.product-carousel-bar,
.product-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-carousel-bar {
  min-height: 36px;
  padding: 0 2px 8px 8px;
}

.product-carousel-count {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-carousel-count span:first-child {
  color: var(--foreground);
}

.product-carousel-controls {
  display: flex;
  gap: 5px;
}

.product-carousel-controls button {
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  place-items: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.product-carousel-controls button:hover {
  background: var(--surface);
  border-color: #c8cece;
  transform: translateY(-1px);
}

.product-carousel-controls button:focus-visible,
.product-carousel-dots button:focus-visible,
.app-screen-viewport:focus-visible {
  outline: 3px solid rgba(33, 76, 87, 0.24);
  outline-offset: 2px;
}

.product-carousel-controls svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.app-screen-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  background: #f5f6f6;
  border: 1px solid #e2e5e5;
  border-radius: 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}

.app-screen-viewport::-webkit-scrollbar {
  display: none;
}

.app-screen-track {
  display: flex;
  width: 100%;
}

.app-screen-slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.app-screen-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 960 / 620;
  overflow: hidden;
  background: #f7f7f7;
}

.app-screen-canvas {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 960px;
  height: 620px;
  grid-template-columns: 154px minmax(0, 1fr);
  overflow: hidden;
  background: #f6f6f6;
  color: #151717;
  font-size: 11px;
  line-height: 1.35;
  transform: scale(var(--screen-scale, 0.5));
  transform-origin: top left;
}

.app-screen-canvas * {
  min-width: 0;
}

.app-screen-canvas h2,
.app-screen-canvas h3,
.app-screen-canvas p {
  margin: 0;
}

.mh-app-sidebar {
  position: relative;
  display: flex;
  height: 620px;
  flex-direction: column;
  padding: 17px 12px 14px;
  background: #fafafa;
  border-right: 1px solid #e4e6e6;
}

.mh-app-brand {
  display: flex;
  min-height: 29px;
  align-items: center;
  gap: 8px;
  padding: 0 6px;
  font-size: 13px;
}

.mh-app-brand img {
  width: 20px;
  height: 20px;
}

.mh-app-sidebar nav {
  display: grid;
  gap: 3px;
  margin-top: 21px;
}

.mh-app-sidebar nav span,
.mh-sidebar-group > span {
  display: flex;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  overflow: hidden;
  border-radius: 7px;
  color: #6d7272;
  font-size: 10px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-app-sidebar nav span.active,
.mh-sidebar-group > span.project-active {
  background: #efefef;
  color: #171919;
}

.mh-nav-icon,
.mh-user-icon {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
}

.dashboard-icon::before {
  position: absolute;
  inset: 1px;
  background:
    linear-gradient(#828787 0 0) 0 0 / 4px 4px,
    linear-gradient(#828787 0 0) 100% 0 / 4px 4px,
    linear-gradient(#828787 0 0) 0 100% / 4px 4px,
    linear-gradient(#828787 0 0) 100% 100% / 4px 4px;
  background-repeat: no-repeat;
  content: "";
}

.folder-icon::before {
  position: absolute;
  inset: 3px 1px 1px;
  border: 1.5px solid #828787;
  border-radius: 2px;
  content: "";
}

.folder-icon::after {
  position: absolute;
  top: 1px;
  left: 2px;
  width: 5px;
  height: 3px;
  background: #828787;
  border-radius: 1px 1px 0 0;
  content: "";
}

.mh-user-icon::before {
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 5px;
  background: #828787;
  border-radius: 50%;
  content: "";
}

.mh-user-icon::after {
  position: absolute;
  right: 1px;
  bottom: 1px;
  left: 1px;
  height: 6px;
  background: #828787;
  border-radius: 7px 7px 2px 2px;
  content: "";
}

.mh-sidebar-group {
  display: grid;
  gap: 2px;
  margin-top: 18px;
}

.mh-sidebar-group small {
  padding: 0 8px 6px;
  color: #a0a4a4;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mh-sidebar-user {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  margin-top: auto;
  padding: 9px 7px 0;
  border-top: 1px solid #e4e6e6;
}

.mh-sidebar-user > b,
.mh-app-topbar div > b {
  display: grid;
  border-radius: 50%;
  place-items: center;
  background: #171919;
  color: #ffffff;
}

.mh-sidebar-user > b {
  width: 27px;
  height: 27px;
  font-size: 8px;
}

.mh-sidebar-user div {
  display: grid;
}

.mh-sidebar-user strong {
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-sidebar-user small {
  overflow: hidden;
  color: #858a8a;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-app-main {
  height: 620px;
  overflow: hidden;
  background: #ffffff;
}

.mh-app-topbar {
  display: grid;
  height: 45px;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid #e6e8e8;
  color: #898e8e;
}

.mh-menu-lines,
.mh-menu-lines::before,
.mh-menu-lines::after {
  display: block;
  width: 12px;
  height: 1px;
  background: #686d6d;
  content: "";
}

.mh-menu-lines {
  position: relative;
}

.mh-menu-lines::before {
  position: absolute;
  top: -4px;
}

.mh-menu-lines::after {
  position: absolute;
  top: 4px;
}

.mh-app-topbar > small {
  font-size: 8px;
}

.mh-app-topbar > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555b5b;
  font-size: 8px;
  font-weight: 750;
}

.mh-app-topbar div > b {
  width: 24px;
  height: 24px;
  font-size: 7px;
}

.mh-home-content,
.mh-project-content {
  padding: 15px 18px 18px;
}

.mh-home-content {
  display: grid;
  gap: 9px;
}

.mh-app-title,
.mh-project-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.mh-app-title h2,
.mh-project-title h2 {
  color: #171919;
  font-size: 20px;
  line-height: 1.05;
}

.mh-app-title small,
.mh-project-title small {
  color: #858a8a;
  font-size: 8px;
}

.mh-app-title > span {
  padding-top: 4px;
  color: #8a8f8f;
  font-size: 8px;
}

.mh-overview-card,
.mh-top-stories,
.mh-chart-card,
.mh-kpi-stack article,
.mh-project-description,
.mh-country-group {
  background: #ffffff;
  border: 1px solid #e1e4e4;
  border-radius: 9px;
}

.mh-overview-card {
  height: 91px;
  padding: 11px 13px;
  background: #fafafa;
}

.mh-overview-card header,
.mh-top-stories header,
.mh-chart-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mh-overview-card header strong,
.mh-top-stories header strong,
.mh-chart-card header strong {
  font-size: 11px;
}

.mh-overview-card header small,
.mh-top-stories header small,
.mh-chart-card header small {
  color: #8a8f8f;
  font-size: 8px;
}

.mh-overview-card p {
  max-width: 690px;
  margin-top: 10px;
  color: #5f6565;
  font-size: 9px;
  line-height: 1.55;
}

.mh-home-grid {
  display: grid;
  height: 152px;
  grid-template-columns: 178px minmax(0, 1fr);
  gap: 9px;
}

.mh-kpi-stack {
  display: grid;
  gap: 8px;
}

.mh-kpi-stack article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 10px 12px;
}

.mh-kpi-stack article > div {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #626868;
  font-size: 8px;
  font-weight: 700;
}

.mh-kpi-stack article > strong {
  grid-row: 1 / 3;
  grid-column: 2;
  font-size: 26px;
  line-height: 1;
}

.mh-kpi-stack article > small {
  color: #959a9a;
  font-size: 7px;
}

.mh-top-stories {
  padding: 10px 12px;
}

.mh-top-stories header {
  margin-bottom: 5px;
}

.mh-top-stories > article {
  display: flex;
  height: 35px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid #eff0f0;
}

.mh-top-stories > article > div:first-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px 48px;
  gap: 7px;
  align-items: center;
  flex: 1;
}

.mh-top-stories article strong {
  overflow: hidden;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-top-stories article span {
  overflow: hidden;
  color: #818686;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-mini-sentiment {
  position: relative;
  display: block;
  width: 42px;
  height: 5px;
  overflow: hidden;
  background: #e4e6e6;
  border-radius: 999px;
}

.mh-mini-sentiment::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--sentiment-width, 68%);
  background: var(--positive);
  border-radius: inherit;
  content: "";
}

.mh-mini-sentiment.mostly-positive { --sentiment-width: 78%; }
.mh-mini-sentiment.mixed { --sentiment-width: 46%; }
.mh-mini-sentiment.neutral-positive { --sentiment-width: 62%; }

.mh-source-stack {
  display: flex;
  padding-left: 8px;
}

.mh-source-stack b {
  display: grid;
  width: 19px;
  height: 19px;
  margin-left: -6px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  place-items: center;
  background: #eceeee;
  color: #595f5f;
  font-size: 6px;
}

.mh-chart-card {
  height: 207px;
  padding: 11px 12px 9px;
}

.mh-chart-card header > div:first-child {
  display: grid;
}

.mh-chart-filters {
  display: flex;
  align-items: center;
  gap: 3px;
}

.mh-chart-filters span,
.mh-chart-filters b {
  padding: 4px 7px;
  background: #ffffff;
  border: 1px solid #e3e6e6;
  border-radius: 5px;
  color: #6c7272;
  font-size: 7px;
  font-weight: 700;
}

.mh-chart-filters span.active {
  background: #171919;
  border-color: #171919;
  color: #ffffff;
}

.mh-chart-plot {
  position: relative;
  height: 154px;
  margin-top: 9px;
  overflow: hidden;
}

.mh-chart-grid {
  position: absolute;
  inset: 4px 0 18px;
  display: grid;
  align-content: space-between;
}

.mh-chart-grid i {
  display: block;
  border-top: 1px solid #eceeee;
}

.mh-chart-plot svg {
  position: absolute;
  inset: 4px 0 19px;
  width: 100%;
  height: 130px;
}

.mh-chart-plot .area {
  fill: rgba(33, 76, 87, 0.1);
}

.mh-chart-plot .line {
  fill: none;
  stroke: #214c57;
  stroke-linecap: round;
  stroke-width: 2;
}

.mh-chart-axis {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: #949999;
  font-size: 7px;
}

.mh-project-content {
  display: grid;
  gap: 9px;
}

.mh-project-title {
  min-height: 37px;
}

.mh-project-title > div:last-child {
  display: flex;
  gap: 5px;
}

.mh-project-title > div:last-child span {
  padding: 6px 10px;
  background: #ffffff;
  border: 1px solid #dfe3e3;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 750;
}

.mh-project-title > div:last-child span:first-child {
  background: #171919;
  border-color: #171919;
  color: #ffffff;
}

.mh-project-description {
  min-height: 58px;
  padding: 10px 12px;
  background: #fafafa;
}

.mh-project-description strong {
  font-size: 10px;
}

.mh-project-description p {
  max-width: 680px;
  margin-top: 5px;
  color: #6f7575;
  font-size: 8px;
}

.mh-filter-row {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  padding: 6px;
  background: #f7f7f7;
  border: 1px solid #e2e5e5;
  border-radius: 8px;
}

.mh-segment,
.mh-view-toggle {
  display: flex;
  padding: 2px;
  background: #e9ebeb;
  border-radius: 6px;
}

.mh-segment span {
  padding: 5px 9px;
  border-radius: 4px;
  color: #737878;
  font-size: 8px;
  font-weight: 700;
}

.mh-segment span.active,
.mh-view-toggle span.active {
  background: #ffffff;
  color: #171919;
  box-shadow: 0 1px 4px rgba(23, 25, 25, 0.1);
}

.mh-select {
  display: flex;
  min-height: 27px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 9px;
  background: #ffffff;
  border: 1px solid #dfe3e3;
  border-radius: 6px;
  color: #5f6565;
  font-size: 8px;
  font-weight: 700;
}

.mh-select i {
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.mh-select.compact {
  margin-left: auto;
}

.mh-split {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #6f7575;
  font-size: 8px;
  font-weight: 700;
}

.mh-split small {
  color: #9a9e9e;
  font-size: 7px;
}

.mh-split span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mh-split span i {
  position: relative;
  width: 20px;
  height: 11px;
  background: #cfd3d3;
  border-radius: 999px;
}

.mh-split span i::after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 7px;
  height: 7px;
  background: #ffffff;
  border-radius: 50%;
  content: "";
}

.mh-split span i.on {
  background: #171919;
}

.mh-split span i.on::after {
  left: 11px;
}

.mh-view-toggle span {
  position: relative;
  width: 28px;
  height: 23px;
  border-radius: 4px;
}

.mh-view-toggle span::before {
  position: absolute;
  inset: 6px;
  background:
    linear-gradient(#737878 0 0) 0 0 / 4px 4px,
    linear-gradient(#737878 0 0) 100% 0 / 4px 4px,
    linear-gradient(#737878 0 0) 0 100% / 4px 4px,
    linear-gradient(#737878 0 0) 100% 100% / 4px 4px;
  background-repeat: no-repeat;
  content: "";
}

.mh-view-toggle span:first-child::before {
  background:
    linear-gradient(#737878 0 0) 0 0 / 100% 2px,
    linear-gradient(#737878 0 0) 0 50% / 100% 2px,
    linear-gradient(#737878 0 0) 0 100% / 100% 2px;
  background-repeat: no-repeat;
}

.mh-grouped-results {
  display: grid;
  gap: 8px;
  height: 367px;
  overflow: hidden;
}

.mh-country-group {
  padding: 9px 10px 10px;
}

.mh-country-group > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 7px;
  border-bottom: 1px solid #eceeee;
}

.mh-country-group > header > div {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.mh-country-group > header strong {
  font-size: 12px;
}

.mh-country-group > header span,
.mh-section-group h3 span {
  color: #8d9292;
  font-size: 7px;
  font-weight: 650;
}

.mh-country-group > header > i {
  width: 6px;
  height: 6px;
  border-right: 1px solid #6d7272;
  border-bottom: 1px solid #6d7272;
  transform: rotate(45deg);
}

.mh-section-group {
  padding-top: 7px;
}

.mh-section-group h3 {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 0 2px 5px;
  font-size: 9px;
  line-height: 1.2;
}

.mh-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.mh-article-grid.single {
  grid-template-columns: minmax(0, 1fr);
}

.mh-article-grid article {
  display: grid;
  min-height: 64px;
  padding: 8px 9px;
  background: #fafafa;
  border: 1px solid #e4e6e6;
  border-radius: 7px;
}

.mh-article-grid article small {
  color: #8b9090;
  font-size: 6px;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.mh-article-grid article strong {
  margin: 4px 0 6px;
  font-size: 8px;
  line-height: 1.3;
}

.mh-article-grid article footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  color: #858a8a;
  font-size: 7px;
}

.compact-section {
  padding-top: 6px;
}

.compact-section .mh-article-grid article {
  min-height: 57px;
}

.secondary-country {
  min-height: 142px;
}

.sentiment {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.sentiment.positive {
  background: var(--positive);
}

.sentiment.neutral {
  background: var(--neutral);
}

.sentiment.negative {
  background: var(--negative);
}

.product-carousel-footer {
  justify-content: center;
  min-height: 29px;
  padding: 8px 5px 0;
  color: var(--muted-light);
  font-size: 9px;
  font-weight: 650;
}

.product-carousel-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-carousel-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  background: #cdd2d2;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.product-carousel-dots button.active {
  width: 18px;
  background: var(--brand);
  border-radius: 999px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 92px;
}

.hero-facts article {
  display: grid;
  gap: 8px;
  min-height: 128px;
  align-content: center;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.hero-facts strong {
  font-size: 38px;
  line-height: 1;
}

.hero-facts article:last-child strong {
  font-size: 34px;
}

.hero-facts span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-growth-note {
  margin: 14px 0 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.coverage-section,
.product-section,
.use-cases-section,
.demo-section {
  padding-block: 112px;
}

.coverage-date {
  margin: 12px 0 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 750;
}

.coverage-index {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 34px 46px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.coverage-total {
  display: grid;
  align-content: start;
}

.coverage-total > span,
.coverage-total > small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-total > strong {
  margin-block: 10px 6px;
  font-size: 94px;
  line-height: 0.84;
}

.coverage-bars {
  display: grid;
  gap: 15px;
}

.coverage-bars article {
  display: grid;
  gap: 7px;
}

.coverage-bars article > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.coverage-bars article strong {
  font-size: 15px;
}

.coverage-bars article span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.coverage-bars i {
  display: block;
  overflow: hidden;
  height: 9px;
  background: #dfe5e5;
  border-radius: 999px;
}

.coverage-bars b {
  display: block;
  width: var(--coverage);
  height: 100%;
  background: var(--brand);
  border-radius: inherit;
  transform-origin: left center;
}

.coverage-types {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 8px;
}

.coverage-types span,
.capability-tags span,
.email-points span,
.demo-assurance span {
  padding: 8px 11px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.impact-section {
  overflow: hidden;
  padding-block: 110px;
  background: var(--dark);
  color: #ffffff;
}

.impact-inner {
  display: grid;
  gap: 56px;
}

.impact-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.58fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 0;
}

.impact-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -34px;
  color: #91bac4;
}

.impact-intro h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.impact-intro .section-lede {
  color: var(--dark-muted);
}

.impact-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.impact-path article {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  min-height: 278px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
}

.impact-path article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -33px;
  z-index: 2;
  display: grid;
  width: 30px;
  height: 30px;
  content: "\2192";
  place-items: center;
  background: var(--dark);
  border: 1px solid rgba(145, 186, 196, 0.42);
  border-radius: 50%;
  color: #91bac4;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px var(--dark);
}

.impact-path article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: #ffffff;
  border-radius: 50%;
  color: var(--dark);
  font-size: 12px;
  font-weight: 850;
}

.impact-path small {
  color: #91bac4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.impact-path h3 {
  margin: 6px 0 9px;
  font-size: 30px;
}

.impact-path p {
  margin-bottom: 0;
  color: var(--dark-muted);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.capability-card {
  position: relative;
  display: grid;
  min-height: 390px;
  align-content: start;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 17px;
  box-shadow: var(--shadow-small);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.capability-card:hover {
  border-color: #c4d1d3;
  box-shadow: 0 18px 42px rgba(23, 39, 44, 0.09);
  transform: translateY(-3px);
}

.icon-box {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 44px;
  place-items: center;
  background: var(--brand-soft);
  border-radius: 12px;
  color: var(--brand);
}

.icon-box svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.step-number {
  position: absolute;
  top: 26px;
  right: 24px;
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 800;
}

.capability-card h3 {
  min-height: 100px;
  margin-bottom: 12px;
  font-size: 28px;
}

.capability-card > p {
  margin-bottom: 22px;
  color: var(--muted);
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.capability-tags span {
  padding: 6px 8px;
  background: var(--surface);
  font-size: 10px;
}

.email-section {
  padding-block: 112px;
  background: var(--surface);
}

.email-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 0.7fr);
  gap: 76px;
  align-items: center;
}

.email-copy h2 {
  max-width: 610px;
}

.email-points,
.demo-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.email-preview {
  display: grid;
  gap: 11px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

.email-header {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.email-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--dark);
  border-radius: 50%;
  color: #ffffff;
  font-size: 11px;
  font-weight: 850;
}

.email-header > div:last-child {
  display: grid;
  min-width: 0;
}

.email-header small,
.email-header span,
.email-topic > span,
.email-topic p,
.email-topic article > small,
.email-footer {
  color: var(--muted);
  font-size: 11px;
}

.email-header strong {
  margin-block: 2px;
  font-size: 20px;
  line-height: 1.08;
}

.email-country {
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 11px;
  font-size: 13px;
}

.email-topic {
  display: grid;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.email-topic > span {
  color: var(--foreground);
  font-weight: 750;
}

.email-topic article {
  display: grid;
  gap: 7px;
  padding-top: 10px;
  border-top: 1px solid #edf0f0;
}

.email-topic article strong {
  font-size: 13px;
  line-height: 1.25;
}

.email-topic p {
  margin-bottom: 0;
  line-height: 1.4;
}

.email-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.email-sources span {
  padding: 5px 7px;
  background: var(--surface);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
}

.sentiment-bar {
  display: grid;
  grid-template-columns: 0.35fr 0.45fr 0.2fr;
  overflow: hidden;
  height: 6px;
  border-radius: 999px;
}

.sentiment-bar i:nth-child(1) {
  background: var(--positive);
}

.sentiment-bar i:nth-child(2) {
  background: var(--neutral);
}

.sentiment-bar i:nth-child(3) {
  background: var(--negative);
}

.compact-topic {
  opacity: 0.9;
}

.email-footer {
  justify-self: center;
  padding-top: 3px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.use-case-grid article {
  position: relative;
  display: grid;
  min-height: 292px;
  align-content: start;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 17px;
  box-shadow: var(--shadow-small);
}

.case-index {
  position: absolute;
  top: 26px;
  right: 26px;
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 800;
}

.case-kicker {
  max-width: calc(100% - 40px);
  margin-bottom: 42px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.use-case-grid h3 {
  max-width: 330px;
  min-height: 94px;
  font-size: 28px;
}

.use-case-grid article > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.subscription-section {
  padding-block: 112px;
  background: var(--surface);
}

.subscription-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.subscription-card {
  padding: 38px;
  background: var(--dark);
  border-radius: 20px;
  color: #ffffff;
  box-shadow: var(--shadow-medium);
}

.subscription-card .eyebrow {
  color: #91bac4;
}

.subscription-card h2 {
  max-width: 650px;
}

.subscription-card > p:not(.eyebrow) {
  color: var(--dark-muted);
  font-size: 18px;
}

.subscription-card ul {
  display: grid;
  gap: 10px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.subscription-card li {
  position: relative;
  padding-left: 26px;
  font-weight: 700;
}

.subscription-card li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 16px;
  height: 16px;
  content: "";
  background: #91bac4;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--dark);
}

.faq-column {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
}

.faq-column h2 {
  font-size: clamp(34px, 3.5vw, 48px);
}

.faq-list {
  display: grid;
  margin-top: 28px;
}

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

.faq-list details:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 18px 36px 18px 0;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 3px;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--brand);
  transform: translateY(-50%);
  transition: transform 160ms ease;
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-list details p {
  padding: 0 28px 18px 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(480px, 0.78fr);
  gap: 62px;
  align-items: start;
}

.demo-copy h2 {
  max-width: 610px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-small);
}

.contact-form label,
.contact-form label > span {
  display: block;
}

.contact-form label > span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--foreground);
  outline: none;
  box-shadow: 0 1px 2px rgba(23, 39, 44, 0.04);
}

.contact-form input {
  min-height: 46px;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8d9494;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  border-color: var(--brand);
}

.span-2 {
  grid-column: span 2;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.form-note a {
  color: var(--foreground);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  margin: -2px 0 0;
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.form-status[data-state="success"] {
  color: #17634b;
}

.form-status[data-state="error"] {
  color: #a83939;
}

.form-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-footer {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
  padding-block: 28px 36px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  white-space: nowrap;
}

.site-footer > span,
.site-footer nav a {
  white-space: nowrap;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--brand);
  outline: none;
}

.privacy-page {
  width: min(calc(100% - 40px), 820px);
  padding-block: 136px 76px;
  margin-inline: auto;
}

.privacy-page h1 {
  max-width: 700px;
  margin-bottom: 12px;
  font-size: clamp(48px, 5vw, 66px);
}

.privacy-intro {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.privacy-stack {
  display: grid;
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--border);
}

.privacy-stack section {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.privacy-stack h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.privacy-stack p,
.privacy-stack li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.privacy-stack p:last-child,
.privacy-stack ul:last-child {
  margin-bottom: 0;
}

.privacy-stack ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.privacy-stack a {
  color: var(--foreground);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-footer {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.about-page {
  width: min(calc(100% - 40px), var(--max-width));
  padding-block: 154px 92px;
  margin-inline: auto;
}

.about-hero {
  max-width: 970px;
  padding-bottom: 76px;
}

.about-hero h1 {
  max-width: 920px;
  margin-bottom: 28px;
}

.about-intro {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
}

.about-statement {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  padding-block: 48px 76px;
  border-top: 1px solid var(--border);
}

.about-statement p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.about-coverage-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 64px;
  padding: 56px;
  background: var(--dark);
  border-radius: var(--radius);
  color: #ffffff;
}

.about-coverage-band h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
}

.about-coverage-band p:not(.eyebrow) {
  color: var(--dark-muted);
  font-size: 17px;
  line-height: 1.65;
}

.about-coverage-band .eyebrow {
  color: #9dc4cb;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: #ffffff;
  font-weight: 750;
}

.text-link:hover,
.text-link:focus-visible {
  color: #c4e0e5;
  outline: none;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 76px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.about-principles article {
  min-height: 320px;
  padding: 34px;
  background: #ffffff;
}

.about-principles article > span {
  display: block;
  margin-bottom: 86px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.about-principles h2 {
  margin-bottom: 14px;
  font-size: 30px;
}

.about-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.about-cta {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 88px;
}

.about-cta h2 {
  max-width: 720px;
  margin: 0;
}

.about-cta .button {
  flex: 0 0 auto;
}

.about-footer {
  width: min(calc(100% - 40px), var(--max-width));
}

.traffic-dashboard {
  padding-block: 42px 80px;
}

.traffic-dashboard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.traffic-dashboard-heading {
  max-width: 730px;
  padding-block: 72px 48px;
}

.traffic-dashboard-heading h1 {
  max-width: 720px;
}

.traffic-dashboard-heading > p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.traffic-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.traffic-metrics article,
.traffic-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
}

.traffic-metrics article {
  display: grid;
  gap: 2px;
  min-height: 142px;
  padding: 22px;
}

.traffic-metrics span,
.traffic-metrics small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.traffic-metrics strong {
  margin-top: 8px;
  font-size: 42px;
  line-height: 1;
}

.traffic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 14px;
}

.traffic-panel {
  min-height: 340px;
  padding: 26px;
}

.traffic-panel h2 {
  margin-bottom: 0;
  font-size: 25px;
}

.traffic-bars {
  display: grid;
  grid-template-columns: repeat(30, minmax(0, 1fr));
  gap: 5px;
  align-items: end;
  height: 194px;
  padding-top: 24px;
}

.traffic-bars span {
  min-height: 4px;
  height: var(--bar-height);
  background: var(--brand);
  border-radius: 3px 3px 1px 1px;
}

.traffic-country-list {
  display: grid;
  gap: 0;
  padding: 12px 0 0;
  margin: 12px 0 0;
  list-style: none;
}

.traffic-country-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.traffic-country-list strong {
  color: var(--foreground);
}

/* Motion is intentionally restrained and communicates hierarchy. */
.js .hero-copy > *,
.js .hero-product,
.js .hero-facts article,
.js .hero-growth-note {
  opacity: 0;
  transform: translateY(16px);
}

.js body.is-ready .hero-copy > *,
.js body.is-ready .hero-product,
.js body.is-ready .hero-facts article,
.js body.is-ready .hero-growth-note {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js body.is-ready .hero-copy > :nth-child(2) {
  transition-delay: 70ms;
}

.js body.is-ready .hero-copy > :nth-child(3) {
  transition-delay: 130ms;
}

.js body.is-ready .hero-copy > :nth-child(4),
.js body.is-ready .hero-product {
  transition-delay: 190ms;
}

.js body.is-ready .hero-copy > :nth-child(5) {
  transition-delay: 250ms;
}

.js body.is-ready .hero-facts article:nth-child(1) {
  transition-delay: 260ms;
}

.js body.is-ready .hero-facts article:nth-child(2) {
  transition-delay: 320ms;
}

.js body.is-ready .hero-facts article:nth-child(3) {
  transition-delay: 380ms;
}

.js body.is-ready .hero-facts article:nth-child(4) {
  transition-delay: 440ms;
}

.js body.is-ready .hero-growth-note {
  transition-delay: 500ms;
}

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

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms);
}

.js .coverage-bars b {
  transform: scaleX(0);
}

.js .coverage-index.is-visible .coverage-bars b {
  transform: scaleX(1);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

.js .impact-path article {
  opacity: 0;
  transform: translateY(12px);
}

.js .impact-path.is-visible article {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 540ms ease,
    transform 540ms ease;
}

.js .impact-path.is-visible article:nth-child(1) {
  transition-delay: 160ms;
}

.js .impact-path.is-visible article:nth-child(2) {
  transition-delay: 300ms;
}

.js .impact-path.is-visible article:nth-child(3) {
  transition-delay: 440ms;
}

.js .email-preview .email-block {
  opacity: 0;
  transform: translateY(7px);
}

.js .email-preview.is-visible .email-block {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 430ms ease,
    transform 430ms ease;
}

.js .email-preview.is-visible .email-block:nth-child(1) { transition-delay: 120ms; }
.js .email-preview.is-visible .email-block:nth-child(2) { transition-delay: 190ms; }
.js .email-preview.is-visible .email-block:nth-child(3) { transition-delay: 260ms; }
.js .email-preview.is-visible .email-block:nth-child(4) { transition-delay: 330ms; }
.js .email-preview.is-visible .email-block:nth-child(5) { transition-delay: 400ms; }
.js .email-preview.is-visible .email-block:nth-child(6) { transition-delay: 470ms; }

@media (max-width: 1080px) {
  .site-nav a {
    padding-inline: 8px;
    font-size: 13px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
    gap: 34px;
  }

  h1 {
    font-size: clamp(48px, 5.2vw, 62px);
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-card {
    min-height: 330px;
  }

  .capability-card h3 {
    min-height: auto;
  }

  .email-layout,
  .subscription-layout,
  .demo-section {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 8px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-medium);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
    font-size: 14px;
  }

  .site-nav .nav-cta {
    margin: 4px 0 0;
    text-align: center;
  }

  .site-nav .nav-access {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    padding-top: 116px;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .hero-product {
    width: min(100%, 650px);
  }

  .hero-facts {
    margin-top: 96px;
  }

  .split-intro,
  .impact-intro,
  .email-layout,
  .subscription-layout,
  .demo-section {
    grid-template-columns: 1fr;
  }

  .split-intro,
  .impact-intro {
    gap: 22px;
    align-items: start;
  }

  .impact-intro .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .impact-path,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .impact-path {
    gap: 34px;
  }

  .impact-path article {
    min-height: auto;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 22px;
  }

  .impact-path article:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -33px;
    left: 50%;
    content: "\2193";
    transform: translate(-50%, 50%);
  }

  .impact-path h3 {
    font-size: 27px;
  }

  .email-layout {
    gap: 48px;
  }

  .email-preview {
    max-width: 620px;
  }

  .subscription-layout {
    gap: 18px;
  }

  .demo-section {
    gap: 42px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > span {
    order: 3;
    grid-column: 1 / -1;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .about-coverage-band {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-principles article {
    min-height: 0;
  }

  .about-principles article > span {
    margin-bottom: 44px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 60px;
  }

  .section-shell,
  .site-footer {
    width: calc(100% - 28px);
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
  }

  h1 {
    font-size: clamp(42px, 12vw, 53px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  h3 {
    font-size: 22px;
  }

  .section-lede,
  .hero-lede {
    font-size: 17px;
  }

  .hero {
    padding-top: 108px;
    padding-bottom: 68px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .cta-note {
    font-size: 12px;
  }

  .product-carousel {
    padding: 7px;
    border-radius: 17px;
  }

  .product-carousel-bar {
    min-height: 34px;
    padding: 0 0 6px 5px;
  }

  .app-screen-viewport {
    border-radius: 11px;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
  }

  .hero-facts article {
    min-height: 112px;
    padding: 17px;
  }

  .hero-facts strong {
    font-size: 31px;
  }

  .hero-facts article:last-child strong {
    font-size: 27px;
  }

  .coverage-section,
  .product-section,
  .use-cases-section,
  .demo-section,
  .email-section,
  .subscription-section,
  .impact-section {
    padding-block: 76px;
  }

  .section-intro {
    margin-bottom: 30px;
  }

  .coverage-index {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 22px;
  }

  .coverage-total > strong {
    font-size: 76px;
  }

  .coverage-types {
    grid-column: auto;
  }

  .coverage-bars article > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
  }

  .impact-inner {
    gap: 38px;
  }

  .impact-path article {
    padding: 20px;
  }

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

  .capability-card {
    min-height: auto;
    padding: 22px;
  }

  .icon-box {
    margin-bottom: 34px;
  }

  .capability-card h3 {
    font-size: 27px;
  }

  .email-points {
    align-items: flex-start;
    flex-direction: column;
  }

  .email-preview {
    padding: 14px;
  }

  .email-header {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 12px;
  }

  .email-header strong {
    font-size: 17px;
  }

  .use-case-grid article {
    min-height: auto;
    padding: 22px;
  }

  .case-kicker {
    margin-bottom: 34px;
  }

  .use-case-grid h3 {
    min-height: auto;
    font-size: 27px;
  }

  .subscription-card,
  .faq-column {
    padding: 24px;
  }

  .subscription-card > p:not(.eyebrow) {
    font-size: 16px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .span-2 {
    grid-column: span 1;
  }

  .demo-assurance {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .site-footer > span {
    grid-column: auto;
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .page-header-actions {
    gap: 4px;
  }

  .page-header-actions .button {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .page-header-actions .nav-access {
    min-height: 42px;
    padding-inline: 10px;
    font-size: 0;
  }

  .page-header-actions .nav-access::after {
    content: attr(data-compact-label);
    font-size: 12px;
    font-weight: 700;
  }

  .page-header-actions .language-link {
    min-width: 34px;
  }

  .page-header .brand {
    padding-inline: 0;
  }

  .page-header .brand span {
    display: none;
  }

  .about-page {
    width: calc(100% - 28px);
    padding-block: 122px 68px;
  }

  .about-hero {
    padding-bottom: 52px;
  }

  .about-intro {
    font-size: 18px;
  }

  .about-statement {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 34px 54px;
  }

  .about-statement p {
    font-size: 16px;
  }

  .about-coverage-band {
    padding: 28px;
  }

  .about-principles {
    margin-top: 54px;
  }

  .about-principles article {
    padding: 26px;
  }

  .about-cta {
    align-items: stretch;
    flex-direction: column;
    padding-top: 64px;
  }

  .about-cta .button {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .privacy-page {
    padding-block: 118px 56px;
  }

  .privacy-stack section {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .traffic-dashboard {
    padding-block: 28px 52px;
  }

  .traffic-dashboard-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .traffic-dashboard-heading {
    padding-block: 54px 34px;
  }

  .traffic-metrics,
  .traffic-grid {
    grid-template-columns: 1fr;
  }

  .traffic-metrics article {
    min-height: 116px;
  }

  .traffic-panel {
    min-height: 0;
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .hero-copy > *,
  .js .hero-product,
  .js .hero-facts article,
  .js .hero-growth-note,
  .js [data-reveal],
  .js .impact-path article,
  .js .email-preview .email-block {
    opacity: 1;
    transform: none;
  }

  .js .coverage-bars b {
    transform: none;
  }
}
