:root {
  --bg: #f8fafc;
  --bg2: #eef2ff;
  --ink: #0b1220;
  --muted: rgba(11, 18, 32, 0.68);
  --muted2: rgba(11, 18, 32, 0.52);
  --line: rgba(11, 18, 32, 0.10);
  --card: rgba(255, 255, 255, 0.78);
  --card2: rgba(255, 255, 255, 0.92);
  --shadow: 0 18px 60px rgba(2, 8, 23, 0.10);
  --shadow2: 0 24px 80px rgba(2, 8, 23, 0.14);
  --radius: 18px;
  --radius2: 26px;
  --brand: #2563eb;
  --brand2: #7c3aed;
  --good: #16a34a;
  --warn: #f59e0b;
  --fontDisplay: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  --fontBody: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  font-family: var(--fontBody);
  letter-spacing: -0.01em;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section[id] {
  scroll-margin-top: 92px;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.bg__grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(11, 18, 32, 0.06) 1px, transparent 0) 0 0 / 22px 22px;
  mask-image: radial-gradient(circle at 50% 10%, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 70%);
  opacity: 0.85;
}

.bg__glow {
  position: absolute;
  width: 740px;
  height: 740px;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.28;
  transform: translateZ(0);
}

.bg__glow--a {
  left: -240px;
  top: -220px;
  background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.7), transparent 65%);
}

.bg__glow--b {
  right: -260px;
  top: 120px;
  background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.55), transparent 62%);
}

.bg__noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(248, 250, 252, 0.55);
  border-bottom: 1px solid rgba(11, 18, 32, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--fontDisplay);
  letter-spacing: -0.03em;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.6)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(124, 58, 237, 0.9));
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.18), 0 12px 24px rgba(124, 58, 237, 0.12);
  color: #0b1220;
}

.brand__name {
  font-weight: 700;
  font-size: 16px;
}

.brand--small .brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

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

.nav__link {
  font-family: var(--fontDisplay);
  font-weight: 600;
  font-size: 14px;
  color: rgba(11, 18, 32, 0.72);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease;
}

.nav__link:hover {
  background: rgba(11, 18, 32, 0.06);
  color: rgba(11, 18, 32, 0.92);
}

.header__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  font-family: var(--fontDisplay);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 14px;
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 14px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  box-shadow: 0 10px 26px rgba(2, 8, 23, 0.06);
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  border-color: rgba(37, 99, 235, 0.22);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(124, 58, 237, 0.92));
  color: #fff;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.22), 0 16px 36px rgba(124, 58, 237, 0.16);
}

.btn--primary:hover {
  box-shadow: 0 22px 52px rgba(37, 99, 235, 0.26), 0 20px 44px rgba(124, 58, 237, 0.18);
  transform: translateY(-1px);
}

.btn--ghost:hover {
  background: rgba(11, 18, 32, 0.06);
  border-color: rgba(11, 18, 32, 0.16);
}

.hamburger {
  display: none;
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(11, 18, 32, 0.78);
  margin: 4px 0;
  border-radius: 999px;
}

.mobile {
  border-top: 1px solid rgba(11, 18, 32, 0.08);
  background: rgba(248, 250, 252, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mobile__inner {
  display: grid;
  gap: 10px;
  padding: 14px 0 16px;
}

.mobile__link {
  font-family: var(--fontDisplay);
  font-weight: 700;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(11, 18, 32, 0.10);
}

.mobile__btn {
  width: 100%;
}

.hero {
  padding: 46px 0 32px;
}

.hero__grid {
  display: grid;
  gap: 30px;
  align-items: start;
  grid-template-columns: 1.12fr 0.88fr;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 12px 30px rgba(2, 8, 23, 0.06);
  font-family: var(--fontDisplay);
  font-weight: 700;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.75);
}

.pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #34d399, #16a34a);
  box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.15);
}

.h1 {
  font-family: var(--fontDisplay);
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 16px 0 12px;
}

.h1__sub {
  display: block;
  margin-top: 8px;
  font-weight: 650;
  color: rgba(11, 18, 32, 0.65);
}

.lead {
  margin: 0;
  font-size: 16.5px;
  color: rgba(11, 18, 32, 0.74);
  max-width: 58ch;
}

.hero__actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.trust__item {
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.62);
  border-radius: 16px;
  padding: 12px 12px;
  box-shadow: 0 14px 36px rgba(2, 8, 23, 0.06);
}

