@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;700&display=swap");

:root {
  --xtao-ink: #102033;
  --xtao-navy: #18324d;
  --xtao-text: #0b1220;
  --xtao-body: #445266;
  --xtao-muted: #7a8798;
  --xtao-paper: #f7fafc;
  --xtao-surface: rgba(255, 255, 255, 0.82);
  --xtao-white: #ffffff;
  --xtao-line: rgba(15, 23, 42, 0.12);
  --xtao-line-dark: rgba(226, 232, 240, 0.18);
  --xtao-cyan: #00a99d;
  --xtao-blue: #2f6eea;
  --xtao-amber: #d68b00;
  --xtao-green: #16a34a;
  --xtao-radius: 8px;
  --xtao-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--xtao-paper);
  color: var(--xtao-text);
  font-family: "Manrope", sans-serif;
}

a,
button {
  cursor: pointer;
}

.xtao-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 10%, rgba(0, 169, 157, 0.13), transparent 28%),
    radial-gradient(circle at 8% 18%, rgba(47, 110, 234, 0.09), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #f2f8fb 100%);
  overflow: hidden;
}

.xtao-wrap {
  width: calc(100% - 40px);
  max-width: var(--xtao-max);
  margin: 0 auto;
}

.xtao-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--xtao-line);
  background: rgba(247, 250, 252, 0.86);
  backdrop-filter: blur(18px);
}

.xtao-nav__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.xtao-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--xtao-text);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.xtao-brand__mark {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 191, 179, 0.16);
}

.xtao-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.xtao-nav__links a {
  color: #566276;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

.xtao-nav__links a:hover,
.xtao-nav__links a:focus-visible {
  color: var(--xtao-blue);
}

.xtao-nav__tools {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 10px;
  flex-shrink: 0;
}

.xtao-lang {
  min-width: 58px;
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--xtao-line);
  border-radius: 6px;
  background: white;
  color: var(--xtao-text);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.xtao-lang:hover,
.xtao-lang:focus-visible {
  border-color: var(--xtao-cyan);
  box-shadow: 0 12px 28px rgba(0, 191, 179, 0.14);
  transform: translateY(-1px);
}

.xtao-lang.is-switching {
  animation: xtao-language-pop 360ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.xtao-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid #1d4ed8;
  border-radius: 6px;
  background: linear-gradient(135deg, #2563eb, #00a99d);
  color: white;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transform: translate3d(var(--xtao-magnet-x, 0), var(--xtao-magnet-y, 0), 0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  will-change: transform;
}

.xtao-button:hover,
.xtao-button:focus-visible {
  border-color: var(--xtao-cyan);
  box-shadow: 0 18px 42px rgba(7, 17, 31, 0.18);
  transform: translate3d(var(--xtao-magnet-x, 0), calc(var(--xtao-magnet-y, 0) - 1px), 0);
}

.xtao-button--ghost {
  border-color: rgba(15, 23, 42, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--xtao-text);
}

.xtao-button--white {
  border-color: white;
  background: white;
  color: var(--xtao-ink);
}

.xtao-button:focus-visible,
.xtao-lang:focus-visible,
.xtao-nav__links a:focus-visible {
  outline: 3px solid rgba(0, 191, 179, 0.28);
  outline-offset: 3px;
}

.xtao-hero {
  position: relative;
  min-height: 720px;
  height: clamp(720px, 78dvh, 940px);
  padding: 80px 0 40px;
  overflow: hidden;
}

.xtao-hero::before,
.xtao-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.xtao-hero::before {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
}

.xtao-hero::after {
  background: linear-gradient(90deg, rgba(247, 250, 252, 0.94) 0%, rgba(247, 250, 252, 0.78) 45%, rgba(247, 250, 252, 0.2) 100%);
}

.xtao-hero__media,
.xtao-hero__gridline {
  position: absolute;
  inset: 0;
}

.xtao-hero__media {
  background:
    linear-gradient(90deg, rgba(247, 250, 252, 0.9), rgba(247, 250, 252, 0.18)),
    url("./assets/xtao-hero-ai-commerce.png?v=2") right center / cover;
  opacity: 0.82;
  transform: scale(1.02);
  animation: xtao-hero-drift 22s ease-in-out infinite alternate;
}

.xtao-hero__gridline {
  display: none;
}

.xtao-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 48px;
  align-items: center;
}

.xtao-hero__copy {
  padding: 28px 0 22px;
}

.xtao-kicker {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 20px;
  color: var(--xtao-cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.xtao-kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.xtao-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--xtao-text);
  font-size: clamp(46px, 5.8vw, 78px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.xtao-hero__lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--xtao-body);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.72;
}

.xtao-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.xtao-command {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 252, 0.94)),
    white;
  box-shadow: 0 30px 72px rgba(15, 23, 42, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.xtao-command::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 18%, rgba(0, 191, 179, 0.14), transparent 64%);
  transform: translateX(-80%);
  animation: xtao-scan 4.6s ease-in-out infinite;
  pointer-events: none;
}

