:root {
  --grey-25: #fffefd;
  --grey-50: #fbfaf6;
  --grey-100: #f4f0e8;
  --grey-200: #ebe6dc;
  --grey-300: #e1dbd0;
  --grey-400: #cfc7ba;
  --grey-500: #79716b;
  --grey-600: #57534e;
  --grey-700: #44403c;
  --grey-800: #292524;
  --grey-900: #1c1917;
  --grey-950: #171412;
  --fg-primary: var(--grey-900);
  --fg-secondary: var(--grey-700);
  --fg-tertiary: var(--grey-600);
  --fg-onbrand: var(--grey-50);
  --bg-primary: #fffdf8;
  --bg-secondary: #fbf7ee;
  --bg-tertiary: #f6f0e5;
  --bg-brand: var(--grey-700);
  --bg-brand_hover: var(--grey-950);
  --bg-secondary_button: var(--grey-100);
  --bg-secondary_button_hover: var(--grey-200);
  --border-primary: #d8d0c3;
  --border-secondary: #f0eadf;
  --border-tertiary: #f4ede2;
  --logo-blue: #1e4f96;
  --logo-orange: #f7a21b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg-primary);
  color: var(--fg-primary);
  line-height: 1.5;
}

main,
.site-footer {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg-primary) 82%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header-inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand,
.site-nav a,
.site-footer a,
.use-case-card {
  color: var(--fg-primary);
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: auto;
  height: 24px;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
}

.nav-toggle-label {
  display: none;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: var(--bg-secondary_button);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--fg-primary);
  display: block;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-label span {
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -5px;
}

.nav-toggle-label span::after {
  top: 5px;
}

.nav-toggle:checked + .nav-toggle-label span {
  background: transparent;
}

.nav-toggle:checked + .nav-toggle-label span::before {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span::after {
  transform: translateY(-5px) rotate(-45deg);
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--logo-blue);
}

.hero {
  padding: 6rem 0 4rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 2rem;
  align-items: center;
}

.section-copy {
  max-width: 650px;
}

.kicker {
  margin: 0 0 0.7rem;
  font-family: "IBM Plex Mono", monospace;
  color: var(--fg-tertiary);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.15rem, 5.8vw, 4.05rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 1.1rem;
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 0.45rem;
}

p {
  color: var(--fg-secondary);
}