.trust__kicker {
  font-family: var(--fontDisplay);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.02em;
}

.trust__desc {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.62);
}

.hero__visual {
  position: relative;
}

.phoneStack {
  position: relative;
  min-height: 520px;
}

.phoneCard {
  position: absolute;
  inset: auto auto auto auto;
  width: min(420px, 100%);
  border-radius: var(--radius2);
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.64));
  box-shadow: var(--shadow2);
  overflow: hidden;
  transform: translateZ(0);
}

.phoneCard--top {
  right: 0;
  top: 0;
  transform: rotate(1.2deg);
}

.phoneCard--bottom {
  left: 0;
  bottom: 0;
  transform: rotate(-1.4deg);
  opacity: 0.96;
}

.phoneCard__label {
  padding: 16px 16px 0;
  font-family: var(--fontDisplay);
  font-weight: 800;
  font-size: 12px;
  color: rgba(11, 18, 32, 0.52);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.phoneCard__title {
  padding: 6px 16px 0;
  font-family: var(--fontDisplay);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.phoneCard__meta {
  padding: 6px 16px 12px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(11, 18, 32, 0.60);
  font-size: 13px;
  font-weight: 600;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.dot--live {
  background: radial-gradient(circle at 30% 30%, #34d399, #16a34a);
  box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.14);
}

.phoneCard__shot img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.03) contrast(1.02);
}

.hero__note {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 44px rgba(2, 8, 23, 0.08);
  padding: 14px 14px;
}

.hero__noteTitle {
  font-family: var(--fontDisplay);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero__noteBody {
  margin-top: 8px;
  color: rgba(11, 18, 32, 0.72);
  font-size: 14px;
}

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

.logoStrip {
  margin-top: 14px;
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 34px rgba(2, 8, 23, 0.06);
  overflow: hidden;
  padding: 22px 0;
}

.logoStrip__track {
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  flex-wrap: wrap;
}

.logoStrip__item {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
  filter: saturate(1.02) contrast(1.02);
}

.logoStrip__item img {
  height: 84px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logoStrip__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  pointer-events: none;
}

.logoStrip__fade--l {
  left: 0;
  background: linear-gradient(90deg, rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0));
}

.logoStrip__fade--r {
  right: 0;
  background: linear-gradient(270deg, rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0));
}

.stat {
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.62);
  padding: 14px 14px;
  box-shadow: 0 14px 34px rgba(2, 8, 23, 0.06);
}

.stat__value {
  font-family: var(--fontDisplay);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.stat__label {
  margin-top: 6px;
  color: rgba(11, 18, 32, 0.62);
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: 72px 0;
}

.section--tight {
  padding: 62px 0;
}

.sectionHead {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.h2 {
  font-family: var(--fontDisplay);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin: 0;
}

.h3 {
  font-family: var(--fontDisplay);
  font-size: 18px;
  margin: 0;
  letter-spacing: -0.03em;
}

.sub {
  margin: 0;
  color: rgba(11, 18, 32, 0.70);
  font-size: 15px;
  max-width: 75ch;
}

.muted {
  margin: 0;
  color: rgba(11, 18, 32, 0.66);
  font-size: 14px;
}

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

.agentCard {
  border-radius: 22px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: var(--shadow);
  padding: 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 160ms ease, box-shadow 180ms ease, background 180ms ease;
}

.agents .agentCard:nth-child(4n + 1) {
  background:
    radial-gradient(circle at 12% 10%, rgba(37, 99, 235, 0.10), transparent 55%),
    rgba(255, 255, 255, 0.72);
}

.agents .agentCard:nth-child(4n + 2) {
  background:
    radial-gradient(circle at 12% 10%, rgba(124, 58, 237, 0.10), transparent 55%),
    rgba(255, 255, 255, 0.72);
}

.agents .agentCard:nth-child(4n + 3) {
  background:
    radial-gradient(circle at 12% 10%, rgba(16, 185, 129, 0.10), transparent 55%),
    rgba(255, 255, 255, 0.72);
}

.agents .agentCard:nth-child(4n) {
  background:
    radial-gradient(circle at 12% 10%, rgba(245, 158, 11, 0.10), transparent 55%),
    rgba(255, 255, 255, 0.72);
}

.agentCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(2, 8, 23, 0.14);
  background: rgba(255, 255, 255, 0.82);
}

.agentCard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.agentBadge {
  font-family: var(--fontDisplay);
  font-weight: 900;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.08);
  color: rgba(37, 99, 235, 0.92);
}