.xtao-command__top {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--xtao-line);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--xtao-body);
}

.xtao-command__top strong {
  color: var(--xtao-green);
}

.xtao-command__core {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr;
  align-items: center;
  gap: 8px;
  padding: 26px 20px;
}

.xtao-command__core span {
  min-height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 169, 157, 0.18);
  border-radius: 8px;
  background: rgba(0, 169, 157, 0.07);
  color: var(--xtao-text);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
}

.xtao-command__core i {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--xtao-cyan), transparent);
  animation: xtao-route-pulse 1.8s linear infinite;
}

.xtao-command__rows {
  position: relative;
  padding: 0 20px 20px;
}

.xtao-command__rows div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--xtao-line);
  color: var(--xtao-body);
  font-size: 13px;
}

.xtao-command__rows strong {
  color: var(--xtao-cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.xtao-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
  border: 1px solid var(--xtao-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 64px rgba(7, 17, 31, 0.08);
}

.xtao-metrics div {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid var(--xtao-line);
}

.xtao-metrics div:last-child {
  border-right: 0;
}

.xtao-metrics div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 12%, rgba(0, 191, 179, 0.12), transparent 72%);
  transform: translateX(-80%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.xtao-metrics div:hover::after {
  opacity: 1;
  animation: xtao-scan 900ms ease forwards;
}

.xtao-metrics strong,
.xtao-metrics span {
  position: relative;
  z-index: 1;
  display: block;
}

.xtao-metrics strong {
  color: var(--xtao-text);
  font-size: 16px;
}

.xtao-metrics span {
  margin-top: 8px;
  color: var(--xtao-body);
  font-size: 13px;
  line-height: 1.45;
}

.xtao-section {
  padding: 82px 0;
  border-top: 1px solid var(--xtao-line);
  background: var(--xtao-paper);
}

.xtao-section__head {
  max-width: 820px;
}

.xtao-section__head h2,
.xtao-cta h2 {
  margin: 0;
  color: var(--xtao-text);
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.02;
  text-wrap: balance;
}

.xtao-section__head p,
.xtao-cta p {
  margin: 20px 0 0;
  color: var(--xtao-body);
  font-size: 18px;
  line-height: 1.7;
}

.xtao-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.xtao-signal,
.xtao-service,
.xtao-review-grid article {
  position: relative;
  min-height: 226px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--xtao-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.xtao-signal:hover,
.xtao-service:hover,
.xtao-review-grid article:hover {
  border-color: rgba(0, 191, 179, 0.34);
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.1);
  transform: translateY(-3px);
}

.xtao-signal span,
.xtao-service span {
  color: var(--xtao-blue);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.xtao-signal h3,
.xtao-service h3,
.xtao-review-grid h3 {
  margin: 18px 0 10px;
  color: var(--xtao-text);
  font-size: 22px;
  line-height: 1.18;
}

.xtao-signal p,
.xtao-service p,
.xtao-review-grid p {
  margin: 0;
  color: var(--xtao-body);
  line-height: 1.65;
}

.xtao-section--services {
  background:
    radial-gradient(circle at 82% 12%, rgba(47, 110, 234, 0.1), transparent 28%),
    #ffffff;
}

.xtao-section--chatwoot {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(235, 250, 249, 0.82)),
    radial-gradient(circle at 82% 18%, rgba(0, 169, 157, 0.16), transparent 28%),
    #f7fcfc;
}

.xtao-chatwoot {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 46px;
  align-items: center;
}

.xtao-chatwoot-stage {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
}

.xtao-stage-art {
  position: absolute;
  inset: 0 auto auto 18px;
  width: min(680px, 94%);
  height: 470px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.3;
  filter: saturate(1.12) contrast(1.04);
  transform: rotateX(2deg) rotateY(-6deg) translate3d(0, 0, 0);
  box-shadow: 0 34px 90px rgba(0, 169, 157, 0.14);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 82%, transparent);
  pointer-events: none;
  animation: xtao-art-drift 10s ease-in-out infinite alternate;
}

.xtao-flow-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.xtao-flow-badges span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--xtao-body);
  font-size: 13px;
  font-weight: 800;
  animation: xtao-step-highlight 8.4s ease-in-out infinite;
}

