:root {
  --ink: #091432;
  --ink-soft: #273557;
  --muted: #66728f;
  --muted-light: #8e98b1;
  --line: #e7eafa;
  --line-strong: #dcdff3;
  --surface: #ffffff;
  --surface-soft: #f7f8fe;
  --surface-lilac: #f5f2ff;
  --primary: #6f46f6;
  --primary-dark: #5330d8;
  --blue: #4a79f5;
  --cyan: #31bed3;
  --green: #1bb985;
  --orange: #ff9c50;
  --gradient: linear-gradient(110deg, #356de5 4%, #704ce9 54%, #137f99 100%);
  --gradient-warm: linear-gradient(110deg, #526ff5, #7a4ff2 52%, #b24fe5);
  --shadow-sm: 0 12px 32px rgba(38, 34, 86, 0.08);
  --shadow-md: 0 24px 70px rgba(50, 38, 110, 0.13);
  --shadow-lg: 0 38px 110px rgba(51, 38, 116, 0.17);
  --shell: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

p,
h1,
h2,
h3,
ul,
ol,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--primary-dark);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(75, 114, 245, 0.45);
  outline-offset: 4px;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  height: 76px;
  border-bottom: 1px solid rgba(226, 228, 243, 0.8);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(170%);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: #fff;
  border-radius: 12px;
  background: var(--gradient-warm);
  box-shadow: 0 8px 20px rgba(105, 70, 240, 0.26);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.brand-mark .brand-spark {
  color: #7656f6;
  fill: #7656f6;
}

.brand-mark circle {
  fill: #7656f6;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 7px;
  letter-spacing: -0.02em;
}

.brand-copy strong {
  font-size: 18px;
  font-weight: 760;
}

.brand-copy small {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: 80px;
}

.site-header nav a,
.login-link {
  position: relative;
  color: #3e4965;
  font-size: 14px;
  font-weight: 560;
  transition: color 0.2s ease;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: 0.2s ease;
}

.site-header nav a:hover,
.login-link:hover {
  color: var(--primary);
}

.site-header nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover {
  transform: translateY(-2px);
}

.button-compact {
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  border-radius: 9px;
  background: var(--primary);
  box-shadow: 0 8px 22px rgba(97, 58, 230, 0.24);
}

.button-compact:hover,
.button-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 14px 32px rgba(90, 53, 220, 0.28);
}

.hero {
  position: relative;
  min-height: 1110px;
  padding: 92px 0 98px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbfaff 54%, #f7f6ff 100%);
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: -220px;
  left: 50%;
  width: 1000px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 89, 246, 0.11), rgba(90, 124, 250, 0.03) 55%, transparent 72%);
  content: "";
  transform: translateX(-50%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: linear-gradient(rgba(102, 91, 190, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(102, 91, 190, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 66%, transparent 90%);
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 66%, transparent 90%);
}

.hero-aurora {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.aurora-one {
  top: 230px;
  left: -180px;
  width: 430px;
  height: 430px;
  background: rgba(50, 196, 216, 0.10);
}

.aurora-two {
  top: 280px;
  right: -160px;
  width: 480px;
  height: 480px;
  background: rgba(135, 78, 241, 0.11);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 14px 8px 10px;
  color: #5b3cd2;
  border: 1px solid #ded7fd;
  border-radius: 999px;
  background: rgba(248, 246, 255, 0.86);
  box-shadow: 0 5px 18px rgba(79, 53, 175, 0.05);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-kicker span {
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(111, 70, 246, 0.14);
}

.hero h1 {
  max-width: 980px;
  color: #080f2d;
  font-size: clamp(48px, 5.6vw, 72px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.hero h1 em {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.hero-lead {
  max-width: 750px;
  margin-top: 26px;
  color: #65708d;
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button-primary {
  min-width: 174px;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 13px 28px rgba(100, 61, 231, 0.25);
}

.button-ghost {
  color: #273352;
  border-color: #dfe2ef;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 7px 22px rgba(25, 30, 72, 0.05);
}

.button-ghost:hover {
  color: var(--primary-dark);
  border-color: #cfc7f7;
  background: #fff;
}

.hero-notes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  color: #647089;
  font-size: 12px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-notes i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8794b0;
}

.hero-product {
  position: relative;
  width: 100%;
  height: 642px;
  margin-top: 62px;
}

.product-shadow {
  position: absolute;
  z-index: 0;
  right: 4%;
  bottom: -24px;
  left: 4%;
  height: 180px;
  border-radius: 50%;
  background: rgba(78, 55, 173, 0.20);
  filter: blur(65px);
}

.desktop-app {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(207, 207, 230, 0.9);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-lg), 0 0 0 9px rgba(255, 255, 255, 0.46);
  text-align: left;
}

.window-bar {
  display: flex;
  height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid #edf0f7;
  background: #fff;
}

.window-brand,
.window-tools,
.member-title,
.member-card,
.conversation-head,
.conversation-actions,
.identity-strip,
.window-search {
  display: flex;
  align-items: center;
}

.window-brand {
  gap: 9px;
  font-size: 12px;
}

.mini-logo {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: var(--gradient-warm);
  font-size: 12px;
  font-weight: 800;
}

.window-search {
  width: 250px;
  height: 34px;
  gap: 8px;
  padding: 0 12px;
  color: #a0a7b8;
  border: 1px solid #eceef5;
  border-radius: 8px;
  background: #f8f9fc;
  font-size: 10px;
}

.window-search svg {
  width: 14px;
  fill: none;
  stroke: #98a0b2;
  stroke-width: 1.5;
}

.window-tools {
  gap: 8px;
  color: #7c8599;
  font-size: 10px;
}

.online-dot,
.member-title small i,
.nav-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25bd88;
  box-shadow: 0 0 0 3px rgba(37, 189, 136, 0.12);
}

.window-tools > i {
  width: 1px;
  height: 18px;
  margin: 0 4px;
  background: #e4e7ef;
}

.window-tools b,
.agent-avatar {
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #4d78ee, #7653ea);
  font-weight: 700;
}

.window-tools b {
  width: 29px;
  height: 29px;
  font-size: 10px;
}

.workspace {
  display: grid;
  height: calc(100% - 66px);
  grid-template-columns: 148px 228px minmax(370px, 1fr) 192px;
  background: #fff;
}

.workspace-nav {
  position: relative;
  padding: 22px 14px;
  color: #8d95a9;
  border-right: 1px solid #eef0f6;
  background: #f8f9fd;
}

.nav-caption {
  display: block;
  margin: 0 10px 10px;
  color: #a5abba;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-caption.nav-spacer {
  margin-top: 26px;
}

.nav-item {
  position: relative;
  display: flex;
  height: 38px;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
}

.nav-item.active {
  color: #5e42d9;
  background: #ede9ff;
}

.nav-item b {
  display: grid;
  width: 17px;
  height: 17px;
  margin-left: auto;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #7353ec;
  font-size: 8px;
}

.nav-icon {
  position: relative;
  width: 13px;
  height: 13px;
  opacity: 0.8;
}

.nav-icon::before,
.nav-icon::after {
  position: absolute;
  content: "";
}

.nav-icon.bubbles::before {
  inset: 1px;
  border: 1.4px solid currentColor;
  border-radius: 4px;
}

.nav-icon.clock::before {
  inset: 1px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

.nav-icon.clock::after {
  top: 3px;
  left: 6px;
  width: 3px;
  height: 4px;
  border-bottom: 1.3px solid currentColor;
  border-left: 1.3px solid currentColor;
}

.nav-icon.chart::before {
  inset: 1px;
  border-bottom: 1.3px solid currentColor;
  border-left: 1.3px solid currentColor;
}

.nav-icon.chart::after {
  top: 3px;
  left: 3px;
  width: 8px;
  height: 6px;
  border-top: 1.3px solid currentColor;
  transform: skewY(-30deg);
}

.nav-icon.team::before {
  top: 1px;
  left: 3px;
  width: 6px;
  height: 6px;
  border: 1.3px solid currentColor;
  border-radius: 50%;
}

.nav-icon.team::after {
  bottom: 0;
  left: 1px;
  width: 11px;
  height: 5px;
  border: 1.3px solid currentColor;
  border-radius: 7px 7px 2px 2px;
}

.nav-status {
  position: absolute;
  right: 13px;
  bottom: 17px;
  left: 13px;
  padding: 11px;
  border: 1px solid #e9eaf2;
  border-radius: 9px;
  background: #fff;
}

.nav-status span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8e96a9;
  font-size: 8px;
}

.nav-status strong {
  display: block;
  margin-top: 4px;
  color: #343d55;
  font-size: 10px;
}

.session-column {
  border-right: 1px solid #eef0f6;
  background: #fff;
}

.column-title {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid #eff1f6;
}

.column-title div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.column-title strong {
  font-size: 12px;
}

.column-title span,
.column-title > i {
  color: #929bad;
  font-size: 8px;
  font-style: normal;
}

.queue-tabs {
  display: flex;
  height: 42px;
  align-items: stretch;
  border-bottom: 1px solid #eff1f6;
}

.queue-tabs span {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #9299aa;
  font-size: 8px;
  font-weight: 600;
}

.queue-tabs span.active {
  color: #6646df;
}

.queue-tabs span.active::after {
  position: absolute;
  right: 14px;
  bottom: 0;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background: #704bee;
  content: "";
}

.queue-tabs b {
  font-size: 8px;
}

.session {
  position: relative;
  display: grid;
  min-height: 88px;
  align-items: start;
  padding: 14px 12px;
  border-bottom: 1px solid #f2f3f8;
  grid-template-columns: 32px 1fr;
  gap: 9px;
}

.session.active {
  background: #f4f1ff;
}

.session.active::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: #704aed;
  content: "";
}

.member-avatar {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 750;
}

.member-avatar.purple {
  background: linear-gradient(135deg, #8062ee, #aa85f2);
}

.member-avatar.blue {
  background: linear-gradient(135deg, #5592f2, #71b8ef);
}

.member-avatar.orange {
  background: linear-gradient(135deg, #ff9d61, #ffc36d);
}

.member-avatar.cyan {
  background: linear-gradient(135deg, #37b7c7, #6dd4cc);
}

.session > div > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.session strong {
  color: #26314b;
  font-size: 9px;
}

.session time {
  color: #a1a8b7;
  font-size: 7px;
}

.session p {
  overflow: hidden;
  margin-top: 7px;
  color: #687189;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.session small {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  color: #9ba2b2;
  font-size: 7px;
}

.session small i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #36bd8b;
}

.muted-session {
  opacity: 0.7;
}

.conversation {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #f9fafe;
}

.conversation-head {
  height: 64px;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #eef0f6;
  background: #fff;
}

.member-title {
  gap: 9px;
}

.member-title p {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.member-title strong {
  color: #252f49;
  font-size: 10px;
}

.member-title small {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #9098aa;
  font-size: 7px;
}

.conversation-actions {
  gap: 7px;
}

.conversation-actions span {
  padding: 6px 8px;
  color: #68738b;
  border: 1px solid #e5e7ef;
  border-radius: 6px;
  background: #fff;
  font-size: 7px;
}

.conversation-actions i {
  color: #969dae;
  font-size: 8px;
  font-style: normal;
}

.identity-strip {
  height: 34px;
  justify-content: space-between;
  padding: 0 17px;
  color: #5f5b92;
  border-bottom: 1px solid #e9e7f4;
  background: #f0eefb;
  font-size: 7px;
}

.identity-strip span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.identity-strip svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #6b52db;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.identity-strip small {
  color: #8583a5;
  font-size: 7px;
}

.message-area {
  flex: 1;
  padding: 20px 18px;
}

.chat-time {
  display: block;
  margin-bottom: 18px;
  color: #a2a8b6;
  font-size: 7px;
  text-align: center;
}

.message-row {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 14px;
}

.member-avatar.small,
.agent-avatar {
  width: 25px;
  height: 25px;
  border-radius: 8px;
  font-size: 8px;
}

.message-row > div {
  max-width: 74%;
}

.message-row p {
  padding: 10px 11px;
  color: #46516a;
  border: 1px solid #e8eaf1;
  border-radius: 4px 10px 10px 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(37, 40, 75, 0.03);
  font-size: 8px;
  line-height: 1.65;
}

.message-row time {
  display: block;
  margin-top: 4px;
  color: #a1a8b7;
  font-size: 6px;
}

.message-row.outgoing {
  justify-content: flex-end;
}

.message-row.outgoing p {
  color: #fff;
  border-color: #7352e6;
  border-radius: 10px 4px 10px 10px;
  background: linear-gradient(135deg, #6b4ce2, #7657ec);
}

.message-row.outgoing time {
  text-align: right;
}

.typing {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: 32px;
  color: #a0a7b6;
  font-size: 6px;
}

.typing i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #a9afbc;
}

.typing span {
  margin-left: 3px;
}

.composer-area {
  min-height: 118px;
  padding: 11px 14px;
  border-top: 1px solid #e8eaf1;
  background: #fff;
}

.composer-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #768097;
  font-size: 10px;
}

.composer-tools small {
  margin-left: auto;
  color: #6f51de;
  font-size: 7px;
}

.composer-area > p {
  margin-top: 14px;
  color: #b0b6c3;
  font-size: 8px;
}

.composer-area > div:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 15px;
}

.composer-area > div:last-child span {
  color: #a4aab8;
  font-size: 6px;
}

.composer-area > div:last-child b {
  padding: 6px 12px;
  color: #fff;
  border-radius: 6px;
  background: #6e4de6;
  font-size: 7px;
}

.member-panel {
  padding: 20px 15px;
  border-left: 1px solid #edf0f6;
  background: #fff;
}

.member-card {
  flex-direction: column;
  padding-bottom: 18px;
  border-bottom: 1px solid #eff1f6;
}

.member-avatar.large {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 14px;
}

.member-card strong {
  margin-top: 9px;
  font-size: 10px;
}

.member-card small {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  color: #6bb392;
  font-size: 7px;
}

.member-card small i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #27ba83;
}

.member-panel dl {
  padding: 14px 0;
  border-bottom: 1px solid #eff1f6;
}

.member-panel dl div {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 7px;
}

.member-panel dt {
  color: #9aa1b0;
}

.member-panel dd {
  color: #545d71;
  font-weight: 600;
}

.panel-section {
  padding-top: 14px;
}

.panel-section > strong {
  color: #5a6275;
  font-size: 8px;
}

.panel-section > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
}

.panel-section > div span,
.panel-section button {
  padding: 5px 7px;
  color: #7056d0;
  border: 1px solid #e3dcfb;
  border-radius: 5px;
  background: #f6f3ff;
  font-size: 6px;
}

.panel-section button {
  padding-inline: 6px;
}

.panel-section.note p {
  margin-top: 8px;
  padding: 8px;
  color: #959cac;
  border-radius: 6px;
  background: #f7f8fb;
  font-size: 6px;
  line-height: 1.6;
}

.float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid rgba(224, 223, 239, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(48, 39, 104, 0.15);
  backdrop-filter: blur(12px);
  text-align: left;
}

.identity-card {
  top: 90px;
  right: -46px;
  width: 218px;
}

.assign-card {
  bottom: 70px;
  left: -52px;
  width: 224px;
}

.float-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
}

.float-icon.shield {
  color: #6747dc;
  background: #eeeaff;
}

.float-icon.shield svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.float-card p {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  margin-left: 11px;
}

.float-card small {
  color: #8f97aa;
  font-size: 9px;
}

.float-card strong {
  color: #303a54;
  font-size: 11px;
}

.float-card .verified {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #23b886;
  font-size: 10px;
  font-style: normal;
}

.float-icon.route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: #eaf4ff;
}