.hero-copy {
  max-width: 58ch;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.button,
.button-sm,
.button-ghost {
  text-decoration: none;
}

.button {
  background: var(--bg-brand);
  color: var(--fg-onbrand);
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  display: inline-block;
}

.button:hover {
  background: var(--bg-brand_hover);
}

.button-sm,
.button-ghost {
  background: var(--bg-secondary_button);
  color: var(--fg-primary);
  border: 1px solid var(--border-secondary);
  border-radius: 999px;
}

.button-sm {
  padding: 0.5rem 0.95rem;
}

.button-ghost {
  padding: 0.72rem 1.2rem;
}

.button-sm:hover,
.button-ghost:hover {
  background: var(--bg-secondary_button_hover);
}

.demo-placeholder {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.demo-placeholder {
  color: var(--fg-primary);
  text-decoration: none;
  min-height: 420px;
  padding: 0;
  display: grid;
  place-items: center;
  position: relative;
  overflow: visible;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.demo-placeholder > * {
  position: relative;
  z-index: 1;
}

.placeholder-label {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-bottom: auto;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--bg-tertiary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.demo-content {
  display: grid;
  gap: 0.35rem;
}

.demo-status {
  width: max-content;
  color: var(--logo-orange);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.demo-title {
  max-width: 12ch;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.demo-copy {
  max-width: 32ch;
  color: var(--fg-secondary);
}

.panel {
  padding: 4.5rem 0;
  margin-bottom: 0;
}

.voice-showcase {
  padding: 3.5rem 0 4.5rem;
}

.voice-showcase .section-heading {
  max-width: 780px;
}

.voice-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.voice-showcase .voice-feature-grid {
  grid-auto-rows: 300px;
}

.voice-feature-card,
.mini-card,
.use-case-card,
blockquote {
  padding: 1rem;
  background: var(--bg-secondary);
}

.voice-feature-card {
  min-height: 300px;
  padding: 1.2rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.voice-showcase .voice-feature-card {
  height: 100%;
  min-height: 0;
}

.voice-feature-card > * {
  position: relative;
  z-index: 1;
}

.voice-feature-card h3 {
  max-width: 12ch;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -0.035em;
}

.voice-feature-card p {
  max-width: 34ch;
}

.feature-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr);
  column-gap: 1.5rem;
  align-items: start;
  align-content: start;
}

.feature-wide .feature-icon,
.feature-wide h3,
.feature-wide p {
  grid-column: 1;
}

.feature-wide .audio-demo-placeholder {
  grid-column: 2;
  grid-row: 1 / 5;
}

.feature-square {
  min-height: 300px;
}

.feature-square h3 {
  max-width: 10ch;
}

.feature-title-inline {
  max-width: none;
  white-space: nowrap;
}

.feature-icon {
  width: max-content;
  height: max-content;
  align-self: start;
  justify-self: start;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--border-tertiary);
  border-radius: 999px;
  color: var(--fg-tertiary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
}

.chat-feature-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
}

.chat-feature-icon span {
  color: var(--fg-tertiary);
}

.feature-graphic,
.feature-metric {
  margin-top: auto;
}

.feature-graphic {
  min-height: 92px;
}

.audio-demo-placeholder {
  min-height: 100%;
  padding: 1rem;
  border: 0;
  border-radius: 14px;
  background: transparent;
  display: grid;
  place-items: center;
  position: relative;
  overflow: visible;
}

.audio-demo-placeholder > * {
  position: relative;
  z-index: 1;
}

.audio-orb {
  width: min(188px, 100%);
  aspect-ratio: 1;
  border-radius: 999px;
  background: #ff6a4f;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 42px rgba(255, 255, 255, 0.32), 0 18px 38px rgba(28, 25, 23, 0.08);
  animation: audio-orb-float 7s ease-in-out infinite;
  transform-origin: center;
}

.demo-placeholder.is-playing .audio-orb,
.audio-demo-placeholder.is-playing .audio-orb {
  animation: none;
}

.hero-audio-orb {
  width: min(230px, 78%);
  margin: auto;
}

.audio-orb span {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.78;
  animation: audio-orb-shift 8s ease-in-out infinite alternate;
  transition: transform 80ms linear, opacity 80ms linear, filter 80ms linear;
}

.demo-placeholder.is-playing .audio-orb span,
.audio-demo-placeholder.is-playing .audio-orb span {
  filter: blur(calc(16px + (var(--audio-energy, 0) * 18px)));
}

.demo-placeholder.is-playing .audio-orb span:first-child,
.audio-demo-placeholder.is-playing .audio-orb span:first-child {
  opacity: calc(0.48 + (var(--audio-high, 0) * 0.5));
  transform: translate3d(calc(var(--audio-mid, 0) * 34px), calc(var(--audio-high, 0) * -26px), 0) scale(calc(1 + (var(--audio-energy, 0) * 0.32)));
}

.demo-placeholder.is-playing .audio-orb span:nth-child(2),
.audio-demo-placeholder.is-playing .audio-orb span:nth-child(2) {
  opacity: calc(0.52 + (var(--audio-mid, 0) * 0.44));
  transform: translate3d(calc(var(--audio-low, 0) * -32px), calc(var(--audio-energy, 0) * 22px), 0) scale(calc(1 + (var(--audio-mid, 0) * 0.3)));
}

.demo-placeholder.is-playing .audio-orb span:nth-child(3),
.audio-demo-placeholder.is-playing .audio-orb span:nth-child(3) {
  opacity: calc(0.34 + (var(--audio-low, 0) * 0.5));
  transform: translate3d(calc(var(--audio-high, 0) * 30px), calc(var(--audio-low, 0) * -24px), 0) scale(calc(1 + (var(--audio-low, 0) * 0.34)));
}

.audio-orb span:first-child {
  width: 68%;
  height: 44%;
  left: 18%;
  top: 6%;
  background: #b7d1ff;
}

.audio-orb span:nth-child(2) {
  width: 54%;
  height: 42%;
  right: -2%;
  bottom: 8%;
  background: #ffe6a8;
  animation-delay: -2s;
}

.audio-orb span:nth-child(3) {
  width: 64%;
  height: 54%;
  left: -8%;
  bottom: -4%;
  background: #ff3f35;
  animation-delay: -4s;
}

.feature-voice .audio-orb {
  background: #6f9dff;
}

.feature-voice .audio-orb span:first-child {
  background: #f7d9ff;
}

.feature-voice .audio-orb span:nth-child(2) {
  background: #bff0df;
}

.feature-voice .audio-orb span:nth-child(3) {
  background: #5d79ff;
}

.hero-audio-orb {
  background: #ffb45d;
}

.hero-audio-orb span:first-child {
  width: 72%;
  height: 48%;
  left: 8%;
  top: 4%;
  background: #ffe7a8;
}

.hero-audio-orb span:nth-child(2) {
  width: 62%;
  height: 54%;
  right: -4%;
  bottom: 18%;
  background: #ff7b8b;
}

.hero-audio-orb span:nth-child(3) {
  width: 46%;
  height: 42%;
  left: 4%;
  bottom: -4%;
  background: #8fb6e8;
  opacity: 0.42;
}

.audio-demo-control {
  position: absolute;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-secondary);
  border-radius: 999px;
  background: var(--bg-primary);
  box-shadow: 0 10px 26px rgba(28, 25, 23, 0.12);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.audio-demo-control:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 30px rgba(28, 25, 23, 0.16);
}

.audio-demo-control:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--logo-blue) 38%, transparent);
  outline-offset: 4px;
}

.audio-demo-control .material-symbols-rounded {
  color: var(--grey-950);
  font-size: 2.1rem;
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 40;
  line-height: 1;
}

.audio-demo-player {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@keyframes audio-orb-float {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.025) rotate(2deg); }
}

@keyframes audio-orb-shift {
  from { transform: translate3d(-5%, -3%, 0) scale(1); }
  to { transform: translate3d(6%, 4%, 0) scale(1.08); }
}

