:root {
  --bg: #ffffff;
  --panel: #f6f7fb;
  --panel-2: #eef0fa;
  --line: #e3e6f2;
  --line-2: #d2d7ec;
  --text: #0c0e14;
  --text-dim: #5b6270;
  --text-dimmer: #8a91a1;
  --blue: #7797ff;
  --blue-dark: #5876e6;
  --blue-tint: rgba(119, 151, 255, 0.1);
  --blue-tint-2: rgba(119, 151, 255, 0.18);
  --radius: 18px;
  --orange: #ff7a59;
  --green: #2fbf8f;
}
* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  position: relative;
}
h1,
h2,
h3 {
  font-family: "Inter", sans-serif;
  font-weight: 100;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}
.mono {
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
section {
  position: relative;
}

/* background texture (very bottom layer) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(
      1100px 650px at 12% -10%,
      rgba(119, 151, 255, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at 92% 5%,
      rgba(119, 151, 255, 0.07),
      transparent 55%
    ),
    var(--bg);
}

/* ===== ambient background visuals: floating orbs + moving wave lines ===== */
.bg-visual {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  animation: orbFloat 22s ease-in-out infinite;
  will-change: transform;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(26px, -34px) scale(1.05);
  }
  66% {
    transform: translate(-22px, 18px) scale(0.97);
  }
}
.wave-layer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200%;
  height: 240px;
  animation: waveDrift linear infinite;
  will-change: transform;
}
.wave-layer svg {
  display: block;
  width: 100%;
  height: 100%;
}
.wave-layer.w1 {
  animation-duration: 26s;
  opacity: 0.55;
  bottom: -10px;
}
.wave-layer.w2 {
  animation-duration: 40s;
  opacity: 0.35;
  bottom: -30px;
  height: 260px;
}
.wave-layer.w3 {
  animation-duration: 58s;
  opacity: 0.22;
  bottom: -55px;
  height: 300px;
}
@keyframes waveDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .bg-orb,
  .wave-layer {
    animation: none;
  }
}
@media (max-width: 700px) {
  .bg-orb {
    filter: blur(46px);
  }
  .wave-layer {
    height: 150px;
  }
  .wave-layer.w2 {
    height: 170px;
  }
  .wave-layer.w3 {
    height: 200px;
  }
}

/* nav */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1440px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
}
.nav-logo-icon {
  height: 2rem;
  /* border-radius: 50%;
  border: #eef0fa 1px solid;
  background: var(--blue-tint);
  object-fit: cover;
  flex-shrink: 0; */
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-item {
  position: relative;
}
.nav-item > .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14.5px;
  color: var(--text-dim);
  cursor: pointer;
  padding: 10px 6px;
  background: none;
  border: none;
  font-family: inherit;
  transition: color 0.15s;
}
.nav-item > .nav-link:hover {
  color: var(--text);
}
.nav-caret {
  font-size: 9px;
  transition: transform 0.15s;
  display: inline-block;
}
.nav-item.open .nav-caret {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 48px -24px rgba(30, 42, 90, 0.28);
  padding: 8px;
  flex-direction: column;
  gap: 2px;
  z-index: 60;
  display: none;
}
.nav-item.open .dropdown-menu {
  display: flex;
}
.dropdown-menu a {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-dim);
  transition:
    background 0.12s,
    color 0.12s;
}
.dropdown-menu a:hover {
  background: var(--panel);
  color: var(--text);
}
.plain-nav-link {
  font-size: 14.5px;
  color: var(--text-dim);
  padding: 10px 6px;
  transition: color 0.15s;
}
.plain-nav-link:hover {
  color: var(--text);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.btn-black {
  background: #0c0e14;
  color: #ffffff;
  border-color: #0c0e14;
}
.btn-black:hover {
  background: #000000;
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--text);
  border-color: var(--line-2);
  background: rgba(119, 151, 255, 0.03);
}
.btn-ghost:hover {
  background: var(--blue-tint);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 13.5px;
}
.nav-mobile-cta {
  display: none;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: all 0.2s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    padding: 10px 24px 20px;
    box-shadow: 0 24px 48px -24px rgba(30, 42, 90, 0.28);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-item > .nav-link,
  .plain-nav-link {
    width: 100%;
    padding: 12px 6px;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 12px;
    min-width: 0;
  }
  .nav-mobile-cta.open,
  .nav-links.open .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }
  .nav-mobile-cta .btn {
    width: 100%;
  }
}

/* hero */
.hero {
  padding: 76px 0 40px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: black;
  border: 1px solid var(--blue-tint-2);
  background: var(--blue-tint);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.eyebrow .ring {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.hero-grid {
  display: grid;
  grid-template-columns: max-content 450px;
  justify-content: space-between;
  /* align-items: start; */
  gap: 48px;
}
.hero-grid {
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 800px;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue-dark);
  font-weight: 600;
}
.hero p.sub {
  margin-top: 22px;
  font-size: 17px;
  color: var(--text-dim);
  max-width: 800px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-dimmer);
  display: flex;
  align-items: center;
  gap: 8px;
}
.stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 52px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.stat-strip div {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--line);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  color: var(--text-dimmer);
}
.stat-strip div:last-child {
  border-right: none;
}
.stat-strip strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