.agentBadge--alt {
  border-color: rgba(124, 58, 237, 0.18);
  background: rgba(124, 58, 237, 0.08);
  color: rgba(124, 58, 237, 0.92);
}

.agentBadge--ghost {
  border-color: rgba(11, 18, 32, 0.14);
  background: rgba(11, 18, 32, 0.05);
  color: rgba(11, 18, 32, 0.70);
}

.agentCard__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(11, 18, 32, 0.60);
  font-size: 13px;
  font-weight: 700;
}

.agentCard__desc {
  margin: 0;
  color: rgba(11, 18, 32, 0.68);
  font-size: 14px;
}

.agentCard__shot {
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  overflow: hidden;
  background: rgba(2, 8, 23, 0.06);
}

.agentCard__shot img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center top;
}

.agentCard__actions {
  display: flex;
  gap: 10px;
  margin-top: 2px;
  flex-wrap: wrap;
  justify-content: center;
}

.agentDirect {
  display: none;
}

.onlyMobile {
  display: none !important;
}

.onlyDesktop {
  display: inline-flex;
}

.agentCard--placeholder {
  background: rgba(255, 255, 255, 0.60);
}

.placeholder {
  border-radius: 18px;
  border: 1px dashed rgba(11, 18, 32, 0.18);
  background: rgba(255, 255, 255, 0.45);
  padding: 18px 14px;
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 250px;
  gap: 8px;
}

.placeholder__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: var(--fontDisplay);
  font-weight: 900;
  font-size: 20px;
  border: 1px solid rgba(11, 18, 32, 0.14);
  background: rgba(255, 255, 255, 0.60);
}

.placeholder__text {
  color: rgba(11, 18, 32, 0.62);
  font-size: 13.5px;
  font-weight: 650;
}

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

.logos {
  margin: 12px 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logoChip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(2, 8, 23, 0.06);
}

.logoChip__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62));
  color: rgba(37, 99, 235, 0.92);
}

.logoChip:nth-child(2) .logoChip__icon {
  color: rgba(245, 158, 11, 0.92);
}

.logoChip:nth-child(3) .logoChip__icon {
  color: rgba(11, 18, 32, 0.88);
}

.logoChip:nth-child(4) .logoChip__icon {
  color: rgba(124, 58, 237, 0.92);
}

.logoChip:nth-child(5) .logoChip__icon {
  color: rgba(239, 68, 68, 0.92);
}

.logoChip__icon svg {
  width: 18px;
  height: 18px;
}

.logoChip__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.logoChip__text {
  font-family: var(--fontDisplay);
  font-weight: 900;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.72);
}

.feature {
  border-radius: 22px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  padding: 16px 16px;
  display: grid;
  gap: 10px;
}

.grid2 .feature:nth-child(6n + 1) {
  background:
    radial-gradient(circle at 12% 10%, rgba(37, 99, 235, 0.10), transparent 55%),
    rgba(255, 255, 255, 0.68);
}
.grid2 .feature:nth-child(6n + 2) {
  background:
    radial-gradient(circle at 12% 10%, rgba(124, 58, 237, 0.10), transparent 55%),
    rgba(255, 255, 255, 0.68);
}
.grid2 .feature:nth-child(6n + 3) {
  background:
    radial-gradient(circle at 12% 10%, rgba(16, 185, 129, 0.10), transparent 55%),
    rgba(255, 255, 255, 0.68);
}
.grid2 .feature:nth-child(6n + 4) {
  background:
    radial-gradient(circle at 12% 10%, rgba(245, 158, 11, 0.10), transparent 55%),
    rgba(255, 255, 255, 0.68);
}
.grid2 .feature:nth-child(6n + 5) {
  background:
    radial-gradient(circle at 12% 10%, rgba(239, 68, 68, 0.10), transparent 55%),
    rgba(255, 255, 255, 0.68);
}
.grid2 .feature:nth-child(6n) {
  background:
    radial-gradient(circle at 12% 10%, rgba(59, 130, 246, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.68);
}

.feature__icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62));
  box-shadow: 0 16px 36px rgba(2, 8, 23, 0.08);
  color: rgba(37, 99, 235, 0.92);
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.callout {
  margin-top: 18px;
  border-radius: 24px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background:
    radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.12), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 74px rgba(2, 8, 23, 0.12);
  padding: 18px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.callout__title {
  font-family: var(--fontDisplay);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.callout__body {
  margin-top: 8px;
  color: rgba(11, 18, 32, 0.70);
  font-size: 14px;
  max-width: 75ch;
}

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

.arch {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.arch__card {
  border-radius: 24px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: var(--shadow);
  padding: 18px 18px;
}

.arch__card--alt {
  background:
    radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.10), transparent 55%),
    rgba(255, 255, 255, 0.70);
}

