:root {
  --ink: #17132d;
  --muted: #5b5770;
  --soft: #f5f7fb;
  --line: #e3e7ef;
  --green: #18c96b;
  --green-dark: #059b55;
  --purple: #4c176d;
  --purple-2: #6c2bc2;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(23, 19, 45, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 19, 45, 0.03) 1px, transparent 1px),
    var(--white);
  background-size: 56px 56px;
  animation: pageGridDrift 28s linear infinite;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
}

.brand-logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: clamp(168px, 17vw, 232px);
  animation: logoEnter 680ms ease both, logoBreathe 5.8s ease-in-out 900ms infinite;
}

.brand-logo-wrap::after {
  position: absolute;
  inset: -10px -12px;
  z-index: -1;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle at 20% 50%, rgba(24, 201, 107, 0.18), transparent 58%);
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand:hover .brand-logo-wrap::after {
  opacity: 1;
  transform: scale(1);
}

.brand:hover .brand-logo {
  animation: logoWiggle 680ms ease;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(76, 23, 109, 0.14));
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

nav a {
  position: relative;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.7fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  padding: clamp(46px, 6vw, 76px) clamp(20px, 5vw, 72px) 42px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
    linear-gradient(120deg, rgba(24, 201, 107, 0.09), transparent 32%),
    linear-gradient(300deg, rgba(108, 43, 194, 0.11), transparent 38%);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -2;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: -20% -10%;
  background:
    repeating-linear-gradient(115deg, transparent 0 42px, rgba(5, 155, 85, 0.08) 43px 44px, transparent 45px 84px),
    repeating-linear-gradient(0deg, transparent 0 76px, rgba(76, 23, 109, 0.06) 77px 78px);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.95), transparent 72%);
  transform: translate3d(0, 0, 0);
  animation: heroCircuitMove 24s linear infinite;
}

.hero::after {
  right: -10%;
  bottom: 10%;
  width: 52%;
  height: 46%;
  border: 1px solid rgba(76, 23, 109, 0.11);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18)),
    linear-gradient(180deg, rgba(24, 201, 107, 0.08), rgba(108, 43, 194, 0.1));
  transform: rotate(-4deg);
  animation: panelDrift 8s ease-in-out infinite;
}

.hero-signal {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-signal span {
  position: absolute;
  right: clamp(12px, 8vw, 120px);
  width: clamp(180px, 24vw, 360px);
  height: 52px;
  border: 1px solid rgba(24, 201, 107, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 44px rgba(23, 19, 45, 0.06);
  opacity: 0;
  transform: translate3d(70px, 0, 0);
  animation: messageRail 12s ease-in-out infinite;
}

.hero-signal span::before,
.hero-signal span::after {
  position: absolute;
  left: 16px;
  content: "";
  border-radius: 999px;
  background: rgba(76, 23, 109, 0.15);
}

.hero-signal span::before {
  top: 14px;
  width: 42%;
  height: 7px;
}

.hero-signal span::after {
  top: 30px;
  width: 62%;
  height: 6px;
  background: rgba(5, 155, 85, 0.14);
}

.hero-signal span:nth-child(1) {
  top: 22%;
}

.hero-signal span:nth-child(2) {
  top: 44%;
  right: clamp(32px, 16vw, 240px);
  animation-delay: 3.8s;
}

.hero-signal span:nth-child(3) {
  top: 66%;
  animation-delay: 7.4s;
}

.hero-copy {
  position: relative;
  max-width: 850px;
  animation: riseIn 620ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 900px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  max-width: 820px;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.35;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -80%;
  width: 60%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: skewX(-18deg);
}

.button:hover::before {
  animation: sheen 720ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 0 16px 34px rgba(5, 155, 85, 0.22);
}

.secondary {
  color: var(--purple);
  border: 1px solid var(--line);
  background: var(--white);
}

.large {
  min-height: 58px;
  margin-top: 18px;
  padding: 0 28px;
}

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

.proof-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  background: var(--white);
}

.mascot-guide {
  position: relative;
  display: inline-grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  max-width: 430px;
  margin-top: 20px;
  padding: 12px 16px 12px 10px;
  border: 1px solid rgba(76, 23, 109, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(23, 19, 45, 0.09);
  animation: guideIn 720ms ease 220ms both, guidePulse 5s ease-in-out 1s infinite;
}

.mascot-guide::after {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(24, 201, 107, 0.14);
  animation: statusBlink 1.8s ease-in-out infinite;
}

.mascot-guide img {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(76, 23, 109, 0.16));
  animation: mascotFloat 4.2s ease-in-out infinite;
}

.mascot-guide p {
  margin: 0;
  padding-right: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
}

.mascot-guide strong,
.mascot-guide span {
  display: block;
}

.mascot-guide strong {
  margin-bottom: 4px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 900;
}

.hero-product {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  animation: productIn 720ms ease 120ms both;
}

.hero-product::before {
  position: absolute;
  inset: 22px 0 0 18px;
  content: "";
  border: 1px solid rgba(76, 23, 109, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.28)),
    linear-gradient(180deg, rgba(24, 201, 107, 0.08), rgba(108, 43, 194, 0.1));
  transform: rotate(-2deg);
}