/* callback form card (replaces live demo widget) — sized down */
.callback-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 24px 56px -36px rgba(30, 42, 90, 0.18);
  max-width: 450px;
  margin-left: auto;
}
.callback-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.callback-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--blue-dark);
  text-transform: uppercase;
}
.callback-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 1.8s ease-in-out infinite;
}
.callback-card h3 {
  font-size: 17px;
  margin: 8px 0 4px;
}
.callback-card p.desc {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0 0 16px;
}
.field {
  margin-bottom: 11px;
}
.field label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 5px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.02em;
}
.field input,
.field select {
  width: 100%;
  padding: 9px 12px;
  border-radius: 9px;
  border: 1px solid var(--line-2);
  background: #ffffff;
  color: var(--text);
  font-size: 13.5px;
  font-family: "Inter", sans-serif;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.field input:focus,
.field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%235b6270' stroke-width='1.6' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* Country code selector (intl-tel-input) overrides */
.iti {
  width: 100%;
}
.iti input.iti__tel-input {
  width: 100%;
  padding: 9px 12px 9px 90px;
  border-radius: 9px;
  border: 1px solid var(--line-2);
  background: #ffffff;
  color: var(--text);
  font-size: 13.5px;
  font-family: "Inter", sans-serif;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.iti input.iti__tel-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
}
.iti__selected-country {
  padding: 0 8px 0 12px;
}
.iti__selected-dial-code {
  font-size: 13.5px;
  font-family: "Inter", sans-serif;
  color: var(--text);
}
.iti__country-list {
  font-size: 13px;
  font-family: "Inter", sans-serif;
  border-radius: 9px;
  border: 1px solid var(--line-2);
}
.iti__country-name,
.iti__dial-code {
  font-size: 13px;
}
.callback-submit {
  width: 100%;
  padding: 11px;
  border-radius: 9px;
  border: none;
  background: var(--blue);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.15s;
  margin-top: 2px;
}
.callback-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.callback-fineprint {
  font-size: 11px;
  color: var(--text-dimmer);
  margin-top: 8px;
  text-align: center;
}
.or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
  color: var(--text-dimmer);
  font-size: 11px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-2);
}
.call-direct {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px dashed var(--line-2);
  border-radius: 12px;
  background: #ffffff;
}
.call-direct .phone-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.call-direct .cd-text {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.4;
}
.call-direct .cd-number {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  margin-top: 2px;
}
.callback-success {
  display: none;
  text-align: center;
  padding: 22px 8px;
}
.callback-success .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 14px;
}
.callback-success h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.callback-success p {
  font-size: 13px;
  color: var(--text-dim);
  max-width: 270px;
  margin: 0 auto;
}

.callback-success .field-note {
  font-size: 13px;
  color: var(--text-dim);
  max-width: 270px;
  margin: 8px auto 0;
  line-height: 1.5;
}

/* trusted logos */
.trusted {
  padding: 50px 0 30px;
  border-top: 1px solid var(--line);
}
.trusted p {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 26px;
}
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .trusted-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .trusted-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.trust-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 20px 44px -30px rgba(30, 42, 90, 0.16);
}

.trust-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 20px 16px;
}
.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-tint);
  color: var(--blue-dark);
  margin-top: 1px;
}
.trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-dark);
}
.trust-headtext {
  flex: 1;
  min-width: 0;
}
.trust-headtext .label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 3px;
}
.trust-headtext .desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.4;
}

.trust-player {
  /* display: flex; */
  display: none;
  align-items: center;
  gap: 10px;
  margin: 0 20px 18px;
  padding: 10px 14px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  box-shadow: 0 2px 6px -2px rgba(30, 42, 90, 0.08);
}

.play-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--blue);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.play-btn:hover {
  background: var(--blue-dark);
}
.play-btn svg {
  width: 11px;
  height: 11px;
  fill: #ffffff;
}
.player-bars {
  display: flex;
  align-items: center;
  gap: 2.5px;
  height: 14px;
  flex: 1;
}
.player-bars span {
  width: 2.5px;
  border-radius: 2px;
  background: var(--line-2);
  flex-shrink: 0;
  transition: background 0.15s;
}
.trust-player.playing .player-bars span {
  background: var(--blue);
  animation: barBounce 0.9s ease-in-out infinite;
}
.trust-player.playing .player-bars span:nth-child(2) {
  animation-delay: 0.1s;
}
.trust-player.playing .player-bars span:nth-child(3) {
  animation-delay: 0.2s;
}
.trust-player.playing .player-bars span:nth-child(4) {
  animation-delay: 0.3s;
}
.trust-player.playing .player-bars span:nth-child(5) {
  animation-delay: 0.15s;
}
@keyframes barBounce {
  0%,
  100% {
    transform: scaleY(0.6);
  }
  50% {
    transform: scaleY(1.6);
  }
}
.player-time {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: var(--text-dimmer);
  flex-shrink: 0;
  min-width: 32px;
  text-align: right;
}

