:root {
  color-scheme: light;
  --bg: #fff;
  --panel: #f5f7f9;
  --soft: #edf1f5;
  --ink: #09264b;
  --muted: #596777;
  --line: #dce3eb;
  --accent: #c53917;
  --orange: #ff4b20;
  --card: #fff;
  --shadow: 0 25px 75px -35px #193b6240;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b0e13;
  --panel: #121820;
  --soft: #1b2430;
  --ink: #f0f5fb;
  --muted: #a2b0c2;
  --line: #293440;
  --accent: #ff9272;
  --card: #111820;
  --shadow: 0 25px 75px -35px #0009;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
summary {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
p {
  line-height: 1.75;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
[hidden] {
  display: none !important;
}
.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}
.logo-dark {
  display: none;
}
[data-theme="dark"] .logo-light {
  display: none;
}
[data-theme="dark"] .logo-dark {
  display: block;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  color: #06244a;
  background: #ffd4c6;
}
.wrap {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 104px;
}
.eyebrow {
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--accent);
}
h1,
h2 {
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}
h1 {
  font-size: clamp(45px, 5.1vw, 74px);
}
h2 {
  font-size: clamp(34px, 3.6vw, 49px);
}
h3 {
  font-weight: 600;
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
em {
  font-style: normal;
  color: var(--accent);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  border-radius: 7px;
  padding: 17px 23px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.button .icon {
  width: 18px;
  height: 18px;
}
.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.button-outline:hover {
  background: var(--soft);
  color: var(--ink);
  border-color: var(--ink);
}
.button-small {
  font-size: 12px;
  padding: 11px 16px;
  gap: 15px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}
.text-link:hover {
  color: var(--accent);
}
.text-link .icon {
  width: 18px;
  height: 18px;
}
.hero-lede {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}
.hero-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  margin-top: 22px;
}
.hero-proof .icon {
  width: 15px;
  height: 15px;
  color: var(--accent);
}
.section-heading {
  max-width: 690px;
  margin-bottom: 48px;
}
.section-heading h2,
.split-heading h2 {
  margin-top: 17px;
}
.section-heading > p:last-child:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  margin-top: 23px;
  max-width: 630px;
}
.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tags span {
  font-size: 10px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-200%);
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 18px;
}
.skip-link:focus {
  transform: translateY(0);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
/* Shared navigation and theme. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  width: 145px;
  flex-shrink: 0;
}
.brand img {
  width: 100%;
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 12px;
  font-weight: 550;
}
.desktop-nav a {
  padding-block: 13px;
  border-bottom: 2px solid transparent;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.header-actions {
  display: flex;
  gap: 11px;
  align-items: center;
}
.language-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.language-switch a {
  font-size: 10px;
  letter-spacing: 0.05em;
  padding: 7px 8px;
  color: var(--muted);
  border-radius: 3px;
}
.language-switch [aria-current="true"] {
  background: var(--soft);
  color: var(--ink);
  font-weight: 700;
}
.icon-button {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
}
.icon-button .icon {
  width: 17px;
  height: 17px;
}
.mobile-menu {
  display: none;
}
.hero-brand {
  width: 255px;
  max-width: 65%;
  margin-bottom: 32px;
}
.hero-brand img {
  height: auto;
  width: 100%;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 25px;
  background: var(--panel);
}
.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 40px;
}
.footer-brand {
  display: block;
  width: 235px;
}
.footer-brand img {
  height: auto;
}
.footer-main p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 22px;
}
.footer-main nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 55px;
  font-size: 12px;
  padding-top: 15px;
}
.footer-main nav a:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom > span {
  margin-right: auto;
}
/* Homepage. */
.home-hero {
  text-align: center;
  padding-block: 55px 55px;
  max-width: 1080px;
}
.home-hero .hero-brand {
  margin-inline: auto;
  width: 230px;
  margin-bottom: 24px;
}
.home-hero h1 {
  font-size: clamp(43px, 5.3vw, 76px);
  margin-top: 19px;
}
.home-hero .hero-lede {
  max-width: 680px;
  margin: 24px auto 0;
}
.home-hero .hero-actions {
  justify-content: center;
}
.home-product-stage {
  position: relative;
  padding: 10px 38px 30px;
  isolation: isolate;
}
.stage-orbit {
  position: absolute;
  inset: -90px -15px 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
}
.home-product-stage .product-screen {
  transform: perspective(1800px) rotateX(3deg);
  transform-origin: center top;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.audience-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}
.audience-card h3 {
  font-size: 32px;
  font-weight: 550;
  max-width: 430px;
  margin-top: 26px;
  line-height: 1.15;
}
.audience-card > p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
  max-width: 440px;
}
.audience-card .tags {
  margin-block: 26px 31px;
}
.audience-card .text-link {
  margin-top: auto;
}
.small-card {
  background: #f0f4ed;
  --line: #cad6c8;
  --muted: #536650;
  --ink: #153723;
  --accent: #526c45;
  color: var(--ink);
}
[data-theme="dark"] .small-card {
  background: #13231c;
  --line: #304a3b;
  --muted: #abbfaf;
  --ink: #e9f6e7;
  --accent: #b9cdb1;
}
.audience-symbol {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  align-items: center;
  height: 55px;
}
.audience-symbol > .icon {
  height: 40px;
  width: 40px;
  color: #33805d;
}
.audience-symbol > span {
  font-size: 31px;
  font-weight: 700;
  letter-spacing: -0.06em;
}
.enterprise-card {
  --line: #37506e;
  --muted: #bdd0e3;
  --ink: #f1f6ff;
  --accent: #ffab92;
  background: #09264b;
  color: var(--ink);
}
.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 55px;
  margin-top: 28px;
  width: 200px;
}
.mini-bars i {
  width: 13px;
  background: #b3c6df;
  border-radius: 2px 2px 0 0;
}
.mini-bars i:nth-last-child(-n + 3) {
  background: #ff815b;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar-grid article {
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.pillar-grid .icon {
  color: var(--accent);
  margin-bottom: 23px;
  width: 27px;
  height: 27px;
}
.pillar-grid h3 {
  font-size: 21px;
}
.pillar-grid p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 15px;
}
/* An illustrative workspace based on the product's UI. */
.product-screen {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-screen figcaption {
  border-top: 1px solid var(--line);
  font-size: 9px;
  color: var(--muted);
  line-height: 1.6;
  background: var(--panel);
}
/* Channels. */
.channels-section {
  background: var(--panel);
  border-block: 1px solid var(--line);
}
.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.channel-card {
  background: var(--card);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.channel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.channel-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--soft);
  color: var(--ink);
}
.channel-icon .icon {
  width: 25px;
  height: 25px;
}
.channel-telegram .channel-icon {
  background: #e6f4fc;
  color: #1676ad;
}
.channel-whatsapp .channel-icon {
  background: #e5f2e9;
  color: #227447;
}
.availability {
  font-size: 9px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 4px;
}
.availability.available {
  color: #2a7046;
  background: #e8f4ed;
  border-color: #c5e0d0;
}
.channel-card h3 {
  margin-top: 25px;
  font-size: 25px;
}
.channel-card p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 13px;
}
/* Small business and WhatsApp illustrations. */
.pmi-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  padding-block: 70px 65px;
}
.pmi-hero h1 {
  font-size: clamp(45px, 4.5vw, 64px);
  margin-top: 22px;
}
.pmi-hero .hero-lede {
  max-width: 510px;
  margin-top: 26px;
  font-size: 16px;
}
.pmi-hero .button {
  margin-top: 31px;
}
.hero-checks {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-checks .icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
}
.hero-channel-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 33px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  max-width: 450px;
}
.hero-channel-icons .icon {
  width: 19px;
  height: 19px;
}
.hero-channel-icons > span {
  font-size: 10px;
  color: var(--muted);
  max-width: 230px;
  line-height: 1.6;
  border-left: 1px solid var(--line);
  padding-left: 12px;
}
.phone-stage {
  position: relative;
  isolation: isolate;
  min-width: 0;
}
.phone-orbit {
  position: absolute;
  z-index: -1;
  width: 100%;
  aspect-ratio: 1;
  left: 0;
  top: 14%;
  border: 1px solid #e2c3af;
  border-radius: 50%;
  background: #faf2e9;
}
.phone-orbit::before {
  content: "";
  position: absolute;
  inset: -23px;
  border: 1px solid #ebdfd3;
  border-radius: 50%;
}
[data-theme="dark"] .phone-orbit {
  background: #241c18;
  border-color: #513527;
}
[data-theme="dark"] .phone-orbit::before {
  border-color: #35291f;
}
.phone-experience {
  width: 100%;
  max-width: 420px;
  margin: auto;
}
.phone {
  position: relative;
  width: 318px;
  max-width: 100%;
  margin: auto;
  color: #153d32;
  background: #fff;
  border: 7px solid #15231f;
  border-radius: 43px;
  overflow: hidden;
  box-shadow: 0 25px 50px -25px #102f4266;
}
.phone-status {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 15px 20px 12px;
  font-size: 11px;
  font-weight: 600;
  background: #fff;
  color: #15322b;
}
.phone-island {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 20px;
  border-radius: 20px;
  background: #15231f;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #075e54;
  padding: 14px 12px;
  color: #fff;
}
.phone-header > span {
  font-size: 26px;
}
.phone-avatar {
  background: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  padding: 4px;
}
.phone-header > div > strong {
  display: block;
  font-size: 14px;
}
.phone-header > div > span {
  display: block;
  font-size: 8px;
  color: #d5e6df;
  margin-top: 3px;
}
.phone-header > .icon {
  margin-left: auto;
  width: 20px;
}
.phone-conversation {
  background-color: #eaece3;
  background-image: radial-gradient(#b3c6b64d 0.7px, transparent 0.7px);
  background-size: 13px 13px;
  padding: 16px 12px 12px;
  min-height: 410px;
}
.phone-date {
  font-size: 8px;
  color: #536f64;
  text-align: center;
  width: 55px;
  margin: 0 auto 21px;
  border-radius: 4px;
  background: #fff9;
  padding: 4px;
}
.phone-conversation [role="tabpanel"] {
  min-height: 304px;
  outline-offset: -1px;
}
.bubble {
  font-size: 12px;
  line-height: 1.6;
  padding: 11px 12px;
  box-shadow: 0 1px 1px #08221a16;
  max-width: 94%;
  position: relative;
}
.bubble p {
  line-height: 1.6;
}
.bubble-sent {
  background: #dcf8c6;
  margin-left: auto;
  border-radius: 9px 0 9px 9px;
}
.bubble-received {
  margin-top: 13px;
  background: white;
  border-radius: 0 9px 9px 9px;
  margin-right: 10px;
}
.bubble-received > strong {
  display: block;
  font-size: 12px;
  margin-top: 10px;
  line-height: 1.6;
}
.message-detail {
  white-space: pre-line;
  font-size: 11px;
  margin-block: 4px 9px;
  color: #526258;
}
.bubble-time {
  display: block;
  text-align: right;
  font-size: 8px;
  color: #6a7b70;
  margin-top: 5px;
}
.bubble-time b {
  font-weight: 500;
  color: #2793bf;
  margin-left: 3px;
}
.message-confirm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 0;
  border-top: 1px solid #e2e8e3;
  background: #fff;
  padding: 11px 0 2px;
  width: 100%;
  margin-top: 10px;
  color: #19704a;
  font-weight: 600;
  font-size: 10px;
}
.message-confirm .icon {
  width: 15px;
  height: 15px;
}
.message-success {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: #236c42;
  font-weight: 550;
}
.message-success .icon {
  width: 15px;
  height: 15px;
  margin-top: 2px;
}
.message-reset {
  padding: 7px 0;
  background: transparent;
  border: 0;
  text-decoration: underline;
  color: #236c42;
  font-size: 10px;
}
.phone-private {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  font-size: 8px;
  color: #4e6c5d;
}
.phone-private .icon {
  width: 10px;
  height: 10px;
}
.phone-composer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 22px;
  background: #f5f7f2;
  color: #647668;
}
.phone-composer > span:first-child {
  font-size: 20px;
}
.phone-composer > span:nth-child(2) {
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #e5e8e1;
  border-radius: 20px;
  font-size: 11px;
  flex: 1;
}
.phone-composer > .icon {
  width: 21px;
  color: #257555;
}
.example-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
}
.phone-experience > .example-tabs {
  margin-top: 27px;
}
.example-tabs button {
  font-size: 10px;
  line-height: 1.5;
  border: 1px solid var(--line);
  padding: 9px 11px;
  border-radius: 5px;
  background: var(--bg);
  color: var(--muted);
}
.example-tabs [aria-selected="true"] {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--soft);
  font-weight: 600;
}
.illustration-note {
  font-size: 9px;
  text-align: center;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}