.product-glow {
  position: absolute;
  z-index: 0;
  width: min(94%, 390px);
  height: 470px;
  border: 1px solid rgba(24, 201, 107, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(180deg, rgba(24, 201, 107, 0.09) 0 1px, transparent 1px 38px),
    linear-gradient(120deg, rgba(24, 201, 107, 0.16), rgba(108, 43, 194, 0.16), rgba(24, 201, 107, 0.12));
  background-size: auto, auto, 260% 260%;
  transform: rotate(4deg);
  animation: productPanelFloat 7s ease-in-out infinite, gradientFlow 9s ease-in-out infinite;
}

.mascot-orbit {
  display: none;
}

.mascot-orbit::after {
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 20px;
  height: 20px;
  content: "";
  border: 2px solid rgba(24, 201, 107, 0.42);
  border-radius: 999px;
  animation: signalPing 2.2s ease-out infinite;
}

.mascot-orbit img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(76, 23, 109, 0.18));
}

.device-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  padding: 12px;
  border: 1px solid rgba(23, 19, 45, 0.22);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(231, 236, 247, 0.78)),
    linear-gradient(135deg, #24143f, #0f1022);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.86),
    inset 0 -12px 24px rgba(23, 19, 45, 0.1),
    0 36px 86px rgba(23, 19, 45, 0.2);
}

.device-frame::before {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 35px;
  pointer-events: none;
}

.device-button {
  position: absolute;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2b2442, #0f1022);
}

.device-button.volume {
  top: 106px;
  left: -4px;
  height: 58px;
}

.device-button.power {
  top: 142px;
  right: -4px;
  height: 76px;
}

.device-screen {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #f5f7fb;
}

.device-camera {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 8;
  width: 96px;
  height: 27px;
  border-radius: 999px;
  background: #10101f;
  box-shadow: inset 16px 0 24px rgba(255, 255, 255, 0.05);
  transform: translateX(-50%);
}

.device-camera::after {
  position: absolute;
  top: 8px;
  right: 14px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #5d6286, #16172d 70%);
}

.device-status {
  position: absolute;
  top: 14px;
  right: 20px;
  left: 20px;
  z-index: 7;
  display: grid;
  grid-template-columns: 1fr auto auto auto auto;
  align-items: end;
  gap: 7px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.42);
}

.carrier {
  letter-spacing: 0.04em;
}

.signal-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 11px;
}