.trust-chat {
  /* display: flex; */
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 20px 22px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel) 0%, #ffffff 40px);
}
.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 7px;
}
.chat-row.user {
  flex-direction: row-reverse;
}
.chat-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
.chat-avatar.ai {
  background: var(--blue);
  color: #fff;
}
.chat-avatar.user {
  background: var(--panel-2);
  color: var(--text-dim);
  border: 1px solid var(--line-2);
}
.chat-bubble {
  max-width: 82%;
  padding: 8px 12px;
  border-radius: 13px;
  font-size: 12.5px;
  line-height: 1.4;
  font-family: "Inter", sans-serif;
}
.chat-bubble.ai {
  background: var(--blue-tint);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.chat-bubble.user {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text-dim);
  border-bottom-right-radius: 4px;
}

.trust-head {
  padding: 18px 18px 12px;
}
.trust-player {
  margin: 0 18px 14px;
}
.logo-chip svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--blue-dark);
}

/* section heading pattern */
.kicker {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 14px;
  display: block;
}
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
}
.section-head p {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 16px;
}
.section-pad {
  padding: 96px 0;
}
.divider {
  border-top: 1px solid var(--line);
}

/* why strip */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 800px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.why-card {
  background: #ffffff;
  padding: 32px 28px;
}
.why-card .num {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--text-dimmer);
  margin-bottom: 14px;
}
.why-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--text-dim);
  font-size: 14.5px;
  margin: 0;
}

/* features numbered */
.feature-list {
  display: flex;
  flex-direction: column;
}
.feature-item {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 32px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.feature-item:last-child {
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .feature-item {
    grid-template-columns: 56px 1fr;
  }
  .feature-item .feature-visual {
    display: none;
  }
}
.feature-item .fnum {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--blue-dark);
}
.feature-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}
.feature-item ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-dim);
  font-size: 14.5px;
}
.feature-item ul li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}
.feature-item ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-dimmer);
}
.feature-visual {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: var(--text-dimmer);
  overflow: hidden;
  position: relative;
  padding: 5px;
}
.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* use cases */
.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 900px) {
  .uc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .uc-grid {
    grid-template-columns: 1fr;
  }
}
.uc-card {
  background: #ffffff;
  padding: 30px 26px;
  transition: background 0.15s;
}
.uc-card:hover {
  background: var(--panel);
}
.uc-card .uc-num {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--blue-dark);
  margin-bottom: 16px;
  display: block;
}
.uc-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.uc-card p {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
}

/* integrations */
.integ-ticker {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}
.integ-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: integScroll 26s linear infinite;
}
.integ-ticker:hover .integ-track {
  animation-play-state: paused;
}
.integ-tile {
  flex-shrink: 0;
  width: 110px;
  height: 76px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.integ-tile img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}
@keyframes integScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 700px) {
  .integ-tile {
    width: 90px;
    height: 64px;
    padding: 8px;
  }
  .integ-tile img {
    width: 28px;
    height: 28px;
  }
}

/* faq */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
.faq-q .plus {
  font-family: "Inter", sans-serif;
  color: var(--blue-dark);
  font-size: 20px;
  transition: transform 0.2s;
}
.faq-item.open .plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  color: var(--text-dim);
  font-size: 15px;
  padding-top: 14px;
  max-width: 640px;
}