.arch__kicker {
  font-family: var(--fontDisplay);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, 0.55);
}

.arch__title {
  font-family: var(--fontDisplay);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.04em;
  margin-top: 10px;
}

.arch__list {
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  color: rgba(11, 18, 32, 0.70);
  font-size: 14px;
}

.arch__mid {
  display: grid;
  gap: 10px;
  align-items: center;
  justify-items: center;
  padding: 0 6px;
}

.arch__wire {
  width: 70px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.24), rgba(124, 58, 237, 0.24));
  border: 1px solid rgba(11, 18, 32, 0.10);
  box-shadow: 0 12px 30px rgba(2, 8, 23, 0.06);
}

.timeline {
  margin-top: 18px;
  border-radius: 24px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  padding: 18px 18px;
}

.timeline__head {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.step {
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.62);
  padding: 12px 12px;
}

.step__num {
  font-family: var(--fontDisplay);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.step__body {
  margin-top: 8px;
  color: rgba(11, 18, 32, 0.70);
  font-size: 13.5px;
}

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

.tier {
  border-radius: 24px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  padding: 18px 18px;
}

.tier--a {
  background:
    radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.10), transparent 55%),
    rgba(255, 255, 255, 0.72);
}

.tier--b {
  background:
    radial-gradient(circle at 15% 10%, rgba(124, 58, 237, 0.10), transparent 55%),
    rgba(255, 255, 255, 0.72);
}

.tier--c {
  background:
    radial-gradient(circle at 15% 10%, rgba(16, 185, 129, 0.10), transparent 55%),
    rgba(255, 255, 255, 0.72);
}

.tier__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.tier__name {
  font-family: var(--fontDisplay);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.tier__tag {
  font-family: var(--fontDisplay);
  font-weight: 900;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: rgba(255, 255, 255, 0.56);
  color: rgba(11, 18, 32, 0.72);
}

.tier__lead {
  margin-top: 12px;
  color: rgba(11, 18, 32, 0.72);
  font-size: 14px;
}

.tier__list {
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  color: rgba(11, 18, 32, 0.70);
  font-size: 14px;
}

.cta {
  padding: 74px 0 82px;
}

.cta__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  align-items: stretch;
}

.cta__copy {
  border-radius: 26px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background:
    radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.12), transparent 58%),
    radial-gradient(circle at 85% 30%, rgba(124, 58, 237, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow2);
  padding: 22px 22px;
}

.cta__actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta__fine {
  margin-top: 14px;
  color: rgba(11, 18, 32, 0.54);
  font-size: 12.5px;
  font-weight: 600;
}

.cta__panel {
  border-radius: 26px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow2);
  padding: 18px 18px;
  display: grid;
  align-content: center;
}

.cta__panel {
  background:
    radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.10), transparent 55%),
    radial-gradient(circle at 85% 30%, rgba(124, 58, 237, 0.10), transparent 55%),
    rgba(255, 255, 255, 0.72);
}

.impact {
  display: grid;
  gap: 12px;
}

.impact__row {
  display: grid;
  grid-template-columns: 140px 1fr 120px;
  gap: 10px;
  align-items: center;
}

.impact__label {
  font-family: var(--fontDisplay);
  font-weight: 900;
  color: rgba(11, 18, 32, 0.72);
  font-size: 13px;
}

.impact__bar {
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(11, 18, 32, 0.05);
  overflow: hidden;
}

.impact__bar span {
  display: block;
  height: 100%;
  width: 70%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.85), rgba(124, 58, 237, 0.85));
}

.impact__value {
  text-align: right;
  font-weight: 800;
  font-family: var(--fontDisplay);
  color: rgba(11, 18, 32, 0.66);
  font-size: 13px;
}