.float-icon.route i {
  width: 8px;
  height: 8px;
  border: 2px solid #5688ed;
  border-radius: 50%;
}

.float-icon.route i:nth-child(2) {
  width: 4px;
  height: 2px;
  border: 0;
  border-radius: 0;
  background: #82a8ef;
}

.assign-card > b {
  color: #9ba2b1;
  font-size: 8px;
  font-weight: 500;
}

.trust-band {
  position: relative;
  z-index: 5;
  border-top: 1px solid #e7e8f2;
  border-bottom: 1px solid #e7e8f2;
  background: #fff;
}

.trust-grid {
  display: grid;
  min-height: 130px;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 15px;
  padding: 0 28px;
  border-right: 1px solid #eceef4;
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-number {
  min-width: 60px;
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 20px;
  font-weight: 820;
  letter-spacing: -0.04em;
}

.trust-grid p {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.trust-grid strong {
  color: #2e3852;
  font-size: 13px;
}

.trust-grid small {
  color: #67748b;
  font-size: 10px;
}

.section {
  padding: 126px 0;
}

.section-heading {
  max-width: 670px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: #6a49e0;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.05em;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.eyebrow span {
  display: inline-flex;
  padding: 6px 9px;
  color: #6645dc;
  border-radius: 7px;
  background: #eee9ff;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.section-heading h2,
.product-copy h2 {
  color: #101938;
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.22;
}

.section-heading > p:last-child {
  margin-top: 22px;
  color: #64718a;
  font-size: 16px;
  line-height: 1.8;
}

.product-intro {
  padding-bottom: 80px;
}

.journey-line {
  display: flex;
  max-width: 1020px;
  align-items: center;
  justify-content: center;
  margin: 70px auto 0;
}

.journey-line > div {
  display: flex;
  min-width: 168px;
  align-items: center;
  gap: 12px;
}

.journey-line > div > span {
  color: #c7c3e8;
  font-size: 26px;
  font-weight: 750;
  letter-spacing: -0.06em;
}

.journey-line p {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.journey-line strong {
  color: #303a56;
  font-size: 13px;
}

.journey-line small {
  color: #6e7a91;
  font-size: 10px;
}

.journey-line > i {
  width: 46px;
  height: 1px;
  margin: 0 15px;
  background: linear-gradient(90deg, #d9daf0, #c7bff3);
}

.product-section {
  overflow: hidden;
}

.member-experience {
  padding-top: 105px;
}

.agent-experience {
  background: #f7f8fe;
}

.admin-experience {
  background: #fff;
}

.split-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.83fr) minmax(0, 1.17fr);
  gap: 92px;
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
}

.product-copy .eyebrow {
  margin-bottom: 22px;
}

.product-copy h2 {
  font-size: clamp(36px, 3.8vw, 48px);
}

.copy-lead {
  margin-top: 24px;
  color: #697690;
  font-size: 15px;
  line-height: 1.9;
}

.check-list {
  display: grid;
  gap: 21px;
  margin-top: 35px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-list li > span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  margin-top: 1px;
  place-items: center;
  color: #6946e2;
  border-radius: 50%;
  background: #eee9ff;
  font-size: 12px;
  font-weight: 800;
}

.check-list li div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.check-list strong {
  color: #303a56;
  font-size: 14px;
}

.check-list small {
  color: #68758d;
  font-size: 12px;
  line-height: 1.65;
}

.member-visual,
.agent-visual,
.admin-visual {
  position: relative;
  min-width: 0;
}

.member-visual {
  height: 620px;
}

.visual-glow {
  position: absolute;
  inset: 70px 20px 50px 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(100, 94, 242, 0.25), rgba(57, 192, 211, 0.18));
  filter: blur(45px);
}

.browser-frame {
  position: absolute;
  top: 50px;
  right: 5px;
  width: 570px;
  height: 430px;
  overflow: hidden;
  border: 1px solid #dedfee;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.browser-top {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border-bottom: 1px solid #eceef3;
  background: #f8f9fc;
}

.browser-top > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff846e;
}

.browser-top > i:nth-child(2) {
  background: #ffc259;
}

.browser-top > i:nth-child(3) {
  background: #5ed79a;
}

.browser-top p {
  display: flex;
  width: 250px;
  height: 24px;
  align-items: center;
  gap: 7px;
  margin-left: 18px;
  padding: 0 10px;
  color: #a0a7b8;
  border-radius: 6px;
  background: #fff;
  font-size: 8px;
}

.site-placeholder {
  position: relative;
  height: calc(100% - 42px);
  padding: 20px 25px;
  background: linear-gradient(145deg, #fafbfe, #f3f5fa);
}

.placeholder-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.placeholder-nav span {
  width: 80px;
  height: 17px;
  margin-right: auto;
  border-radius: 5px;
  background: #dddff0;
}

.placeholder-nav i {
  width: 38px;
  height: 7px;
  border-radius: 4px;
  background: #e2e4ee;
}

.placeholder-copy {
  display: flex;
  width: 260px;
  flex-direction: column;
  gap: 12px;
  margin: 80px 0 0 25px;
}

.placeholder-copy span {
  height: 13px;
  border-radius: 6px;
  background: #e1e4ef;
}

.placeholder-copy span:first-child {
  width: 84%;
  height: 28px;
  background: #d9dced;
}

.placeholder-copy span:last-child {
  width: 67%;
}

.chat-widget {
  position: absolute;
  right: 18px;
  bottom: 0;
  width: 266px;
  height: 348px;
  overflow: hidden;
  border: 1px solid #e1e2ed;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: #f7f8fc;
  box-shadow: 0 15px 40px rgba(47, 42, 98, 0.14);
}

.chat-widget header {
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  color: #fff;
  background: linear-gradient(110deg, #6446dc, #7456eb);
}

.chat-widget header > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-widget header .mini-logo {
  color: #6f50e2;
  background: #fff;
}

.chat-widget header p {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chat-widget header strong {
  font-size: 10px;
}

.chat-widget header small {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 7px;
}

.chat-widget header small i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6cf0b7;
}

.chat-widget header > div:last-child {
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.widget-notice {
  padding: 12px 0 9px;
  color: #a4a9b8;
  font-size: 6px;
  text-align: center;
}

.widget-message {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 0 11px 10px;
}

.widget-message .agent-avatar {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  font-size: 7px;
}

.widget-message p {
  max-width: 178px;
  padding: 8px 9px;
  color: #59637a;
  border-radius: 3px 9px 9px 9px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(42, 45, 79, 0.05);
  font-size: 7px;
  line-height: 1.6;
}

.widget-message.self {
  justify-content: flex-end;
}

.widget-message.self p {
  color: #fff;
  border-radius: 9px 3px 9px 9px;
  background: #7151e6;
}

.widget-read {
  display: block;
  margin: -7px 13px 10px 0;
  color: #9fa5b3;
  font-size: 6px;
  text-align: right;
}

.widget-input {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 63px;
  padding: 8px 10px;
  border-top: 1px solid #e6e8ef;
  background: #fff;
}

.widget-input > div {
  display: flex;
  gap: 10px;
  color: #7e879a;
  font-size: 9px;
}

.widget-input p {
  margin-top: 8px;
  color: #afb4c0;
  font-size: 7px;
}

.widget-input b {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #7151e5;
  font-size: 12px;
}

.phone-frame {
  position: absolute;
  z-index: 3;
  right: -24px;
  bottom: 15px;
  width: 208px;
  height: 426px;
  overflow: hidden;
  border: 7px solid #17192b;
  border-radius: 32px;
  background: #f8f9fc;
  box-shadow: 0 30px 65px rgba(38, 35, 79, 0.23);
}

.phone-notch {
  position: absolute;
  z-index: 3;
  top: 6px;
  left: 50%;
  width: 72px;
  height: 18px;
  border-radius: 12px;
  background: #17192b;
  transform: translateX(-50%);
}

.phone-frame header {
  display: flex;
  height: 72px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 13px 12px;
  color: #fff;
  background: linear-gradient(110deg, #6243d9, #7657ec);
}

.phone-frame header > span {
  font-size: 15px;
}

.phone-frame header p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.phone-frame header strong {
  font-size: 10px;
}

.phone-frame header small {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,.75);
  font-size: 6px;
}

.phone-frame header small i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #65eeb2;
}

.phone-chat {
  padding: 12px 9px;
}

.phone-chat > time {
  display: block;
  color: #adb2be;
  font-size: 6px;
  text-align: center;
}

.phone-msg {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-top: 14px;
}

.phone-msg > span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  border-radius: 6px;
  background: #7252e5;
  font-size: 6px;
}

.phone-msg p {
  padding: 7px 8px;
  color: #59637a;
  border-radius: 3px 8px 8px 8px;
  background: #fff;
  font-size: 6px;
  line-height: 1.6;
}

.phone-msg.self {
  justify-content: flex-end;
}

.phone-msg.self p {
  color: #fff;
  border-radius: 8px 3px 8px 8px;
  background: #7151e5;
}

.phone-chat > small {
  display: block;
  margin-top: 4px;
  color: #a8aebb;
  font-size: 5px;
  text-align: right;
}

.phone-input {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 54px;
  align-items: flex-start;
  gap: 7px;
  padding: 8px;
  border-top: 1px solid #e6e8ee;
  background: #fff;
}

.phone-input > span,
.phone-input > b {
  color: #7a8497;
  font-size: 10px;
}

.phone-input p {
  flex: 1;
  padding: 7px 8px;
  color: #adb2bf;
  border-radius: 7px;
  background: #f4f5f8;
  font-size: 6px;
}

.phone-input > b {
  color: #7150e5;
}

.home-indicator {
  position: absolute;
  z-index: 4;
  bottom: 4px;
  left: 50%;
  width: 70px;
  height: 3px;
  border-radius: 3px;
  background: #17192b;
  transform: translateX(-50%);
}

.message-status-card {
  position: absolute;
  z-index: 5;
  bottom: 88px;
  left: -18px;
  display: flex;
  width: 162px;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border: 1px solid #e1e3ef;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.message-status-card > i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #25ba86;
  font-size: 11px;
  font-style: normal;
}

.message-status-card p {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.message-status-card strong {
  color: #303a53;
  font-size: 10px;
}

.message-status-card small {
  color: #98a0b1;
  font-size: 7px;
}

.agent-visual {
  height: 600px;
}

.agent-visual::before {
  position: absolute;
  inset: 70px 20px 60px 10px;
  border-radius: 50%;
  background: rgba(99, 74, 225, 0.12);
  content: "";
  filter: blur(45px);
}

.mini-dashboard {
  position: absolute;
  top: 26px;
  left: 0;
  width: 540px;
  height: 500px;
  overflow: hidden;
  border: 1px solid #dedfeb;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.mini-dashboard > header {
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid #eceef4;
}

.mini-dashboard > header > div,
.mini-dashboard > header > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-dashboard > header strong {
  font-size: 11px;
}

.mini-dashboard > header > span {
  color: #6f798f;
  font-size: 8px;
}

.mini-dashboard > header > span i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #25bb85;
}

.dashboard-body {
  display: grid;
  height: calc(100% - 58px);
  grid-template-columns: 60px 1fr;
}

.dashboard-body > aside {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  padding-top: 25px;
  border-right: 1px solid #eceef4;
  background: #f7f8fc;
}

.dashboard-body > aside i {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1.5px solid #9ca5b7;
  border-radius: 6px;
}

.dashboard-body > aside i.selected {
  border-color: #704ce8;
  background: #eee9ff;
}

.dashboard-body > aside i.selected::before {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  border-radius: 2px;
  background: #704ce8;
  content: "";
}

.dashboard-body > section {
  padding: 22px 22px;
}

.dashboard-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #eff1f6;
}

.dashboard-heading p {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboard-heading strong {
  color: #303a53;
  font-size: 11px;
}

.dashboard-heading small,
.dashboard-heading > span {
  color: #969eae;
  font-size: 7px;
}

.dashboard-heading > span {
  padding: 5px 8px;
  border-radius: 5px;
  background: #f1f2f7;
}

.dashboard-body article {
  display: grid;
  min-height: 62px;
  align-items: center;
  padding: 8px 2px;
  border-bottom: 1px solid #f1f2f6;
  grid-template-columns: 34px 1fr auto;
  gap: 9px;
}

.dashboard-body article p {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dashboard-body article strong {
  color: #404961;
  font-size: 9px;
}

.dashboard-body article small {
  color: #959dad;
  font-size: 7px;
}

.dashboard-body article button {
  padding: 6px 12px;
  color: #6b4be1;
  border: 1px solid #dcd4fb;
  border-radius: 6px;
  background: #f5f2ff;
  font-size: 7px;
}

.dashboard-heading.second {
  margin-top: 20px;
}

.dashboard-body article.assigned b {
  padding: 5px 8px;
  color: #268967;
  border-radius: 5px;
  background: #e8f8f2;
  font-size: 7px;
}

.handoff-card {
  position: absolute;
  z-index: 4;
  right: -16px;
  bottom: 0;
  width: 260px;
  padding: 17px;
  border: 1px solid #e0e1ec;
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.handoff-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #2d3852;
  font-size: 11px;
  font-weight: 700;
}

.handoff-head i {
  color: #a0a6b4;
  font-style: normal;
  font-weight: 400;
}

.handoff-card > p {
  margin-top: 7px;
  color: #969eaf;
  font-size: 8px;
}

.handoff-card > div:nth-child(3) {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 11px;
  border-radius: 9px;
  background: #f7f8fb;
}

.agent-circle {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
}

.agent-circle.first {
  background: linear-gradient(135deg, #4c78ee, #6f51e5);
}

.agent-circle.second {
  background: linear-gradient(135deg, #24b9ac, #60d2bd);
}

.handoff-card > div:nth-child(3) > i {
  color: #9ba2b2;
  font-size: 10px;
  font-style: normal;
}

.handoff-card > div:nth-child(3) p {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.handoff-card > div:nth-child(3) strong {
  color: #404960;
  font-size: 9px;
}

.handoff-card > div:nth-child(3) small {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #8f98aa;
  font-size: 7px;
}

.handoff-card > div:nth-child(3) small i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #22ba82;
}

.handoff-card > button {
  width: 100%;
  height: 34px;
  margin-top: 13px;
  color: #fff;
  border: 0;
  border-radius: 7px;
  background: #6f4de5;
  font-size: 8px;
}

.limit-card {
  position: absolute;
  z-index: 5;
  top: 8px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e1e2ed;
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.limit-card > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #6a49df;
  border: 4px solid #e8e2ff;
  border-top-color: #7755e9;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.limit-card p {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.limit-card strong {
  color: #3b455e;
  font-size: 9px;
}

.limit-card small {
  color: #979eae;
  font-size: 7px;
}

.admin-visual {
  height: 610px;
}

.admin-visual::before {
  position: absolute;
  inset: 70px 10px 50px 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(71, 130, 244, .15), rgba(119, 75, 226, .16));
  content: "";
  filter: blur(48px);
}

.admin-window {
  position: absolute;
  top: 30px;
  right: 0;
  width: 580px;
  height: 500px;
  overflow: hidden;
  border: 1px solid #dfe1ed;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.admin-window > header {
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid #eceef4;
}

.admin-window > header > div,
.admin-window > header > p {
  display: flex;
  align-items: center;
  gap: 9px;
}

.admin-window > header strong {
  font-size: 11px;
}

.admin-window > header > p > span:first-child {
  color: #9299aa;
  font-size: 8px;
}

.admin-body {
  display: grid;
  height: calc(100% - 58px);
  grid-template-columns: 128px 1fr;
}

.admin-body > aside {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 17px 12px;
  border-right: 1px solid #eceef4;
  background: #f8f9fc;
}

.admin-body > aside strong {
  margin: 10px 8px 6px;
  color: #a1a8b6;
  font-size: 7px;
  letter-spacing: .06em;
}

.admin-body > aside span {
  padding: 8px 9px;
  color: #7e879a;
  border-radius: 7px;
  font-size: 8px;
}

.admin-body > aside span.active {
  color: #6947df;
  background: #eeeaff;
  font-weight: 700;
}

.admin-body > section {
  padding: 22px;
  background: #fbfbfd;
}

.admin-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-title p {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.admin-title strong {
  color: #2f3953;
  font-size: 12px;
}

.admin-title small {
  color: #959dad;
  font-size: 7px;
}

.admin-title > span {
  padding: 7px 9px;
  color: #737d91;
  border: 1px solid #e1e3eb;
  border-radius: 6px;
  background: #fff;
  font-size: 7px;
}

.metric-row {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.metric-row article {
  padding: 13px;
  border: 1px solid #e9eaf0;
  border-radius: 9px;
  background: #fff;
}

.metric-row article > span {
  color: #8e96a7;
  font-size: 7px;
}

.metric-row strong {
  display: block;
  margin-top: 8px;
  color: #2f3951;
  font-size: 21px;
}

.metric-row small {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 7px;
  color: #969eae;
  font-size: 6px;
}

.metric-row small i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #23bb84;
}

.chart-card {
  height: 210px;
  margin-top: 12px;
  padding: 15px;
  border: 1px solid #e9eaf0;
  border-radius: 10px;
  background: #fff;
}

.chart-card > div:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.chart-card > div:first-child p {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chart-card strong {
  color: #3d465d;
  font-size: 9px;
}

.chart-card small,
.chart-card > div:first-child > span {
  color: #9aa1b0;
  font-size: 6px;
}

.chart-card > div:first-child > span {
  padding: 4px 6px;
  color: #7657df;
  border-radius: 5px;
  background: #f0edff;
}

.chart {
  display: flex;
  height: 118px;
  align-items: flex-end;
  gap: 10px;
  padding: 16px 6px 0;
  border-bottom: 1px solid #eceef4;
  background-image: linear-gradient(#f1f2f6 1px, transparent 1px);
  background-size: 100% 32px;
}

.chart i {
  width: 14px;
  height: 55%;
  border-radius: 5px 5px 1px 1px;
  background: linear-gradient(180deg, #7655e8, #92a5f3);
  opacity: .9;
}

.chart i:nth-child(1) { height: 32%; }
.chart i:nth-child(2) { height: 46%; }
.chart i:nth-child(3) { height: 40%; }
.chart i:nth-child(4) { height: 68%; }
.chart i:nth-child(5) { height: 58%; }
.chart i:nth-child(6) { height: 80%; }
.chart i:nth-child(7) { height: 64%; }
.chart i:nth-child(8) { height: 90%; }
.chart i:nth-child(9) { height: 73%; }
.chart i:nth-child(10) { height: 55%; }

.axis {
  display: flex;
  justify-content: space-between;
  padding-top: 7px;
  color: #a4aab8;
  font-size: 5px;
}

.security-float,
.totp-float {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  border: 1px solid #e0e1ed;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.security-float {
  bottom: 17px;
  left: -20px;
  width: 230px;
  padding: 13px;
}

.security-float p,
.totp-float p {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  margin-left: 10px;
}

.security-float strong,
.totp-float strong {
  color: #374159;
  font-size: 9px;
}

.security-float small,
.totp-float small {
  color: #969eae;
  font-size: 7px;
}

.security-float > i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #22b985;
  font-size: 9px;
  font-style: normal;
}

.totp-float {
  top: 8px;
  right: -30px;
  width: 216px;
  padding: 14px;
}

.totp-float > span {
  padding: 8px 9px;
  color: #6845dd;
  border-radius: 8px;
  background: #eee9ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.workflow-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #111439;
}

.workflow-section::before,
.workflow-section::after {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  content: "";
  filter: blur(20px);
}

.workflow-section::before {
  top: -300px;
  left: -160px;
  background: rgba(91, 79, 230, .20);
}

.workflow-section::after {
  right: -260px;
  bottom: -310px;
  background: rgba(31, 177, 199, .13);
}

.light-heading {
  position: relative;
  z-index: 1;
}

.light-heading .eyebrow {
  color: #aaa2ff;
}

.light-heading h2 {
  color: #fff;
}

.light-heading > p:last-child {
  color: #aeb5ce;
}

.workflow-steps {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.workflow-steps li {
  position: relative;
  min-height: 300px;
  padding: 27px 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}

.workflow-steps li::after {
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(111, 82, 231, .13);
  content: "";
}

.step-index {
  color: #777e9b;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
}

.step-icon {
  display: grid;
  width: 57px;
  height: 57px;
  margin-top: 32px;
  place-items: center;
  color: #a397ff;
  border: 1px solid rgba(162,149,255,.25);
  border-radius: 15px;
  background: rgba(120, 90, 238, .12);
}

.step-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.workflow-steps h3 {
  margin-top: 26px;
  color: #fff;
  font-size: 17px;
}

.workflow-steps p {
  margin-top: 13px;
  color: #aeb5cb;
  font-size: 12px;
  line-height: 1.8;
}

.privacy-note {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 74px;
  align-items: center;
  margin-top: 28px;
  padding: 15px 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 15px;
  background: rgba(255,255,255,.05);
  grid-template-columns: 35px 1fr auto;
  gap: 14px;
}

.privacy-note svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: #a497ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.privacy-note p {
  display: flex;
  align-items: center;
  gap: 15px;
}

.privacy-note strong {
  margin-right: 6px;
  font-size: 12px;
}

.privacy-note p span {
  padding: 5px 8px;
  color: #bfc4d7;
  border-radius: 6px;
  background: rgba(255,255,255,.07);
  font-size: 9px;
}

.privacy-note > small {
  color: #9da5bd;
  font-size: 9px;
}

.advantages {
  background: #f8f9fe;
}

.advantage-grid {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.advantage-grid article {
  position: relative;
  min-height: 285px;
  padding: 28px 25px;
  overflow: hidden;
  border: 1px solid #e7e8f1;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(39, 39, 83, .04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.advantage-grid article:hover {
  border-color: #d8d2f6;
  box-shadow: 0 22px 50px rgba(48, 40, 107, .09);
  transform: translateY(-5px);
}

.advantage-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #6848de;
  border-radius: 15px;
  background: #eeeaff;
}

.advantage-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.advantage-grid h3 {
  margin-top: 25px;
  color: #29334e;
  font-size: 18px;
}

.advantage-grid p {
  margin-top: 14px;
  color: #68758d;
  font-size: 12px;
  line-height: 1.8;
}

.card-no {
  position: absolute;
  right: 19px;
  bottom: 14px;
  color: #f0eff8;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -.08em;
}

.retention-section {
  padding-top: 86px;
  padding-bottom: 86px;
  background: #f8f9fe;
}

.retention-card {
  display: grid;
  min-height: 260px;
  align-items: center;
  padding: 46px 52px;
  color: #fff;
  border-radius: 24px;
  background: linear-gradient(120deg, #4e43bf, #6d4de1 52%, #4f78e6);
  box-shadow: 0 26px 60px rgba(69, 53, 174, .23);
  grid-template-columns: .8fr 1.2fr;
  gap: 55px;
}

.eyebrow.light {
  color: #cbc5ff;
}

.retention-card h2 {
  color: #fff;
  font-size: 32px;
  letter-spacing: -.035em;
}

.retention-card > div:first-child > p:last-child {
  margin-top: 14px;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  line-height: 1.7;
}

.retention-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.retention-timeline article {
  display: flex;
  align-items: center;
  gap: 12px;
}

.retention-timeline article > span {
  color: #fff;
  font-size: 36px;
  font-weight: 760;
  letter-spacing: -.05em;
}

.retention-timeline article > span small {
  margin-left: 3px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
}

.retention-timeline p {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.retention-timeline strong {
  font-size: 11px;
}

.retention-timeline p small {
  color: rgba(255,255,255,.62);
  font-size: 7px;
}

.retention-timeline > i {
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,.24);
}

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: .75fr 1.25fr;
  gap: 100px;
}

.faq-layout .section-heading {
  position: sticky;
  top: 125px;
}

.faq-layout .section-heading h2 {
  font-size: 44px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: #6543d9;
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  font-size: 18px;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.faq-list {
  border-top: 1px solid #e5e7ef;
}

.faq-list details {
  border-bottom: 1px solid #e5e7ef;
}

.faq-list summary {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  color: #2a3450;
  cursor: pointer;
  font-size: 16px;
  font-weight: 660;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: #6e4be2;
  font-size: 24px;
  font-weight: 350;
  transition: transform .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  padding: 0 45px 26px 0;
  color: #65728a;
  font-size: 13px;
  line-height: 1.85;
}

.final-cta {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  color: #fff;
  background: #5d41d1;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  -webkit-mask-image: radial-gradient(circle, #000, transparent 78%);
  mask-image: radial-gradient(circle, #000, transparent 78%);
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.cta-orb.one {
  top: -220px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: rgba(75, 150, 247, .28);
}

.cta-orb.two {
  right: -180px;
  bottom: -290px;
  width: 560px;
  height: 560px;
  background: rgba(48, 200, 211, .20);
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-content > p {
  color: #d5ceff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.cta-content h2 {
  margin-top: 20px;
  color: #fff;
  font-size: clamp(38px, 4.7vw, 58px);
  letter-spacing: -.05em;
  line-height: 1.2;
}

.cta-content > span {
  margin-top: 22px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}

.cta-content > div {
  display: flex;
  gap: 13px;
  margin-top: 35px;
}

.button-light {
  color: #5e3dd1;
  background: #fff;
  box-shadow: 0 14px 30px rgba(28, 18, 79, .18);
}

.button-light:hover {
  color: #4526b8;
  box-shadow: 0 20px 38px rgba(28, 18, 79, .24);
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
}

.button-outline-light:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.11);
}

.site-footer {
  color: #9ea5b8;
  background: #0c1027;
}

.footer-top {
  display: grid;
  min-height: 270px;
  align-items: start;
  padding-top: 66px;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
}

.footer-brand-block .brand-copy strong {
  color: #fff;
}

.footer-brand-block p {
  margin-top: 18px;
  color: #868fa8;
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 12px;
}

.footer-links a {
  color: #878fa6;
  font-size: 11px;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom small,
.footer-bottom p {
  color: #69728b;
  font-size: 10px;
}

.footer-bottom p {
  display: flex;
  gap: 22px;
}

@media (max-width: 1260px) {
  .identity-card {
    right: -10px;
  }

  .assign-card {
    left: -10px;
  }

  .totp-float {
    right: -6px;
  }

  .browser-frame,
  .admin-window {
    right: 20px;
  }

  .phone-frame {
    right: 0;
  }
}

@media (max-width: 1080px) {
  :root {
    --shell: 940px;
  }

  .site-header nav {
    gap: 22px;
    margin-left: 20px;
  }

  .hero {
    min-height: 1000px;
  }

  .hero-product {
    height: 570px;
  }

  .workspace {
    grid-template-columns: 120px 205px minmax(330px, 1fr);
  }

  .member-panel {
    display: none;
  }

  .float-card {
    transform: scale(.9);
  }

  .trust-grid > div {
    padding: 0 17px;
  }

  .trust-grid small {
    display: none;
  }

  .split-layout,
  .split-layout.reverse {
    gap: 48px;
  }

  .browser-frame {
    right: 0;
    width: 510px;
  }

  .phone-frame {
    right: -15px;
  }

  .mini-dashboard {
    width: 475px;
  }

  .handoff-card {
    right: -8px;
  }

  .admin-window {
    right: 0;
    width: 510px;
  }

  .admin-body {
    grid-template-columns: 110px 1fr;
  }

  .metric-row article {
    padding: 10px;
  }

  .workflow-steps li {
    padding: 23px 18px;
  }

  .privacy-note {
    grid-template-columns: 35px 1fr;
  }

  .privacy-note > small {
    display: none;
  }

  .retention-card {
    gap: 30px;
    padding: 40px 36px;
  }

  .retention-timeline article {
    gap: 8px;
  }

  .retention-timeline article > span {
    font-size: 30px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: 760px;
  }

  .shell {
    width: min(var(--shell), calc(100% - 36px));
  }

  .site-header {
    height: 68px;
  }

  .site-header nav,
  .login-link {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .mobile-menu {
    position: relative;
    display: block;
    order: 2;
  }

  .mobile-menu summary {
    display: grid;
    width: 42px;
    height: 42px;
    align-content: center;
    justify-items: center;
    gap: 4px;
    padding: 0;
    color: var(--ink);
    border: 1px solid #e2e4ef;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 16px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }

  .mobile-menu[open] summary span:first-child {
    transform: translateY(5.5px) rotate(45deg);
  }

  .mobile-menu[open] summary span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu[open] summary span:last-child {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .site-header .mobile-menu nav {
    position: absolute;
    z-index: 90;
    top: 51px;
    right: 0;
    display: flex;
    width: 220px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 9px;
    border: 1px solid #e5e6f0;
    border-radius: 13px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 45px rgba(41,34,91,.14);
    backdrop-filter: blur(16px);
  }

  .mobile-menu:not([open]) nav {
    display: none !important;
  }

  .site-header .mobile-menu nav a {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 13px;
  }

  .site-header .mobile-menu nav a::after {
    display: none;
  }

  .site-header .mobile-menu nav a:hover {
    background: #f2efff;
  }

  .hero {
    min-height: 920px;
    padding-top: 74px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-product {
    height: 500px;
    margin-top: 52px;
  }

  .workspace {
    grid-template-columns: 104px 190px minmax(290px, 1fr);
  }

  .desktop-app {
    border-radius: 17px;
  }

  .window-bar {
    height: 58px;
  }

  .window-search {
    width: 190px;
  }

  .workspace {
    height: calc(100% - 58px);
  }

  .identity-card {
    top: 70px;
  }

  .assign-card {
    bottom: 40px;
  }

  .trust-grid {
    min-height: 210px;
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > div {
    padding: 0 24px;
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid #eceef4;
  }

  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    padding: 0 24px;
  }

  .trust-grid small {
    display: block;
  }

  .section {
    padding: 94px 0;
  }

  .journey-line {
    display: grid;
    margin-top: 54px;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .journey-line > div {
    min-width: 0;
    justify-content: center;
  }

  .journey-line > i {
    display: none;
  }

  .split-layout,
  .split-layout.reverse {
    display: flex;
    flex-direction: column;
    gap: 58px;
  }

  .split-layout.reverse .agent-visual {
    order: 2;
  }

  .product-copy {
    max-width: 650px;
  }

  .member-visual,
  .agent-visual,
  .admin-visual {
    width: 100%;
  }

  .browser-frame {
    right: 50%;
    width: 610px;
    transform: translateX(50%);
  }

  .phone-frame {
    right: 20px;
  }

  .mini-dashboard {
    left: 50%;
    width: 560px;
    transform: translateX(-50%);
  }

  .admin-window {
    right: 50%;
    width: 600px;
    transform: translateX(50%);
  }

  .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-steps li {
    min-height: 270px;
  }

  .privacy-note p {
    flex-wrap: wrap;
  }

  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .retention-card {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-layout .section-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 560px);
  }

  .site-header {
    height: 64px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
    border-radius: 10px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .header-actions .button {
    min-height: 44px;
    padding: 0 13px;
    font-size: 12px;
  }

  .header-actions .button {
    order: 1;
  }

  .header-actions .button svg {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 70px;
  }

  .hero-kicker {
    margin-bottom: 19px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(37px, 11vw, 45px);
    line-height: 1.16;
  }

  .hero-lead {
    margin-top: 21px;
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 27px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-notes {
    flex-wrap: wrap;
    gap: 9px 17px;
    margin-top: 19px;
    font-size: 10px;
  }

  .hero-product {
    height: 460px;
    margin-top: 42px;
  }

  .desktop-app {
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(50,38,110,.15), 0 0 0 5px rgba(255,255,255,.5);
  }

  .window-bar {
    height: 54px;
    padding: 0 12px;
  }

  .window-brand strong {
    font-size: 10px;
  }

  .window-search,
  .window-tools small,
  .window-tools .online-dot,
  .window-tools > i {
    display: none;
  }

  .workspace {
    height: calc(100% - 54px);
    grid-template-columns: 1fr;
  }

  .workspace-nav,
  .session-column,
  .member-panel {
    display: none;
  }

  .conversation-head {
    height: 58px;
    padding: 0 12px;
  }

  .conversation-actions span:first-child {
    display: none;
  }

  .identity-strip {
    padding: 0 12px;
  }

  .identity-strip small {
    display: none;
  }

  .message-area {
    padding: 17px 13px;
  }

  .message-row p {
    font-size: 9px;
  }

  .composer-area {
    min-height: 103px;
  }

  .float-card {
    display: none;
  }

  .trust-grid {
    min-height: 310px;
  }

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    min-height: 145px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 18px;
  }

  .trust-number {
    font-size: 18px;
  }

  .trust-grid p {
    gap: 3px;
  }

  .trust-grid strong {
    font-size: 12px;
  }

  .trust-grid small {
    font-size: 9px;
    line-height: 1.5;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading h2,
  .product-copy h2,
  .faq-layout .section-heading h2 {
    font-size: 32px;
    line-height: 1.27;
  }

  .section-heading > p:last-child {
    margin-top: 17px;
    font-size: 14px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .product-intro {
    padding-bottom: 45px;
  }

  .journey-line {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 42px;
  }

  .journey-line > div {
    justify-content: flex-start;
    padding: 13px 16px;
    border: 1px solid #ececf4;
    border-radius: 12px;
    background: #fff;
  }

  .copy-lead {
    margin-top: 19px;
    font-size: 14px;
  }

  .check-list {
    gap: 18px;
    margin-top: 29px;
  }

  .check-list small {
    font-size: 11px;
  }

  .member-visual {
    height: 540px;
  }

  .browser-frame {
    display: none;
  }

  .phone-frame {
    right: 50%;
    bottom: 48px;
    width: 222px;
    height: 452px;
    transform: translateX(50%);
  }

  .message-status-card {
    bottom: 42px;
    left: 50%;
    width: 154px;
    margin-left: -154px;
  }

  .agent-visual {
    height: 520px;
  }

  .mini-dashboard {
    top: 0;
    width: 100%;
    height: 450px;
  }

  .dashboard-body {
    grid-template-columns: 46px 1fr;
  }

  .dashboard-body > section {
    padding: 17px 12px;
  }

  .dashboard-body > aside {
    gap: 21px;
  }

  .handoff-card {
    right: 6px;
    bottom: 0;
    width: 235px;
  }

  .limit-card {
    display: none;
  }

  .admin-visual {
    height: 520px;
  }

  .admin-window {
    top: 0;
    width: 100%;
    height: 450px;
  }

  .admin-body {
    grid-template-columns: 82px 1fr;
  }

  .admin-body > aside {
    padding-inline: 7px;
  }

  .admin-body > aside span {
    padding-inline: 6px;
  }

  .admin-body > section {
    padding: 15px 11px;
  }

  .metric-row {
    gap: 5px;
  }

  .metric-row article {
    padding: 8px 6px;
  }

  .metric-row strong {
    font-size: 17px;
  }

  .metric-row small {
    line-height: 1.4;
  }

  .chart-card {
    padding: 10px;
  }

  .chart {
    gap: 6px;
  }

  .security-float {
    bottom: 2px;
    left: 8px;
    width: 205px;
  }

  .totp-float {
    display: none;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 45px;
  }

  .workflow-steps li {
    display: grid;
    min-height: 0;
    align-items: center;
    padding: 21px;
    grid-template-columns: 36px 48px 1fr;
    column-gap: 13px;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    margin-top: 0;
    border-radius: 12px;
  }

  .step-icon svg {
    width: 25px;
    height: 25px;
  }

  .workflow-steps h3 {
    margin-top: 0;
    font-size: 15px;
  }

  .workflow-steps p {
    margin: 8px 0 0 97px;
    grid-column: 1 / -1;
    font-size: 11px;
  }

  .privacy-note {
    align-items: start;
    padding: 17px;
    grid-template-columns: 28px 1fr;
  }

  .privacy-note p {
    gap: 7px;
  }

  .privacy-note strong {
    width: 100%;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 45px;
  }

  .advantage-grid article {
    min-height: 240px;
  }

  .retention-section {
    padding: 60px 0;
  }

  .retention-card {
    min-height: 0;
    padding: 34px 24px;
    border-radius: 19px;
  }

  .retention-card h2 {
    font-size: 28px;
  }

  .retention-timeline {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .retention-timeline > i {
    width: 1px;
    height: 15px;
    margin-left: 25px;
  }

  .retention-timeline article > span {
    width: 66px;
  }

  .faq-layout {
    gap: 42px;
  }

  .faq-list summary {
    min-height: 72px;
    gap: 20px;
    font-size: 14px;
  }

  .faq-list details p {
    padding-right: 30px;
    font-size: 12px;
  }

  .final-cta {
    padding: 80px 0;
  }

  .cta-content h2 {
    font-size: 36px;
  }

  .cta-content > span {
    max-width: 320px;
    font-size: 12px;
    line-height: 1.8;
  }

  .cta-content > div {
    width: 100%;
    flex-direction: column;
  }

  .cta-content .button {
    width: 100%;
  }

  .footer-top {
    min-height: 0;
    padding: 52px 0 45px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-links {
    gap: 20px;
  }

  .footer-bottom {
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .brand-copy small {
    display: none;
  }

  .header-actions .button {
    padding-inline: 11px;
  }

  .header-actions {
    gap: 6px;
  }

  .mobile-menu summary {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    padding: 13px;
  }

  .dashboard-body {
    grid-template-columns: 38px 1fr;
  }

  .dashboard-body > aside i {
    width: 15px;
    height: 15px;
  }

  .handoff-card {
    right: 0;
    width: 220px;
  }

  .admin-body {
    grid-template-columns: 72px 1fr;
  }

  .metric-row article:nth-child(3) {
    display: none;
  }

  .metric-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