.customer-logos {
  padding: 0 0 3rem;
}

.customer-logos .kicker {
  text-align: center;
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-track {
  width: max-content;
  padding: 1rem 0;
  display: flex;
  gap: 1rem;
  animation: logo-scroll 28s linear infinite;
}

.customer-logo {
  min-width: 150px;
  height: 64px;
  display: grid;
  place-items: center;
}

.customer-logo img {
  display: block;
  max-width: 140px;
  max-height: 48px;
  object-fit: contain;
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.5rem)); }
}

.wave-graphic {
  display: flex;
  align-items: end;
  gap: 0.45rem;
}

.wave-graphic span {
  width: 18%;
  border-radius: 999px;
  background: color-mix(in srgb, var(--logo-blue) 16%, var(--bg-tertiary));
}

.wave-graphic span:nth-child(1) { height: 34px; }
.wave-graphic span:nth-child(2) { height: 72px; }
.wave-graphic span:nth-child(3) { height: 48px; }
.wave-graphic span:nth-child(4) { height: 92px; }
.wave-graphic span:nth-child(5) { height: 56px; }

.mission-graphic {
  display: grid;
  place-items: center;
}

.mission-graphic span {
  width: 96px;
  height: 96px;
  border: 1px solid var(--border-secondary);
  border-radius: 999px;
  background: var(--bg-tertiary);
  outline: 18px solid color-mix(in srgb, var(--logo-orange) 10%, transparent);
  box-shadow: 0 0 0 16px color-mix(in srgb, var(--logo-orange) 10%, transparent);
}

.mission-graphic span::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin: 35px auto;
  border-radius: 999px;
  background: var(--logo-orange);
}