.signal-bars i {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.signal-bars i:nth-child(1) {
  height: 4px;
}

.signal-bars i:nth-child(2) {
  height: 6px;
}

.signal-bars i:nth-child(3) {
  height: 8px;
}

.signal-bars i:nth-child(4) {
  height: 10px;
}

.battery {
  position: relative;
  width: 19px;
  height: 10px;
  border: 1.7px solid #ffffff;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
}

.battery::before {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 11px;
  height: 4px;
  content: "";
  border-radius: 1px;
  background: #ffffff;
}

.battery::after {
  position: absolute;
  top: 2px;
  right: -4px;
  width: 2px;
  height: 4px;
  content: "";
  border-radius: 0 2px 2px 0;
  background: #ffffff;
}

.chat-demo {
  position: relative;
  width: 100%;
  justify-self: center;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(24, 201, 107, 0.16), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(108, 43, 194, 0.14), transparent 30%),
    var(--soft);
  box-shadow: none;
  overflow: hidden;
}

.demo-transition {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 24% 24%, rgba(24, 201, 107, 0.28), transparent 34%),
    linear-gradient(120deg, rgba(5, 155, 85, 0.92), rgba(76, 23, 109, 0.94), rgba(24, 201, 107, 0.86));
  background-size: auto, 260% 260%;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 520ms ease, transform 520ms ease;
  animation: gradientFlow 8s ease-in-out infinite;
}

.demo-transition.is-visible {
  opacity: 1;
  transform: scale(1);
}

.demo-transition span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.demo-transition span::before {
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 999px;
  background: #7cff9d;
  box-shadow: 0 0 0 8px rgba(124, 255, 157, 0.16);
}

.phone-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 48px 20px 18px;
  color: var(--white);
  background: linear-gradient(120deg, var(--green-dark), var(--purple), var(--green-dark));
  background-size: 240% 240%;
  animation: gradientFlow 8.5s ease-in-out infinite;
}

.phone-top small {
  opacity: 0.82;
  font-weight: 700;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #7cff9d;
}

.messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 406px;
  padding: 24px 18px 26px;
  overflow: hidden;
  scroll-behavior: smooth;
  transition: opacity 460ms ease, transform 460ms ease, filter 460ms ease;
}

.messages.is-leaving {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(-10px) scale(0.985);
}

.messages.is-entering {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(10px) scale(0.985);
}

.bubble {
  max-width: 88%;
  margin: 0;
  padding: 13px 15px;
  border-radius: 17px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  animation: messageIn 540ms ease both;
}

.client {
  align-self: flex-end;
  color: var(--white);
  background: var(--green-dark);
  border-bottom-right-radius: 6px;
}

.bot {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom-left-radius: 6px;
}

.note {
  align-self: center;
  max-width: 100%;
  color: var(--purple);
  background: rgba(108, 43, 194, 0.09);
  border: 1px solid rgba(108, 43, 194, 0.12);
  font-size: 13px;
}

.typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: auto;
  min-width: 64px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.typing span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(76, 23, 109, 0.58);
  animation: typingDot 900ms ease-in-out infinite;
}

.typing span:nth-child(2) {
  animation-delay: 120ms;
}

.typing span:nth-child(3) {
  animation-delay: 240ms;
}

.lead-panel {
  position: absolute;
  z-index: 3;
  right: -28px;
  bottom: 22px;
  width: 255px;
  padding: 18px;
  border: 1px solid rgba(227, 231, 239, 0.9);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 52px rgba(23, 19, 45, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
  transition: opacity 260ms ease, transform 260ms ease;
}

.lead-panel.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: panelFloat 4.5s ease-in-out 260ms infinite;
}

.lead-panel strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 19px;
}