.xtao-flow-badges span:nth-child(2) {
  animation-delay: 1.4s;
}

.xtao-flow-badges span:nth-child(3) {
  animation-delay: 2.8s;
}

.xtao-flow-badges span:nth-child(4) {
  animation-delay: 4.2s;
}

.xtao-chatwoot-stage::before {
  content: "";
  position: absolute;
  inset: 62px 40px 72px 120px;
  border: 1px solid rgba(0, 169, 157, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(0, 169, 157, 0.14), transparent 34%, rgba(47, 110, 234, 0.12)),
    rgba(255, 255, 255, 0.34);
  filter: blur(0.2px);
  animation: xtao-orbit-breathe 4.8s ease-in-out infinite;
}

.xtao-chatwoot-stage::after {
  content: "";
  position: absolute;
  inset: 30px 0 24px 42%;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at 50% 30%, rgba(0, 169, 157, 0.18), transparent 54%);
  filter: blur(24px);
  pointer-events: none;
}

.xtao-browser-shot {
  position: absolute;
  top: 34px;
  right: 0;
  z-index: 2;
  width: min(620px, 92%);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: white;
  box-shadow: 0 32px 78px rgba(7, 17, 31, 0.13);
}

.xtao-browser-shot__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--xtao-line);
  background: #f8fafc;
}

.xtao-browser-shot__bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.xtao-browser-shot__bar span:nth-child(1) {
  background: #f87171;
}

.xtao-browser-shot__bar span:nth-child(2) {
  background: #fbbf24;
}

.xtao-browser-shot__bar span:nth-child(3) {
  background: #34d399;
}

.xtao-browser-shot__bar strong {
  margin-left: 8px;
  color: var(--xtao-muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
}

.xtao-browser-shot__app {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 386px;
}

.xtao-inbox-list {
  padding: 12px;
  border-right: 1px solid var(--xtao-line);
  background: linear-gradient(180deg, #f8fbff, #eef8f7);
}

.xtao-inbox-list div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  padding: 12px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--xtao-body);
  font-size: 12px;
  animation: xtao-list-idle 4.8s ease-in-out infinite;
}

.xtao-inbox-list .is-active {
  border-color: rgba(0, 169, 157, 0.26);
  background: white;
  box-shadow: 0 14px 34px rgba(0, 169, 157, 0.11);
  animation: xtao-new-inquiry 4.8s ease-in-out infinite;
}

.xtao-inbox-list i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(47, 110, 234, 0.1);
  color: var(--xtao-blue);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.xtao-inbox-list span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.xtao-inbox-list strong {
  color: var(--xtao-cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
}

.xtao-conversation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 250, 252, 0.94)),
    white;
}

.xtao-conversation__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--xtao-line);
}

.xtao-conversation__head strong,
.xtao-conversation__head span {
  display: block;
}

.xtao-conversation__head strong {
  color: var(--xtao-text);
  font-size: 15px;
}

.xtao-conversation__head span,
.xtao-conversation__head em {
  margin-top: 4px;
  color: var(--xtao-muted);
  font-size: 12px;
  font-style: normal;
}

.xtao-conversation__head em {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.1);
  color: var(--xtao-green);
  font-weight: 800;
}