.statement-strip {
  background: var(--panel);
  border-block: 1px solid var(--line);
  padding: 25px 0;
}
.statement-strip > .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.statement-strip p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.statement-strip .icon {
  color: var(--accent);
  width: 20px;
}
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.business-grid article {
  border-top: 1px solid var(--line);
  padding: 28px 0 0;
}
.business-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: var(--panel);
  margin-bottom: 23px;
  color: var(--accent);
}
.business-grid h3 {
  font-size: 23px;
}
.business-grid p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
}
.business-tags {
  display: block;
  color: var(--accent);
  font-size: 10px;
  margin-top: 24px;
}
.real-product-section {
  background: var(--panel);
  border-block: 1px solid var(--line);
}
.real-product-section .product-screen {
  margin-top: 52px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.process-grid article {
  position: relative;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.process-dot {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--bg);
}
.process-grid h3 {
  font-size: 22px;
}
.process-grid p {
  font-size: 14px;
  margin-top: 17px;
  color: var(--muted);
}
.quick-start {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  padding: 38px;
  margin-top: 60px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 9px;
}
.quick-start h3 {
  font-size: 29px;
  margin-top: 17px;
  font-weight: 550;
}
.quick-start p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
}
.quick-start strong {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.7;
  margin-top: 18px;
}
/* Enterprise: data workspace and process. */
.enterprise-hero {
  position: relative;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  padding: 80px 0 90px;
  isolation: isolate;
}
.enterprise-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: linear-gradient(90deg, transparent 25%, #0004);
}
.enterprise-hero > .wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: center;
}
.enterprise-hero h1 {
  font-size: clamp(44px, 4.3vw, 62px);
  margin-top: 24px;
}
.enterprise-hero .hero-lede {
  font-size: 15px;
  margin-top: 25px;
}
.enterprise-hero .hero-actions {
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}
.enterprise-hero .hero-proof {
  justify-content: flex-start;
  font-size: 10px;
}
.signal-dot {
  display: inline-block;
  vertical-align: 1px;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--orange);
}
.analytics-demo {
  min-width: 0;
  --ink: #f1f6fd;
  --bg: #0c1a2b;
  --muted: #a9bbcf;
  --line: #2c3e54;
  --soft: #1c2e44;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid #34465c;
  border-radius: 11px;
  box-shadow: 0 25px 60px -35px #07142299;
  overflow: hidden;
}
.analytics-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  background: #112136;
}
.analytics-top > span > b {
  font-size: 8px;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-left: 7px;
  color: var(--muted);
}
.analytics-top > .demo-label {
  margin-left: auto;
  color: var(--muted);
  font-size: 8px;
  font-weight: 400;
  border: 1px solid var(--line);
  padding: 4px 6px;
  border-radius: 3px;
  white-space: nowrap;
}
.analytics-layout {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
}
.analytics-rail {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 27px;
  border-right: 1px solid var(--line);
  padding-top: 25px;
  color: #7896b8;
}
.analytics-rail .icon {
  width: 18px;
  height: 18px;
}
.analytics-content {
  padding: 22px;
  min-width: 0;
}
.analytics-content .example-tabs {
  justify-content: flex-start;
  margin-bottom: 19px;
}
.analytics-content .example-tabs button {
  font-size: 10px;
  padding: 7px 11px;
}
.analytics-content .example-tabs [aria-selected="true"] {
  border-color: #658eb9;
  background: #263e58;
}
.analytics-question {
  display: flex;
  gap: 10px;
  font-size: 13px;
  line-height: 1.6;
  min-height: 65px;
  color: #ebf3fc;
  padding: 14px;
  background: #182b41;
  border: 1px solid #304965;
  border-radius: 5px;
}
.analytics-question > span {
  color: #ff9573;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.analytics-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-block: 25px 20px;
}
.analytics-kpis > div {
  padding-left: 13px;
  border-left: 2px solid #ff8c6b;
}
.analytics-kpis span {
  display: block;
  color: #9eb3ca;
  font-size: 9px;
}
.analytics-kpis strong {
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.04em;
  margin-top: 10px;
  display: block;
}
.analytics-table-wrap {
  overflow-x: auto;
}
.analytics-content table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 11px;
}
.analytics-content th {
  font-size: 9px;
  font-weight: 500;
  color: #9db1c7;
  padding: 10px 7px;
  border-bottom: 1px solid #33465e;
}
.analytics-content td {
  padding: 13px 7px;
  border-bottom: 1px solid #25374f;
}
.analytics-content th:not(:first-child),
.analytics-content td:not(:first-child) {
  text-align: right;
}
.table-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: #ee967a;
}
.analytics-answer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
  line-height: 1.7;
  padding-block: 20px 10px;
  min-height: 89px;
  color: #c2d1e3;
}
.analytics-answer img {
  flex-shrink: 0;
}
.sql-detail {
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.sql-detail summary {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 13px;
  font-size: 9px;
  color: #a9c2dd;
  list-style: none;
}
.sql-detail pre {
  font-size: 9px;
  line-height: 1.7;
  overflow-x: auto;
  max-width: 100%;
  padding: 12px;
  background: #071321;
  border-radius: 4px;
  color: #c8e8de;
}
.sql-detail summary::-webkit-details-marker {
  display: none;
}
.analytics-demo figcaption {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  font-size: 8px;
  line-height: 1.6;
  background: #112136;
  color: #a8bcd1;
  border-top: 1px solid var(--line);
}
.console-dot {
  width: 5px;
  height: 5px;
  background: #6cac92;
  border-radius: 50%;
  flex-shrink: 0;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 65px;
  align-items: end;
  margin-bottom: 50px;
}
.split-heading > p {
  font-size: 15px;
  color: var(--muted);
}
.engines {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 45px;
  padding: 25px 0;
  border-block: 1px solid var(--line);
}
.engines > span {
  font-size: 17px;
  font-weight: 550;
  letter-spacing: -0.02em;
}
.engines p {
  font-size: 10px;
  color: var(--muted);
}
.ai-section {
  background: #09264b;
  color: #e8f1fb;
  --ink: #e8f1fb;
  --accent: #ffab92;
  --muted: #b3c8dd;
  --line: #3d5775;
}
.ai-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 75px;
  align-items: center;
}
.ai-grid h2 {
  font-size: 42px;
  margin-top: 18px;
}
.ai-grid > div > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  margin-top: 23px;
}
.ai-grid ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 12px;
}
.ai-grid li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.ai-grid li .icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
}
.data-map {
  border: 1px solid #3c587b;
  border-radius: 10px;
  padding: 35px 24px;
  background: #0d2c53;
}
.map-sources,
.map-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.map-sources > span,
.map-results > span {
  font-size: 10px;
  border: 1px solid #49688a;
  border-radius: 5px;
  padding: 14px 7px;
  text-align: center;
  background: #09264b;
}
.map-connect {
  height: 44px;
  width: 1px;
  background: #ff9b76;
  margin: auto;
}
.map-core {
  display: flex;
  align-items: center;
  flex-direction: column;
  border: 1px solid #dc876c;
  border-radius: 7px;
  padding: 24px;
  background: #14375e;
}
.map-core strong {
  font-size: 23px;
  letter-spacing: 0.09em;
  margin-top: 10px;
}
.map-core > span {
  font-size: 10px;
  color: #c0d3e7;
  margin-top: 9px;
}
.modular-section {
  background: var(--panel);
  border-block: 1px solid var(--line);
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.module-grid article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 27px;
  background: var(--card);
}
.module-grid article > span {
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--accent);
  font-size: 20px;
}
.module-grid h3 {
  font-size: 18px;
  padding-right: 20px;
}
.module-grid p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}
/* FAQ, contact and legal pages. */
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.faq-grid h2 {
  margin-top: 18px;
}
.faq-grid details {
  border-bottom: 1px solid var(--line);
  padding-block: 22px;
}
.faq-grid details:first-child {
  border-top: 1px solid var(--line);
}
.faq-grid summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.6;
  list-style: none;
}
.faq-grid summary::-webkit-details-marker {
  display: none;
}
.faq-grid summary > span {
  font-size: 22px;
  line-height: 1;
  color: var(--accent);
  margin-top: 3px;
}
.faq-grid details[open] summary > span {
  transform: rotate(45deg);
}
.faq-grid details p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 17px;
}
.contact-section {
  background: var(--panel);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  align-items: center;
}
.contact-grid h2 {
  margin-top: 18px;
  font-size: 43px;
}
.contact-grid > div > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  margin-top: 23px;
  max-width: 560px;
}
.contact-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 19px;
}
.contact-actions > a:not(.button) {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.contact-actions > span {
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 260px;
}
.legal-page {
  max-width: 860px;
}
.legal-page h1 {
  margin-top: 20px;
}
.legal-page h2 {
  font-size: 25px;
  margin-top: 38px;
}
.legal-page p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  margin-top: 23px;
}
.legal-page .legal-date {
  font-size: 12px !important;
}
.legal-page > a {
  margin-top: 25px;
}
@media (min-width: 1450px) {
  .home-hero {
    padding-top: 65px;
  }
  .pmi-hero {
    gap: 100px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .desktop-nav {
    gap: 19px;
    font-size: 11px;
  }
  .header-inner {
    gap: 18px;
  }
  .header-actions {
    gap: 8px;
  }
  .brand {
    width: 130px;
  }
  .header-contact {
    font-size: 11px;
    padding: 11px 13px;
  }
  .home-product-stage {
    padding-inline: 12px;
  }
  .audience-card {
    padding: 30px;
  }
  .pmi-hero {
    gap: 40px;
  }
  .pmi-hero h1 {
    font-size: 54px;
  }
  .phone-experience > .example-tabs {
    gap: 5px;
  }
  .phone-experience > .example-tabs button {
    font-size: 9px;
    padding: 8px;
  }
  .enterprise-hero > .wrap {
    gap: 35px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .enterprise-hero h1 {
    font-size: 50px;
  }
  .analytics-layout {
    grid-template-columns: 35px minmax(0, 1fr);
  }
  .analytics-content {
    padding: 17px;
  }
  .analytics-top > span > b {
    display: none;
  }
  .analytics-kpis strong {
    font-size: 25px;
  }
  .analytics-content table {
    font-size: 10px;
  }
  .split-heading,
  .ai-grid {
    gap: 45px;
  }
  .ai-grid h2 {
    font-size: 37px;
  }
  .data-map {
    padding: 30px 20px;
  }
  .channel-card {
    padding: 23px;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .header-contact {
    display: inline-flex;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu summary {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border: 1px solid var(--line);
    border-radius: 6px;
    list-style: none;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu summary span {
    width: 14px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .mobile-menu[open] summary span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .mobile-menu[open] summary span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
  .mobile-menu nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    padding: 10px 32px 25px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 22px -20px #07284988;
  }
  .mobile-menu nav a {
    padding: 16px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu nav a:last-child {
    color: var(--accent);
    border: 0;
  }
  .section {
    padding-block: 80px;
  }
  .home-hero h1 {
    font-size: 59px;
  }
  .home-hero .hero-lede {
    font-size: 16px;
    max-width: 600px;
  }
  .audience-card h3 {
    font-size: 27px;
  }
  .audience-card > p {
    font-size: 13px;
  }
  .audience-card .text-link {
    font-size: 12px;
    gap: 9px;
  }
  .pillar-grid {
    gap: 25px;
  }
  .pillar-grid h3 {
    font-size: 19px;
  }
  .pillar-grid p {
    font-size: 13px;
  }
  .pmi-hero {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-top: 50px;
  }
  .pmi-hero h1 {
    font-size: 46px;
  }
  .pmi-hero .hero-lede {
    font-size: 14px;
  }
  .phone {
    width: 298px;
  }
  .phone-header > div > span {
    font-size: 7px;
  }
  .hero-channel-icons {
    flex-wrap: wrap;
    max-width: 320px;
  }
  .hero-channel-icons > span {
    border-left: 0;
    padding-left: 0;
    max-width: 100%;
  }
  .business-grid {
    gap: 23px;
  }
  .business-grid h3 {
    font-size: 20px;
  }
  .business-grid p {
    font-size: 13px;
  }
  .quick-start {
    gap: 28px;
    padding: 30px;
  }
  .channel-grid {
    gap: 14px;
  }
  .channel-card {
    padding: 21px;
  }
  .channel-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
  .channel-card h3 {
    font-size: 23px;
    margin-top: 21px;
  }
  .enterprise-hero > .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .enterprise-hero-copy {
    max-width: 740px;
  }
  .enterprise-hero h1 {
    font-size: 60px;
  }
  .enterprise-hero .hero-lede {
    max-width: 650px;
    font-size: 16px;
  }
  .enterprise-hero .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }
  .analytics-demo {
    max-width: 710px;
    width: 100%;
    margin-inline: auto;
  }
  .analytics-top > span > b {
    display: inline;
  }
  .analytics-layout {
    grid-template-columns: 50px minmax(0, 1fr);
  }
  .analytics-content {
    padding: 24px;
  }
  .analytics-question {
    font-size: 15px;
  }
  .analytics-kpis strong {
    font-size: 32px;
  }
  .analytics-content table {
    font-size: 12px;
  }
  .analytics-answer {
    font-size: 13px;
  }
  .split-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .split-heading > p {
    max-width: 690px;
  }
  .engines {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .ai-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ai-grid > div:first-child {
    max-width: 650px;
  }
  .data-map {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }
  .module-grid {
    gap: 12px;
  }
  .module-grid article {
    padding: 23px;
  }
  .module-grid h3 {
    font-size: 17px;
  }
  .module-grid p {
    font-size: 12px;
  }
  .process-grid {
    gap: 25px;
  }
  .process-grid h3 {
    font-size: 19px;
  }
  .process-grid p {
    font-size: 13px;
  }
  .faq-grid {
    gap: 35px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .contact-grid {
    gap: 38px;
  }
  .contact-grid h2 {
    font-size: 35px;
  }
}
@media (max-width: 680px) {
  html {
    scroll-padding-top: 86px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 76px;
    gap: 15px;
  }
  .brand {
    width: 124px;
  }
  .header-contact {
    display: none;
  }
  .header-actions {
    gap: 7px;
  }
  .language-switch a {
    padding: 6px 7px;
    font-size: 9px;
  }
  .icon-button,
  .mobile-menu summary {
    width: 33px;
    height: 33px;
  }
  .mobile-menu nav {
    padding-inline: 20px;
  }
  .section {
    padding-block: 63px;
  }
  h2 {
    font-size: 35px;
  }
  .section-heading {
    margin-bottom: 34px;
  }
  .section-heading > p:last-child:not(.eyebrow) {
    font-size: 14px;
  }
  .home-hero {
    padding-block: 33px 35px;
  }
  .home-hero .hero-brand {
    width: 193px;
    margin-bottom: 24px;
  }
  .home-hero h1 {
    font-size: clamp(39px, 7.8vw, 51px);
    margin-top: 15px;
  }
  .home-hero .hero-lede {
    font-size: 14px;
    margin-top: 22px;
  }
  .home-hero > .eyebrow {
    font-size: 9px;
  }
  .home-hero .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }
  .home-hero .button {
    font-size: 11px;
    padding: 14px 16px;
    gap: 12px;
  }
  .hero-proof {
    font-size: 9px;
    line-height: 1.7;
    align-items: flex-start;
    margin-top: 18px;
  }
  .hero-proof .icon {
    margin-top: 1px;
  }
  .home-product-stage {
    padding: 0 0 53px;
  }
  .stage-orbit {
    inset: -25px 0 15px;
  }
  .home-product-stage .product-screen {
    transform: none;
  }
  .product-screen figcaption {
    font-size: 8px;
    padding: 10px 13px;
  }
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 19px;
  }
  .audience-card {
    padding: 29px;
  }
  .audience-card h3 {
    font-size: 31px;
    max-width: 420px;
  }
  .audience-card > p {
    font-size: 14px;
  }
  .audience-card .text-link {
    font-size: 13px;
  }
  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pillar-grid article {
    padding-top: 22px;
  }
  .pillar-grid .icon {
    margin-bottom: 18px;
  }
  .pillar-grid h3 {
    font-size: 22px;
  }
  .pillar-grid p {
    font-size: 14px;
  }
  .channel-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .channel-card {
    padding: 24px;
  }
  .channel-top {
    flex-direction: row;
    align-items: center;
  }
  .channel-card h3 {
    margin-top: 19px;
  }
  .channel-card p {
    font-size: 14px;
  }
  .pmi-hero {
    grid-template-columns: 1fr;
    gap: 43px;
    padding-block: 45px 51px;
  }
  .pmi-hero h1 {
    font-size: clamp(43px, 8.5vw, 57px);
  }
  .pmi-hero .hero-lede {
    font-size: 16px;
    max-width: 560px;
  }
  .pmi-hero .button {
    margin-top: 27px;
  }
  .hero-checks {
    font-size: 12px;
    gap: 11px;
    margin-top: 26px;
  }
  .hero-channel-icons {
    max-width: 100%;
    margin-top: 26px;
  }
  .hero-channel-icons > span {
    max-width: 220px;
    border-left: 1px solid var(--line);
    padding-left: 12px;
  }
  .phone-stage {
    width: min(440px, 100%);
    margin: auto;
  }
  .phone {
    width: 318px;
  }
  .phone-conversation {
    min-height: 420px;
  }
  .phone-orbit {
    width: 90%;
    left: 5%;
    top: 15%;
  }
  .phone-experience > .example-tabs button {
    font-size: 9px;
    padding: 8px 9px;
  }
  .statement-strip p {
    font-size: 13px;
  }
  .statement-strip > .wrap {
    gap: 12px;
    justify-content: flex-start;
  }
  .statement-strip .icon {
    width: 18px;
  }
  .business-grid {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .business-grid h3 {
    font-size: 24px;
  }
  .business-grid p {
    font-size: 14px;
  }
  .business-tags {
    font-size: 11px;
    margin-top: 18px;
  }
  .business-icon {
    margin-bottom: 19px;
  }
  .real-product-section .product-screen {
    margin-top: 35px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .process-grid article {
    padding-top: 24px;
  }
  .process-grid h3 {
    font-size: 22px;
  }
  .process-grid p {
    font-size: 14px;
  }
  .quick-start {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 38px;
    padding: 26px;
  }
  .quick-start h3 {
    font-size: 28px;
  }
  .enterprise-hero {
    padding-block: 50px 60px;
  }
  .enterprise-hero h1 {
    font-size: clamp(43px, 8.5vw, 57px);
  }
  .enterprise-hero .hero-lede {
    font-size: 15px;
  }
  .enterprise-hero .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .enterprise-hero .hero-proof {
    font-size: 10px;
  }
  .analytics-top {
    padding: 13px;
    gap: 7px;
    font-size: 12px;
  }
  .analytics-top > img {
    width: 23px;
    height: 23px;
  }
  .analytics-top > span > b {
    display: none;
  }
  .analytics-top > .demo-label {
    font-size: 7px;
  }
  .analytics-layout {
    grid-template-columns: 1fr;
  }
  .analytics-rail {
    display: none;
  }
  .analytics-content {
    padding: 16px;
  }
  .analytics-content .example-tabs {
    gap: 7px;
    margin-bottom: 17px;
  }
  .analytics-content .example-tabs button {
    font-size: 10px;
    padding: 8px 10px;
  }
  .analytics-question {
    font-size: 12px;
    padding: 12px;
    min-height: 80px;
  }
  .analytics-kpis {
    gap: 12px;
  }
  .analytics-kpis span {
    font-size: 9px;
    line-height: 1.5;
  }
  .analytics-kpis strong {
    font-size: 28px;
  }
  .analytics-content table {
    font-size: 10px;
  }
  .analytics-content th {
    font-size: 9px;
  }
  .analytics-content td {
    padding: 12px 5px;
  }
  .analytics-answer {
    font-size: 11px;
    min-height: 100px;
  }
  .analytics-demo figcaption {
    font-size: 8px;
    padding: 12px;
  }
  .sql-detail summary {
    font-size: 10px;
  }
  .sql-detail pre {
    font-size: 8px;
  }
  .engines > span {
    font-size: 17px;
    line-height: 1.7;
  }
  .ai-grid h2 {
    font-size: 35px;
  }
  .ai-grid > div > p:not(.eyebrow) {
    font-size: 14px;
  }
  .ai-grid ul {
    font-size: 12px;
  }
  .data-map {
    padding: 27px 16px;
  }
  .map-sources,
  .map-results {
    gap: 7px;
  }
  .map-sources > span,
  .map-results > span {
    font-size: 9px;
    padding: 12px 5px;
  }
  .module-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .module-grid article {
    padding: 23px 19px;
  }
  .module-grid h3 {
    font-size: 17px;
  }
  .module-grid article > span {
    top: 15px;
    right: 14px;
    font-size: 17px;
  }
  .module-grid p {
    font-size: 12px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-grid summary {
    font-size: 14px;
  }
  .faq-grid details p {
    font-size: 14px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-grid h2 {
    font-size: 35px;
  }
  .contact-grid > div > p:not(.eyebrow) {
    font-size: 14px;
  }
  .contact-actions {
    gap: 17px;
  }
  .footer-main {
    flex-direction: column;
    gap: 35px;
    padding-bottom: 33px;
  }
  .footer-brand {
    width: 210px;
  }
  .footer-main nav {
    padding-top: 0;
    gap: 20px 28px;
    font-size: 12px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 18px 23px;
    font-size: 9px;
  }
  .footer-bottom > span {
    width: 100%;
  }
  .legal-page h1 {
    font-size: 42px;
  }
}
@media (max-width: 365px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .brand {
    width: 106px;
  }
  .header-inner {
    gap: 10px;
  }
  .header-actions {
    gap: 5px;
  }
  .language-switch a {
    padding: 6px;
    font-size: 9px;
  }
  .icon-button,
  .mobile-menu summary {
    width: 30px;
    height: 32px;
  }
  .home-hero .button {
    font-size: 10px;
    padding: 13px 12px;
    gap: 10px;
  }
  .home-hero h1 {
    font-size: 39px;
  }
  .audience-card {
    padding: 25px;
  }
  .audience-card h3 {
    font-size: 29px;
  }
  .phone {
    width: 287px;
  }
  .phone-conversation {
    padding-inline: 10px;
  }
  .bubble {
    font-size: 11px;
  }
  .phone-header {
    padding-inline: 10px;
    gap: 7px;
  }
  .phone-header > div > span {
    font-size: 7px;
  }
  .phone-experience > .example-tabs {
    gap: 5px;
  }
  .phone-experience > .example-tabs button {
    font-size: 8px;
    padding: 8px 6px;
  }
  .hero-channel-icons > span {
    font-size: 9px;
    max-width: 170px;
  }
  .phone-orbit::before {
    inset: -12px;
  }
  .analytics-kpis strong {
    font-size: 25px;
  }
  .analytics-content {
    padding: 13px;
  }
  .analytics-content table {
    font-size: 9px;
  }
  .table-dot {
    margin-right: 4px;
    width: 4px;
    height: 4px;
  }
  .module-grid {
    grid-template-columns: 1fr;
  }
  .module-grid h3 {
    font-size: 19px;
  }
  .module-grid p {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .home-product-stage .product-screen {
    transform: none;
  }
}

/* Original channel artwork is kept intact, including its brand colours. */
.channel-brand-icon {
  object-fit: contain;
}
.channel-icon:has(.channel-brand-icon) {
  background: transparent;
}
.channel-icon .channel-brand-icon {
  width: 38px;
  height: 38px;
}
.phone-header > .channel-brand-icon {
  background: #fff;
  padding: 4px;
  border-radius: 6px;
  width: 26px;
  height: 26px;
}
.hero-channel-icons .channel-brand-icon {
  width: 23px;
  height: 23px;
}

/* Tour of the actual application, with pause controls and enlarged screenshots. */
.product-tour {
  transform: none !important;
  isolation: isolate;
}
.tour-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--card);
}
.tour-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
}
.tour-brand img {
  background: #fff;
  border-radius: 5px;
  padding: 2px;
}
.tour-brand > span {
  margin-left: 7px;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
}
.tour-real {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: var(--muted);
}
.tour-real i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b9869;
}
.tour-stage {
  aspect-ratio: 1344 / 900;
  background: #fff;
  overflow: hidden;
}
.tour-slide {
  height: 100%;
  animation: tour-enter 0.55s ease both;
}
.tour-image-link {
  display: block;
  height: 100%;
  position: relative;
  cursor: zoom-in;
}
.tour-image-link > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tour-enlarge {
  position: absolute;
  bottom: 17px;
  right: 17px;
  padding: 9px 13px;
  font-size: 10px;
  color: #fff;
  background: #09264be8;
  border: 1px solid #69819e;
  border-radius: 5px;
  box-shadow: 0 4px 15px #09264b20;
}
.tour-navigation {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px 22px 0;
  border-top: 1px solid var(--line);
}
.tour-steps {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.tour-steps button {
  position: relative;
  text-align: left;
  padding: 0 0 13px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
}
.tour-steps button::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--line);
}
.tour-steps button i {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  z-index: 1;
}
.tour-steps button[aria-current="step"] {
  color: var(--ink);
  font-weight: 650;
}
.tour-steps button[aria-current="step"] i {
  transform: scaleX(1);
}
.product-tour[data-playing="true"] .tour-steps button[aria-current="step"] i {
  animation: tour-progress 7s linear both;
}
.tour-playback {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--card);
  font-size: 13px;
}
.tour-caption {
  padding: 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 115px;
}
.tour-caption strong {
  display: block;
  font-size: 20px;
  font-weight: 550;
  letter-spacing: -0.02em;
}
.tour-caption p {
  color: var(--muted);
  font-size: 12px;
  max-width: 700px;
  margin-top: 8px;
}
.tour-arrows {
  display: flex;
  gap: 8px;
}
.tour-arrows button {
  width: 37px;
  height: 37px;
}
.tour-arrows [data-tour-prev] .icon {
  transform: rotate(180deg);
}
.product-tour figcaption {
  padding: 12px 22px;
}
.tour-lightbox {
  max-width: calc(100vw - 36px);
  max-height: calc(100dvh - 36px);
  width: min(1440px, calc(100vw - 36px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  box-shadow: 0 30px 100px #0006;
}
.tour-lightbox::backdrop {
  background: #050e1fbd;
  backdrop-filter: blur(4px);
}
.tour-lightbox form {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 14px;
}
.tour-lightbox-scroll {
  overflow: auto;
  max-height: calc(100dvh - 145px);
  border-radius: 6px;
}
.tour-lightbox img {
  width: 100%;
  min-width: 820px;
  height: auto;
  max-width: none;
}
@keyframes tour-enter {
  from {
    opacity: 0.35;
    transform: translateY(5px) scale(1.005);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes tour-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.phone-conversation [data-tab-panel]:not([hidden]) .bubble {
  animation: tour-enter 0.35s ease both;
}
.phone-conversation [data-tab-panel]:not([hidden]) .bubble-received {
  animation-delay: 0.16s;
}
@media (max-width: 680px) {
  .home-product-stage {
    padding-bottom: 0;
  }
  .tour-top {
    padding: 13px 14px;
    gap: 9px;
  }
  .tour-brand {
    font-size: 12px;
    gap: 6px;
  }
  .tour-brand > span {
    font-size: 7px;
    margin-left: 3px;
  }
  .tour-real {
    font-size: 8px;
    gap: 5px;
  }
  .tour-navigation {
    padding: 15px 14px 0;
    gap: 10px;
  }
  .tour-steps {
    gap: 10px;
  }
  .tour-steps button {
    font-size: 9px;
    line-height: 1.5;
    min-height: 41px;
  }
  .tour-playback {
    width: 29px;
    height: 29px;
    font-size: 11px;
  }
  .tour-caption {
    padding: 20px 14px;
    gap: 13px;
    align-items: flex-start;
    min-height: 145px;
  }
  .tour-caption strong {
    font-size: 18px;
    line-height: 1.3;
  }
  .tour-caption p {
    font-size: 11px;
  }
  .tour-arrows {
    gap: 5px;
  }
  .tour-arrows button {
    width: 29px;
    height: 29px;
  }
  .tour-enlarge {
    font-size: 8px;
    padding: 7px 9px;
    right: 8px;
    bottom: 8px;
  }
  .product-tour figcaption {
    padding-inline: 14px;
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tour-slide,
  .product-tour[data-playing="true"] .tour-steps button[aria-current="step"] i,
  .phone-conversation [data-tab-panel]:not([hidden]) .bubble {
    animation: none;
  }
}

@media (max-width: 680px) {
  .tour-stage {
    aspect-ratio: 1.2;
  }
  .tour-slide[data-tour-kind="chat"] .tour-image-link > img {
    width: 200%;
    max-width: none;
    height: auto;
    transform: translateX(-50%);
  }
}