.feature-metric {
  color: var(--logo-blue);
  font-size: clamp(2.35rem, 5.8vw, 4.6rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.feature-metric span {
  display: inline;
  color: var(--fg-tertiary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0;
}

.analytics-graphic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  align-content: start;
  gap: 0.45rem;
  min-height: 150px;
  padding: 0.7rem;
  border-radius: 14px;
  background: var(--bg-tertiary);
  position: relative;
  overflow: hidden;
}

.analytics-graphic::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border: 1px dashed var(--border-secondary);
  border-radius: 10px;
}

.voice-analytics-metric {
  position: relative;
  z-index: 1;
  min-height: 92px;
  padding: 0.75rem;
  border: 1px solid var(--border-tertiary);
  border-radius: 14px;
  background: color-mix(in srgb, var(--bg-primary) 72%, transparent);
}

.voice-analytics-metric::after,
.analytics-mini-metric::after {
  content: "";
  position: absolute;
  right: 0.72rem;
  top: 0.72rem;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 color-mix(in srgb, #22c55e 42%, transparent);
  animation: live-dot-pulse 1.8s ease-out infinite;
}

.voice-analytics-metric span {
  display: block;
  color: var(--fg-tertiary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.voice-analytics-metric strong {
  display: block;
  margin-top: 0.42rem;
  font-size: 1.55rem;
  line-height: 1;
}

.voice-analytics-metric small,
.analytics-mini-metric small {
  display: inline-block;
  margin-left: 0.26rem;
  color: #15803d;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0;
  vertical-align: 0.18em;
}

@keyframes live-dot-pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, #22c55e 42%, transparent); }
  70% { box-shadow: 0 0 0 8px color-mix(in srgb, #22c55e 0%, transparent); }
  100% { box-shadow: 0 0 0 0 color-mix(in srgb, #22c55e 0%, transparent); }
}

.chat-feature-card p,
.use-case-card p,
blockquote p {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.use-case-card,
blockquote {
  border-radius: 12px;
}

.chat-suite {
  padding-top: 1.5rem;
}

.chat-hero {
  margin-bottom: 2rem;
}

.chat-dashboard {
  min-height: 420px;
  padding: 1rem;
  border-radius: 18px;
  background: var(--bg-secondary);
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: 1fr auto;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.chat-dashboard::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -90px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--logo-orange) 12%, transparent);
}

.dashboard-sidebar,
.dashboard-thread,
.dashboard-panel {
  position: relative;
  z-index: 1;
  border: 1px solid var(--border-tertiary);
  border-radius: 14px;
  background: var(--bg-primary);
}

.dashboard-sidebar {
  grid-row: 1 / 3;
  padding: 0.8rem;
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.dashboard-sidebar span {
  display: block;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-tertiary);
}

.dashboard-sidebar span:first-child {
  background: color-mix(in srgb, var(--logo-blue) 18%, var(--bg-tertiary));
}

.dashboard-thread {
  padding: 1rem;
  align-self: end;
}

.thread-channel {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--bg-tertiary);
  color: var(--fg-tertiary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.dashboard-thread p {
  max-width: 32ch;
  padding: 0.8rem;
  border-radius: 14px;
  background: var(--bg-secondary);
}

.dashboard-thread .reply-bubble {
  margin-left: auto;
  background: color-mix(in srgb, var(--logo-blue) 12%, var(--bg-secondary));
}

.dashboard-panel {
  padding: 0.9rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-panel span {
  color: var(--fg-tertiary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.dashboard-panel strong {
  color: var(--logo-orange);
}

.chat-feature-card h3 {
  max-width: 16ch;
}

.chat-feature-card p {
  max-width: 48ch;
  line-height: 1.65;
}

.chat-feature-card .chat-visual {
  margin-top: 1rem;
}

.chat-feature-card.feature-wide .chat-visual {
  grid-column: 2;
  grid-row: 1 / 4;
  min-height: 270px;
  align-self: start;
}

.chat-feature-card.feature-wide > div:not(.chat-visual) {
  grid-column: 1;
}

.chat-visual {
  min-height: 150px;
  border-radius: 14px;
  background: var(--bg-tertiary);
  position: relative;
  overflow: hidden;
}

.chat-feature-list {
  grid-auto-rows: 355px;
}

.chat-feature-list .chat-feature-card {
  height: 100%;
  min-height: 0;
}

.chat-visual::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px dashed var(--border-secondary);
  border-radius: 10px;
}

.inbox-visual,
.crm-visual,
.insights-visual,
.flow-visual {
  display: grid;
  gap: 0.6rem;
  padding: 1.2rem;
}

.chat-visual span {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 999px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-tertiary);
}

.inbox-visual span { height: 28px; }
.inbox-visual span:nth-child(2) { width: 78%; background: var(--bg-primary); }
.inbox-visual span:nth-child(3) { width: 62%; }

.unified-chat-visual {
  align-content: start;
  gap: 0.34rem;
  padding: 0.7rem;
}

.unified-chat-visual::before {
  inset: 0.8rem;
}

.unified-chat-header,
.unified-message {
  position: relative;
  z-index: 1;
}

.unified-chat-header {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.16rem 0 0.4rem;
  border-bottom: 1px solid var(--border-secondary);
  background: transparent;
}

.unified-chat-header .customer-avatar {
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--logo-blue) 16%, var(--bg-primary));
  color: var(--logo-blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.56rem;
  font-weight: 500;
}

.unified-chat-header strong,
.unified-chat-header span:not(.customer-avatar) {
  display: block;
}

.unified-chat-header strong {
  font-size: 0.78rem;
  line-height: 1.2;
}

.unified-chat-header span:not(.customer-avatar) {
  border: 0;
  background: transparent;
  color: var(--fg-tertiary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.52rem;
  text-transform: uppercase;
}

.whatsapp-chip {
  background: color-mix(in srgb, #25d366 14%, var(--bg-primary));
}

.unified-message {
  width: min(84%, 250px);
  padding: 0.4rem 0.52rem;
  border: 1px solid var(--border-tertiary);
  border-radius: 12px;
  background: var(--bg-secondary);
  box-shadow: 0 8px 16px color-mix(in srgb, var(--grey-900) 4%, transparent);
}

.unified-chat-visual .unified-message span {
  width: auto;
  height: auto;
  margin-bottom: 0.18rem;
  border: 0;
  background: transparent;
  color: var(--fg-tertiary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.52rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.unified-message p {
  margin: 0;
  color: var(--fg-primary);
  font-size: 0.7rem;
  line-height: 1.25;
}

.instagram-message {
  background: color-mix(in srgb, #e4405f 7%, var(--bg-secondary));
}

.facebook-message {
  background: color-mix(in srgb, var(--logo-blue) 8%, var(--bg-secondary));
}

.reply-message {
  margin-left: auto;
  background: var(--bg-primary);
}

.whatsapp-message {
  background: color-mix(in srgb, #25d366 7%, var(--bg-secondary));
}

.unified-reply-box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.04rem;
  padding: 0.34rem;
  border: 1px solid var(--border-tertiary);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-primary) 88%, transparent);
}

.unified-reply-box span {
  width: auto;
  height: auto;
  border: 0;
}

.unified-reply-box .reply-channel {
  padding: 0.18rem 0.36rem;
  border: 1px solid var(--border-tertiary);
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.5rem;
  line-height: 1;
}

.reply-placeholder {
  background: transparent;
  color: var(--fg-tertiary);
  font-size: 0.66rem;
}

.crm-visual span { height: 34px; border-radius: 10px; }
.crm-visual span:first-child { width: 58%; background: color-mix(in srgb, var(--logo-orange) 18%, var(--bg-secondary)); }
.crm-visual span:nth-child(2) { width: 86%; }

.crm-pipeline-visual {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: center;
  gap: 0.45rem;
  padding: 0.75rem;
}

.crm-pipeline-visual .crm-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
  min-height: 132px;
  padding: 0.48rem;
  border: 1px solid var(--border-tertiary);
  border-radius: 12px;
  background: color-mix(in srgb, var(--bg-primary) 72%, transparent);
}

.crm-pipeline-visual .crm-stage span {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: var(--fg-tertiary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.crm-pipeline-visual .crm-stage strong {
  margin-top: -0.25rem;
  color: var(--fg-tertiary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  line-height: 1.2;
}

.crm-pipeline-visual .crm-stage p {
  margin: 0;
  padding: 0.34rem 0.38rem;
  border: 1px solid var(--border-tertiary);
  border-radius: 8px;
  background: var(--bg-secondary);
  color: var(--fg-secondary);
  font-size: 0.62rem;
  line-height: 1.15;
}

.crm-pipeline-visual .active-stage {
  background: color-mix(in srgb, var(--logo-orange) 11%, var(--bg-primary));
}

.insights-visual {
  align-content: stretch;
  gap: 0.45rem;
  padding: 0.7rem;
}

.insights-visual::before {
  inset: 0.8rem;
}

.analytics-dashboard-visual span,
.analytics-dashboard-visual i {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
}

.analytics-mini-metric,
.analytics-metrics-row {
  position: relative;
  z-index: 1;
}

.analytics-metrics-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  align-self: center;
}

.analytics-mini-metric {
  min-height: 108px;
  padding: 0.75rem;
  border: 1px solid var(--border-tertiary);
  border-radius: 14px;
  background: color-mix(in srgb, var(--bg-primary) 78%, transparent);
}

.analytics-mini-metric span {
  color: var(--fg-tertiary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.analytics-mini-metric strong {
  display: block;
  margin-top: 0.42rem;
  font-size: 1.55rem;
  line-height: 1;
}

.flow-visual {
  align-content: center;
}

.automation-flow-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(58px, auto));
  gap: 0.7rem 0.9rem;
  align-items: center;
  padding: 1rem;
}

.automation-flow-visual::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-primary), transparent);
}

.automation-flow-visual .flow-node {
  position: relative;
  z-index: 1;
  min-height: 58px;
  padding: 0.56rem;
  border: 1px solid var(--border-tertiary);
  border-radius: 14px;
  background: color-mix(in srgb, var(--bg-primary) 78%, transparent);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--grey-900) 4%, transparent);
}

.automation-flow-visual .flow-node::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.95rem;
  width: 0.95rem;
  height: 1px;
  background: var(--border-primary);
}

.automation-flow-visual .flow-node span {
  width: auto;
  height: auto;
  margin-bottom: 0.3rem;
  border: 0;
  background: transparent;
  color: var(--fg-tertiary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.56rem;
  line-height: 1;
}

.automation-flow-visual .flow-node strong {
  display: block;
  max-width: 9ch;
  color: var(--fg-primary);
  font-size: 0.78rem;
  line-height: 1.12;
}

.call-node {
  grid-column: 1;
  grid-row: 2;
}

.qualify-node {
  grid-column: 2;
  grid-row: 2;
  background: color-mix(in srgb, var(--logo-blue) 8%, var(--bg-primary));
}

.followup-node {
  grid-column: 3;
  grid-row: 1;
}

.reminder-node {
  grid-column: 3;
  grid-row: 2;
  background: color-mix(in srgb, var(--logo-orange) 10%, var(--bg-primary));
}

.handoff-node {
  grid-column: 3;
  grid-row: 3;
}

.followup-node::after,
.reminder-node::after,
.handoff-node::after {
  display: none;
}

.platform-section {
  text-align: center;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}

.platform-heading {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.platform-heading p,
.platform-section p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.live-loop-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 24px;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.live-loop-panel::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -120px;
  top: -120px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--logo-blue) 10%, transparent);
}

.live-loop-main,
.live-loop-stack,
.loop-outcome {
  position: relative;
  z-index: 1;
}

.live-loop-main {
  padding: 1.2rem;
  text-align: left;
}

.loop-label {
  width: max-content;
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--bg-tertiary);
  color: var(--fg-tertiary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.live-loop-main h3 {
  max-width: 18ch;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.live-loop-main > p {
  margin-left: 0;
  max-width: 56ch;
}

.call-transcript {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.call-transcript p {
  max-width: 520px;
  margin: 0;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border-secondary);
  border-radius: 14px;
  background: var(--bg-primary);
  color: var(--fg-secondary);
}

.call-transcript p:nth-child(2) {
  margin-left: 2rem;
  background: color-mix(in srgb, var(--logo-blue) 10%, var(--bg-primary));
}

.live-loop-stack {
  display: grid;
  gap: 0.8rem;
  align-content: center;
}

.action-card {
  padding: 1rem;
  border: 1px solid var(--border-tertiary);
  border-radius: 18px;
  background: var(--bg-primary);
  text-align: left;
}

.action-card span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--fg-tertiary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.action-card strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.15;
}

.action-card p {
  margin: 0.35rem 0 0;
  color: var(--fg-secondary);
}

.whatsapp-action {
  border-color: color-mix(in srgb, var(--logo-blue) 28%, var(--border-tertiary));
}

.receipt-action {
  margin-left: 2rem;
}

.crm-action {
  margin-left: 4rem;
  border-color: color-mix(in srgb, var(--logo-orange) 34%, var(--border-tertiary));
}

.loop-outcome {
  max-width: none;
  margin: 1.4rem auto 0;
  padding: 1.25rem;
  border-radius: 20px;
  background: var(--bg-secondary);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 1rem;
  align-items: end;
  text-align: left;
}

.loop-outcome p {
  margin-left: 0;
  margin-bottom: 0;
}

.loop-outcome h3 {
  max-width: 18ch;
  margin-bottom: 0.7rem;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
}

.loop-outcome-label {
  margin-bottom: 0.7rem;
  color: var(--logo-blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outcome-points {
  display: grid;
  gap: 0.6rem;
}

.outcome-points span {
  display: block;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-tertiary);
  border-radius: 999px;
  background: var(--bg-tertiary);
  color: var(--fg-primary);
  font-weight: 700;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 1.4rem;
}

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

.use-case-card {
  display: flex;
  min-height: 430px;
  padding: 1rem;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
}

.custom-use-case-card {
  grid-column: span 2;
  background: var(--bg-tertiary);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
  gap: 1.4rem;
  align-items: stretch;
  padding: 1.4rem 1.6rem;
  border-color: color-mix(in srgb, var(--logo-blue) 22%, var(--border-tertiary));
}

.custom-use-case-card .industry-visual {
  grid-column: 2;
  grid-row: 1 / 5;
  min-height: auto;
  background: var(--bg-secondary);
}

.custom-use-case-card h3 {
  margin-top: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  max-width: 12ch;
}

.custom-use-case-card ul {
  max-width: 46ch;
}

.custom-use-case-card .card-link {
  width: max-content;
  margin-top: auto;
  color: var(--fg-onbrand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.use-case-card h3 {
  margin-top: 1rem;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  letter-spacing: -0.035em;
}

.use-case-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
  color: var(--fg-secondary);
}

.use-case-card li::marker {
  color: var(--logo-orange);
}

.industry-visual {
  min-height: 180px;
  border-radius: 14px;
  background: var(--bg-tertiary);
  position: relative;
  overflow: hidden;
}

.industry-visual::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-primary), transparent);
}

.industry-visual::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px dashed var(--border-secondary);
  border-radius: 10px;
}

.industry-visual span {
  position: absolute;
  z-index: 1;
  display: block;
  border: 1px solid var(--border-secondary);
  background: color-mix(in srgb, var(--bg-primary) 82%, transparent);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--grey-900) 5%, transparent);
}

.real-estate-visual span:first-child {
  width: 34%;
  height: 52%;
  left: 20%;
  bottom: 20%;
  border-radius: 10px 10px 4px 4px;
  background: color-mix(in srgb, var(--logo-blue) 11%, var(--bg-primary));
}

.real-estate-visual span:nth-child(2) {
  width: 30%;
  height: 42%;
  right: 22%;
  bottom: 20%;
  border-radius: 8px 8px 4px 4px;
  background: var(--bg-primary);
}

.real-estate-visual span:nth-child(3) {
  width: 36%;
  height: 12px;
  left: 32%;
  top: 30%;
  transform: rotate(-24deg);
  border: 0;
  border-radius: 999px;
  background: var(--logo-orange);
  box-shadow: none;
}

.community-visual span {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: var(--bg-primary);
}

.community-visual span:first-child {
  left: 20%;
  top: 24%;
  background: color-mix(in srgb, var(--logo-blue) 12%, var(--bg-secondary));
}

.community-visual span:nth-child(2) {
  right: 24%;
  top: 28%;
}

.community-visual span:nth-child(3) {
  left: 34%;
  bottom: 20%;
  background: color-mix(in srgb, var(--logo-orange) 14%, var(--bg-secondary));
}

.community-visual span:nth-child(4) {
  right: 16%;
  bottom: 18%;
}

.community-visual span::after {
  content: "";
  position: absolute;
  width: 42%;
  height: 42%;
  left: 29%;
  top: 24%;
  border-radius: 999px;
  background: color-mix(in srgb, var(--logo-blue) 20%, var(--bg-secondary));
}

.automotive-visual span:first-child {
  width: 66%;
  height: 38%;
  left: 16%;
  bottom: 30%;
  border-radius: 38px 38px 14px 14px;
  background: color-mix(in srgb, var(--logo-blue) 12%, var(--bg-secondary));
}

.automotive-visual span:first-child::before {
  content: "";
  position: absolute;
  width: 42%;
  height: 32%;
  left: 29%;
  top: 18%;
  border-radius: 999px 999px 8px 8px;
  background: color-mix(in srgb, var(--bg-primary) 76%, transparent);
}

.automotive-visual span:nth-child(2),
.automotive-visual span:nth-child(3) {
  width: 34px;
  height: 34px;
  bottom: 22%;
  border-radius: 999px;
  background: var(--bg-primary);
}

.automotive-visual span:nth-child(2) {
  left: 26%;
}

.automotive-visual span:nth-child(3) {
  right: 26%;
}

.fleet-visual span:first-child,
.housing-visual span:first-child,
.bpo-visual span:first-child,
.nbfc-visual span:first-child {
  width: 64%;
  height: 42%;
  left: 18%;
  bottom: 24%;
  border-radius: 14px;
  background: color-mix(in srgb, var(--logo-blue) 12%, var(--bg-secondary));
}

.fleet-visual span:nth-child(2),
.fleet-visual span:nth-child(3) {
  width: 30px;
  height: 30px;
  bottom: 18%;
  border-radius: 999px;
  background: var(--bg-primary);
}

.fleet-visual span:first-child::before {
  content: "";
  position: absolute;
  width: 22%;
  height: 20%;
  left: 12%;
  top: 20%;
  border-radius: 4px;
  background: var(--bg-primary);
  box-shadow: 34px 0 0 var(--bg-primary), 68px 0 0 var(--bg-primary);
}

.fleet-visual span:nth-child(2) { left: 28%; }
.fleet-visual span:nth-child(3) { right: 28%; }

.housing-visual span:first-child {
  height: 48%;
  bottom: 18%;
  border-radius: 12px;
  background: color-mix(in srgb, var(--logo-orange) 14%, var(--bg-secondary));
}

.housing-visual span:nth-child(2),
.housing-visual span:nth-child(3) {
  width: 16px;
  height: 16px;
  top: 36%;
  border-radius: 4px;
  background: var(--bg-primary);
  border: 1px solid var(--border-tertiary);
}

.housing-visual span:nth-child(2) { left: 34%; }
.housing-visual span:nth-child(3) { right: 34%; }

.bpo-visual span:first-child {
  width: 84px;
  height: 84px;
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--logo-orange) 14%, var(--bg-secondary));
}