.xtao-chat-line,
.xtao-phone-bubble {
  max-width: 78%;
  padding: 11px 13px;
  border-radius: 8px;
  color: var(--xtao-body);
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  animation: xtao-message-cycle 8.4s ease-in-out infinite;
}

.xtao-chat-line--in,
.xtao-phone-bubble--in {
  align-self: flex-start;
  background: #eef6ff;
}

.xtao-chat-line--assign {
  align-self: center;
  max-width: 88%;
  background: rgba(214, 139, 0, 0.1);
  color: #8a5a00;
  font-weight: 800;
  animation-delay: 1.25s;
}

.xtao-chat-line--ai,
.xtao-phone-bubble--meta {
  align-self: center;
  max-width: 92%;
  border: 1px solid rgba(0, 169, 157, 0.24);
  background: linear-gradient(135deg, rgba(0, 169, 157, 0.1), rgba(47, 110, 234, 0.08));
  color: var(--xtao-ink);
  font-weight: 800;
  animation-delay: 2.25s;
}

.xtao-chat-line--suggest {
  align-self: center;
  max-width: 92%;
  border: 1px solid rgba(47, 110, 234, 0.24);
  background: linear-gradient(135deg, rgba(47, 110, 234, 0.1), rgba(255, 255, 255, 0.86));
  color: var(--xtao-ink);
  font-weight: 800;
  animation-delay: 3.35s;
}

.xtao-chat-line--draft {
  align-self: flex-end;
  max-width: 86%;
  border: 1px solid rgba(214, 139, 0, 0.22);
  background: rgba(214, 139, 0, 0.09);
  color: #7a4d00;
  font-weight: 800;
  animation-delay: 4.45s;
}

.xtao-chat-line--out,
.xtao-phone-bubble--out {
  align-self: flex-end;
  background: linear-gradient(135deg, #2563eb, #00a99d);
  color: white;
  animation-delay: 5.75s;
}

.xtao-chat-line--in,
.xtao-phone-bubble--in {
  animation-delay: 0.35s;
}

.xtao-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  animation: xtao-reply-tools 8.4s ease-in-out infinite;
  animation-delay: 5.05s;
}

.xtao-quick-replies button {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(47, 110, 234, 0.22);
  border-radius: 999px;
  background: white;
  color: var(--xtao-blue);
  font-size: 12px;
  font-weight: 800;
}

.xtao-quick-replies button:first-child {
  border-color: rgba(0, 169, 157, 0.32);
  background: rgba(0, 169, 157, 0.08);
  color: var(--xtao-cyan);
}

.xtao-composer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding: 12px;
  border: 1px solid var(--xtao-line);
  border-radius: 8px;
  background: white;
  color: var(--xtao-muted);
  font-size: 13px;
  opacity: 0;
  animation: xtao-reply-tools 8.4s ease-in-out infinite;
  animation-delay: 5.25s;
}

.xtao-composer b {
  color: var(--xtao-blue);
  font-size: 12px;
}

.xtao-phone-shot {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 214px;
  min-height: 430px;
  padding: 22px 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #eff9f8);
  box-shadow: 0 30px 78px rgba(7, 17, 31, 0.18);
  animation: xtao-phone-float 5.4s ease-in-out infinite;
}

.xtao-phone-shot__speaker {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: #dbe3ec;
  transform: translateX(-50%);
}

.xtao-phone-shot__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 2px 16px;
  border-bottom: 1px solid var(--xtao-line);
}

.xtao-phone-shot__top strong {
  color: var(--xtao-text);
  font-size: 14px;
}

.xtao-phone-shot__top span {
  color: var(--xtao-green);
  font-size: 12px;
  font-weight: 800;
}

.xtao-phone-bubble {
  max-width: 100%;
  margin-top: 14px;
  font-size: 12px;
}

.xtao-phone-tabs {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.xtao-phone-tabs span {
  height: 4px;
  border-radius: 999px;
  background: #cbd5e1;
}

.xtao-phone-tabs span:first-child {
  background: var(--xtao-cyan);
  animation: xtao-tab-progress 8.4s ease-in-out infinite;
}

.xtao-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.xtao-service {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 252, 252, 0.86)),
    white;
}

