:root {
  --bg: #f7f7f5;
  --bg-soft: #ffffff;
  --ink: #08090b;
  --muted: #5f6670;
  --muted-2: #8d939c;
  --line: rgba(12, 18, 28, 0.1);
  --line-strong: rgba(12, 18, 28, 0.16);
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: rgba(255, 255, 255, 0.88);
  --dark-panel: rgba(8, 10, 14, 0.88);
  --accent: #3a8dff;
  --accent-soft: #dfeeff;
  --silver: #dde2e8;
  --shadow-soft: 0 18px 60px rgba(21, 27, 36, 0.08);
  --shadow-card: 0 20px 70px rgba(21, 27, 36, 0.14);
  --radius: 28px;
  --radius-card: 22px;
  --nav-height: 76px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 247, 245, 0.96) 42%, rgba(244, 246, 248, 1) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
  background-size: auto, 84px 84px, 84px 84px;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 14px max(20px, calc((100vw - var(--max-width)) / 2));
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  background: rgba(247, 247, 245, 0.68);
  border-bottom: 1px solid rgba(12, 18, 28, 0.06);
  transition: background 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(12, 18, 28, 0.1);
  box-shadow: 0 12px 36px rgba(21, 27, 36, 0.08);
}

.nav-shell {
  width: 100%;
  min-height: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 18px;
  font-weight: 820;
  letter-spacing: 0;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(12, 18, 28, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(8, 9, 11, 0.68);
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(8, 10, 14, 0.06);
  outline: none;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
  white-space: nowrap;
}

.button::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  opacity: 0.78;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: #07080a;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(8, 10, 14, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 48px rgba(8, 10, 14, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.button-secondary,
.button-ghost {
  color: var(--ink);
  border-color: rgba(12, 18, 28, 0.12);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(21, 27, 36, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.46);
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(12, 18, 28, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 24px rgba(21, 27, 36, 0.08);
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(58, 141, 255, 0.32);
  outline: none;
}

.mobile-menu-button.icon-button {
  display: none;
}

.icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.section-compact {
  padding-top: 88px;
  padding-bottom: 88px;
}

.hero {
  min-height: calc(100svh - var(--nav-height) - 26px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.96fr);
  align-items: center;
  gap: clamp(32px, 4vw, 58px);
  padding-top: 34px;
  padding-bottom: 34px;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: rgba(8, 9, 11, 0.56);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  max-width: 780px;
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 820;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 800;
}

h3 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-subtitle,
.section-heading p,
.language-copy p,
.cta-panel p {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.62;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(12, 18, 28, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(8, 9, 11, 0.64);
  font-size: 12px;
  font-weight: 650;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-visual {
  min-width: 0;
  perspective: 1400px;
}

.live-dashboard,
.conversation-shell,
.analytics-dashboard,
.cta-panel,
.globe-panel {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52)),
    rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.hero-demo {
  position: relative;
  min-height: 560px;
  padding: 18px;
  border-radius: 34px;
  overflow: hidden;
  transform: rotateX(0deg) rotateY(-5deg);
  animation: heroFloat 7s ease-in-out infinite;
}

.hero-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(58, 141, 255, 0.12), transparent 38%),
    linear-gradient(315deg, rgba(220, 226, 234, 0.7), transparent 40%);
  pointer-events: none;
}

.hero-demo > * {
  position: relative;
}

.dashboard-topbar,
.analytics-top,
.conversation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-topbar {
  min-height: 36px;
  padding: 0 6px 12px;
  color: rgba(8, 9, 11, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.dashboard-topbar > div,
.agent-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 999px;
  background: #2ed47a;
  box-shadow: 0 0 0 6px rgba(46, 212, 122, 0.12);
}

.dashboard-time {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.call-card,
.glass-panel,
.step-card,
.feature-card,
.trust-card,
.use-card {
  border: 1px solid rgba(12, 18, 28, 0.1);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.call-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(8, 10, 14, 0.9);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(8, 10, 14, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.call-card p,
.call-card h2,
.call-card span {
  margin: 0;
}

.call-card p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.call-card h2 {
  margin-top: 5px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1;
}

.call-card div span {
  display: inline-block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.call-card .icon-button {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.call-pulse {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(58, 141, 255, 0.14);
  border: 1px solid rgba(58, 141, 255, 0.42);
  box-shadow: inset 0 0 0 12px rgba(58, 141, 255, 0.18);
  animation: pulseRing 1.8s ease-in-out infinite;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.glass-panel {
  min-height: 164px;
  padding: 16px;
}

.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 13px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.knowledge-panel strong {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
}

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

.source-stack span,
.language-pill,
.language-chips button,
.business-tabs button,
.intent-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(12, 18, 28, 0.1);
  background: rgba(255, 255, 255, 0.64);
  color: rgba(8, 9, 11, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.source-stack span {
  justify-content: flex-start;
  min-height: 28px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 650;
}

.progress-track {
  height: 7px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(12, 18, 28, 0.08);
}

.progress-track span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #090a0d, #3a8dff);
  animation: progressLoad 5s ease-in-out infinite;
}

.agent-panel {
  display: flex;
  flex-direction: column;
}

.agent-panel p {
  margin: auto 0 0;
  color: rgba(8, 9, 11, 0.78);
  font-size: 15px;
  line-height: 1.48;
  font-weight: 620;
}

.language-strip {
  display: flex;
  gap: 8px;
  margin: 12px 0;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.language-strip::-webkit-scrollbar,
.business-tabs::-webkit-scrollbar,
.use-case-track::-webkit-scrollbar {
  display: none;
}

.language-pill,
.business-tabs button,
.language-chips button {
  min-height: 36px;
  padding: 0 13px;
  color: rgba(8, 9, 11, 0.64);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.language-pill:hover,
.language-pill:focus-visible,
.business-tabs button:hover,
.business-tabs button:focus-visible,
.language-chips button:hover,
.language-chips button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(58, 141, 255, 0.28);
  outline: none;
}

.language-pill.is-active,
.business-tabs button.is-active,
.language-chips button.is-active {
  background: #090a0d;
  color: #fff;
  border-color: rgba(8, 10, 14, 0.12);
  box-shadow: 0 12px 28px rgba(8, 10, 14, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.event-timeline {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(12, 18, 28, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 8px;
  color: rgba(8, 9, 11, 0.64);
  font-size: 13px;
  font-weight: 700;
}

.timeline-item span {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(12, 18, 28, 0.06);
  color: rgba(8, 9, 11, 0.64);
}

.timeline-item p {
  margin: 0;
}

.timeline-item.is-complete span {
  background: rgba(46, 212, 122, 0.12);
  color: #139a52;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 44px;
  text-align: center;
}

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

.demo-workbench {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.business-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.business-tabs button {
  justify-content: flex-start;
  min-height: 54px;
  padding: 0 16px;
  gap: 10px;
  border-radius: 18px;
  text-align: left;
}

.business-tabs button span:first-child {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(8, 10, 14, 0.06);
}

.business-tabs button.is-active span:first-child {
  background: rgba(255, 255, 255, 0.12);
}

.conversation-shell {
  min-height: 476px;
  padding: 24px;
  border-radius: 32px;
}

.intent-pill {
  min-height: 34px;
  padding: 0 12px;
  color: rgba(8, 9, 11, 0.7);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.conversation-card {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.message {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  opacity: 0;
  transform: translateY(12px);
  animation: messageIn 460ms ease forwards;
}

.message:nth-child(2) {
  animation-delay: 70ms;
}

.message:nth-child(3) {
  animation-delay: 140ms;
}

.message:nth-child(4) {
  animation-delay: 210ms;
}

.avatar {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(8, 10, 14, 0.08);
  color: rgba(8, 9, 11, 0.72);
}

.message.ai .avatar {
  background: #090a0d;
  color: #fff;
}

.bubble {
  padding: 14px 15px;
  border: 1px solid rgba(12, 18, 28, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
}

.message.ai .bubble {
  background: rgba(8, 10, 14, 0.9);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 38px rgba(8, 10, 14, 0.15);
}

.bubble strong {
  display: block;
  margin-bottom: 6px;
  color: inherit;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bubble p {
  margin: 0;
  color: inherit;
  font-size: 15px;
  line-height: 1.55;
}

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

.step-card {
  min-height: 320px;
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(58, 141, 255, 0.24);
  box-shadow: var(--shadow-card);
}

.step-icon,
.feature-icon,
.trust-icon,
.use-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 16px;
  background: #090a0d;
  color: #fff;
  box-shadow: 0 14px 32px rgba(8, 10, 14, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.step-number {
  display: block;
  margin-bottom: 16px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step-card h3,
.feature-card h3,
.use-card h3 {
  margin-bottom: 12px;
}

.step-card p,
.feature-card p,
.use-card p,
.trust-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

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

.feature-card {
  min-height: 238px;
  padding: 20px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(58, 141, 255, 0.25);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  border-radius: 15px;
  background: rgba(8, 10, 14, 0.92);
}

.feature-card h3 {
  font-size: 16px;
}

.language-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
}

.language-copy {
  max-width: 560px;
}

.language-visual {
  min-width: 0;
}

.globe-panel {
  position: relative;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 400px;
  padding: 34px;
  border-radius: 34px;
  overflow: hidden;
  --phrase-lift: 0px;
}

.globe-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58, 141, 255, 0.1), transparent 45%);
  pointer-events: none;
}

.globe,
.language-selector {
  position: relative;
  z-index: 2;
}

.globe {
  width: min(270px, 52vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(226, 232, 240, 0.68)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(8, 10, 14, 0.08) 18px 19px);
  border: 1px solid rgba(12, 18, 28, 0.08);
  box-shadow: inset -22px -16px 60px rgba(8, 10, 14, 0.1), inset 16px 18px 48px rgba(255, 255, 255, 0.95), 0 24px 58px rgba(21, 27, 36, 0.12);
  overflow: hidden;
}

.phrase-orbit {
  position: absolute;
  inset: 24px 26px;
  z-index: 3;
  overflow: hidden;
  border-radius: 28px;
  pointer-events: none;
}

.floating-phrase {
  position: absolute;
  top: 50%;
  left: 190px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  max-width: 154px;
  padding: 0 10px;
  border: 1px solid rgba(12, 18, 28, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: rgba(8, 9, 11, 0.74);
  box-shadow: 0 14px 34px rgba(21, 27, 36, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  font-size: 11px;
  font-weight: 780;
  white-space: nowrap;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateX(var(--radius))
    rotate(calc(var(--angle) * -1))
    translate(var(--push-x), var(--push-y))
    translateY(var(--phrase-lift));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  animation: phraseDrift 5.8s ease-in-out infinite;
  animation-delay: var(--delay);
}

.globe-panel:hover .floating-phrase {
  border-color: rgba(58, 141, 255, 0.2);
  box-shadow: 0 18px 42px rgba(21, 27, 36, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.globe::before,
.globe::after,
.globe span {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(8, 10, 14, 0.13);
  border-radius: 999px;
}

.globe::before {
  transform: rotate(90deg) scaleX(0.42);
}

.globe::after {
  transform: scaleY(0.42);
}

.globe span:nth-child(1) {
  inset: 28%;
}

.globe span:nth-child(2) {
  inset: 6%;
  transform: rotate(22deg) scaleX(0.35);
}

.globe span:nth-child(3) {
  inset: 6%;
  transform: rotate(-22deg) scaleX(0.35);
}

.language-selector {
  padding: 22px;
  border: 1px solid rgba(12, 18, 28, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
}

.selector-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.language-selector strong {
  display: block;
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 1;
}

.language-selector span:last-child {
  color: var(--muted);
  font-size: 14px;
}

.language-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.language-chips button {
  min-height: 38px;
  padding: 0 14px;
}

.button:disabled {
  cursor: progress;
  opacity: 0.78;
  transform: none;
}

.use-case-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.use-card {
  min-height: 260px;
  padding: 22px;
  scroll-snap-align: start;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.use-card:hover {
  transform: translateY(-6px);
  border-color: rgba(58, 141, 255, 0.25);
  box-shadow: var(--shadow-card);
}

.use-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border-radius: 15px;
}

.analytics-dashboard {
  border-radius: 34px;
  padding: 24px;
}

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

.analytics-top h3 {
  font-size: 28px;
}

.agent-status {
  padding: 10px 13px;
  border: 1px solid rgba(12, 18, 28, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: rgba(8, 9, 11, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.metric-grid article,
.transcript-panel,
.breakdown-panel {
  border: 1px solid rgba(12, 18, 28, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.metric-grid article {
  min-height: 154px;
  padding: 18px;
}

.metric-grid span {
  display: block;
  min-height: 34px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.metric-grid strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
}

.metric-grid small {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}

.dashboard-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 12px;
}

.transcript-panel,
.breakdown-panel {
  padding: 20px;
}

.transcript-line {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(12, 18, 28, 0.08);
}

.transcript-line span {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.transcript-line p {
  margin: 0;
  color: rgba(8, 9, 11, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.summary-box {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(8, 10, 14, 0.9);
  color: #fff;
}

.summary-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.summary-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.bars {
  display: grid;
  gap: 13px;
}

.bars div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  overflow: hidden;
  border-radius: 15px;
  background: rgba(12, 18, 28, 0.06);
}

.bars div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(58, 141, 255, 0.18), rgba(58, 141, 255, 0.05));
}

.bars span,
.bars strong {
  position: relative;
  z-index: 1;
  font-size: 13px;
}

.bars span {
  color: rgba(8, 9, 11, 0.72);
  font-weight: 700;
}

.knowledge-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(46, 212, 122, 0.18);
  border-radius: 18px;
  background: rgba(46, 212, 122, 0.08);
  color: #167946;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 760;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.trust-copy {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

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

.trust-card {
  min-height: 188px;
  padding: 20px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(58, 141, 255, 0.22);
  box-shadow: var(--shadow-card);
}

.trust-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  border-radius: 14px;
}

.trust-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.final-cta {
  padding-top: 88px;
}

.cta-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(34px, 7vw, 76px);
  border-radius: 36px;
  text-align: center;
  overflow: hidden;
}

.cta-panel h2 {
  margin-left: auto;
  margin-right: auto;
}

.cta-panel p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}

.flow-page {
  min-height: 100vh;
}

.agent-builder {
  min-height: calc(100svh - var(--nav-height));
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1.22fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding-top: 58px;
}

.builder-copy h1,
.plans-hero h1 {
  font-size: clamp(44px, 5.6vw, 72px);
}

.builder-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.builder-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(12, 18, 28, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: rgba(8, 9, 11, 0.68);
  font-size: 13px;
  font-weight: 720;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.builder-highlights .icon {
  width: 15px;
  height: 15px;
}

.training-form,
.pricing-card {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.training-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 34px;
}

.form-header,
.plan-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.form-header h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.field-group {
  display: grid;
  gap: 9px;
}

.field-group span {
  color: rgba(8, 9, 11, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(12, 18, 28, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field-group input {
  min-height: 54px;
  padding: 0 16px;
}

.field-group textarea {
  min-height: 190px;
  padding: 15px 16px;
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: rgba(58, 141, 255, 0.42);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 5px rgba(58, 141, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.knowledge-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.knowledge-preview div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(12, 18, 28, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  color: rgba(8, 9, 11, 0.7);
  font-size: 13px;
  line-height: 1.42;
  font-weight: 720;
}

.knowledge-preview span {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(46, 212, 122, 0.12);
  color: #139a52;
}

.training-progress {
  display: none;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(12, 18, 28, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
}

.training-progress.is-active {
  display: grid;
}

.progress-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.progress-copy span,
.training-progress p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.progress-copy strong {
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}

.agent-progress-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(12, 18, 28, 0.08);
}

.agent-progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #08090b, #3a8dff, #dfeeff);
  box-shadow: 0 0 22px rgba(58, 141, 255, 0.32);
  transition: width 120ms linear;
}

.training-progress p {
  margin: 0;
}

.train-button,
.plan-button {
  width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 720px;
  padding: 26px;
  border-radius: 34px;
  overflow: hidden;
}

.pricing-card.recommended {
  border-color: rgba(8, 10, 14, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 249, 252, 0.62)),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 26px 80px rgba(8, 10, 14, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.pricing-card.coming-soon {
  border-color: rgba(12, 18, 28, 0.08);
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.82), rgba(236, 239, 244, 0.58)),
    rgba(238, 241, 245, 0.72);
  box-shadow: 0 18px 56px rgba(21, 27, 36, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  filter: grayscale(0.18);
}

.pricing-card.coming-soon .plan-top,
.pricing-card.coming-soon .price-row,
.pricing-card.coming-soon .usage-note,
.pricing-card.coming-soon .plan-features {
  opacity: 0.58;
}

.pricing-card.coming-soon .plan-icon {
  background: #7d858f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.pricing-card.coming-soon .recommended-badge {
  background: rgba(8, 10, 14, 0.48);
  box-shadow: none;
}

.pricing-card.coming-soon .plan-button {
  background: rgba(8, 10, 14, 0.22);
  color: rgba(8, 9, 11, 0.62);
  border-color: rgba(12, 18, 28, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.recommended-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #090a0d;
  color: #fff;
  box-shadow: 0 12px 28px rgba(8, 10, 14, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-top {
  padding-right: 108px;
}

.plan-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 17px;
  background: #090a0d;
  color: #fff;
  box-shadow: 0 16px 34px rgba(8, 10, 14, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.plan-top h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.plan-top p,
.usage-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.price-row {
  margin: 34px 0 8px;
  padding: 24px;
  border: 1px solid rgba(12, 18, 28, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.price-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 0.95;
  letter-spacing: 0;
}

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

.plan-features {
  display: grid;
  gap: 13px;
  margin: 28px 0 28px;
  padding: 0;
  list-style: none;
}

.plan-features li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(8, 9, 11, 0.72);
  font-size: 14px;
  line-height: 1.48;
  font-weight: 680;
}

.plan-features span {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(46, 212, 122, 0.12);
  color: #139a52;
}

.plan-button {
  margin-top: auto;
}

.login-section {
  min-height: calc(100svh - var(--nav-height));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding-top: 58px;
}

.login-copy h1 {
  font-size: clamp(44px, 5.6vw, 72px);
}

.login-preview-stack {
  display: grid;
  gap: 10px;
  max-width: 420px;
}

.login-preview-stack div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(12, 18, 28, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: rgba(8, 9, 11, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 760;
}

.login-preview-stack span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(8, 10, 14, 0.06);
}

.login-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
}

.login-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.business-dashboard {
  padding-top: 72px;
}

.dashboard-page-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.dashboard-page-header h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 70px);
}

.dashboard-page-header p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.preview-banner {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid rgba(58, 141, 255, 0.18);
  border-radius: 24px;
  background: rgba(223, 238, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.preview-banner > span {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: #090a0d;
  color: #fff;
}

.preview-banner strong {
  display: block;
  margin-bottom: 4px;
}

.preview-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.dashboard-authenticated .preview-banner,
.dashboard-authenticated [data-login-cta] {
  display: none;
}

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

.dashboard-metrics article,
.dashboard-panel {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
}

.dashboard-metrics article {
  min-height: 170px;
  padding: 20px;
  border-radius: 24px;
}

.dashboard-metrics span {
  display: block;
  min-height: 36px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 760;
}

.dashboard-metrics strong {
  display: block;
  margin: 18px 0 8px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.dashboard-metrics small {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 760;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 14px;
}

.dashboard-panel {
  padding: 22px;
  border-radius: 28px;
}

.call-volume-panel,
.recent-calls-panel {
  grid-column: span 1;
}

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

.panel-heading h2 {
  margin-bottom: 0;
  font-size: clamp(22px, 2.4vw, 32px);
}

.call-chart {
  height: 240px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(12, 18, 28, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
}

.call-chart div {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
}

.call-chart div::before {
  content: "";
  width: 100%;
  height: var(--height);
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, #090a0d, rgba(58, 141, 255, 0.74));
  box-shadow: 0 12px 24px rgba(21, 27, 36, 0.12);
}

.call-chart span {
  position: absolute;
  bottom: -2px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 800;
}

.outcome-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(8, 10, 14, 0.9);
  color: #fff;
}

.outcome-row span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 760;
}

.outcome-row strong {
  font-size: 13px;
}

.intent-list,
.knowledge-cards,
.call-table {
  display: grid;
  gap: 12px;
}

.intent-list div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  min-height: 42px;
  align-items: center;
  overflow: hidden;
  padding: 0 12px;
  border-radius: 15px;
  background: rgba(12, 18, 28, 0.06);
}

.intent-list div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  background: linear-gradient(90deg, rgba(58, 141, 255, 0.18), rgba(58, 141, 255, 0.05));
}

.intent-list span,
.intent-list strong {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 760;
}

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

.knowledge-cards div {
  min-height: 128px;
  padding: 16px;
  border: 1px solid rgba(12, 18, 28, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
}

.knowledge-cards span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 13px;
  background: #090a0d;
  color: #fff;
}

.knowledge-cards strong {
  display: block;
  margin-bottom: 4px;
  font-size: 28px;
}

.knowledge-cards small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.recent-calls-panel {
  grid-column: 1 / -1;
}

.call-row {
  display: grid;
  grid-template-columns: 64px 180px minmax(0, 1fr) 72px;
  gap: 14px;
  align-items: start;
  padding: 15px;
  border: 1px solid rgba(12, 18, 28, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
}

.call-row span,
.call-row em {
  color: var(--muted-2);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.call-row strong {
  font-size: 14px;
}

.call-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.site-footer {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(12, 18, 28, 0.1);
}

.footer-brand p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
}

.footer-links a {
  color: rgba(8, 9, 11, 0.6);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease;
}

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

body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: rotateX(0deg) rotateY(-5deg) translateY(0);
  }
  50% {
    transform: rotateX(1deg) rotateY(-3deg) translateY(-10px);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    box-shadow: inset 0 0 0 12px rgba(58, 141, 255, 0.18), 0 0 0 0 rgba(58, 141, 255, 0.24);
  }
  50% {
    box-shadow: inset 0 0 0 7px rgba(58, 141, 255, 0.16), 0 0 0 12px rgba(58, 141, 255, 0);
  }
}

@keyframes progressLoad {
  0%,
  100% {
    width: 64%;
  }
  50% {
    width: 92%;
  }
}

@keyframes messageIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes phraseDrift {
  0%,
  100% {
    margin-top: -4px;
  }
  50% {
    margin-top: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .mobile-menu-button.icon-button {
    display: inline-grid;
    justify-self: end;
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    width: 17px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-lines {
    position: relative;
  }

  .menu-lines::before,
  .menu-lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-lines::before {
    top: -6px;
  }

  .menu-lines::after {
    top: 6px;
  }

  .menu-open .menu-lines {
    background: transparent;
  }

  .menu-open .menu-lines::before {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-open .menu-lines::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: calc(var(--nav-height) - 4px);
    left: 20px;
    right: 20px;
    display: grid;
    justify-self: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-card);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .language-section,
  .trust-section,
  .agent-builder,
  .login-section,
  .dashboard-page-header,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 44px;
  }

  .hero-copy {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-subtitle,
  .hero-proof,
  .hero-actions {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-demo {
    max-width: 680px;
    min-height: auto;
    margin: 0 auto;
    transform: none;
  }

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

  .business-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .business-tabs button {
    min-width: max-content;
  }

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

  .trust-copy {
    position: static;
  }

  .builder-copy {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
  }

  .login-copy {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
  }

  .builder-highlights {
    justify-content: center;
  }

  .login-preview-stack {
    margin-left: auto;
    margin-right: auto;
  }

  .dashboard-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 820px) {
  .section {
    width: min(100% - 28px, var(--max-width));
    padding: 78px 0;
  }

  .section-compact {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 40px;
    gap: 30px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

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

  .demo-grid,
  .steps-grid,
  .metric-grid,
  .dashboard-metrics,
  .dashboard-lower,
  .trust-grid,
  .globe-panel,
  .knowledge-preview {
    grid-template-columns: 1fr;
  }

  .globe-panel {
    min-height: 560px;
    align-content: start;
  }

  .phrase-orbit {
    inset: 18px 12px auto;
    height: 306px;
  }

  .floating-phrase {
    left: 50%;
    top: 154px;
    max-width: 136px;
  }

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

  .conversation-header,
  .analytics-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .conversation-shell,
  .analytics-dashboard,
  .cta-panel,
  .login-card,
  .dashboard-panel,
  .training-form,
  .pricing-card {
    border-radius: 28px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .hero-demo,
  .conversation-shell,
  .analytics-dashboard,
  .login-card,
  .dashboard-panel,
  .training-form,
  .pricing-card {
    padding: 14px;
  }

  .call-card {
    grid-template-columns: 38px 1fr;
  }

  .call-card .icon-button {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .transcript-line {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .metric-grid strong {
    font-size: 36px;
  }

  .language-selector strong {
    font-size: 30px;
  }

  .agent-builder {
    padding-top: 38px;
  }

  .login-section,
  .business-dashboard {
    padding-top: 38px;
  }

  .form-header,
  .plan-top,
  .panel-heading {
    flex-direction: column;
  }

  .plan-top {
    padding-right: 0;
  }

  .recommended-badge {
    position: static;
    width: max-content;
    margin-bottom: 16px;
  }

  .pricing-card {
    min-height: auto;
  }

  .price-row {
    padding: 18px;
  }

  .floating-phrase {
    --radius: 98px !important;
    font-size: 10px;
  }

  .dashboard-page-header h1,
  .login-copy h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .dashboard-actions,
  .dashboard-actions .button {
    width: 100%;
  }

  .call-chart {
    height: 210px;
    gap: 6px;
    padding: 10px;
  }

  .knowledge-cards {
    grid-template-columns: 1fr;
  }

  .call-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