/* CTA band */
.cta-band {
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  background:
    radial-gradient(
      600px 300px at 50% 0%,
      rgba(119, 151, 255, 0.14),
      transparent 70%
    ),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
}
.cta-band h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  max-width: 600px;
  margin: 0 auto 18px;
}
.cta-band p {
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto 30px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* footer */
footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(5, 1fr);
  gap: 32px;
}
@media (max-width: 1080px) {
  .foot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.foot-brand p {
  color: var(--text-dim);
  font-size: 14px;
  max-width: 240px;
  margin-top: 14px;
}
.foot-col h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 16px;
}
.foot-col a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.foot-col a:hover {
  color: var(--text);
}
.foot-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text-dimmer);
  font-family: "Inter", sans-serif;
}
/* ===== bento shell ===== */
.bento-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
.bento-row.r-hero {
  grid-template-columns: 1.7fr 1fr;
}
.bento-row.r-three {
  grid-template-columns: repeat(3, 1fr);
}
.bento-row.r-infra {
  grid-template-columns: 1.7fr 1fr;
}
.bento-row.r-two {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
  .bento-row.r-hero,
  .bento-row.r-infra,
  .bento-row.r-three,
  .bento-row.r-two {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 44px -34px rgba(30, 42, 90, 0.16);
}
.card-visual {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  flex: 1;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.card p {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
  /* max-width: 44ch; */
}
.card-icon-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: white;
  border: 1px solid var(--blue-tint-2);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  width: fit-content;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.dot.green {
  background: var(--green);
}
.dot.orange {
  background: var(--orange);
}

/* ===== Card 1: Build AI Agents ===== */
.card-hero .card-visual {
  min-height: 280px;
  padding: 0;
  overflow: hidden;
}
.agent-builder {
  display: flex;
  height: 100%;
  min-width: 0;
}
.ab-sidebar {
  width: 34%;
  background: #ffffff;
  border-right: 1px solid var(--line);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex-shrink: 0;
}
.ab-tab {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 9px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-dim);
}
.ab-tab .ico {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--line-2);
  flex-shrink: 0;
}
.ab-tab.active {
  background: var(--blue-tint);
  color: var(--blue-dark);
  font-weight: 600;
}
.ab-tab.active .ico {
  background: var(--blue);
}
.ab-main {
  flex: 1;
  min-width: 0;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ab-field {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}
.ab-field .lbl {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dimmer);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.ab-field .val {
  font-size: 12.5px;
  color: var(--text);
  font-weight: 500;
}
.ab-row {
  display: flex;
  gap: 10px;
  min-width: 0;
}
.ab-row .ab-field {
  flex: 1;
  min-width: 0;
}
.ab-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
  min-width: 0;
}
.ab-pill {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 100px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  color: var(--text-dim);
}
.ab-pill.on {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.ab-switch {
  width: 30px;
  height: 16px;
  border-radius: 100px;
  background: var(--blue);
  position: relative;
  flex-shrink: 0;
}
.ab-switch::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  top: 2px;
  right: 2px;
}

/* ===== Card 2: Human-like Voices ===== */
.voice-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.voice-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 11px;
}
.voice-row.sel {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
}
.voice-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--panel-2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.voice-meta {
  flex: 1;
  min-width: 0;
}
.voice-meta .name {
  font-size: 12.5px;
  font-weight: 600;
}
.voice-meta .lang {
  font-size: 10.5px;
  color: var(--text-dimmer);
}
.voice-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 16px;
}
.voice-wave span {
  width: 2.5px;
  background: var(--blue);
  border-radius: 2px;
  opacity: 0.55;
}
.voice-row.sel .voice-wave span {
  opacity: 1;
}

/* ===== Card 3: Knowledge Base ===== */
.kb-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 8px;
}
.kb-src {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 7px 10px;
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 500;
}
.kb-item .ico {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  background: var(--blue-tint);
  color: var(--blue-dark);
}
.kb-dash {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--line-2) 0 6px,
    transparent 6px 11px
  );
  position: relative;
}
.kb-core {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px var(--blue-tint);
}

/* ===== Card 4: Outbound Calling ===== */
.queue-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.queue-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 8px 10px;
}
.queue-num {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text);
  width: 88px;
  flex-shrink: 0;
}
.queue-bar {
  flex: 1;
  height: 4px;
  border-radius: 3px;
  background: var(--panel-2);
  overflow: hidden;
}
.queue-bar i {
  display: block;
  height: 100%;
  background: var(--blue);
  border-radius: 3px;
}
.status-pill {
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 3px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}
.status-pill.calling {
  background: var(--blue-tint);
  color: var(--blue-dark);
}
.status-pill.queued {
  background: var(--panel-2);
  color: var(--text-dimmer);
}
.status-pill.done {
  background: rgba(47, 191, 143, 0.12);
  color: var(--green);
}

/* ===== Card 5: Conversation Intelligence ===== */
.transcript {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  font-size: 11.5px;
  color: var(--text-dim);
  flex: 1;
}
.transcript .line {
  margin-bottom: 7px;
  display: flex;
  gap: 6px;
}
.transcript .who {
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}
.ci-tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.ci-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
}
.ci-tag.pos {
  background: rgba(47, 191, 143, 0.12);
  color: var(--green);
}
.ci-tag.neu {
  background: var(--panel-2);
  color: var(--text-dimmer);
}
.ci-tag.sum {
  background: var(--blue-tint);
  color: var(--blue-dark);
}

/* ===== Card 6: Structured Data Capture ===== */
.capture-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  flex: 1;
}
.capture-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.capture-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--blue-dark);
  font-weight: 700;
}
.capture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.capture-field .k {
  font-size: 9.5px;
  color: var(--text-dimmer);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}