.xtao-growth-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 38px;
}

.xtao-growth-visual {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #f8fbfd;
  box-shadow: 0 30px 80px rgba(7, 17, 31, 0.1);
}

.xtao-growth-visual::after {
  content: "XTAO / AI OPS";
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--xtao-ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.12);
}

.xtao-growth-visual::before,
.xtao-growth-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.66), transparent 58%);
  transform: translateX(-88%);
  animation: xtao-showcase-sheen 6.8s ease-in-out infinite;
  pointer-events: none;
}

.xtao-growth-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
}

.xtao-growth-panel {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(0, 169, 157, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 250, 249, 0.86)),
    white;
  box-shadow: 0 24px 62px rgba(7, 17, 31, 0.08);
}

.xtao-growth-panel::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 169, 157, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 169, 157, 0.16), rgba(47, 110, 234, 0.12)),
    url("./assets/xtao-logo-mark.svg") center / 26px 26px no-repeat;
}

.xtao-growth-panel > span {
  color: var(--xtao-cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.xtao-growth-panel h3 {
  margin: 18px 0 0;
  color: var(--xtao-text);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.08;
}

.xtao-growth-panel ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.xtao-growth-panel li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.xtao-growth-panel li:hover {
  border-color: rgba(0, 169, 157, 0.24);
  box-shadow: 0 16px 38px rgba(0, 169, 157, 0.1);
  transform: translateX(3px);
}

.xtao-growth-panel b {
  color: var(--xtao-blue);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.xtao-growth-panel li span {
  color: var(--xtao-body);
  font-size: 14px;
  line-height: 1.55;
}

.xtao-section--relay {
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 169, 157, 0.12), transparent 28%),
    #f4fbfa;
}

.xtao-section--charts {
  background:
    radial-gradient(circle at 18% 20%, rgba(37, 99, 235, 0.1), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(0, 191, 179, 0.14), transparent 26%),
    #f8fbfd;
}

.xtao-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 42px;
  align-items: start;
}

.xtao-chart-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 14px;
}

.xtao-chart {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 18px;
  border: 1px solid var(--xtao-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 62px rgba(7, 17, 31, 0.08);
}

.xtao-chart--line {
  grid-row: span 2;
  display: grid;
  grid-template-rows: auto auto 1fr;
}

.xtao-chart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.xtao-chart__head span {
  color: var(--xtao-body);
  font-size: 13px;
  font-weight: 800;
}

.xtao-chart__head strong {
  color: var(--xtao-cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}

.xtao-chart svg {
  width: 100%;
  height: auto;
  display: block;
}

.xtao-chart--line svg {
  min-height: 190px;
}

.xtao-chart-gridlines path {
  fill: none;
  stroke: rgba(15, 23, 42, 0.08);
  stroke-width: 1;
}

.xtao-line-shadow,
.xtao-line-main {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.xtao-line-shadow {
  stroke: rgba(0, 191, 179, 0.16);
  stroke-width: 12;
  filter: blur(4px);
}

.xtao-line-main {
  stroke: url("#xtaoLineGlow");
  stroke-width: 4;
  stroke-dasharray: 560;
  stroke-dashoffset: 560;
  animation: xtao-draw-line 2.8s ease forwards, xtao-line-breathe 3.8s ease-in-out 2.8s infinite;
}

.xtao-chart-dot {
  fill: var(--xtao-cyan);
  filter: drop-shadow(0 0 8px rgba(0, 191, 179, 0.5));
  transform-origin: center;
  animation: xtao-dot-pulse 1.8s ease-in-out infinite;
}

.xtao-chart-dot--late {
  fill: var(--xtao-blue);
  animation-delay: 0.35s;
}

.xtao-chart-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.72fr);
  gap: 14px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(0, 169, 157, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 169, 157, 0.08), rgba(47, 110, 234, 0.06)),
    rgba(255, 255, 255, 0.72);
}

.xtao-chart-summary > div {
  min-width: 0;
}