.footer {
  border-top: 1px solid rgba(11, 18, 32, 0.10);
  padding: 22px 0 30px;
  background: rgba(248, 250, 252, 0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.footer__muted {
  color: rgba(11, 18, 32, 0.62);
  font-size: 13px;
  margin-top: 8px;
  max-width: 58ch;
}

.footer__right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__link {
  font-family: var(--fontDisplay);
  font-weight: 900;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.72);
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.60);
}

.footer__link:hover {
  background: rgba(11, 18, 32, 0.06);
}

/* Try page */
.tryBody {
  overflow-x: hidden;
}

.tryHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(248, 250, 252, 0.68);
  border-bottom: 1px solid rgba(11, 18, 32, 0.08);
}

.tryHeader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

.tryHeader__meta {
  display: grid;
  gap: 2px;
  text-align: center;
}

.tryHeader__title {
  font-family: var(--fontDisplay);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.tryHeader__sub {
  color: rgba(11, 18, 32, 0.62);
  font-size: 13px;
  font-weight: 650;
}

.tryHeader__actions {
  display: flex;
  gap: 10px;
}

.tryMain {
  padding: 26px 0 60px;
}

.tryBody--minimal .tryHeader {
  display: none;
}

.tryBody--minimal .tryMain {
  padding: 0;
}

.tryBody--minimal .tryGrid {
  grid-template-columns: 1fr;
  gap: 0;
}

.tryBody--minimal .tryPanel {
  display: none;
}

.tryBody--minimal .tryPhoneHint {
  display: none;
}

.tryBody--minimal .tryPhoneWrap {
  padding: 0;
}

.tryBody--minimal .tryPhone {
  width: min(420px, 100vw);
  border-radius: 42px;
  padding: 12px;
  margin: 0 auto;
  box-shadow: 0 34px 92px rgba(2, 8, 23, 0.18);
}

.tryBody--minimal .tryPhone__screen {
  height: calc(100vh - 24px);
}

.tryGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  align-items: start;
}

.tryPhoneWrap {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.tryPhone {
  width: min(420px, 100%);
  border-radius: 42px;
  border: 1px solid rgba(11, 18, 32, 0.14);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 34px 92px rgba(2, 8, 23, 0.18);
  padding: 14px;
  position: relative;
}

.tryPhone__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 26px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.10);
  border: 1px solid rgba(11, 18, 32, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.tryPhone__screen {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: rgba(2, 8, 23, 0.08);
  height: min(820px, calc(100vh - 180px));
  position: relative;
}

.tryPhone__topBar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.80);
  font-weight: 750;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 8, 23, 0.55), transparent 85%);
}

.tryPhone__icons {
  width: 64px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.20);
}

.tryPhone__iframe {
  position: absolute;
  inset: 0;
  /* Some embedded apps aren’t perfectly responsive; a tiny scale helps them “fit” like a handset. */
  --embedScale: 0.94;
  transform: scale(var(--embedScale));
  transform-origin: top left;
  width: calc(100% / var(--embedScale));
  height: calc(100% / var(--embedScale));
  border: 0;
  background: #0b1220;
}

.tryPhone__loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  padding: 18px;
  z-index: 6;
  background:
    radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.22), transparent 60%),
    radial-gradient(circle at 40% 60%, rgba(124, 58, 237, 0.18), transparent 60%),
    rgba(2, 8, 23, 0.70);
  color: rgba(255, 255, 255, 0.88);
}

.spinner {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.20);
  border-top-color: rgba(255, 255, 255, 0.78);
  animation: spin 900ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.tryPhone__loadingText {
  font-family: var(--fontDisplay);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.tryPhone__loadingSub {
  color: rgba(255, 255, 255, 0.70);
  font-size: 13px;
  font-weight: 650;
}

.tryPhoneHint {
  color: rgba(11, 18, 32, 0.64);
  font-size: 13px;
  font-weight: 650;
}

.tryPanel {
  display: grid;
  gap: 14px;
}

.tryPanel__card {
  border-radius: 26px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  padding: 18px;
}

.tryPanel__card--mini {
  background: rgba(255, 255, 255, 0.62);
}

.tryPanel__kicker {
  font-family: var(--fontDisplay);
  font-weight: 950;
  letter-spacing: -0.04em;
  color: rgba(11, 18, 32, 0.66);
  font-size: 13px;
}

.tryPanel__name {
  margin: 10px 0 8px;
  font-family: var(--fontDisplay);
  font-weight: 950;
  letter-spacing: -0.05em;
  font-size: 30px;
  line-height: 1.05;
}

.tryPanel__desc {
  margin: 0;
  color: rgba(11, 18, 32, 0.70);
  font-size: 14.5px;
}

.tryPanel__row {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(11, 18, 32, 0.10);
  padding-top: 12px;
}

.tryPanel__label {
  font-family: var(--fontDisplay);
  font-weight: 950;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.62);
}