.capture-field .v {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

/* ===== Card 7: Automate Workflows ===== */
.wf-flow {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
.wf-call {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
}
.wf-call .ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.wf-line {
  flex: 0 0 20px;
  height: 1px;
  background: var(--line-2);
}
.wf-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border: 2px solid var(--blue-tint-2);
  border-radius: 12px;
  padding: 9px;
  flex-shrink: 0;
}
.wf-action {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-dim);
  padding: 3px 4px;
}
.wf-targets {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: auto;
}
.wf-target {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 6px 10px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== Card 8: Phone Infrastructure (map) ===== */
.card-infra .card-visual {
  min-height: 260px;
  padding: 20px;
}
.map-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.map-dots {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background-image: radial-gradient(var(--line-2) 1.1px, transparent 1.1px);
  background-size: 11px 11px;
  -webkit-mask-image: radial-gradient(
    ellipse 60% 85% at 50% 45%,
    black 55%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 60% 85% at 50% 45%,
    black 55%,
    transparent 100%
  );
}
.map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 10px 5px 6px;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 8px 18px -10px rgba(30, 42, 90, 0.25);
}
.map-pin .flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.map-red {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 89, 0.18);
}

/* ===== Card 9: Real-Time Analytics ===== */
.rt-stats {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.rt-stat {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 9px 10px;
}
.rt-stat .n {
  font-size: 16px;
  font-weight: 700;
}
.rt-stat .l {
  font-size: 10px;
  color: var(--text-dimmer);
  font-weight: 500;
}
.rt-chart {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px 6px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
.rt-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
  border-radius: 4px 4px 2px 2px;
  opacity: 0.85;
}
.rt-bar.now {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--blue-tint-2);
}
.rt-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--green);
  margin-top: 8px;
}
.rt-live .rd {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

@media (max-width: 600px) {
  .wrap {
    padding: 0 18px;
  }
  .section-pad {
    padding: 64px 0;
  }
  .card {
    padding: 18px;
  }
  .card-visual {
    min-height: auto;
    padding: 14px;
  }
  .card-hero .card-visual {
    min-height: auto;
  }

  /* Agent builder card */
  .agent-builder {
    flex-direction: column;
  }
  .ab-sidebar {
    display: none;
  }
  .ab-main {
    padding: 16px;
    width: 100%;
  }
  .ab-row {
    flex-direction: column;
    gap: 8px;
  }
  .ab-pills {
    gap: 5px;
  }
  .ab-pill {
    font-size: 10.5px;
    padding: 3px 8px;
  }

  /* Voices card */
  .voice-row {
    flex-wrap: wrap;
  }

  /* Outbound calling card */
  .queue-row {
    flex-wrap: wrap;
  }
  .queue-num {
    width: auto;
  }
  .queue-bar {
    width: 100%;
    order: 3;
  }

  /* Conversation intelligence */
  .transcript .line {
    flex-direction: column;
    gap: 2px;
  }

  /* Real-time analytics */
  .rt-stats {
    flex-wrap: wrap;
  }
  .rt-chart {
    min-height: 80px;
  }

  /* Structured data capture */
  .capture-grid {
    grid-template-columns: 1fr;
  }

  /* Integrations grid */
  .integ-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* hero callback card shouldn't force min width */
  .callback-card {
    max-width: 100%;
  }
}

/* ===== contact page ===== */
.contact-hero {
  padding: 80px 0 96px;
  text-align: center;
}
.contact-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto;
}
.contact-hero p.sub {
  margin: 22px auto 0;
  font-size: 17px;
  color: var(--text-dim);
  max-width: 520px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 24px;
  margin-top: 56px;
  text-align: left;
  align-items: stretch;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 8px;
  display: flex;
  flex-direction: column;
}
.info-block {
  padding: 28px 24px;
}
.info-divider {
  height: 1px;
  background: var(--line);
  margin: 0 24px;
}
.info-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.info-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--text);
}
.info-head h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-dark);
}
.info-block p {
  font-size: 14.5px;
  color: var(--text-dim);
  margin: 0 0 18px;
  max-width: 34ch;
}
.info-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.15s;
}
.info-pill:hover {
  border-color: var(--blue);
}

.contact-form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
}
.contact-form-card .field {
  margin-bottom: 16px;
}
.contact-form-card .field textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 9px;
  border: 1px solid var(--line-2);
  background: #ffffff;
  color: var(--text);
  font-size: 13.5px;
  font-family: "Inter", sans-serif;
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.contact-form-card .field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
}
.contact-submit {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  border: none;
  background: #0c0e14;
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.15s;
  margin-top: 4px;
}
.contact-submit:hover {
  background: #000000;
  transform: translateY(-1px);
}

.contact-success {
  display: none;
  text-align: center;
  padding: 40px 8px;
}
.contact-success .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 14px;
}
.contact-success h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.contact-success p {
  font-size: 13px;
  color: var(--text-dim);
  max-width: 280px;
  margin: 0 auto;
}

.status-online {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 14.5px;
  color: var(--text-dim);
}
.status-online svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .contact-hero {
    padding: 56px 0 64px;
  }
  .info-block {
    padding: 22px 18px;
  }
  .info-divider {
    margin: 0 18px;
  }
  .contact-form-card {
    padding: 20px;
  }
}