.xtao-chart-summary span:first-child {
  color: var(--xtao-cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.xtao-chart-summary strong {
  display: block;
  margin-top: 8px;
  color: var(--xtao-text);
  font-size: 18px;
  line-height: 1.25;
}

.xtao-chart-summary p {
  margin: 9px 0 0;
  color: var(--xtao-body);
  font-size: 13px;
  line-height: 1.58;
}

.xtao-chart-summary ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.xtao-chart-summary li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.xtao-chart-summary b {
  color: var(--xtao-blue);
  font-family: "JetBrains Mono", monospace;
  font-size: 15px;
}

.xtao-chart-summary li span {
  color: var(--xtao-body);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.xtao-bars {
  display: grid;
  gap: 15px;
  padding-top: 12px;
}

.xtao-bars div {
  display: grid;
  gap: 8px;
}

.xtao-bars span {
  color: var(--xtao-body);
  font-size: 13px;
  font-weight: 700;
}

.xtao-bars i {
  position: relative;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.xtao-bars i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--xtao-cyan), var(--xtao-blue));
  transform-origin: left;
  animation: xtao-grow-bar 1.6s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.xtao-bars div:nth-child(2) i::before {
  animation-delay: 0.12s;
}

.xtao-bars div:nth-child(3) i::before {
  animation-delay: 0.24s;
}

.xtao-bars div:nth-child(4) i::before {
  animation-delay: 0.36s;
}

.xtao-donut {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 174px;
}

.xtao-donut svg {
  width: 150px;
  transform: rotate(-90deg);
}

.xtao-donut__track,
.xtao-donut__ring {
  fill: none;
  stroke-width: 14;
}

.xtao-donut__track {
  stroke: rgba(15, 23, 42, 0.08);
}

.xtao-donut__ring {
  stroke: var(--xtao-cyan);
  stroke-linecap: round;
  stroke-dasharray: 364;
  stroke-dashoffset: 364;
  animation: xtao-donut-fill 2s ease forwards;
  filter: drop-shadow(0 0 8px rgba(0, 191, 179, 0.32));
}

.xtao-donut div {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
}

.xtao-donut strong {
  color: var(--xtao-text);
  font-size: 28px;
  line-height: 1;
}

.xtao-donut span {
  margin-top: 8px;
  color: var(--xtao-body);
  font-size: 12px;
  font-weight: 700;
}

.xtao-relay {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 44px;
  align-items: center;
}

.xtao-relay-map {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--xtao-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 26px 66px rgba(15, 23, 42, 0.1);
}

.xtao-relay-map div {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--xtao-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.xtao-relay-map div::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  top: -72px;
  right: -72px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 191, 179, 0.24), transparent 66%);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
  transform: scale(0.75);
}

.xtao-relay-map div:hover::before {
  opacity: 1;
  transform: scale(1);
}

.xtao-relay-map span,
.xtao-relay-map strong {
  position: relative;
  z-index: 1;
  display: block;
}

.xtao-relay-map span {
  color: var(--xtao-cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.xtao-relay-map strong {
  margin-top: 8px;
  color: var(--xtao-text);
  font-size: 20px;
}

.xtao-relay-map i {
  width: 2px;
  height: 28px;
  display: block;
  margin: 0 auto;
  background: linear-gradient(180deg, transparent, var(--xtao-cyan), transparent);
  background-size: 100% 220%;
  animation: xtao-route-pulse 1.8s linear infinite;
}

.xtao-section--stack {
  background: #f6f9fb;
}

.xtao-stack {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}

.xtao-terminal {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.2);
  border-radius: 8px;
  background: #102033;
  box-shadow: 0 26px 68px rgba(15, 23, 42, 0.15);
}

.xtao-terminal__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--xtao-line-dark);
  color: #a9b8ca;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.xtao-terminal__bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff5c7a;
}

.xtao-terminal__bar span:nth-child(2) {
  background: #f5b547;
}

.xtao-terminal__bar span:nth-child(3) {
  background: #8cf66a;
}

.xtao-terminal__bar strong {
  margin-left: 8px;
}

.xtao-terminal pre {
  margin: 0;
  padding: 24px;
  white-space: pre-wrap;
  color: #d9fdf7;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  line-height: 1.9;
}