.tryPanel__link {
  font-weight: 850;
  font-family: var(--fontDisplay);
  color: rgba(37, 99, 235, 0.92);
  max-width: 56%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: right;
}

.tryPanel__buttons {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tryPanel__miniText {
  margin-top: 8px;
  color: rgba(11, 18, 32, 0.68);
  font-size: 13.5px;
}

/* Desktop preview page */
.desktopMain {
  padding: 26px 0 64px;
}

.desktopFrameWrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 14px;
  align-items: start;
}

.desktopFrame {
  border-radius: 26px;
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 34px 92px rgba(2, 8, 23, 0.16);
  overflow: hidden;
  position: relative;
  min-height: min(820px, calc(100vh - 160px));
}

.desktopFrame__bar {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: rgba(248, 250, 252, 0.80);
  border-bottom: 1px solid rgba(11, 18, 32, 0.10);
}

.desktopDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.18);
}

.desktopUrlPill {
  margin-left: 8px;
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.62);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(11, 18, 32, 0.70);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktopFrame__iframe {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 52px;
  width: 100%;
  height: calc(100% - 52px);
  border: 0;
  background: #0b1220;
}

.desktopLoading {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 52px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  padding: 18px;
  z-index: 6;
  background:
    radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.18), transparent 60%),
    radial-gradient(circle at 40% 60%, rgba(124, 58, 237, 0.16), transparent 60%),
    rgba(2, 8, 23, 0.55);
  color: rgba(255, 255, 255, 0.90);
}

.desktopLoading__title {
  font-family: var(--fontDisplay);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.desktopLoading__sub {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 650;
}

.desktopLoading__actions {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.desktopMeta {
  display: grid;
  gap: 14px;
}

.desktopMeta__card {
  border-radius: 26px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  padding: 18px;
}

.desktopMeta__kicker {
  font-family: var(--fontDisplay);
  font-weight: 950;
  letter-spacing: -0.04em;
  color: rgba(11, 18, 32, 0.66);
  font-size: 13px;
}

.desktopMeta__name {
  margin-top: 10px;
  font-family: var(--fontDisplay);
  font-weight: 950;
  letter-spacing: -0.05em;
  font-size: 22px;
}

.desktopMeta__desc {
  margin-top: 8px;
  color: rgba(11, 18, 32, 0.70);
  font-size: 14px;
}

.desktopMeta__row {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(11, 18, 32, 0.10);
  padding-top: 12px;
}

.desktopMeta__label {
  font-family: var(--fontDisplay);
  font-weight: 950;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.62);
}

.desktopMeta__link {
  font-weight: 850;
  font-family: var(--fontDisplay);
  color: rgba(37, 99, 235, 0.92);
  max-width: 66%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: right;
}

/* Responsive */
@media (max-width: 1040px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .phoneStack {
    min-height: 620px;
  }
  .phoneCard--top {
    right: auto;
    left: 0;
  }
  .phoneCard--bottom {
    left: auto;
    right: 0;
  }
  .agents {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta__inner {
    grid-template-columns: 1fr;
  }
  .tryGrid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .nav,
  .header__cta {
    display: none;
  }
  .hamburger {
    display: inline-block;
  }
  .trust {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
  .arch {
    grid-template-columns: 1fr;
  }
  .arch__mid {
    display: none;
  }
  .tiers {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .impact__row {
    grid-template-columns: 120px 1fr 110px;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .tryHeader__meta {
    display: none;
  }

  /* Mobile UX: use a single “Open preview” button (direct to the live app). */
  .agentDirect {
    display: inline-flex;
  }

  .onlyMobile {
    display: inline-flex !important;
  }

  .onlyDesktop {
    display: none !important;
  }
}

/* Touch devices: always show ONE “Open preview” button, hide the rest. */
@media (hover: none) and (pointer: coarse) {
  .agentDirect {
    display: inline-flex !important;
  }

  .onlyMobile {
    display: inline-flex !important;
  }

  .onlyDesktop {
    display: none !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}