/* ===== pricing page ===== */
.pricing-hero {
  padding: 80px 0 20px;
  text-align: center;
}
.pricing-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto;
}
.pricing-hero p.sub {
  margin: 22px auto 0;
  font-size: 17px;
  color: var(--text-dim);
  max-width: 520px;
}

.region-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 48px 0 40px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dimmer);
}
.region-toggle .region-label.active {
  color: var(--text);
}
.toggle-switch {
  width: 44px;
  height: 24px;
  border-radius: 100px;
  background: #0c0e14;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
  flex-shrink: 0;
}
.toggle-switch .toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s ease;
}
.toggle-switch.on .toggle-knob {
  left: 23px;
}

.pricing-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  text-align: left;
  margin-bottom: 96px;
}
@media (max-width: 800px) {
  .pricing-panel {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px 24px;
  }
}

.pricing-col h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.price-currency {
  font-size: 28px;
  font-weight: 100;
}
.price-amount {
  font-size: 40px;
  font-weight: 100;
  letter-spacing: -0.02em;
}
.price-amount.quote {
  font-size: 32px;
}
.price-unit {
  font-size: 15px;
  color: var(--text-dimmer);
}
.price-desc {
  font-size: 15px;
  color: var(--text-dim);
  margin: 0 0 24px;
}
.btn-pricing {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 24px;
  transition:
    background 0.15s,
    transform 0.15s,
    border-color 0.15s;
}
.btn-pricing-black {
  background: #0c0e14;
  color: #fff;
}
.btn-pricing-black:hover {
  background: #000000;
  transform: translateY(-1px);
}
.btn-pricing-white {
  background: #ffffff;
  border: 1px solid var(--line-2);
  color: var(--text);
}
.btn-pricing-white:hover {
  border-color: var(--blue);
}
.pricing-divider {
  height: 1px;
  background: var(--line);
  margin: 0 0 22px;
}
.pricing-features h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}
.pricing-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-dim);
}
.pricing-features li svg {
  width: 17px;
  height: 17px;
  color: var(--text-dimmer);
  flex-shrink: 0;
}

/* pricing FAQ */
.pf-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 800px) {
  .pf-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.pf-intro h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 16px;
}
.pf-intro p {
  font-size: 15.5px;
  color: var(--text-dim);
}
.pf-intro a {
  color: var(--text);
  text-decoration: underline;
  font-weight: 600;
}
.pf-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pf-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  cursor: pointer;
}
.pf-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  gap: 16px;
}
.pf-plusbox {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.pf-item.open .pf-plusbox {
  transform: rotate(45deg);
}
.pf-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.pf-a p {
  font-size: 14.5px;
  color: var(--text-dim);
  padding-top: 14px;
  margin: 0;
}

@media (max-width: 600px) {
  .pricing-hero {
    padding: 56px 0 20px;
  }
  .pricing-panel {
    margin-bottom: 64px;
  }
}

/* ===== pricing page v2 additions — append to style.css ===== */

/* Two independent cards instead of one shared divided panel */
.pricing-panel {
  background: transparent;
  border: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
  margin-bottom: 96px;
  align-items: stretch;
}
@media (max-width: 800px) {
  .pricing-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.pricing-col {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 44px -34px rgba(30, 42, 90, 0.16);
  position: relative;
}
@media (max-width: 600px) {
  .pricing-col {
    padding: 24px;
  }
}

/* Featured plan gets a soft gradient outline instead of a flat border */
.pricing-col.featured {
  border-color: transparent;
  box-shadow:
    0 30px 70px -38px rgba(88, 118, 230, 0.45),
    0 0 0 1px var(--blue-tint-2);
}
.pricing-col.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.pricing-col.featured .tag-chip {
  margin-bottom: 18px;
}

.pricing-col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.pricing-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--blue-tint);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--blue-dark);
}
.pricing-icon.alt {
  background: var(--panel-2);
  color: var(--text-dim);
}
.pricing-icon.alt svg {
  stroke: var(--text-dim);
}
.pricing-col h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

/* Live minute calculator inside the Pay-as-you-go card */
.calc-block {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 8px 0 26px;
}
.calc-row-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.calc-row-label .calc-value {
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 13.5px;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 100px;
  background: var(--line-2);
  outline: none;
  margin-bottom: 20px;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #ffffff;
  box-shadow:
    0 0 0 1px var(--blue),
    0 6px 14px -4px rgba(88, 118, 230, 0.55);
  cursor: pointer;
}
.calc-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 1px var(--blue);
  cursor: pointer;
}
.calc-slider::-moz-range-track {
  height: 6px;
  border-radius: 100px;
  background: var(--line-2);
}
.calc-slider:focus-visible {
  box-shadow: 0 0 0 3px var(--blue-tint);
  border-radius: 100px;
}