.xtao-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.xtao-cta {
  padding: 82px 0 92px;
  border-top: 1px solid var(--xtao-line);
  background:
    radial-gradient(circle at 18% 26%, rgba(0, 169, 157, 0.12), transparent 30%),
    linear-gradient(135deg, #eefafa, #edf4ff);
}

.xtao-cta h2 {
  color: var(--xtao-text);
}

.xtao-cta p {
  color: var(--xtao-body);
}

.xtao-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.xtao-footer {
  padding: 32px 0;
  border-top: 1px solid var(--xtao-line);
  background: #f7fafc;
  color: #7a8798;
  font-size: 14px;
}

.xtao-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
}

.xtao-footer__company,
.xtao-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.xtao-footer__company strong {
  color: var(--xtao-ink);
  font-size: 15px;
  letter-spacing: 0;
}

.xtao-footer__contact {
  text-align: right;
  align-items: flex-end;
}

.xtao-footer a {
  color: var(--xtao-blue);
  text-decoration: none;
}

@media (max-width: 980px) {
  .xtao-hero__inner,
  .xtao-chatwoot,
  .xtao-relay,
  .xtao-stack,
  .xtao-cta__inner,
  .xtao-dashboard,
  .xtao-growth-showcase {
    grid-template-columns: 1fr;
  }

  .xtao-signal-grid,
  .xtao-service-grid,
  .xtao-metrics,
  .xtao-review-grid,
  .xtao-chart-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xtao-chart--line {
    grid-row: auto;
    grid-column: span 2;
  }

  .xtao-chatwoot-stage {
    min-height: 610px;
  }

  .xtao-stage-art {
    inset: 0 auto auto 0;
    width: 100%;
  }

  .xtao-browser-shot {
    width: 100%;
  }

  .xtao-phone-shot {
    left: 24px;
  }

  .xtao-growth-panel {
    min-height: auto;
  }

  .xtao-cta .xtao-button {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .xtao-wrap {
    width: calc(100% - 28px);
  }

  .xtao-nav__inner {
    min-height: 66px;
    gap: 12px;
    justify-content: flex-start;
  }

  .xtao-nav__links {
    display: none;
  }

  .xtao-nav__tools {
    margin-left: 12px;
  }

  .xtao-button--nav {
    display: none;
  }

  .xtao-lang {
    min-width: 54px;
    padding: 0 9px;
  }

  .xtao-hero {
    height: auto;
    min-height: auto;
    padding: 62px 0 34px;
  }

  .xtao-hero::after {
    background: linear-gradient(180deg, rgba(247, 250, 252, 0.96), rgba(247, 250, 252, 0.88));
  }

  .xtao-hero__media {
    background:
      linear-gradient(180deg, rgba(247, 250, 252, 0.92), rgba(247, 250, 252, 0.7)),
      url("./assets/xtao-hero-ai-commerce.png?v=2") center top / cover;
    opacity: 0.48;
  }

  .xtao-hero h1 {
    max-width: 340px;
    font-size: clamp(38px, 10.5vw, 46px);
    line-height: 1.04;
  }

  .xtao-hero__lead {
    max-width: 340px;
    font-size: 16px;
    line-height: 1.62;
  }

  .xtao-kicker {
    max-width: 340px;
    line-height: 1.45;
  }

  .xtao-command__core {
    grid-template-columns: 1fr;
  }

  .xtao-command__core i {
    width: 2px;
    height: 22px;
    margin: 0 auto;
  }

  .xtao-signal-grid,
  .xtao-service-grid,
  .xtao-metrics,
  .xtao-review-grid,
  .xtao-chart-grid {
    grid-template-columns: 1fr;
  }

  .xtao-chart--line {
    grid-column: auto;
  }

  .xtao-chart-summary {
    grid-template-columns: 1fr;
  }

  .xtao-chatwoot-stage {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .xtao-chatwoot-stage::before,
  .xtao-chatwoot-stage::after,
  .xtao-stage-art {
    display: none;
  }

  .xtao-browser-shot,
  .xtao-phone-shot {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .xtao-browser-shot__app {
    grid-template-columns: 1fr;
  }

  .xtao-inbox-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--xtao-line);
  }

  .xtao-inbox-list div {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .xtao-inbox-list strong {
    display: none;
  }

  .xtao-phone-shot {
    min-height: 340px;
    border-radius: 18px;
  }

  .xtao-flow-badges {
    grid-template-columns: 1fr;
  }

  .xtao-growth-showcase {
    gap: 12px;
    margin-top: 28px;
  }

  .xtao-growth-visual {
    min-height: 260px;
  }

  .xtao-growth-panel {
    padding: 22px;
  }

  .xtao-growth-panel::after {
    width: 38px;
    height: 38px;
    background-size: 22px 22px;
  }

  .xtao-growth-panel h3 {
    max-width: 300px;
    font-size: 25px;
    line-height: 1.14;
  }

  .xtao-growth-panel li {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .xtao-metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--xtao-line);
  }

  .xtao-metrics div:last-child {
    border-bottom: 0;
  }

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

  .xtao-section__head h2,
  .xtao-cta h2 {
    max-width: 340px;
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.08;
  }

  .xtao-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .xtao-footer__contact {
    text-align: left;
    align-items: flex-start;
  }
}

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

@keyframes xtao-hero-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.045) translate3d(1%, -0.5%, 0);
  }
}