.bpo-visual span:nth-child(2),
.bpo-visual span:nth-child(3) {
  width: 72px;
  height: 24px;
  left: 50%;
  border-radius: 999px;
  background: var(--bg-primary);
}

.bpo-visual span:nth-child(2) {
  top: 34%;
  transform: translateX(-78%);
}

.bpo-visual span:nth-child(3) {
  bottom: 34%;
  transform: translateX(-20%);
}

.nbfc-visual span:first-child {
  width: 46%;
  height: 58%;
  left: 24%;
  bottom: 18%;
  border-radius: 10px;
}

.nbfc-visual span:first-child::before {
  content: "₹";
  position: absolute;
  right: -20px;
  top: -18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--logo-orange) 18%, var(--bg-primary));
  color: var(--fg-primary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
}

.nbfc-visual span:nth-child(2),
.nbfc-visual span:nth-child(3) {
  width: 38%;
  height: 14px;
  left: 31%;
  border-radius: 999px;
  background: var(--bg-primary);
  border: 1px solid var(--border-tertiary);
}

.nbfc-visual span:nth-child(2) { top: 38%; }
.nbfc-visual span:nth-child(3) { top: 52%; background: color-mix(in srgb, var(--logo-orange) 18%, var(--bg-secondary)); }

.custom-visual span:first-child {
  width: 96px;
  height: 96px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--logo-blue) 10%, var(--bg-secondary));
  box-shadow: 0 0 0 18px color-mix(in srgb, var(--logo-blue) 7%, transparent);
}