.calc-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.calc-price-row .price-currency {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}
.calc-price-row .price-amount {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.calc-price-row .price-unit {
  font-size: 14px;
  color: var(--text-dimmer);
}
.calc-meta {
  font-size: 12.5px;
  color: var(--text-dimmer);
  margin-top: 8px;
}
.calc-meta span {
  color: var(--text-dim);
  font-weight: 600;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .calc-slider {
    transition: none;
  }
}

/* ===== about page additions — append to style.css ===== */

.about-hero {
  padding: 80px 0 30px;
  text-align: center;
}
.about-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin: 0 auto;
}
.about-hero p.sub {
  margin: 22px auto 0;
  font-size: 17px;
  color: var(--text-dim);
  max-width: 480px;
}

/* story section */
.about-story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.about-story-left h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
}
.about-story-left .tag-chip {
  margin-bottom: 32px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-stat-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
}
.about-stat-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue-dark);
  margin-bottom: 4px;
}
.about-stat-label {
  font-size: 13.5px;
  color: var(--text-dim);
}

.about-story-right p {
  font-size: 16px;
  color: var(--text-dim);
  margin: 0 0 20px;
  line-height: 1.65;
}
.about-story-right strong {
  color: var(--text);
  font-weight: 600;
}
.about-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dim);
  margin-top: 8px;
}
.about-contact-line svg {
  width: 19px;
  height: 19px;
  stroke: var(--text-dimmer);
  flex-shrink: 0;
}
.about-contact-line a {
  color: var(--blue-dark);
  text-decoration: underline;
  font-weight: 600;
}

/* team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 20px 44px -34px rgba(30, 42, 90, 0.16);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--blue-tint);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  overflow: hidden;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.team-role {
  font-size: 13px;
  color: var(--text-dimmer);
}

@media (max-width: 600px) {
  .about-hero {
    padding: 56px 0 20px;
  }
  .team-card {
    padding: 22px 16px;
  }
}

/* ===== integrations page additions — append to style.css ===== */

.integ-hero {
  padding: 80px 0 20px;
  text-align: center;
}
.integ-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin: 0 auto;
}
.integ-hero p.sub {
  margin: 22px auto 0;
  font-size: 17px;
  color: var(--text-dim);
  max-width: 480px;
}

.integ-badge {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px -12px rgba(30, 42, 90, 0.2);
  flex-shrink: 0;
  overflow: hidden;
  padding: 8px;
}
.integ-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.integ-badge.sm {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: none;
  padding: 6px;
}

@media (max-width: 700px) {
  .integ-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
}

/* category sections */
.integ-cat-title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--text);
}
.integ-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .integ-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .integ-grid {
    grid-template-columns: 1fr;
  }
}

.integ-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.integ-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.integ-card-head h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.integ-card p {
  font-size: 13.5px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 600px) {
  .integ-hero {
    padding: 56px 0 10px;
  }
  .integ-card {
    padding: 20px;
  }
}

/* ===== legal pages (privacy / terms) — append to style.css ===== */

.legal-hero {
  padding: 80px 0 40px;
  text-align: center;
}
.legal-hero h1 {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.legal-hero p.sub {
  margin: 16px auto 0;
  font-size: 16px;
  color: var(--text-dim);
  max-width: 460px;
}
.legal-updated {
  display: inline-block;
  margin-top: 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dimmer);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 100px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.legal-toc {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  border-left: 2px solid var(--line);
  padding-left: 16px;
  text-align: left;
}
@media (max-width: 900px) {
  .legal-toc {
    position: static;
    border-left: none;
    padding-left: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .legal-toc a {
    width: auto;
  }
}
.legal-toc-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dimmer);
  margin-bottom: 10px;
  text-align: left;
  width: 100%;
}
@media (max-width: 900px) {
  .legal-toc-label {
    width: 100%;
    margin-bottom: 4px;
  }
}
.legal-toc a {
  font-size: 13.5px;
  color: var(--text-dim);
  padding: 7px 0;
  transition: color 0.15s;
  text-align: left;
  width: 100%;
}
@media (max-width: 900px) {
  .legal-toc a {
    padding: 6px 12px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 100px;
  }
}
.legal-toc a:hover {
  color: var(--blue-dark);
}

.legal-content {
  max-width: 680px;
}
.legal-content h2 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 44px 0 14px;
  scroll-margin-top: 100px;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0 0 16px;
}
.legal-content ul {
  margin: 0 0 16px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-content li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
}
.legal-content strong {
  color: var(--text);
  font-weight: 600;
}
.legal-content a {
  color: var(--blue-dark);
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 600px) {
  .legal-hero {
    padding: 56px 0 32px;
  }
}

/* ===== industry pages (e-commerce / healthcare / real-estate) ===== */
.industry-hero {
  padding: 80px 0 20px;
  text-align: center;
}
.industry-hero .eyebrow {
  margin-left: auto;
  margin-right: auto;
}
.industry-hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin: 0 auto;
}
.industry-hero p.sub {
  margin: 22px auto 0;
  font-size: 17px;
  color: var(--text-dim);
  max-width: 620px;
}
.industry-hero .hero-ctas {
  justify-content: center;
  margin-top: 32px;
}
.industry-hero .stat-strip {
  justify-content: center;
  border-top: 1px solid var(--line);
  margin: 48px auto 0;
  padding-top: 22px;
  max-width: 720px;
}