.mini-label {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-panel dl {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.lead-panel div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.lead-panel dt,
.lead-panel dd {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.lead-panel dt {
  color: var(--muted);
}

.lead-panel dd {
  color: var(--purple);
  text-align: right;
}

.sync-pill {
  display: inline-flex;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  font-size: 12px;
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.trust-strip div {
  min-height: 132px;
  padding: 26px clamp(18px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.92);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
  color: var(--purple);
  font-size: 18px;
  line-height: 1.1;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.35;
  font-weight: 700;
}

.section {
  padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 72px);
}

.split,
.pilot {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.text-block p,
.pilot p,
.contact p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 650;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

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

.demo-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.demo-card p,
.steps p,
.pilot-box p,
.pilot-box li {
  color: var(--muted);
  line-height: 1.48;
  font-weight: 650;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--purple-2));
  font-size: 22px;
  font-weight: 900;
}

.workflow {
  background:
    linear-gradient(180deg, rgba(245, 247, 251, 0.94), rgba(245, 247, 251, 0.98)),
    var(--soft);
}

.flow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 4px 0 26px;
}

.flow-line::before {
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--purple-2), var(--green));
  border-radius: 999px;
  transform: translateY(-50%);
}

.flow-line span {
  position: relative;
  display: inline-flex;
  justify-content: center;
  justify-self: center;
  min-width: 104px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--purple);
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
}

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

.steps div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.steps div:hover,
.demo-card:hover,
.confidence-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(23, 19, 45, 0.08);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  font-size: 14px;
  font-weight: 900;
}

.pilot {
  background: #fff;
}

.pilot-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  box-shadow: 0 24px 70px rgba(23, 19, 45, 0.08);
}

.price {
  display: block;
  margin-bottom: 12px;
  color: var(--purple);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
}

.pilot-box ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 82%, rgba(24, 201, 107, 0.62), transparent 28%),
    linear-gradient(120deg, var(--purple), #24143f 42%, #163341 66%, var(--green-dark));
  background-size: 180% 180%, 240% 240%;
  animation: ctaGradientFlow 12s ease-in-out infinite;
}

.contact::before,
.contact::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.contact::before {
  inset: 0;
  background:
    repeating-linear-gradient(115deg, transparent 0 48px, rgba(255, 255, 255, 0.06) 49px 50px, transparent 51px 96px),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.12), transparent 26%);
  opacity: 0.72;
  animation: ctaTextureDrift 22s linear infinite;
}

.contact::after {
  top: -28%;
  left: -20%;
  width: 62%;
  height: 78%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 62%);
  filter: blur(8px);
  animation: ctaLightSweep 14s ease-in-out infinite;
}

.confidence {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(24, 201, 107, 0.08), transparent 36%),
    linear-gradient(315deg, rgba(108, 43, 194, 0.1), transparent 35%),
    #fff;
}

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

.confidence-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.confidence-grid p {
  color: var(--muted);
  line-height: 1.5;
  font-weight: 650;
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.82);
}

.contact h2,
.contact p {
  margin-left: auto;
  margin-right: auto;
}

.contact p {
  max-width: 700px;
}