.custom-visual span:nth-child(2),
.custom-visual span:nth-child(3) {
  width: 54px;
  height: 14px;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  background: var(--logo-orange);
}

.custom-visual span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.custom-visual span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(90deg);
}

.use-case-card .card-link:not(.button) {
  margin-top: auto;
  color: var(--fg-tertiary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
}

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

blockquote {
  margin: 0;
}

.testimonial-card {
  min-height: 330px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  background: var(--bg-secondary);
  border: 0;
}

.testimonial-card > p:not(.testimonial-usecase) {
  color: var(--fg-primary);
  font-size: 1.05rem;
  line-height: 1.45;
}

.testimonial-usecase {
  width: max-content;
  margin-bottom: 1rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--bg-tertiary);
  color: var(--fg-tertiary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

cite {
  display: block;
  margin-top: auto;
  color: var(--fg-tertiary);
  font-style: normal;
}

cite strong,
cite span {
  display: block;
}

cite strong {
  color: var(--fg-primary);
  font-size: 1rem;
}

cite span {
  margin-top: 0.15rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
}

details {
  border-top: 1px solid var(--border-tertiary);
  padding-top: 1rem;
  margin-top: 1rem;
}

details:first-of-type {
  border-top: 0;
  padding-top: 0;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  max-width: 760px;
  margin: 0.65rem 0 0;
}

.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 18px;
  background: var(--bg-secondary);
}

.cta-section p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section > p:not(.kicker) {
  max-width: 780px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.cta-section .button {
  margin-top: 1rem;
}

.legal-page {
  padding: 4rem 0 5rem;
}

.legal-heading {
  max-width: 860px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.legal-heading h1 {
  max-width: none;
  color: var(--fg-secondary);
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-document {
  max-width: 860px;
  margin: 0 auto;
}

.legal-document pre {
  margin: 0;
  color: var(--fg-secondary);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  white-space: pre-wrap;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 2rem 0 3rem;
  background: var(--bg-secondary);
  box-shadow: 0 0 0 100vmax var(--bg-secondary);
  clip-path: inset(0 -100vmax);
  font-size: 0.95rem;
}

.footer-brand-block {
  display: grid;
  gap: 0.8rem;
}

.footer-logo {
  display: inline-flex;
  width: max-content;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 28px;
}

.footer-brand-block p {
  margin: 0;
  color: var(--fg-tertiary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.footer-actions {
  display: grid;
  justify-items: end;
  gap: 1rem;
}

.footer-nav,
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-nav-row {
  display: contents;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-secondary);
  transition: color 160ms ease;
}

.footer-socials a:hover {
  color: var(--logo-blue);
}

.footer-socials svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

@media (max-width: 900px) {
  .split-section,
  .compact-grid,
  .use-case-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .custom-use-case-card {
    grid-column: auto;
    grid-template-columns: 1fr;
    padding: 1.15rem;
  }

  .custom-use-case-card .industry-visual {
    grid-column: auto;
    grid-row: auto;
  }

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

  .live-loop-panel {
    grid-template-columns: 1fr;
  }

  .loop-outcome {
    grid-template-columns: 1fr;
  }

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

  .feature-wide {
    grid-template-columns: 1fr;
  }

  .feature-wide .audio-demo-placeholder,
  .chat-feature-card.feature-wide .chat-visual {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }

  .hero {
    padding: 4rem 0 2rem;
  }

  .demo-placeholder {
    min-height: 300px;
  }

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

  .footer-actions {
    justify-items: start;
  }

  .footer-nav,
  .footer-socials {
    justify-content: flex-start;
  }

}

@media (max-width: 560px) {
  main,
  .site-footer,
  .site-header-inner {
    width: min(100% - 2rem, 1100px);
  }

  .site-header-inner {
    padding: 0.72rem 0;
    gap: 0.65rem;
  }

  .brand img {
    height: 22px;
  }

  .nav-toggle-label {
    display: inline-flex;
    order: 3;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    padding: 0.7rem;
    border-radius: 16px;
    background: var(--bg-secondary);
    box-shadow: 0 18px 40px color-mix(in srgb, var(--grey-900) 12%, transparent);
    z-index: 30;
  }

  .nav-toggle:checked ~ .site-nav {
    display: grid;
    gap: 0.15rem;
  }

  .site-nav a {
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: var(--bg-tertiary);
  }

  .button-sm {
    margin-left: auto;
    padding: 0.45rem 0.78rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 3.6rem 0 2.4rem;
  }

  .hero.split-section {
    gap: 2.5rem;
  }

  .hero .kicker {
    margin-bottom: 1rem;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.25rem, 13vw, 3.25rem);
    line-height: 1.08;
    margin-bottom: 1.45rem;
  }

  .hero-copy {
    font-size: 1rem;
    max-width: 34ch;
    line-height: 1.6;
  }

  .demo-placeholder {
    min-height: 220px;
    border-radius: 10px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1.35rem;
  }

  .button,
  .button-ghost {
    text-align: center;
  }

  .panel {
    padding: 2.6rem 0;
  }

  .voice-showcase {
    padding: 2.6rem 0;
  }

  .customer-logos {
    padding: 0.9rem 0 2.6rem;
  }

  .customer-logos .kicker {
    margin-bottom: 0.25rem;
  }

  .logo-track {
    gap: 0.35rem;
    padding: 0.45rem 0;
    animation-duration: 22s;
  }

  .customer-logo {
    min-width: 96px;
    height: 46px;
  }

  .customer-logo img {
    max-width: 88px;
    max-height: 34px;
  }

  .voice-feature-grid {
    grid-template-columns: 1fr;
  }

  .voice-showcase .voice-feature-grid {
    grid-auto-rows: auto;
  }

  .voice-showcase .voice-feature-card {
    height: auto;
    min-height: 300px;
  }

  .chat-feature-list {
    grid-auto-rows: auto;
  }

  .chat-feature-list .chat-feature-card {
    height: auto;
    min-height: 0;
  }

  .feature-wide,
  .feature-square {
    grid-column: auto;
    aspect-ratio: auto;
  }

  .feature-wide .audio-demo-placeholder {
    min-height: 220px;
  }

  .chat-feature-card.feature-wide .chat-visual {
    min-height: 180px;
  }

  .voice-feature-card {
    min-height: 0;
    padding: 1rem;
  }

  .voice-feature-card h3,
  .chat-feature-card h3,
  .feature-square h3 {
    max-width: none;
  }

  .feature-title-inline {
    white-space: normal;
  }

  .chat-dashboard {
    min-height: 300px;
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    grid-row: auto;
    display: flex;
  }

  .dashboard-sidebar span {
    width: 34px;
  }

  .chat-visual {
    min-height: 150px;
  }

  .live-loop-panel {
    padding: 0.75rem;
  }

  .live-loop-main {
    padding: 0.75rem;
  }

  .call-transcript p:nth-child(2),
  .receipt-action,
  .crm-action {
    margin-left: 0;
  }

  .cta-section {
    padding: 3rem 1.25rem;
  }

  .site-footer {
    gap: 1.35rem;
    padding: 1.6rem 0 2rem;
  }

  .footer-brand-block {
    gap: 0.65rem;
  }

  .footer-logo img {
    height: 24px;
  }

  .footer-actions {
    gap: 0.85rem;
    justify-items: start;
  }

  .footer-nav {
    width: 100%;
    display: grid;
    gap: 0.55rem;
    justify-content: flex-start;
  }

  .footer-nav-row {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
  }

  .footer-socials {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-brand-block p {
    font-size: 0.7rem;
    line-height: 1.55;
  }
}