/* outcome stat grid */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .outcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .outcome-grid {
    grid-template-columns: 1fr;
  }
}
.outcome-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 20px 44px -34px rgba(30, 42, 90, 0.16);
}
.outcome-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue-dark);
  margin-bottom: 6px;
}
.outcome-label {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.45;
}

/* use-case rows: text + conversation demo, alternating */
.usecase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}
.usecase-row:first-of-type {
  padding-top: 8px;
}
.usecase-row:last-of-type {
  border-bottom: none;
  padding-bottom: 8px;
}
.usecase-row.reverse .usecase-demo {
  order: -1;
}
@media (max-width: 900px) {
  .usecase-row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0;
  }
  .usecase-row.reverse .usecase-demo {
    order: 0;
  }
}
.usecase-text .uc-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.usecase-text .uc-num {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
}
.usecase-text .uc-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.usecase-text .uc-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--blue-dark);
}
.usecase-text h3 {
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.usecase-text p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 46ch;
}
.uc-outcome-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  background: rgba(47, 191, 143, 0.1);
  border: 1px solid rgba(47, 191, 143, 0.25);
  padding: 7px 14px 7px 12px;
  border-radius: 100px;
}
.uc-outcome-tag svg {
  width: 14px;
  height: 14px;
  stroke: var(--green);
  flex-shrink: 0;
}

/* conversation demo card */
.demo-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 44px -30px rgba(30, 42, 90, 0.16);
}
.demo-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dimmer);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.demo-card-head .rd {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 191, 143, 0.18);
  flex-shrink: 0;
}
.demo-chat {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 20px 24px;
  background: linear-gradient(180deg, var(--panel) 0%, #ffffff 70px);
}

/* ===== Product page ===== */
.product-hero-shot {
  margin: 56px auto 0;
  max-width: 1100px;
}
.shot-frame {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 70px -34px rgba(30, 42, 90, 0.22);
}
.shot-frame .shot-bar,
.shot-carousel-frame .shot-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.shot-frame .shot-bar .shot-dot,
.shot-carousel-frame .shot-bar .shot-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line-2);
}
.shot-frame .shot-bar .shot-dot:nth-child(1),
.shot-carousel-frame .shot-bar .shot-dot:nth-child(1) {
  background: #ff7a59;
}
.shot-frame .shot-bar .shot-dot:nth-child(2),
.shot-carousel-frame .shot-bar .shot-dot:nth-child(2) {
  background: #f5c451;
}
.shot-frame .shot-bar .shot-dot:nth-child(3),
.shot-carousel-frame .shot-bar .shot-dot:nth-child(3) {
  background: #2fbf8f;
}
.shot-frame .shot-url,
.shot-carousel-frame .shot-url {
  margin-left: 10px;
  font-size: 11.5px;
  color: var(--text-dimmer);
  font-family: "Inter", sans-serif;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 3px 12px;
  border-radius: 100px;
}
.shot-frame img {
  display: block;
  width: 100%;
}
.usecase-demo .shot-frame {
  border-radius: 14px;
}

/* video embed inside a shot-frame (hero) */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0c0e14;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* carousel frame: same chrome as shot-frame, wraps a multi-slide carousel */
.shot-carousel-frame {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 70px -34px rgba(30, 42, 90, 0.22);
}
.usecase-demo .shot-carousel-frame {
  border-radius: 14px;
}
.shot-carousel {
  position: relative;
}
.shot-carousel-viewport {
  overflow: hidden;
}
.shot-carousel-track {
  display: flex;
  transition: transform 0.35s ease;
}
.shot-carousel-slide {
  flex: 0 0 100%;
}
.shot-carousel-slide img {
  display: block;
  width: 100%;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px -12px rgba(30, 42, 90, 0.3);
  font-size: 18px;
  line-height: 1;
  color: var(--text);
  z-index: 2;
  padding: 0;
  transition: all 0.15s;
}
.carousel-arrow.prev {
  left: 12px;
}
.carousel-arrow.next {
  right: 12px;
}
.carousel-arrow:hover {
  background: var(--blue-tint);
  border-color: var(--blue-tint-2);
  color: var(--blue-dark);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  background: var(--panel);
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line-2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s;
}
.carousel-dot.active {
  background: var(--blue-dark);
  width: 18px;
  border-radius: 4px;
}
.solutions-teaser {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.solutions-teaser a {
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 16px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  background: #ffffff;
  transition: all 0.15s;
}
.solutions-teaser a:hover {
  background: var(--blue-tint);
  border-color: var(--blue-tint-2);
  color: var(--blue-dark);
}