@keyframes xtao-scan {
  from {
    transform: translateX(-80%);
  }
  to {
    transform: translateX(80%);
  }
}

@keyframes xtao-route-pulse {
  from {
    background-position: 0 120%;
  }
  to {
    background-position: 0 -120%;
  }
}

@keyframes xtao-language-pop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(0.94);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes xtao-orbit-breathe {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes xtao-art-drift {
  0% {
    opacity: 0.24;
    transform: rotateX(2deg) rotateY(-6deg) translate3d(-4px, 2px, 0) scale(1);
  }
  100% {
    opacity: 0.34;
    transform: rotateX(1deg) rotateY(-4deg) translate3d(8px, -8px, 0) scale(1.025);
  }
}

@keyframes xtao-showcase-sheen {
  0%,
  54% {
    transform: translateX(-88%);
    opacity: 0;
  }
  64% {
    opacity: 1;
  }
  100% {
    transform: translateX(88%);
    opacity: 0;
  }
}

@keyframes xtao-new-inquiry {
  0%,
  100% {
    transform: translateX(0);
    box-shadow: 0 14px 34px rgba(0, 169, 157, 0.11);
  }
  12% {
    transform: translateX(4px);
    box-shadow: 0 18px 44px rgba(0, 169, 157, 0.2);
  }
  28%,
  70% {
    transform: translateX(0);
  }
}

@keyframes xtao-step-highlight {
  0%,
  100% {
    border-color: rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.78);
    color: var(--xtao-body);
    transform: translateY(0);
  }
  18%,
  38% {
    border-color: rgba(0, 169, 157, 0.28);
    background: rgba(0, 169, 157, 0.08);
    color: var(--xtao-ink);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 169, 157, 0.12);
  }
}

@keyframes xtao-list-idle {
  0%,
  100% {
    opacity: 0.72;
  }
  45%,
  72% {
    opacity: 1;
  }
}

@keyframes xtao-message-cycle {
  0%,
  10% {
    opacity: 0;
    transform: translateY(10px);
  }
  18%,
  76% {
    opacity: 1;
    transform: translateY(0);
  }
  88%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes xtao-reply-tools {
  0%,
  18% {
    opacity: 0;
    transform: translateY(8px);
  }
  28%,
  78% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes xtao-phone-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.2deg);
  }
  50% {
    transform: translate3d(0, -8px, 0) rotate(0.8deg);
  }
}

@keyframes xtao-tab-progress {
  0% {
    transform: scaleX(0.28);
    transform-origin: left;
  }
  55%,
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes xtao-draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes xtao-line-breathe {
  0%,
  100% {
    stroke-width: 4;
  }
  50% {
    stroke-width: 5.5;
  }
}

@keyframes xtao-dot-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.26);
  }
}

@keyframes xtao-grow-bar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes xtao-donut-fill {
  to {
    stroke-dashoffset: 18;
  }
}