.contact .primary {
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.contact small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .pilot {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .chat-demo {
    justify-self: start;
  }

  .demo-grid,
  .steps,
  .trust-strip,
  .confidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-panel {
    right: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    min-height: auto;
    padding: 10px 18px 12px;
  }

  .brand {
    justify-content: center;
    width: 100%;
  }

  nav {
    width: 100%;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
  }

  nav a {
    padding: 8px 10px;
    border: 1px solid rgba(76, 23, 109, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 22px rgba(23, 19, 45, 0.06);
  }

  nav a::after {
    display: none;
  }

  nav a:first-child {
    display: none;
  }

  .brand-mark {
    display: none;
  }

  .brand-logo-wrap {
    width: min(226px, 68vw);
  }

  .hero {
    gap: 24px;
    padding-top: 18px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: 38px;
    line-height: 0.98;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .proof-row {
    display: none;
  }

  .mascot-guide {
    grid-template-columns: 58px minmax(0, 1fr);
    width: 100%;
    max-width: none;
    margin-top: 16px;
    padding: 10px 14px 10px 8px;
    border-radius: 14px;
  }

  .mascot-guide img {
    width: 58px;
    height: 58px;
  }

  .mascot-guide p {
    font-size: 12px;
  }

  .mascot-guide strong {
    font-size: 13px;
  }

  .chat-demo {
    max-width: none;
    border-radius: 20px;
  }

  .device-frame {
    width: min(100%, 346px);
    padding: 9px;
    border-radius: 34px;
  }

  .device-screen {
    border-radius: 27px;
  }

  .device-camera {
    top: 10px;
    width: 78px;
    height: 23px;
  }

  .device-status {
    top: 12px;
    right: 17px;
    left: 17px;
    gap: 5px;
    font-size: 9px;
  }

  .device-status .carrier {
    display: none;
  }

  .phone-top {
    padding: 40px 16px 13px;
  }

  .messages {
    gap: 8px;
    height: 266px;
    padding: 14px;
  }

  .bubble {
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero-product {
    min-height: 342px;
    margin-top: 8px;
  }

  .mascot-orbit {
    display: none;
  }

  .product-glow {
    width: 86%;
    height: 330px;
    border-radius: 24px;
  }

  .hero-product::before {
    inset: 14px 8px 0;
    border-radius: 22px;
  }

  .lead-panel {
    display: none;
  }

  .trust-strip,
  .confidence-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
    padding: 22px 20px;
  }

  .flow-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-line::before {
    display: none;
  }

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

  .demo-card {
    min-height: 0;
  }

  footer {
    flex-direction: column;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageGridDrift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 56px 0, 0 56px, 0 0;
  }
}

@keyframes heroCircuitMove {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 220px 0, 0 156px;
  }
}

@keyframes panelDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  50% {
    transform: translate3d(-18px, 12px, 0) rotate(-2deg);
  }
}

@keyframes messageRail {
  0%,
  18% {
    opacity: 0;
    transform: translate3d(72px, 18px, 0) scale(0.96);
  }
  28%,
  60% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  78%,
  100% {
    opacity: 0;
    transform: translate3d(-36px, -16px, 0) scale(0.98);
  }
}

@keyframes guideIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes guidePulse {
  0%,
  100% {
    box-shadow: 0 18px 48px rgba(23, 19, 45, 0.09);
  }
  50% {
    box-shadow: 0 22px 56px rgba(5, 155, 85, 0.13);
  }
}

@keyframes statusBlink {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes productIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes productPanelFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(4deg);
  }
  50% {
    transform: translate3d(8px, -10px, 0) rotate(2deg);
  }
}

@keyframes gradientFlow {
  0%,
  100% {
    background-position: 0% 50%, 0% 50%, 0% 50%;
  }
  50% {
    background-position: 100% 50%, 100% 50%, 100% 50%;
  }
}

@keyframes ctaGradientFlow {
  0%,
  100% {
    background-position: 84% 78%, 0% 50%;
  }
  45% {
    background-position: 68% 64%, 100% 50%;
  }
  70% {
    background-position: 92% 72%, 72% 50%;
  }
}

@keyframes ctaTextureDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 240px 0, 0 0;
  }
}

@keyframes ctaLightSweep {
  0%,
  100% {
    opacity: 0.42;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: 0.72;
    transform: translate3d(110%, 26%, 0) scale(1.18);
  }
}

@keyframes messageIn {
  from {
    opacity: 0;
    transform: translateY(9px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes sheen {
  from {
    left: -80%;
  }
  to {
    left: 120%;
  }
}

@keyframes logoEnter {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoBreathe {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes logoWiggle {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  24% {
    transform: rotate(-1.5deg) scale(1.02);
  }
  52% {
    transform: rotate(1.5deg) scale(1.02);
  }
  76% {
    transform: rotate(-0.6deg) scale(1.01);
  }
}

@keyframes mascotFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes signalPing {
  0% {
    opacity: 0.55;
    transform: scale(0.6);
  }
  100% {
    opacity: 0;
    transform: scale(2.4);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes typingDot {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

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