﻿:root {
  --bg-0: #020304;
  --bg-1: #040507;
  --bg-2: #06080b;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --text: #f6f7fb;
  --muted: rgba(246, 247, 251, 0.72);
  --muted-soft: rgba(246, 247, 251, 0.56);
  --blue: #8ec5ff;
  --cyan: #5ee7ff;
  --mint: #84ffd7;
  --gold: #ffd166;
  --orange: #ff9d5c;
  --rose: #ff8eb3;
  --red: #ff7c7c;
  --violet: #b897ff;
  --copper: #da8b57;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  --shell: min(1220px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Poppins, ui-sans-serif, system-ui, sans-serif;
  background:
    radial-gradient(920px 520px at 50% -10%, rgba(94, 231, 255, 0.08), transparent 60%),
    radial-gradient(760px 420px at 8% 16%, rgba(94, 231, 255, 0.05), transparent 58%),
    radial-gradient(760px 420px at 92% 18%, rgba(255, 157, 92, 0.08), transparent 58%),
    radial-gradient(760px 460px at 20% 78%, rgba(184, 151, 255, 0.04), transparent 58%),
    radial-gradient(760px 460px at 82% 80%, rgba(132, 255, 215, 0.05), transparent 58%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-2) 100%);
  overflow-x: hidden;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 18%, black 0%, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(480px 220px at 12% 12%, rgba(94, 231, 255, 0.04), transparent 70%),
    radial-gradient(520px 240px at 88% 10%, rgba(255, 157, 92, 0.06), transparent 72%),
    radial-gradient(520px 240px at 80% 56%, rgba(184, 151, 255, 0.03), transparent 72%),
    radial-gradient(420px 220px at 18% 82%, rgba(132, 255, 215, 0.04), transparent 72%);
  mix-blend-mode: screen;
}

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

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

.shell {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  padding-top: 20px;
  transition: padding 220ms ease;
}

.site-nav-wrap {
  width: var(--shell);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    width 220ms ease,
    padding 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

body.is-scrolled .site-header {
  padding-top: 10px;
}

body.is-scrolled .site-nav-wrap {
  width: min(1080px, calc(100vw - 20px));
  border-color: rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(7, 8, 12, 0.9), rgba(5, 6, 9, 0.82)),
    radial-gradient(220px 70px at 15% 0%, rgba(94, 231, 255, 0.08), transparent 70%),
    radial-gradient(220px 70px at 85% 0%, rgba(255, 157, 92, 0.08), transparent 70%);
  backdrop-filter: blur(24px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-weight: 600;
}

.brand-logo {
  display: inline-flex;
  align-items: flex-end;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-mark {
  margin-right: -0.04em;
  font-size: 1.38em;
  line-height: 0.9;
}

.brand-word {
  position: relative;
  padding-bottom: 5px;
}

.brand-word::after {
  content: "";
  position: absolute;
  left: -0.8em;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 14px rgba(142, 197, 255, 0.14);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.current {
  color: #fff;
}

.nav-cta,
.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.nav-cta::before,
.btn::before,
.btn-secondary::before,
.step-button::before {
  content: "";
  position: absolute;
  inset: 1px auto 1px -32%;
  width: 34%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  transition: opacity 220ms ease, transform 420ms ease;
  pointer-events: none;
}

.nav-cta:hover,
.btn:hover,
.btn-secondary:hover,
.step-button:hover {
  transform: translateY(-2px) scale(1.02);
  filter: saturate(1.08);
}

.nav-cta:hover::before,
.btn:hover::before,
.btn-secondary:hover::before,
.step-button:hover::before {
  opacity: 1;
  transform: translateX(320%) skewX(-18deg);
}

.btn:hover,
.nav-cta:hover {
  box-shadow: 0 24px 58px rgba(109, 177, 255, 0.34);
}

.btn-secondary:hover,
.step-button:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  color: #08101c;
  border: 0;
  background: linear-gradient(135deg, #f4f7ff, #d5ffe8);
  box-shadow: 0 18px 48px rgba(109, 177, 255, 0.24);
  font-weight: 700;
}

.page {
  padding-top: 128px;
}

.eyebrow {
  display: none;
}

.hero-centered {
  position: relative;
  padding: 34px 0 44px;
  text-align: center;
}

.hero-centered::before,
.hero-centered::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  opacity: 0.95;
}

.hero-centered::before {
  top: 34px;
  left: 7%;
  width: 180px;
  height: 180px;
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 231, 255, 0.22), transparent 68%);
  filter: blur(8px);
}

.hero-centered::after {
  top: 56px;
  right: 8%;
  width: 240px;
  height: 240px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 157, 92, 0.18), transparent 70%);
  filter: blur(10px);
}

.hero-centered > * {
  position: relative;
  z-index: 1;
}

.display,
.section-title,
.card-title {
  margin: 0;
  font-family: Poppins, ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.display {
  max-width: 14ch;
  margin: 22px auto 0;
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.display .line-one,
.display .line-two {
  display: block;
  white-space: nowrap;
  text-align: center;
}

.display.wide {
  max-width: 13.5ch;
}

.display .color-a {
  color: var(--blue);
}

.display .color-b {
  color: var(--gold);
}

.subcopy,
.section-copy,
.card-copy {
  color: var(--muted);
  line-height: 1.9;
}

.subcopy {
  max-width: 52rem;
  margin: 28px auto 0;
  font-size: 1.03rem;
}

.hero-agent-bubbles {
  position: absolute;
  inset: 8px 0 auto 0;
  z-index: 1;
  pointer-events: none;
}

.hero-bubbles-side {
  position: absolute;
  top: 8px;
  display: grid;
  gap: 12px;
}

.hero-bubbles-left {
  left: -8px;
}

.hero-bubbles-right {
  right: -8px;
}

.title-bubble {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(20, 30, 52, 0.88), rgba(10, 15, 28, 0.84)),
    radial-gradient(80px 40px at 50% 0%, rgba(255, 255, 255, 0.08), transparent 70%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.title-bubble.bubble-lg {
  width: 68px;
  height: 68px;
}

.title-bubble.bubble-md {
  width: 58px;
  height: 58px;
}

.title-bubble.bubble-sm {
  width: 48px;
  height: 48px;
}

.title-bubble img {
  width: 38px;
  height: 46px;
  object-fit: contain;
  object-position: center top;
}

.title-bubble.bubble-sm img {
  width: 30px;
  height: 38px;
}

.title-bubble.bubble-lg img {
  width: 46px;
  height: 56px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 42px;
}

.btn,
.btn-secondary {
  min-height: 56px;
  padding: 0 24px;
  font-weight: 600;
}

.btn {
  color: #08101c;
  font-weight: 700;
  background: linear-gradient(135deg, #f4f7ff, #d5ffe8);
  box-shadow: 0 18px 48px rgba(109, 177, 255, 0.24);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.impact-stage {
  display: grid;
  gap: 18px;
  margin-top: 52px;
}

.impact-main,
.impact-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.impact-main {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
  background:
    radial-gradient(520px 250px at 0% 0%, rgba(94, 231, 255, 0.16), transparent 70%),
    radial-gradient(440px 220px at 100% 0%, rgba(255, 157, 92, 0.16), transparent 72%),
    radial-gradient(340px 200px at 70% 100%, rgba(132, 255, 215, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(8, 10, 16, 0.96), rgba(3, 5, 10, 0.98));
}

.impact-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 34%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.impact-copy,
.impact-visual {
  position: relative;
  z-index: 1;
  padding: 46px;
}

.impact-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  font-weight: 600;
}

.impact-title {
  margin: 0;
  max-width: 15ch;
  color: rgba(255, 255, 255, 0.97);
  font-size: clamp(1.95rem, 3.3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.impact-text {
  max-width: 35rem;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.76;
  font-size: 1.02rem;
}

.impact-metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 24px;
}

.impact-metric-strip-top {
  margin: 126px 0 168px;
}

.impact-mini {
  position: relative;
  min-width: 0;
  padding: 0 18px;
  text-align: center;
}

.impact-mini::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 1px;
  bottom: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

.impact-mini:last-child::before {
  display: none;
}

.impact-mini-value {
  display: block;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.impact-mini-label {
  display: block;
  max-width: 17ch;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  line-height: 1.48;
  font-size: 0.92rem;
}

.power-reel {
  position: relative;
  margin-top: 28px;
}

.power-stage {
  position: relative;
  min-height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    radial-gradient(420px 180px at 12% 0%, rgba(94, 231, 255, 0.12), transparent 72%),
    radial-gradient(420px 180px at 88% 0%, rgba(255, 157, 92, 0.12), transparent 72%),
    radial-gradient(360px 180px at 50% 100%, rgba(132, 255, 215, 0.08), transparent 72%),
    linear-gradient(180deg, rgba(8, 10, 16, 0.97), rgba(3, 5, 10, 0.99));
}

.power-scene {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  gap: 34px;
  padding: 38px;
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}

.power-scene.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.power-prompt {
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.power-prompt-copy {
  width: 100%;
  min-height: 100%;
  max-width: 1160px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
}

.power-prompt-title {
  width: 100%;
  max-width: 12.5ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(3rem, 6.4vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.power-agent-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 100%;
  padding: 22px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(280px 160px at 50% 0%, rgba(94, 231, 255, 0.12), transparent 70%),
    radial-gradient(220px 140px at 50% 100%, rgba(255, 157, 92, 0.1), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.power-agent-hero.duo {
  justify-content: center;
}

.power-agent-duo {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
}

.power-agent-portrait {
  width: min(100%, 300px);
  max-height: 360px;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.28));
}

.power-agent-duo .power-agent-portrait {
  width: min(100%, 200px);
}

.power-agent-speech {
  margin-top: 18px;
  max-width: 320px;
  padding: 16px 20px;
  border-radius: 22px;
  color: #07101d;
  background: linear-gradient(135deg, #eef8ff, #d7ffec);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 18px 46px rgba(109, 177, 255, 0.18);
}

.power-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-height: 100%;
  padding: 16px 0;
}

.power-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 600;
}

.power-title {
  margin: 18px 0 0;
  max-width: 16ch;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(2rem, 3.35vw, 3.35rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.power-checklist {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.power-check-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  font-size: 0.98rem;
  opacity: 0.28;
  transform: translateY(10px);
  transition: opacity 320ms ease, transform 320ms ease, border-color 320ms ease, background 320ms ease;
}

.power-check-item::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  color: #07101d;
  font-size: 0.92rem;
  font-weight: 700;
  background: linear-gradient(135deg, #eef8ff, #d7ffec);
  box-shadow: 0 10px 22px rgba(109, 177, 255, 0.16);
}

.power-check-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.impact-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 54px 46px;
}

.impact-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.9;
}

.impact-orb.orb-a {
  top: 30px;
  right: 48px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(94, 231, 255, 0.16), transparent 68%);
}

.impact-orb.orb-b {
  bottom: 10px;
  left: 12px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 157, 92, 0.14), transparent 70%);
}

.impact-dashboard,
.impact-stat {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(20, 30, 52, 0.78), rgba(10, 15, 28, 0.68)),
    radial-gradient(140px 60px at 0% 0%, rgba(255, 255, 255, 0.06), transparent 70%);
  backdrop-filter: blur(16px);
}

.impact-dashboard {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  padding: 24px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.impact-stat.small {
  position: absolute;
  z-index: 2;
  width: 172px;
  padding: 12px 13px;
  border-radius: 18px;
}

.impact-stat.top-right {
  top: 14px;
  right: -18px;
}

.impact-stat.bottom-left {
  bottom: 14px;
  left: -18px;
}

.impact-agent-badge {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(18, 24, 40, 0.8), rgba(8, 12, 22, 0.72)),
    radial-gradient(120px 60px at 0% 0%, rgba(94, 231, 255, 0.08), transparent 70%);
  backdrop-filter: blur(16px);
}

.impact-agent-badge img {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  object-fit: contain;
  object-position: center bottom;
  background: rgba(255, 255, 255, 0.05);
}

.impact-dashboard-head {
  display: grid;
  gap: 10px;
}

.impact-dashboard-kicker {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.impact-dashboard-title {
  color: rgba(255, 255, 255, 0.97);
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.impact-bars {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.impact-bar-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr auto;
  align-items: center;
  gap: 12px;
}

.impact-bar-row span,
.impact-bar-row strong {
  font-size: 0.92rem;
}

.impact-bar-row span {
  color: rgba(255, 255, 255, 0.84);
}

.impact-bar-row strong {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 600;
}

.impact-bar-track {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.impact-bar-track i {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #5ee7ff, #84ffd7 52%, #ff9d5c);
}

.impact-dashboard-foot {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.impact-dashboard-chip {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
}

.impact-number {
  display: block;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.impact-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.4;
  font-size: 0.76rem;
}

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

.impact-flow {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding: 6px 0 0;
}

.impact-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(240px 120px at 8% 0%, rgba(94, 231, 255, 0.08), transparent 70%),
    radial-gradient(240px 120px at 92% 100%, rgba(255, 157, 92, 0.08), transparent 70%);
  pointer-events: none;
}

.impact-axis {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
  min-height: 168px;
  padding: 26px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.impact-axis:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.impact-axis::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(94, 231, 255, 0.92), rgba(132, 255, 215, 0.72), rgba(255, 157, 92, 0.92));
  opacity: 0.9;
}

.impact-axis-index {
  color: rgba(255, 255, 255, 0.34);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.impact-axis-copy strong {
  display: block;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.impact-axis-copy p {
  max-width: 40rem;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
  font-size: 0.98rem;
}

.impact-axis-visual {
  position: relative;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.impact-axis-visual.pills {
  flex-wrap: wrap;
  gap: 10px;
}

.impact-axis-visual.pills span,
.impact-axis-node,
.impact-axis-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  font-size: 0.84rem;
}

.impact-axis-visual.chat {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.impact-axis-bubble {
  max-width: 290px;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.impact-axis-bubble.from-user {
  color: #07101d;
  background: linear-gradient(135deg, #eef8ff, #d7ffec);
}

.impact-axis-bubble.from-agent {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.07);
}

.impact-axis-note {
  margin-top: 2px;
}

.impact-axis-visual.network {
  min-height: 136px;
}

.impact-axis-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.96);
  font-size: 2rem;
  font-weight: 700;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(94, 231, 255, 0.18), rgba(132, 255, 215, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.impact-axis-core::before,
.impact-axis-core::after,
.impact-axis-visual.network::before,
.impact-axis-visual.network::after {
  content: "";
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08));
}

.impact-axis-core::before {
  width: 88px;
  top: 16px;
  left: 54px;
}

.impact-axis-core::after {
  width: 78px;
  bottom: 18px;
  right: 54px;
}

.impact-axis-visual.network::before {
  width: 72px;
  left: 42px;
  bottom: 26px;
  transform: rotate(28deg);
}

.impact-axis-visual.network::after {
  width: 72px;
  right: 46px;
  top: 28px;
  transform: rotate(-28deg);
}

.impact-axis-node {
  position: absolute;
  width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.impact-axis-node img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.impact-axis-node.node-a {
  left: 24px;
  top: 16px;
}

.impact-axis-node.node-b {
  right: 18px;
  top: 14px;
}

.impact-axis-node.node-c {
  left: 12px;
  bottom: 16px;
}

.impact-axis-node.node-d {
  right: 24px;
  bottom: 12px;
}

.impact-axis-visual.data {
  gap: 18px;
  justify-content: flex-end;
}

.impact-axis-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  width: 140px;
  height: 98px;
}

.impact-axis-bars i {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(94, 231, 255, 0.96), rgba(132, 255, 215, 0.72));
  box-shadow: 0 10px 30px rgba(94, 231, 255, 0.16);
}

.impact-axis-stat {
  display: grid;
  gap: 8px;
  align-content: center;
}

.impact-axis-stat strong {
  color: rgba(255, 255, 255, 0.97);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.impact-axis-stat span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  font-size: 0.9rem;
}

.impact-card {
  grid-column: span 4;
  min-height: 170px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    radial-gradient(220px 90px at 0% 0%, rgba(142, 197, 255, 0.1), transparent 70%);
}

.impact-card.wide {
  grid-column: span 6;
  min-height: 186px;
}

.impact-card.accent {
  background:
    radial-gradient(240px 110px at 0% 0%, rgba(132, 255, 215, 0.14), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
}

.impact-card::before {
  content: "";
  position: absolute;
  top: -48px;
  right: -28px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.impact-card-metric {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  font-weight: 600;
}

.impact-card strong {
  display: block;
  color: rgba(255, 255, 255, 0.96);
  margin-top: 16px;
  font-size: 1.24rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.impact-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.96rem;
}

.impact-card-visual,
.impact-checklist,
.impact-dual-stat {
  margin-top: 18px;
}

.impact-card-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.impact-pill,
.impact-checklist span {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.impact-chat-preview {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.impact-chat-line {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 0.87rem;
  line-height: 1.5;
}

.impact-chat-line.from-user {
  justify-self: end;
  color: #07101d;
  background: linear-gradient(135deg, #eff8ff, #d7ffec);
}

.impact-chat-line.from-agent {
  justify-self: start;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.07);
}

.impact-checklist {
  display: grid;
  gap: 10px;
}

.impact-checklist span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5ee7ff, #84ffd7);
  box-shadow: 0 0 0 4px rgba(94, 231, 255, 0.12);
}

.impact-spark {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 84px;
  margin-top: auto;
  padding-top: 18px;
}

.impact-spark i {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(94, 231, 255, 0.95), rgba(132, 255, 215, 0.7));
  box-shadow: 0 12px 24px rgba(94, 231, 255, 0.12);
}

.impact-dual-stat {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.impact-dual-stat div,
.impact-money-line {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.impact-dual-stat strong,
.impact-money-line strong,
.impact-money-line span {
  display: block;
}

.impact-dual-stat strong {
  color: rgba(255, 255, 255, 0.97);
  font-size: 1.28rem;
  line-height: 1;
}

.impact-dual-stat span,
.impact-money-line span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.45;
}

.impact-money-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.impact-money-line strong {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.06rem;
}

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

.quick-point,
.panel,
.showcase-screen,
.preview-card,
.detail-card,
.price-card,
.integrations-strip,
.timeline-card {
  box-shadow: var(--shadow);
}

.quick-point {
  position: relative;
  min-height: 124px;
  padding: 22px;
  text-align: left;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    radial-gradient(200px 90px at 0% 0%, rgba(142, 197, 255, 0.12), transparent 70%);
}

.quick-point::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  opacity: 0.55;
}

.quick-point:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    radial-gradient(200px 90px at 0% 0%, rgba(255, 209, 102, 0.14), transparent 70%);
}

.quick-point:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    radial-gradient(200px 90px at 0% 0%, rgba(132, 255, 215, 0.12), transparent 70%);
}

.quick-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.24rem;
}

.quick-point span {
  color: var(--muted-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

.section {
  padding: 38px 0 18px;
}

.section-head {
  position: relative;
  margin-bottom: 34px;
}

.section-head::after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(142, 197, 255, 0.96), rgba(94, 231, 255, 0.7), transparent);
}

.section-title {
  margin-top: 16px;
  max-width: none;
  font-size: clamp(1.9rem, 3.1vw, 2.7rem);
  white-space: nowrap;
}

.section-copy {
  max-width: 64rem;
  margin-top: 16px;
}

.showcase-stage {
  position: relative;
  min-height: 710px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-stage::before,
.showcase-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.showcase-stage::before {
  left: 4%;
  bottom: 9%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 40px rgba(94, 231, 255, 0.05);
}

.showcase-stage::after {
  right: 5%;
  top: 12%;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow:
    0 0 0 10px rgba(255, 209, 102, 0.05),
    0 0 40px rgba(255, 209, 102, 0.25);
}

.showcase-screen {
  position: relative;
  z-index: 2;
  width: min(100%, 840px);
  padding: 22px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(360px 160px at 14% 0%, rgba(94, 231, 255, 0.12), transparent 70%),
    radial-gradient(360px 160px at 86% 0%, rgba(255, 157, 92, 0.14), transparent 70%),
    linear-gradient(180deg, rgba(14, 20, 40, 0.94), rgba(7, 10, 19, 0.97));
  transform: perspective(1800px) rotateX(8deg) rotateY(-4deg);
  transition: transform 180ms linear;
}

.window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.showcase-copy-block {
  padding: 10px 6px 10px 6px;
}

.showcase-copy-block .card-title {
  margin-top: 14px;
  font-size: clamp(1.95rem, 3vw, 3rem);
}

.showcase-flow {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.flow-card,
.small-chip,
.mini-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
}

.flow-card {
  padding: 14px 16px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.showcase-side {
  display: grid;
  gap: 16px;
}

.panel {
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    radial-gradient(180px 60px at 50% 0%, rgba(142, 197, 255, 0.08), transparent 70%);
  backdrop-filter: blur(18px);
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 20px;
}

.mini-card img {
  width: 48px;
  height: 62px;
  object-fit: contain;
  object-position: center top;
}

.mini-card strong {
  display: block;
}

.mini-card small {
  color: var(--muted-soft);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.logo-grid .small-chip {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 18px;
}

.logo-grid .small-chip img {
  width: 20px;
  height: 20px;
}

.floating-note {
  position: absolute;
  z-index: 1;
  width: 250px;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    radial-gradient(180px 60px at 50% 0%, rgba(184, 151, 255, 0.1), transparent 70%);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  transition: transform 180ms linear;
}

.floating-note.left {
  left: 0;
  top: 72px;
}

.floating-note.right {
  right: 0;
  top: 124px;
}

.note-title {
  margin-bottom: 10px;
  font-size: 0.96rem;
  font-weight: 600;
}

.note-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.preview-grid,
.detail-grid,
.pricing-grid,
.integrations-grid {
  display: grid;
  gap: 22px;
}

.preview-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.preview-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  min-height: 390px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(8, 12, 25, 0.78);
}

.preview-card::after,
.detail-card::after,
.integration-card::after,
.price-card::after,
.timeline-card::after,
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(160px 60px at 100% 0%, rgba(255, 255, 255, 0.05), transparent 70%);
  opacity: 0.9;
}

.preview-accent {
  position: absolute;
  top: -12%;
  left: -8%;
  width: 72%;
  height: 52%;
  opacity: 0.78;
  filter: blur(34px);
}

.preview-inner {
  position: relative;
  z-index: 1;
}

.portrait-frame {
  height: 232px;
  margin-bottom: 22px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background:
    radial-gradient(420px 160px at 50% 0%, rgba(255, 255, 255, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
}

.portrait {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.preview-name,
.detail-name {
  margin: 0;
}

.preview-name {
  font-size: 1.3rem;
}

.preview-role,
.detail-role {
  margin: 6px 0 0;
  color: var(--muted-soft);
}

.preview-copy {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-card {
  position: relative;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    radial-gradient(260px 100px at 0% 0%, rgba(94, 231, 255, 0.08), transparent 70%);
}

.detail-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}

.detail-avatar {
  width: 120px;
  height: 146px;
  object-fit: contain;
  object-position: center top;
  border-radius: 24px;
  background:
    radial-gradient(240px 120px at 50% 0%, rgba(255, 255, 255, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  padding: 8px;
}

.detail-name {
  font-size: 1.54rem;
}

.detail-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.8;
}

.capability-list,
.price-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.capability-list li,
.price-list li {
  list-style: none;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-card {
  position: relative;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    radial-gradient(260px 90px at 0% 0%, rgba(255, 209, 102, 0.09), transparent 70%);
}

.timeline-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.timeline-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.integrations-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 28px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    radial-gradient(280px 120px at 50% 0%, rgba(94, 231, 255, 0.08), transparent 70%);
}

.integration-pill {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
}

.integration-pill img {
  width: 20px;
  height: 20px;
}

.integrations-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.integration-page,
.agent-page {
  position: relative;
}

.integration-page > .hero-centered,
.integration-page > .section,
.agent-page > .hero-centered,
.agent-page > .section {
  position: relative;
  z-index: 2;
}

.integration-stage {
  position: relative;
  padding: 18px 0 44px;
}

.integration-cloud {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.integration-logo {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(18, 28, 50, 0.2), rgba(9, 14, 25, 0.12)),
    radial-gradient(140px 80px at 0% 0%, rgba(94, 231, 255, 0.08), transparent 70%);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  opacity: 0.26;
  will-change: transform;
}

.integration-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 35%),
    radial-gradient(100px 50px at 100% 0%, rgba(255, 255, 255, 0.03), transparent 70%);
}

.integration-logo img {
  position: relative;
  z-index: 1;
  filter: saturate(1.08);
}

.integration-logo.soft {
  opacity: 0.18;
  filter: blur(0.6px);
}

.integration-logo.ghost {
  opacity: 0.12;
  filter: blur(1.2px);
}

.integration-logo.size-sm {
  width: 58px;
  height: 58px;
  border-radius: 20px;
}

.integration-logo.size-sm img {
  width: 24px;
  height: 24px;
}

.integration-logo.size-md {
  width: 74px;
  height: 74px;
}

.integration-logo.size-md img {
  width: 32px;
  height: 32px;
}

.integration-logo.size-lg {
  width: 94px;
  height: 94px;
  border-radius: 30px;
}

.integration-logo.size-lg img {
  width: 40px;
  height: 40px;
}

.agent-cloud {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.agent-logo {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  background:
    linear-gradient(180deg, rgba(18, 28, 50, 0.22), rgba(9, 14, 25, 0.14)),
    radial-gradient(140px 80px at 50% 0%, rgba(255, 255, 255, 0.08), transparent 70%),
    radial-gradient(120px 80px at 0% 100%, rgba(94, 231, 255, 0.08), transparent 72%);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  opacity: 0.3;
  overflow: hidden;
  will-change: transform;
}

.agent-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 36%),
    radial-gradient(90px 54px at 100% 0%, rgba(255, 255, 255, 0.04), transparent 70%);
}

.agent-logo img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center top;
  filter: saturate(1.08) drop-shadow(0 12px 22px rgba(0, 0, 0, 0.18));
}

.agent-logo.soft {
  opacity: 0.2;
  filter: blur(0.6px);
}

.agent-logo.ghost {
  opacity: 0.13;
  filter: blur(1.2px);
}

.agent-logo.size-sm {
  width: 66px;
  height: 66px;
}

.agent-logo.size-sm img {
  width: 42px;
  height: 56px;
}

.agent-logo.size-md {
  width: 86px;
  height: 86px;
}

.agent-logo.size-md img {
  width: 56px;
  height: 76px;
}

.agent-logo.size-lg {
  width: 112px;
  height: 112px;
}

.agent-logo.size-lg img {
  width: 72px;
  height: 96px;
}

.integration-stage::before,
.integration-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  z-index: 0;
}

.integration-stage::before {
  top: 180px;
  left: -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 50% 50%, rgba(94, 231, 255, 0.06), transparent 68%);
}

.integration-stage::after {
  right: -26px;
  bottom: 120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 157, 92, 0.06), transparent 70%);
}

.integration-card {
  position: relative;
  z-index: 2;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(260px 90px at 0% 0%, rgba(132, 255, 215, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(9, 14, 27, 0.94), rgba(7, 10, 19, 0.97));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.integration-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.integration-head img {
  width: 28px;
  height: 28px;
}

.integration-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.integration-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}

.integration-examples {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.integration-examples li {
  list-style: none;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.integration-hero {
  padding-bottom: 32px;
}

.integration-library-section {
  padding-top: 28px;
}

.integration-library {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 15% 0%, rgba(94, 231, 255, 0.14), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(255, 209, 102, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(11, 18, 34, 0.9), rgba(5, 7, 14, 0.98));
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.42);
}

.integration-library::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(132, 255, 215, 0.08), transparent 42%);
  pointer-events: none;
}

.integration-library > * {
  position: relative;
  z-index: 1;
}

.integration-library-top {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.integration-library-top .section-title {
  max-width: 720px;
  margin-top: 16px;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
}

.integration-library-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.8;
}

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

.integration-tile {
  min-height: 126px;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 18px 12px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 750;
  text-align: center;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.integration-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(142, 197, 255, 0.36);
  background:
    radial-gradient(circle at 50% 0%, rgba(142, 197, 255, 0.13), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.32),
    0 0 36px rgba(94, 231, 255, 0.08);
}

.integration-tile img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: saturate(1.08);
  transform-origin: center;
}

.integration-tile img[data-asset$="/pipedrive.svg"] {
  transform: scale(4.05) translateX(2%);
}

.integration-tile img[data-asset$="/klaviyo.svg"] {
  transform: scale(3.05);
}

.integration-tile img[data-asset$="/mailchimp.svg"] {
  transform: scale(3.15) translateY(4%);
}

.integration-tile img[data-asset$="/linear.svg"] {
  transform: scale(3.75);
}

.integration-tile span {
  display: block;
}

.integration-tile.is-fading-1 {
  opacity: 0.68;
}

.integration-tile.is-fading-2 {
  opacity: 0.42;
  filter: blur(0.15px);
}

.integration-tile.is-fading-3 {
  opacity: 0.22;
  filter: blur(0.5px);
  -webkit-mask-image: linear-gradient(180deg, #000 18%, rgba(0, 0, 0, 0.72) 52%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 18%, rgba(0, 0, 0, 0.72) 52%, transparent 100%);
}

.integration-more-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 28px 0 20px;
  color: rgba(255, 255, 255, 0.54);
  letter-spacing: -0.01em;
}

.integration-more-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.integration-more-divider strong {
  font-size: 0.92rem;
  font-weight: 750;
}

.integration-more-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 0% 50%, rgba(132, 255, 215, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.04);
}

.integration-more-card p {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  position: relative;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    radial-gradient(260px 90px at 0% 0%, rgba(142, 197, 255, 0.08), transparent 70%);
}

.price-card.featured {
  border-color: rgba(255, 209, 102, 0.28);
  background:
    radial-gradient(400px 160px at 50% 0%, rgba(255, 209, 102, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.offers-page .pricing-section {
  padding-top: 24px;
}

.offers-hero .section-kicker {
  margin-bottom: 18px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  overflow: hidden;
  padding: 30px;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.offer-card:hover {
  transform: translateY(-7px);
  border-color: rgba(142, 197, 255, 0.34);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.36),
    0 0 42px rgba(94, 231, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.offer-card.monthly {
  background:
    radial-gradient(360px 150px at 0% 0%, rgba(142, 197, 255, 0.18), transparent 68%),
    radial-gradient(260px 140px at 100% 8%, rgba(94, 231, 255, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.offer-card.quarterly {
  border-color: rgba(255, 209, 102, 0.34);
  background:
    radial-gradient(420px 170px at 50% 0%, rgba(255, 209, 102, 0.18), transparent 62%),
    radial-gradient(300px 150px at 0% 100%, rgba(132, 255, 215, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
}

.offer-card.annual {
  background:
    radial-gradient(360px 150px at 0% 0%, rgba(132, 255, 215, 0.16), transparent 68%),
    radial-gradient(300px 150px at 100% 4%, rgba(184, 151, 255, 0.1), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.offer-card.featured::before {
  content: "Populaire";
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd166, #d7ffec);
  color: #08101c;
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(255, 209, 102, 0.18);
}

.offer-card .price-badge {
  width: fit-content;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.price-card h3 {
  margin: 18px 0 8px;
  font-size: 1.48rem;
}

.offer-card h3 {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.98);
  font-size: 1.72rem;
  letter-spacing: -0.04em;
}

.price-stack {
  margin: 10px 0 18px;
}

.old-price {
  display: inline-block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.98rem;
  font-weight: 650;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 124, 124, 0.9);
}

.price-tag {
  margin: 0 0 10px;
  font-family: Poppins, ui-sans-serif, system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.offer-card .price-tag {
  margin: 0;
  color: rgba(255, 255, 255, 0.99);
  font-size: clamp(2.65rem, 4vw, 4.2rem);
  line-height: 0.92;
}

.offer-card .price-tag span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0;
}

.offer-card .price-note {
  min-height: 96px;
  margin-bottom: 22px;
  color: rgba(246, 247, 251, 0.72);
}

.offer-card .price-list {
  margin-top: auto;
}

.offer-card .price-list li {
  color: rgba(246, 247, 251, 0.82);
}

.offer-card .price-cta {
  width: 100%;
  margin-top: 28px;
  min-height: 58px;
  color: #07101d;
  background: linear-gradient(135deg, #f4f7ff, #d7ffec);
  box-shadow:
    0 22px 56px rgba(109, 177, 255, 0.3),
    0 0 42px rgba(132, 255, 215, 0.14);
  font-weight: 800;
}

.offer-card.featured .price-cta {
  background: linear-gradient(135deg, #ffd166, #d7ffec);
  box-shadow:
    0 24px 62px rgba(255, 209, 102, 0.24),
    0 0 46px rgba(132, 255, 215, 0.14);
}

.ask-grid,
.testimonials-grid {
  display: grid;
  gap: 18px;
}

.ask-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.ask-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    radial-gradient(220px 90px at 0% 0%, rgba(142, 197, 255, 0.08), transparent 70%);
  box-shadow: var(--shadow);
}

.ask-card {
  position: relative;
  grid-column: span 4;
  min-height: 250px;
  padding: 22px 22px 20px;
  overflow: hidden;
}

.ask-card.wide {
  grid-column: span 6;
}

.ask-card::before {
  content: "";
  position: absolute;
  inset: auto -10% 58% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 197, 255, 0.2), transparent 66%);
  filter: blur(10px);
  opacity: 0.9;
}

.ask-head,
.ask-meta {
  position: relative;
  z-index: 1;
}

.ask-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.ask-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ask-avatar {
  width: 42px;
  height: 52px;
  border-radius: 14px;
  object-fit: contain;
  object-position: center top;
  background:
    radial-gradient(140px 70px at 50% 0%, rgba(255, 255, 255, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.04);
  padding: 4px;
}

.ask-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 600;
}

.ask-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.06rem;
  font-weight: 600;
}

.ask-prompt {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 8, 18, 0.44);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  font-size: 1rem;
}

.ask-result {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.94rem;
}

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

.step-card {
  position: relative;
  grid-column: span 4;
  min-height: 452px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    radial-gradient(220px 90px at 0% 0%, rgba(142, 197, 255, 0.08), transparent 70%);
  box-shadow: var(--shadow);
}

.chat-step-card {
  min-height: 548px;
}

.steps-title {
  max-width: none;
  font-size: clamp(1.85rem, 2.8vw, 2.55rem);
}

.step-card::before {
  content: "";
  position: absolute;
  inset: auto -10% 58% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 197, 255, 0.18), transparent 66%);
  filter: blur(10px);
  opacity: 0.85;
}

.step-index,
.step-title,
.step-visual,
.step-copy,
.step-button {
  position: relative;
  z-index: 1;
}

.step-index {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
}

.step-title {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.18rem;
  font-weight: 600;
}

.step-copy {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.94rem;
}

.step-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}

.step-button-primary {
  color: #07101d;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #f6fbff, #d8ffe9);
  box-shadow: 0 16px 36px rgba(109, 177, 255, 0.22);
}

.step-visual {
  position: relative;
  height: 232px;
  margin-top: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(220px 110px at 50% 0%, rgba(255, 255, 255, 0.08), transparent 60%),
    rgba(4, 8, 18, 0.42);
  overflow: hidden;
}

.chat-step-card .step-visual {
  height: 352px;
}

.booking-visual {
  padding: 16px;
}

.booking-header {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.booking-header span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.booking-days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.booking-days div,
.booking-grid div,
.chat-bubble,
.tool-node {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.booking-days div {
  display: grid;
  place-items: center;
  min-height: 32px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 600;
}

.booking-days .active {
  color: #07101d;
  background: linear-gradient(135deg, #eef6ff, #d5ffe8);
}

.booking-grid div {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 500;
}

.booking-grid .active {
  color: #07101d;
  background: linear-gradient(135deg, #eef6ff, #d5ffe8);
}

.booking-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tools-visual {
  display: grid;
  place-items: center;
}

.tool-node {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  backdrop-filter: blur(12px);
}

.tool-node img {
  width: 24px;
  height: 24px;
}

.tool-node.center {
  width: 60px;
  height: 60px;
  font-size: 1.45rem;
  font-weight: 700;
  color: #07101d;
  background: linear-gradient(135deg, #eef6ff, #d5ffe8);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tool-node.gmail { top: 24%; left: 26%; transform: translate(-50%, -50%); }
.tool-node.drive { top: 24%; left: 74%; transform: translate(-50%, -50%); }
.tool-node.notion { top: 12%; left: 50%; transform: translate(-50%, -50%); }
.tool-node.calendar { top: 54%; left: 18%; transform: translate(-50%, -50%); }
.tool-node.analytics { top: 54%; left: 82%; transform: translate(-50%, -50%); }
.tool-node.slack { top: 82%; left: 28%; transform: translate(-50%, -50%); }
.tool-node.hubspot { top: 82%; left: 72%; transform: translate(-50%, -50%); }
.tool-node.whatsapp { top: 90%; left: 50%; transform: translate(-50%, -50%); }

.tool-line {
  position: absolute;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(142, 197, 255, 0.1), rgba(94, 231, 255, 0.5), transparent);
}

.tool-line.line-a { top: 34%; left: 35%; width: 58px; transform: rotate(24deg); }
.tool-line.line-b { top: 34%; right: 35%; width: 58px; transform: rotate(156deg); }
.tool-line.line-c { top: 62%; left: 26%; width: 64px; transform: rotate(-10deg); }
.tool-line.line-d { top: 62%; right: 26%; width: 64px; transform: rotate(190deg); }
.tool-line.line-e { top: 26%; left: 45%; width: 38px; transform: rotate(88deg); }
.tool-line.line-f { top: 73%; left: 45%; width: 42px; transform: rotate(88deg); }
.tool-line.line-g { top: 72%; left: 39%; width: 42px; transform: rotate(28deg); }
.tool-line.line-h { top: 72%; right: 39%; width: 42px; transform: rotate(152deg); }

.chat-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  justify-content: flex-start;
  align-items: stretch;
}

.chat-bubble {
  display: flex;
  align-items: center;
  max-width: 94%;
  padding: 12px 14px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.45;
  min-height: 52px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.chat-bubble.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.chat-bubble.from-user {
  align-self: flex-end;
  max-width: 88%;
  background: rgba(94, 231, 255, 0.12);
}

.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.chat-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.chat-row.from-agent {
  max-width: 100%;
}

.chat-bubble.from-agent {
  max-width: 100%;
  background: rgba(255, 255, 255, 0.05);
}

.chat-row .chat-bubble {
  opacity: 1;
  transform: none;
}

.chat-avatar {
  width: 26px;
  height: 32px;
  flex: 0 0 26px;
  object-fit: contain;
  object-position: center top;
}

.testimonials-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials-strip {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: testimonials-scroll 68s linear infinite;
}

@keyframes testimonials-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

.testimonial-card {
  position: relative;
  flex: 0 0 360px;
  padding: 24px;
}

.testimonials-strip .testimonial-card:nth-child(3n + 1) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    radial-gradient(220px 90px at 0% 0%, rgba(94, 231, 255, 0.1), transparent 70%);
}

.testimonials-strip .testimonial-card:nth-child(3n + 2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    radial-gradient(220px 90px at 0% 0%, rgba(255, 209, 102, 0.12), transparent 70%);
}

.testimonials-strip .testimonial-card:nth-child(3n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    radial-gradient(220px 90px at 0% 0%, rgba(184, 151, 255, 0.1), transparent 70%);
}

.stars {
  display: flex;
  gap: 6px;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.testimonial-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.82;
}

.testimonial-meta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.84rem;
  font-weight: 700;
  color: #07101d;
  background: linear-gradient(135deg, #eef6ff, #d5ffe8);
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-role {
  color: var(--muted-soft);
  font-size: 0.84rem;
}

.testimonials-section {
  padding-bottom: 92px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(132, 255, 215, 0.2);
  border-radius: 999px;
  background: rgba(132, 255, 215, 0.07);
  color: #84ffd7;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  padding-top: 36px;
  padding-bottom: 54px;
}

.faq-copy {
  position: relative;
}

.faq-copy .section-title {
  margin-top: 18px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.faq-copy .section-copy {
  max-width: 420px;
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background:
    radial-gradient(260px 90px at 0% 0%, rgba(94, 231, 255, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #84ffd7;
  font-size: 1.2rem;
  transition: transform 220ms ease, background 220ms ease;
}

.faq-item[open] summary::after {
  content: "−";
  background: rgba(132, 255, 215, 0.1);
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.72;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 20px 0 116px;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(30px, 5vw, 48px);
  background:
    radial-gradient(circle at 18% 0%, rgba(112, 255, 175, 0.18), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(109, 177, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.34);
}

.final-cta::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 80px rgba(132, 255, 215, 0.05);
}

.final-cta h2 {
  max-width: 820px;
  margin: 16px 0 0;
  color: #ffffff;
  font-family: Poppins, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.final-cta p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.final-cta .btn {
  z-index: 1;
  min-width: 170px;
}

.site-footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 0%, rgba(94, 231, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.26));
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.45fr) minmax(220px, 0.55fr);
  gap: clamp(30px, 6vw, 90px);
  padding-top: 54px;
  padding-bottom: 42px;
}

.footer-brand p {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.72;
}

.footer-logo {
  width: max-content;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links a {
  width: max-content;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.86rem;
}

.price-note {
  margin: 0 0 20px;
  color: var(--muted-soft);
  line-height: 1.76;
}

.legal-page {
  padding-bottom: 44px;
}

.legal-hero .subcopy {
  max-width: 34rem;
}

.legal-shell {
  padding-top: 8px;
}

.legal-notice {
  margin-bottom: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 209, 102, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 209, 102, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.legal-notice strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1rem;
}

.legal-notice p {
  margin: 0;
  color: rgba(246, 247, 251, 0.74);
  line-height: 1.72;
}

.legal-grid,
.legal-flow {
  display: grid;
  gap: 18px;
}

.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(260px 110px at 0% 0%, rgba(142, 197, 255, 0.08), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.98);
  font-size: 1.24rem;
  letter-spacing: -0.03em;
}

.legal-card p {
  margin: 0 0 12px;
  color: rgba(246, 247, 251, 0.74);
  line-height: 1.8;
}

.legal-card a {
  color: #d7ffec;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: rgba(246, 247, 251, 0.78);
  line-height: 1.75;
}

.legal-list li::marker {
  color: rgba(142, 197, 255, 0.78);
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .preview-card {
    grid-column: span 6;
  }

  .floating-note,
  .nav-cta {
    display: none;
  }

  .integrations-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .integration-grid-premium {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .quick-points,
  .impact-grid,
  .showcase-grid,
  .detail-grid,
  .integrations-grid,
  .pricing-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .detail-head {
    grid-template-columns: 1fr;
  }

  .integration-cloud,
  .agent-cloud {
    display: none;
  }

  .integration-library-top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .integration-grid-premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .integration-more-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-card {
    min-height: auto;
  }

  .offer-card .price-note {
    min-height: 0;
  }

  .testimonial-card {
    flex-basis: 300px;
  }

  .impact-main {
    grid-template-columns: 1fr;
  }

  .impact-metric-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .impact-metric-strip-top {
    margin: 70px 0 104px;
  }

  .impact-mini {
    padding-right: 0;
    padding-bottom: 14px;
    text-align: center;
  }

  .impact-mini::before {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: 1px;
  }

  .impact-mini:nth-child(2),
  .impact-mini:nth-child(3) {
    text-align: center;
    padding-left: 0;
  }

  .impact-mini .impact-mini-label,
  .impact-mini:nth-child(2) .impact-mini-label,
  .impact-mini:nth-child(3) .impact-mini-label {
    margin-left: auto;
    margin-right: auto;
  }

  .impact-axis {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 0;
  }

  .impact-axis::before {
    top: 18px;
    bottom: 18px;
  }

  .impact-axis-visual {
    justify-content: flex-start;
  }

  .impact-axis-visual.chat {
    justify-items: start;
  }

  .impact-axis-visual.data {
    justify-content: flex-start;
  }

  .impact-visual {
    min-height: 460px;
    padding-top: 8px;
  }

  .impact-agent-badge {
    right: 18px;
    bottom: 18px;
  }

  .impact-stat.top-right {
    right: 18px;
  }

  .impact-stat.bottom-left {
    left: 18px;
  }

  .impact-card {
    grid-column: span 12;
    min-height: auto;
  }

  .power-stage {
    min-height: 940px;
  }

  .power-scene {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 28px;
  }

  .power-prompt-title {
    font-size: clamp(2.4rem, 9vw, 4.6rem);
  }

  .power-agent-hero,
  .power-panel {
    min-height: auto;
  }

  .power-agent-portrait {
    width: min(100%, 230px);
    max-height: 260px;
  }

  .power-agent-duo .power-agent-portrait {
    width: min(100%, 170px);
  }

  .power-title {
    max-width: none;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100vw - 20px, 1220px);
  }

  .site-nav {
    display: none;
  }

  .site-nav-wrap {
    padding: 12px 14px;
  }

  .brand-logo {
    font-size: 1rem;
  }

  .display,
  .section-title,
  .card-title {
    max-width: none;
    font-size: clamp(2.2rem, 9vw, 3.8rem);
  }

  .impact-copy,
  .impact-visual {
    padding: 30px 22px;
  }

  .impact-title {
    max-width: none;
    font-size: clamp(1.85rem, 7vw, 2.65rem);
  }

  .impact-dashboard {
    width: 100%;
    padding: 20px;
  }

  .impact-agent-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: 82px;
    height: 82px;
    margin-top: 16px;
  }

  .impact-bar-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .impact-stat.small {
    width: 154px;
    padding: 10px 11px;
  }

  .impact-axis-core {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
  }

  .impact-axis-node.node-a,
  .impact-axis-node.node-c {
    left: 0;
  }

  .impact-axis-node.node-b,
  .impact-axis-node.node-d {
    right: 0;
  }

  .impact-dual-stat {
    grid-template-columns: 1fr;
  }

  .impact-money-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .power-stage {
    min-height: 1080px;
    border-radius: 28px;
  }

  .power-scene {
    padding: 24px 18px;
  }

  .power-title {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .power-prompt-title {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .power-agent-hero {
    min-height: auto;
    padding: 18px;
    border-radius: 26px;
  }

  .power-agent-portrait {
    width: min(100%, 190px);
    max-height: 220px;
  }

  .power-agent-duo .power-agent-portrait {
    width: min(100%, 145px);
  }

  .power-agent-speech {
    max-width: 100%;
    font-size: 0.94rem;
  }

  .power-panel {
    min-height: auto;
    padding: 8px 0 0;
  }

  .power-checklist {
    gap: 10px;
  }

  .power-check-item {
    min-height: 52px;
    padding: 13px 14px;
    font-size: 0.9rem;
  }

  .power-window {
    min-height: auto;
    padding: 18px;
    border-radius: 24px;
  }

  .power-detail-grid,
  .power-agent-line.split {
    grid-template-columns: 1fr;
  }

  .power-bars div {
    grid-template-columns: 1fr;
  }

  .power-bubble {
    font-size: 0.94rem;
  }

  .display .line-one,
  .display .line-two,
  .section-title {
    white-space: normal;
  }

  .hero-agent-bubbles {
    display: none;
  }

  .steps-title {
    max-width: 100%;
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .showcase-stage {
    min-height: auto;
  }

  .showcase-screen {
    padding: 18px;
    border-radius: 28px;
  }

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

  .preview-card {
    grid-column: span 1;
    min-height: auto;
  }

  .logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .step-card {
    grid-column: span 12;
    min-height: auto;
  }

  .chat-step-card {
    min-height: auto;
  }

  .hero-centered::before,
  .hero-centered::after,
  .showcase-stage::before,
  .showcase-stage::after {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

.product-film {
  position: relative;
  margin: 0 auto 132px;
  text-align: left;
}

.product-film-copy {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0 auto 24px;
  text-align: center;
}

.product-film-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-film-copy h2 {
  margin: 0;
  max-width: 740px;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(2.35rem, 4.4vw, 4.8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.product-film-copy p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
  font-size: 0.98rem;
}

.product-film-frame {
  --film-accent: var(--mint);
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 38px;
  background:
    radial-gradient(620px 320px at 18% 0%, color-mix(in srgb, var(--film-accent) 20%, transparent), transparent 68%),
    radial-gradient(520px 280px at 92% 12%, rgba(142, 197, 255, 0.12), transparent 70%),
    radial-gradient(540px 260px at 54% 102%, rgba(255, 209, 102, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(9, 12, 20, 0.98), rgba(3, 5, 10, 0.995));
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.11);
  isolation: isolate;
}

.product-film-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 24%, black 0%, transparent 76%);
}

.film-orb {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(14px);
}

.film-orb-a {
  top: -130px;
  left: 8%;
  width: 320px;
  height: 320px;
  background: color-mix(in srgb, var(--film-accent) 34%, transparent);
}

.film-orb-b {
  right: -140px;
  bottom: 12%;
  width: 360px;
  height: 360px;
  background: rgba(142, 197, 255, 0.14);
}

.film-topbar,
.film-progress,
.film-app,
.film-integrations {
  position: relative;
  z-index: 1;
}

.film-topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 70px;
  padding: 18px 22px 12px;
}

.film-dots {
  display: flex;
  gap: 7px;
}

.film-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.film-dots span:nth-child(1) { background: rgba(255, 124, 124, 0.82); }
.film-dots span:nth-child(2) { background: rgba(255, 209, 102, 0.82); }
.film-dots span:nth-child(3) { background: rgba(132, 255, 215, 0.82); }

.film-address,
.film-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(18px);
}

.film-address {
  justify-self: center;
  width: min(100%, 520px);
  padding: 0 18px;
}

.film-live {
  gap: 8px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.78);
}

.film-live span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--film-accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--film-accent) 76%, transparent);
}

.film-progress {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  padding: 0 22px 18px;
}

.film-progress button {
  height: 5px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.film-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fff, var(--film-accent));
  transform-origin: left;
  transform: scaleX(0);
}

.film-progress button.is-active span {
  animation: filmProgress linear forwards;
}

@keyframes filmProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.film-app {
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr) 300px;
  gap: 16px;
  min-height: 612px;
  padding: 0 22px 92px;
}

.film-sidebar,
.film-stage,
.film-right {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)), rgba(3, 6, 12, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
}

.film-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  border-radius: 28px;
}

.film-brand-card,
.film-agent-row {
  display: flex;
  align-items: center;
  gap: 11px;
}

.film-brand-card > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: #06101d;
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, color-mix(in srgb, var(--film-accent) 48%, #fff));
}

.film-brand-card strong,
.film-agent-row strong {
  display: block;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.84rem;
  line-height: 1.25;
}

.film-brand-card small,
.film-agent-row small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
}

.film-agent-list {
  display: grid;
  gap: 9px;
}

.film-agent-row {
  min-height: 58px;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 20px;
  transition: border-color 260ms ease, background 260ms ease, transform 260ms ease;
}

.film-agent-row.is-active {
  border-color: color-mix(in srgb, var(--film-accent) 34%, transparent);
  background: color-mix(in srgb, var(--film-accent) 12%, transparent);
  transform: translateX(3px);
}

.film-agent-row img {
  width: 38px;
  height: 44px;
  flex: 0 0 38px;
  object-fit: contain;
  object-position: center top;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.film-control-note {
  margin-top: auto;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.55;
}

.film-stage {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 32px;
}

.film-stage::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto;
  height: 360px;
  background: radial-gradient(circle, color-mix(in srgb, var(--film-accent) 22%, transparent), transparent 68%);
  pointer-events: none;
}

.film-scene-meta,
.film-question,
.film-promise,
.film-workspace {
  position: relative;
  z-index: 1;
}

.film-scene-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.film-module,
.film-status,
.film-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
}

.film-status {
  color: rgba(255, 255, 255, 0.84);
}

.film-question {
  max-width: 780px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(2.2rem, 5.2vw, 5.45rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.film-promise {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
  line-height: 1.8;
}

.film-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(260px, 0.94fr);
  grid-template-rows: auto minmax(210px, 1fr);
  gap: 15px;
  margin-top: 28px;
}

.film-card,
.film-visual {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.film-incoming {
  min-height: 180px;
  padding: 18px;
  border-radius: 26px;
}

.film-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.film-incoming strong {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
  line-height: 1.2;
}

.film-incoming p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  line-height: 1.75;
}

.film-agent-answer {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 130px;
  padding: 18px;
  border-radius: 26px;
}

.film-agent-answer img {
  width: 66px;
  height: 80px;
  flex: 0 0 66px;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.32));
}

.film-agent-answer span {
  color: var(--film-accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film-agent-answer strong {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
  line-height: 1.55;
}

.film-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 326px;
  overflow: hidden;
  border-radius: 30px;
}

.film-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background: radial-gradient(240px 160px at 50% 24%, color-mix(in srgb, var(--film-accent) 24%, transparent), transparent 68%), linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
}

.film-visual-inner {
  position: relative;
  z-index: 1;
  width: min(86%, 320px);
}

.film-chat-line,
.film-visual-pill,
.film-pipeline-step {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.film-chat-line {
  padding: 14px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.film-chat-line + .film-chat-line {
  margin-top: 12px;
  margin-left: 28px;
  background: color-mix(in srgb, var(--film-accent) 18%, rgba(255, 255, 255, 0.08));
}

.film-wave {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 6px;
  height: 170px;
}

.film-wave span {
  width: 7px;
  height: calc(30px + (var(--i) % 5) * 16px);
  border-radius: 999px;
  background: color-mix(in srgb, var(--film-accent) 60%, rgba(255, 255, 255, 0.34));
  animation: filmWave 900ms ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * 50ms);
}

@keyframes filmWave {
  from { transform: scaleY(0.58); opacity: 0.55; }
  to { transform: scaleY(1); opacity: 1; }
}

.film-art-card {
  width: 190px;
  height: 220px;
  margin: auto;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.82), transparent 13%),
    linear-gradient(145deg, color-mix(in srgb, var(--film-accent) 56%, #132039), #07101d);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.film-art-card::before,
.film-art-card::after {
  content: "";
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.film-art-card::before {
  width: 92px;
  height: 92px;
  margin: 34px 0 0 28px;
}

.film-art-card::after {
  width: 118px;
  height: 13px;
  margin: 44px 0 0 26px;
}

.film-seo-score {
  display: grid;
  place-items: center;
  width: 152px;
  height: 152px;
  margin: auto;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 3.2rem;
  font-weight: 800;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)), conic-gradient(var(--film-accent) 0deg 296deg, rgba(255, 255, 255, 0.12) 296deg);
}

.film-pipeline {
  display: grid;
  gap: 12px;
}

.film-pipeline-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

.film-pipeline-step span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #06101d;
  background: linear-gradient(135deg, #fff, color-mix(in srgb, var(--film-accent) 42%, #fff));
}

.film-orbit {
  position: relative;
  display: grid;
  place-items: center;
  height: 260px;
}

.film-orbit-core {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 32px;
  color: #06101d;
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, color-mix(in srgb, var(--film-accent) 50%, #fff));
}

.film-orbit span {
  position: absolute;
  min-width: 58px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 700;
}

.film-orbit span:nth-child(2) { top: 10%; left: 18%; }
.film-orbit span:nth-child(3) { top: 12%; right: 15%; }
.film-orbit span:nth-child(4) { bottom: 10%; left: 12%; }
.film-orbit span:nth-child(5) { right: 16%; bottom: 14%; }

.film-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 28px;
}

.film-output,
.film-sync,
.film-metrics > div,
.film-check-row {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.06);
}

.film-output {
  min-height: 118px;
  padding: 16px;
  border-radius: 24px;
}

.film-output span,
.film-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film-output strong {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.16rem;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.film-checks {
  display: grid;
  gap: 8px;
}

.film-check-row {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  line-height: 1.42;
  opacity: 0;
  transform: translateY(8px);
  animation: filmCheckIn 480ms ease forwards;
  animation-delay: var(--delay);
}

@keyframes filmCheckIn {
  to { opacity: 1; transform: translateY(0); }
}

.film-check-row i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  color: #06101d;
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, color-mix(in srgb, var(--film-accent) 45%, #fff));
}

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

.film-metrics > div {
  min-height: 74px;
  padding: 12px;
  border-radius: 18px;
}

.film-metrics strong {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.film-sync {
  margin-top: auto;
  padding: 13px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.45;
}

.film-integrations {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
}

.film-integration-logo {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  animation: filmLogoFloat 4.8s ease-in-out infinite;
  animation-delay: var(--delay);
}

.film-integration-logo img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

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

.film-frame-refresh .film-question,
.film-frame-refresh .film-promise,
.film-frame-refresh .film-card,
.film-frame-refresh .film-visual,
.film-frame-refresh .film-output,
.film-frame-refresh .film-metrics,
.film-frame-refresh .film-sync {
  animation: filmCardIn 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes filmCardIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@media (max-width: 1180px) {
  .film-app {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .film-right {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
  }

  .film-checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .product-film-frame {
    min-height: auto;
    border-radius: 30px;
  }

  .film-topbar {
    grid-template-columns: auto 1fr;
  }

  .film-live,
  .film-sidebar {
    display: none;
  }

  .film-app,
  .film-workspace,
  .film-right {
    grid-template-columns: 1fr;
  }

  .film-app {
    padding-bottom: 112px;
  }

  .film-visual {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }
}

@media (max-width: 620px) {
  .product-film {
    margin-bottom: 92px;
  }

  .product-film-copy h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .film-address {
    font-size: 0.66rem;
  }

  .film-topbar,
  .film-progress,
  .film-app {
    padding-left: 14px;
    padding-right: 14px;
  }

  .film-stage {
    padding: 18px;
    border-radius: 26px;
  }

  .film-question {
    font-size: clamp(2.1rem, 13vw, 3.6rem);
  }

  .film-metrics,
  .film-checks {
    grid-template-columns: 1fr;
  }
}

.cinema-demo {
  margin: 0 auto 136px;
}

.cinema-copy {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 24px;
  text-align: center;
}

.cinema-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cinema-copy h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(2.4rem, 4.8vw, 5.2rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.cinema-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.cinema-frame {
  --cinema-accent: #84ffd7;
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 42px;
  background:
    radial-gradient(680px 340px at 50% -10%, color-mix(in srgb, var(--cinema-accent) 22%, transparent), transparent 68%),
    radial-gradient(480px 280px at 12% 18%, rgba(94, 231, 255, 0.09), transparent 72%),
    radial-gradient(520px 300px at 90% 26%, rgba(255, 157, 92, 0.09), transparent 74%),
    linear-gradient(180deg, rgba(7, 10, 17, 0.99), rgba(2, 3, 5, 1));
  box-shadow:
    0 42px 140px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
  isolation: isolate;
}

.cinema-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 50% 30%, black 0%, transparent 74%);
}

.cinema-light,
.cinema-noise,
.cinema-top,
.cinema-cockpit,
.cinema-footer {
  position: relative;
  z-index: 1;
}

.cinema-light {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.9;
}

.cinema-light-a {
  top: -180px;
  left: 26%;
  width: 460px;
  height: 460px;
  background: color-mix(in srgb, var(--cinema-accent) 26%, transparent);
  animation: cinemaLightMove 9s ease-in-out infinite;
}

.cinema-light-b {
  right: -160px;
  bottom: 16%;
  width: 380px;
  height: 380px;
  background: rgba(142, 197, 255, 0.13);
  animation: cinemaLightMove 11s ease-in-out infinite reverse;
}

@keyframes cinemaLightMove {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(28px, 16px, 0) scale(1.08); }
}

.cinema-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.17;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 2px);
  background-size: 19px 19px;
  mix-blend-mode: screen;
}

.cinema-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 22px 24px 16px;
}

.cinema-brand-mini,
.cinema-live,
.cinema-channel,
.cinema-state {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.cinema-brand-mini {
  gap: 10px;
  min-height: 42px;
  padding: 0 14px 0 8px;
  border-radius: 999px;
}

.cinema-brand-mini span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #07101d;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, color-mix(in srgb, var(--cinema-accent) 46%, #fff));
}

.cinema-brand-mini strong,
.cinema-live {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
}

.cinema-live {
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
}

.cinema-live span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cinema-accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--cinema-accent) 72%, transparent);
}

.cinema-progress {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.cinema-progress span {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.cinema-progress i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fff, var(--cinema-accent));
  transform-origin: left;
  transform: scaleX(0);
}

.cinema-progress span.is-active i {
  animation: cinemaProgress linear forwards;
}

@keyframes cinemaProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.cinema-cockpit {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) 238px;
  gap: 16px;
  min-height: 610px;
  padding: 0 24px 82px;
}

.cinema-rail,
.cinema-core,
.cinema-side {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    rgba(4, 7, 13, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px);
}

.cinema-rail {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 14px;
  border-radius: 28px;
}

.cinema-rail-item {
  display: grid;
  place-items: center;
  gap: 7px;
  min-height: 74px;
  border: 1px solid transparent;
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 260ms ease, background 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.cinema-rail-item img {
  width: 32px;
  height: 40px;
  object-fit: contain;
  object-position: center top;
}

.cinema-rail-item.is-active {
  color: rgba(255, 255, 255, 0.94);
  border-color: color-mix(in srgb, var(--cinema-accent) 32%, transparent);
  background: color-mix(in srgb, var(--cinema-accent) 12%, transparent);
  transform: translateX(4px);
}

.cinema-core {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 34px;
}

.cinema-core::before {
  content: "";
  position: absolute;
  inset: -22% 8% auto;
  height: 320px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, color-mix(in srgb, var(--cinema-accent) 23%, transparent), transparent 70%);
  filter: blur(6px);
}

.cinema-status-row,
.cinema-event,
.cinema-motion-layer {
  position: relative;
  z-index: 1;
}

.cinema-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cinema-channel,
.cinema-state {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cinema-state {
  color: #07101d;
  border-color: rgba(255, 255, 255, 0.26);
  background: linear-gradient(135deg, #fff, color-mix(in srgb, var(--cinema-accent) 42%, #fff));
}

.cinema-event {
  max-width: 780px;
  margin-top: 34px;
}

.cinema-event span {
  color: var(--cinema-accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cinema-event strong {
  display: block;
  max-width: 10ch;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(3rem, 7vw, 7.2rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.085em;
}

.cinema-motion-layer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: stretch;
  gap: 18px;
  margin-top: 34px;
}

.cinema-thread,
.cinema-product-visual {
  position: relative;
  min-height: 304px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.cinema-thread {
  padding: 22px;
}

.cinema-message,
.cinema-draft,
.cinema-ai-line,
.cinema-mini-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(18px);
}

.cinema-message {
  max-width: 78%;
  min-height: 86px;
  padding: 16px;
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.55;
  animation: cinemaSlideIn 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.cinema-ai-line {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 420px);
  min-height: 66px;
  margin-top: 18px;
  padding: 12px;
  border-radius: 22px;
  animation: cinemaSlideIn 680ms 240ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.cinema-ai-line img {
  width: 42px;
  height: 52px;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.28));
}

.cinema-typebar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 28px;
  flex: 1;
}

.cinema-typebar i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cinema-accent);
  animation: cinemaTyping 900ms ease-in-out infinite;
}

.cinema-typebar i:nth-child(2) { animation-delay: 120ms; }
.cinema-typebar i:nth-child(3) { animation-delay: 240ms; }

.cinema-ai-line span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.cinema-draft {
  position: absolute;
  right: 20px;
  bottom: 20px;
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #07101d;
  font-size: 0.82rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, color-mix(in srgb, var(--cinema-accent) 46%, #fff));
  animation: cinemaPop 680ms 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.cinema-product-visual {
  display: grid;
  place-items: center;
}

.cinema-visual-stage {
  position: relative;
  z-index: 1;
  width: min(86%, 290px);
}

.cinema-visual-card {
  min-height: 216px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.8), transparent 13%),
    linear-gradient(145deg, color-mix(in srgb, var(--cinema-accent) 54%, #14213a), #07101d);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  animation: cinemaReveal 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.cinema-visual-label {
  position: absolute;
  right: -12px;
  bottom: -12px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: #07101d;
  font-size: 0.78rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, color-mix(in srgb, var(--cinema-accent) 46%, #fff));
  animation: cinemaPop 680ms 600ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.cinema-call-ring {
  display: grid;
  place-items: center;
  width: 136px;
  height: 136px;
  margin: 34px auto;
  border-radius: 999px;
  color: #07101d;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, color-mix(in srgb, var(--cinema-accent) 52%, #fff));
  box-shadow: 0 0 0 18px color-mix(in srgb, var(--cinema-accent) 10%, transparent);
  animation: cinemaPulse 1.5s ease-in-out infinite;
}

.cinema-bars {
  display: grid;
  gap: 10px;
}

.cinema-bars span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cinema-accent), rgba(255, 255, 255, 0.14));
  animation: cinemaGrow 900ms ease both;
}

.cinema-bars span:nth-child(2) { width: 74%; animation-delay: 120ms; }
.cinema-bars span:nth-child(3) { width: 52%; animation-delay: 240ms; }

.cinema-seo-score {
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  margin: 0 auto 22px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.98);
  font-size: 3.1rem;
  font-weight: 800;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    conic-gradient(var(--cinema-accent) 0deg 302deg, rgba(255, 255, 255, 0.12) 302deg);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  animation: cinemaPop 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.cinema-chat-preview {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.075);
}

.cinema-chat-dot {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, color-mix(in srgb, var(--cinema-accent) 46%, #fff));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.cinema-pipeline {
  display: grid;
  gap: 12px;
  width: min(100%, 300px);
}

.cinema-pipeline div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
  animation: cinemaSlideIn 560ms ease both;
}

.cinema-pipeline div:nth-child(2) { animation-delay: 180ms; }
.cinema-pipeline div:nth-child(3) { animation-delay: 360ms; }

.cinema-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 280px);
  height: 260px;
}

.cinema-orbit-core {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 34px;
  color: #07101d;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, color-mix(in srgb, var(--cinema-accent) 52%, #fff));
  animation: cinemaPulse 1.9s ease-in-out infinite;
}

.cinema-orbit span {
  position: absolute;
  min-width: 60px;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  animation: cinemaOrbitFloat 4.8s ease-in-out infinite;
}

.cinema-orbit span:nth-child(2) { top: 12%; left: 12%; }
.cinema-orbit span:nth-child(3) { top: 12%; right: 10%; animation-delay: 400ms; }
.cinema-orbit span:nth-child(4) { bottom: 12%; left: 8%; animation-delay: 800ms; }
.cinema-orbit span:nth-child(5) { right: 12%; bottom: 12%; animation-delay: 1200ms; }

.cinema-beam {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 42%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--cinema-accent) 70%, transparent), transparent);
  transform-origin: left center;
  animation: cinemaBeam 2.6s ease-in-out infinite;
}

.cinema-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  border-radius: 28px;
}

.cinema-notification,
.cinema-history,
.cinema-calendar {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.cinema-notification {
  min-height: 104px;
  padding: 15px;
  animation: cinemaNotify 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.cinema-notification span,
.cinema-calendar span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cinema-notification strong,
.cinema-calendar strong {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.18rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.cinema-history {
  display: grid;
  gap: 9px;
  padding: 13px;
  flex: 1;
}

.cinema-history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  animation: cinemaHistoryIn 520ms ease forwards;
  animation-delay: var(--delay);
}

.cinema-history-row i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cinema-accent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--cinema-accent) 72%, transparent);
}

.cinema-calendar {
  min-height: 92px;
  padding: 15px;
}

.cinema-footer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.cinema-integrations span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  animation: cinemaLogoFloat 4.8s ease-in-out infinite;
  animation-delay: var(--delay);
}

.cinema-integrations img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.cinema-final {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #07101d;
  font-size: 0.84rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, color-mix(in srgb, var(--cinema-accent) 46%, #fff));
}

@keyframes cinemaSlideIn {
  from { opacity: 0; transform: translateY(16px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes cinemaPop {
  from { opacity: 0; transform: translateY(10px) scale(0.92); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes cinemaTyping {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(-4px); opacity: 1; }
}

@keyframes cinemaPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes cinemaReveal {
  from { opacity: 0; transform: translateY(18px) scale(0.96); clip-path: inset(100% 0 0 0 round 28px); }
  to { opacity: 1; transform: translateY(0) scale(1); clip-path: inset(0 0 0 0 round 28px); }
}

@keyframes cinemaGrow {
  from { width: 0; opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes cinemaBeam {
  0%, 100% { opacity: 0.18; transform: scaleX(0.72); }
  50% { opacity: 0.82; transform: scaleX(1); }
}

@keyframes cinemaNotify {
  from { opacity: 0; transform: translateX(22px); filter: blur(8px); }
  to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@keyframes cinemaHistoryIn {
  to { opacity: 1; transform: translateY(0); }
}

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

.cinema-scene-refresh .cinema-event,
.cinema-scene-refresh .cinema-message,
.cinema-scene-refresh .cinema-ai-line,
.cinema-scene-refresh .cinema-product-visual,
.cinema-scene-refresh .cinema-notification,
.cinema-scene-refresh .cinema-calendar {
  animation-play-state: running;
}

@media (max-width: 1040px) {
  .cinema-cockpit {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .cinema-side {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
  }

  .cinema-history {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .cinema-demo {
    margin-bottom: 96px;
  }

  .cinema-frame {
    min-height: auto;
    border-radius: 30px;
  }

  .cinema-top {
    grid-template-columns: 1fr auto;
  }

  .cinema-progress {
    grid-column: 1 / -1;
    order: 3;
  }

  .cinema-cockpit,
  .cinema-motion-layer,
  .cinema-side {
    grid-template-columns: 1fr;
  }

  .cinema-rail {
    display: none;
  }

  .cinema-core {
    padding: 18px;
  }

  .cinema-event strong {
    max-width: 11ch;
    font-size: clamp(2.5rem, 15vw, 4.3rem);
  }

  .cinema-product-visual {
    min-height: 250px;
  }

  .cinema-side {
    display: grid;
  }

  .cinema-footer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0 18px 20px;
    flex-direction: column;
  }

  .cinema-integrations {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.joy-command-video {
  margin: 0 auto 140px;
  color: #071018;
  --joy-cursor-input-x: 18%;
  --joy-cursor-input-y: 50%;
  --joy-cursor-send-x: 80%;
  --joy-cursor-send-y: 62%;
  --joy-cursor-rest-x: 12%;
  --joy-cursor-rest-y: 68%;
}

.contact-flow-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  margin: 0 auto 130px;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 42px;
  background:
    radial-gradient(560px 260px at 18% 18%, rgba(94, 231, 255, 0.12), transparent 70%),
    radial-gradient(520px 260px at 86% 84%, rgba(255, 157, 92, 0.1), transparent 72%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow:
    0 50px 130px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-flow-phone {
  display: grid;
  place-items: center;
  min-height: 560px;
}

.contact-phone-frame {
  position: relative;
  width: min(100%, 356px);
  min-height: 686px;
  padding: 18px;
  overflow: hidden;
  border: 10px solid #050609;
  border-radius: 58px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.24) 16%, transparent 34%),
    radial-gradient(260px 180px at 50% 0%, rgba(94, 231, 255, 0.12), transparent 70%),
    linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  box-shadow:
    0 54px 110px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 0 5px rgba(255, 255, 255, 0.05),
    0 0 0 8px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.86);
}

.contact-phone-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 46px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 9%, transparent 91%, rgba(0, 0, 0, 0.08)),
    radial-gradient(220px 170px at 50% 4%, rgba(8, 41, 45, 0.07), transparent 70%);
}

.contact-phone-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 92px;
  height: 5px;
  border-radius: 999px;
  background: rgba(7, 16, 24, 0.2);
  transform: translateX(-50%);
}

.contact-phone-island {
  position: absolute;
  left: 50%;
  top: 13px;
  z-index: 3;
  width: 112px;
  height: 32px;
  border-radius: 999px;
  background: #050609;
  box-shadow:
    inset 16px 0 22px rgba(255, 255, 255, 0.05),
    inset -12px 0 18px rgba(255, 255, 255, 0.04);
  transform: translateX(-50%);
}

.contact-phone-button {
  position: absolute;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2c3038, #050609);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.contact-phone-button-a {
  left: -12px;
  top: 116px;
  height: 62px;
}

.contact-phone-button-b {
  right: -12px;
  top: 154px;
  height: 88px;
}

.contact-phone-top,
.contact-app-bar,
.contact-phone-footer,
.contact-profile-card,
.contact-enrich-list {
  position: relative;
  z-index: 1;
}

.contact-phone-top,
.contact-app-bar,
.contact-phone-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-phone-top {
  margin-top: 6px;
  color: rgba(7, 16, 24, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-phone-top i {
  width: 54px;
  height: 18px;
  border-radius: 999px;
  background: #050609;
}

.contact-app-bar {
  gap: 12px;
  justify-content: flex-start;
  margin-top: 34px;
  padding: 0 4px;
}

.contact-app-logo {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  background: linear-gradient(135deg, #08292d, #24d18e);
  box-shadow: 0 14px 28px rgba(8, 41, 45, 0.22);
}

.contact-app-bar strong,
.contact-profile-card h3,
.contact-enrich-row strong,
.contact-phone-footer strong {
  color: #071018;
}

.contact-app-bar strong,
.contact-app-bar small {
  display: block;
}

.contact-app-bar strong {
  font-size: 1rem;
  line-height: 1;
}

.contact-app-bar small {
  margin-top: 5px;
  color: rgba(7, 16, 24, 0.48);
  font-size: 0.76rem;
  font-weight: 750;
}

.contact-profile-card {
  display: grid;
  gap: 0;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(7, 16, 24, 0.06);
  border-radius: 32px;
  background:
    radial-gradient(220px 130px at 92% 6%, rgba(36, 209, 142, 0.13), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  box-shadow:
    0 28px 54px rgba(12, 30, 44, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.contact-profile-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 13px;
}

.contact-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #08292d, #24d18e);
  box-shadow: 0 16px 32px rgba(8, 41, 45, 0.18);
}

.contact-source {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: #0d4d55;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(36, 209, 142, 0.12);
}

.contact-profile-card h3 {
  margin: 9px 0 5px;
  font-size: 1.42rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-profile-card p {
  margin: 0;
  color: rgba(7, 16, 24, 0.58);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.35;
}

.contact-enrich-list {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}

.contact-enrich-row {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 11px;
  row-gap: 3px;
  align-items: center;
  min-height: 70px;
  padding: 13px 14px;
  border: 1px solid rgba(7, 16, 24, 0.06);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 253, 255, 0.86));
  box-shadow:
    0 16px 30px rgba(12, 30, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.975);
  animation: contactRowIn 7.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.contact-enrich-row::after {
  content: "";
  position: absolute;
  left: 59px;
  right: 14px;
  bottom: 12px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(7, 16, 24, 0.06);
}

.contact-enrich-row::before {
  content: "";
  position: absolute;
  left: 59px;
  bottom: 12px;
  width: 0;
  height: 3px;
  z-index: 1;
  border-radius: 999px;
  background: linear-gradient(90deg, #24d18e, #5ee7ff);
  animation: contactFill 7.2s ease-in-out infinite;
  animation-delay: inherit;
}

.contact-enrich-row i {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 13px;
  background:
    radial-gradient(circle at 34% 25%, rgba(255, 255, 255, 0.55), transparent 34%),
    linear-gradient(135deg, rgba(36, 209, 142, 0.18), rgba(94, 231, 255, 0.14));
}

.contact-enrich-row i::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #24d18e;
  box-shadow: 0 0 0 5px rgba(36, 209, 142, 0.12);
}

.contact-enrich-row span {
  grid-column: 2;
  color: rgba(7, 16, 24, 0.42);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-enrich-row strong {
  grid-column: 2;
  padding-bottom: 8px;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.15;
}

.contact-enrich-row.row-a { animation-delay: 0.25s; }
.contact-enrich-row.row-b { animation-delay: 0.95s; }
.contact-enrich-row.row-c { animation-delay: 1.65s; }
.contact-enrich-row.row-d { animation-delay: 2.35s; }

.contact-phone-footer {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 20px;
  background: #071018;
  box-shadow: 0 18px 38px rgba(7, 16, 24, 0.24);
  opacity: 0;
  transform: translateY(14px);
  animation: contactFooterIn 7.2s cubic-bezier(0.16, 1, 0.3, 1) 3s infinite;
}

.contact-phone-footer span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #24d18e;
  box-shadow: 0 0 0 6px rgba(36, 209, 142, 0.16);
}

.contact-phone-footer strong {
  color: #ffffff;
  font-size: 0.86rem;
}

.contact-flow-copy {
  max-width: 620px;
}

.contact-flow-eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(132, 255, 215, 0.2);
  border-radius: 999px;
  color: #84ffd7;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  background: rgba(132, 255, 215, 0.07);
}

.contact-flow-copy h2 {
  max-width: 11ch;
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(2.55rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.contact-flow-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 550;
  line-height: 1.55;
}

.contact-flow-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-flow-points div {
  display: grid;
  gap: 5px;
  padding: 16px 0 16px 20px;
  border-left: 1px solid rgba(132, 255, 215, 0.28);
}

.contact-flow-points strong {
  color: #ffffff;
  font-size: 1.02rem;
}

.contact-flow-points span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.95rem;
  line-height: 1.35;
}

@keyframes contactRowIn {
  0%, 6% { opacity: 0; transform: translate3d(0, 18px, 0) scale(0.975); filter: blur(7px); }
  14%, 64% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
  76%, 100% { opacity: 0; transform: translate3d(0, -14px, 0) scale(0.985); filter: blur(5px); }
}

@keyframes contactFill {
  0%, 16% { width: 0; opacity: 0; }
  30%, 62% { width: calc(100% - 73px); opacity: 1; }
  76%, 100% { width: calc(100% - 73px); opacity: 0; }
}

@keyframes contactFooterIn {
  0%, 10% { opacity: 0; transform: translateY(14px); }
  20%, 66% { opacity: 1; transform: translateY(0); }
  86%, 100% { opacity: 0; transform: translateY(-10px); }
}

.contact-phone-frame[data-contact-reveal] {
  width: min(100%, 364px);
  min-height: 728px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.contact-phone-frame[data-contact-reveal]::before {
  content: none;
}

.contact-phone-frame[data-contact-reveal]::after {
  content: none;
}

.contact-phone-shell {
  position: absolute;
  inset: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 58px 120px rgba(0, 0, 0, 0.52));
}

.contact-phone-screen {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 46px;
  bottom: 28px;
  z-index: 2;
  overflow: hidden;
  border-radius: 36px;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(7, 16, 24, 0.04),
    inset 0 16px 40px rgba(7, 16, 24, 0.04);
}

.contact-app-layer {
  position: absolute;
  inset: 0;
  padding: 22px 18px 28px;
  background: #ffffff;
}

.contact-app-filled {
  z-index: 2;
  clip-path: inset(0 0 0 var(--contact-reveal));
}

.contact-status-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  height: 28px;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-status-bar i {
  width: 72px;
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0 26px, #111827 26px 30px, transparent 30px 36px, #111827 36px 40px, transparent 40px 46px, #111827 46px 50px, transparent 50px),
    linear-gradient(90deg, transparent 52px, #111827 52px 72px);
  opacity: 0.85;
}

.contact-profile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.contact-profile-top button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 13px;
  color: #111827;
  font-size: 1.55rem;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
}

.contact-profile-top a {
  color: #22c55e;
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-person {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.contact-avatar-blank,
.contact-avatar-filled {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
}

.contact-avatar-blank {
  background: #e8e8eb;
}

.contact-avatar-filled {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  background: #e8e8eb;
  color: rgba(17, 24, 39, 0.58);
}

.contact-person h3 {
  margin: 0;
  color: #20242b;
  font-size: 1.32rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.contact-action-dots {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.contact-action-dots i {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.contact-action-dots i::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(17, 24, 39, 0.78);
  border-radius: 999px;
}

.contact-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 34px;
  padding: 5px;
  border-radius: 17px;
  background: #f0f0f1;
}

.contact-tabs span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 15px;
  color: rgba(17, 24, 39, 0.55);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-tabs span:first-child {
  color: #111827;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.11);
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.contact-field {
  position: relative;
  min-height: 78px;
  padding: 15px 16px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.025);
  border-radius: 18px;
  background: #f2f2f3;
}

.contact-field.wide {
  grid-column: 1 / -1;
}

.contact-field.raised {
  background: #ffffff;
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-field span {
  display: block;
  color: rgba(17, 24, 39, 0.48);
  font-size: 0.82rem;
  font-weight: 750;
}

.contact-field i {
  display: block;
  width: 54%;
  height: 20px;
  margin-top: 10px;
  border-radius: 5px;
  background: #e8e8ea;
}

.contact-field strong {
  display: block;
  margin-top: 8px;
  color: #141922;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.2;
}

.contact-field.notes {
  min-height: 64px;
}

.contact-reveal-handle {
  position: absolute;
  top: -46px;
  bottom: -28px;
  left: var(--contact-reveal);
  z-index: 6;
  width: 4px;
  background: #22c55e;
  transform: translateX(-50%);
  pointer-events: none;
}

.contact-reveal-handle span {
  position: absolute;
  left: 50%;
  top: 56%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  background: #22c55e;
  box-shadow: 0 18px 38px rgba(34, 197, 94, 0.34);
  transform: translate(-50%, -50%);
}

.contact-reveal-range {
  position: absolute;
  left: -22px;
  right: -22px;
  top: -46px;
  bottom: -28px;
  z-index: 7;
  width: calc(100% + 44px);
  height: calc(100% + 74px);
  opacity: 0;
  cursor: ew-resize;
}

.contact-flow-phone {
  min-height: 620px;
}

.contact-phone-frame[data-contact-reveal] {
  width: min(100%, 312px);
  min-height: 624px;
  filter: drop-shadow(0 46px 100px rgba(0, 0, 0, 0.42));
}

.contact-phone-shell {
  z-index: 10;
  filter: none;
}

.contact-phone-screen {
  left: 16px;
  right: 16px;
  top: 44px;
  bottom: 20px;
  z-index: 2;
  border-radius: 32px;
  background: #ffffff;
}

.contact-app-layer {
  padding: 20px 18px 24px;
}

.contact-profile-top {
  margin-top: 0;
}

.contact-profile-top button {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  font-size: 1.35rem;
}

.contact-profile-top a {
  font-size: 0.86rem;
}

.contact-person {
  grid-template-columns: 68px 1fr;
  gap: 15px;
  margin-top: 28px;
}

.contact-avatar-blank,
.contact-avatar-filled {
  width: 68px;
  height: 68px;
}

.contact-avatar-filled {
  font-size: 1.05rem;
}

.contact-person h3 {
  font-size: 1.15rem;
}

.contact-action-dots {
  gap: 10px;
  margin-top: 10px;
}

.contact-action-dots i {
  width: 36px;
  height: 36px;
}

.contact-action-dots i::before {
  inset: 12px;
}

.contact-tabs {
  margin-top: 28px;
  padding: 4px;
  border-radius: 15px;
}

.contact-tabs span {
  min-height: 37px;
  border-radius: 13px;
  font-size: 0.78rem;
}

.contact-fields {
  gap: 10px;
  margin-top: 22px;
}

.contact-field {
  min-height: 66px;
  padding: 12px 14px;
  border-radius: 17px;
  background: #f2f2f3;
  box-shadow: none;
}

.contact-field.raised {
  background: #ffffff;
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.contact-field span {
  font-size: 0.76rem;
}

.contact-field i {
  height: 17px;
  margin-top: 9px;
}

.contact-field strong {
  margin-top: 7px;
  font-size: 0.78rem;
}

.contact-field.notes {
  min-height: 58px;
}

.contact-reveal-handle {
  top: 4px;
  bottom: 4px;
  left: var(--contact-reveal);
  z-index: 12;
}

.contact-reveal-handle span {
  top: 55%;
  width: 48px;
  height: 48px;
  font-size: 1.12rem;
}

.contact-reveal-range {
  inset: 0;
  z-index: 13;
  width: 100%;
  height: 100%;
}

/* Final contact mockup pass: keep this block last in the contact section so old iterations cannot leak through. */
.contact-flow-phone {
  min-height: 560px;
}

.contact-phone-frame[data-contact-reveal] {
  width: min(100%, 288px);
  min-height: 578px;
  filter: drop-shadow(0 38px 86px rgba(0, 0, 0, 0.42));
}

.contact-phone-shell {
  z-index: 20;
  filter: none;
}

.contact-phone-screen {
  left: 16px;
  right: 16px;
  top: 47px;
  bottom: 18px;
  border-radius: 30px;
}

.contact-app-layer {
  padding: 12px 16px 20px;
}

.contact-profile-top {
  margin-top: 0;
}

.contact-profile-top button {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  font-size: 1.3rem;
}

.contact-profile-top a {
  font-size: 0.8rem;
}

.contact-person {
  grid-template-columns: 62px 1fr;
  gap: 13px;
  margin-top: 23px;
}

.contact-avatar-blank,
.contact-avatar-filled {
  width: 62px;
  height: 62px;
}

.contact-person h3 {
  font-size: 1.02rem;
  letter-spacing: -0.035em;
}

.contact-action-dots {
  gap: 9px;
  margin-top: 9px;
}

.contact-action-dots i {
  width: 34px;
  height: 34px;
}

.contact-action-dots i::before {
  inset: 11px;
}

.contact-tabs {
  margin-top: 24px;
  padding: 4px;
  border-radius: 14px;
}

.contact-tabs span {
  min-height: 35px;
  border-radius: 12px;
  font-size: 0.72rem;
}

.contact-fields {
  gap: 9px;
  margin-top: 18px;
}

.contact-field {
  min-height: 60px;
  padding: 11px 12px;
  border-radius: 15px;
}

.contact-field.raised {
  box-shadow: 0 9px 18px rgba(15, 23, 42, 0.08);
}

.contact-field span {
  font-size: 0.7rem;
}

.contact-field i {
  height: 15px;
  margin-top: 8px;
}

.contact-field strong {
  margin-top: 6px;
  font-size: 0.7rem;
  line-height: 1.15;
}

.contact-field.notes {
  min-height: 52px;
}

.contact-reveal-handle {
  top: 0;
  bottom: 0;
  z-index: 22;
  width: 3px;
}

.contact-reveal-handle span {
  top: 55%;
  width: 42px;
  height: 42px;
  font-size: 0.95rem;
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.28);
}

.contact-reveal-range {
  z-index: 23;
}

.lead-card-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  margin: 0 auto 130px;
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 42px;
  background:
    radial-gradient(520px 260px at 16% 20%, rgba(94, 231, 255, 0.11), transparent 70%),
    radial-gradient(520px 260px at 88% 86%, rgba(132, 255, 215, 0.1), transparent 72%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: 0 50px 130px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lead-phone-stage {
  display: grid;
  place-items: center;
  min-height: 780px;
}

.lead-phone {
  position: relative;
  width: min(100%, 392px);
  aspect-ratio: 488 / 967;
  filter: drop-shadow(0 34px 76px rgba(0, 0, 0, 0.34));
}

.lead-phone-shell {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.lead-phone-screen {
  position: absolute;
  left: 5.8%;
  right: 5.8%;
  top: 2.55%;
  bottom: 2.45%;
  z-index: 1;
  overflow: hidden;
  border-radius: 44px;
  background: #ffffff;
}

.lead-screen-layer {
  position: absolute;
  inset: 0;
  padding: 50px 20px 26px;
  background: #ffffff;
}

.lead-screen-empty {
  z-index: 1;
}

.lead-screen-full {
  z-index: 2;
  background:
    radial-gradient(circle at 78% 14%, rgba(94, 234, 212, 0.28), transparent 34%),
    radial-gradient(circle at 12% 78%, rgba(34, 197, 94, 0.16), transparent 42%),
    linear-gradient(180deg, #f3fff9 0%, #e7f8ef 100%);
  clip-path: inset(0 0 0 var(--lead-reveal));
  will-change: clip-path;
}

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

.lead-topline button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 11px;
  color: #111827;
  font-size: 1.35rem;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

.lead-topline a {
  color: #22c55e;
  font-size: 0.8rem;
  font-weight: 800;
}

.lead-screen-empty > .lead-call-audio {
  display: none;
}

.lead-island-audio {
  position: absolute;
  left: 50%;
  top: 4.65%;
  z-index: 8;
  display: grid;
  grid-template-columns: 13px auto 1fr;
  align-items: center;
  gap: 5px;
  width: 29%;
  height: 32px;
  min-height: 0;
  padding: 5px 9px 5px 10px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 35%, rgba(93, 255, 132, 0.12), transparent 36%),
    linear-gradient(135deg, #050606, #000000 82%);
  box-shadow: none;
  filter: none;
  overflow: hidden;
  transform: translateX(-50%);
  pointer-events: none;
}

.lead-island-audio-live {
  clip-path: inset(0 0 0 var(--lead-audio-cut, 100%));
}

.lead-call-icon {
  display: block;
  width: 13px;
  height: 13px;
  color: #79ff87;
  fill: currentColor;
  transform: rotate(-9deg);
  transform-origin: center;
}

.lead-island-audio strong {
  color: #7dff88;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.lead-waveform {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5px;
  width: 100%;
  height: 17px;
  overflow: hidden;
}

.lead-waveform i {
  flex: 1;
  min-width: 1.2px;
  max-width: 2.5px;
  height: var(--wave-height, 14px);
  border-radius: 99px;
  background: linear-gradient(180deg, #ffdd55, #ff9f2e);
  opacity: 0.9;
  animation-delay: calc(var(--wave-index, 0) * -110ms);
}

.lead-island-audio-live .lead-waveform i {
  animation: leadWave 1500ms ease-in-out infinite;
  animation-delay: calc(var(--wave-index, 0) * -110ms);
}

.lead-waveform i:nth-child(1) { --wave-height: 10px; --wave-index: 1; }
.lead-waveform i:nth-child(2) { --wave-height: 22px; --wave-index: 2; }
.lead-waveform i:nth-child(3) { --wave-height: 15px; --wave-index: 3; }
.lead-waveform i:nth-child(4) { --wave-height: 26px; --wave-index: 4; }
.lead-waveform i:nth-child(5) { --wave-height: 18px; --wave-index: 5; }
.lead-waveform i:nth-child(6) { --wave-height: 24px; --wave-index: 6; }
.lead-waveform i:nth-child(7) { --wave-height: 12px; --wave-index: 7; }
.lead-waveform i:nth-child(8) { --wave-height: 20px; --wave-index: 8; }
.lead-waveform i:nth-child(9) { --wave-height: 14px; --wave-index: 9; }

@keyframes leadWave {
  0%, 100% {
    transform: scaleY(0.72);
    opacity: 0.52;
  }
  50% {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

.lead-screen-empty .lead-person {
  margin-top: 18px;
}

.lead-screen-empty .lead-tabs {
  margin-top: 19px;
}

.lead-screen-empty .lead-form {
  margin-top: 15px;
}

.lead-person {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 80px;
  margin-top: 18px;
}

.lead-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #e8e8eb;
  color: rgba(17, 24, 39, 0.58);
  font-size: 1.05rem;
  font-weight: 900;
  overflow: hidden;
}

.lead-avatar-photo {
  background: #f1f2f3;
}

.lead-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.lead-person h3 {
  margin: 0;
  color: #20242b;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.lead-name-placeholder {
  display: grid;
  gap: 7px;
  width: 124px;
}

.lead-name-placeholder i {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: rgba(232, 232, 234, 0.95);
  filter: blur(0.2px);
}

.lead-name-placeholder i:first-child {
  width: 88%;
}

.lead-name-placeholder i:last-child {
  width: 62%;
}

.lead-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 19px;
  padding: 4px;
  border-radius: 14px;
  background: #f0f0f1;
}

.lead-tabs span {
  display: grid;
  place-items: center;
  min-height: 35px;
  border-radius: 12px;
  color: rgba(17, 24, 39, 0.55);
  font-size: 0.72rem;
  font-weight: 800;
}

.lead-tabs span:first-child {
  color: #111827;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.1);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 15px;
}

.lead-field {
  box-sizing: border-box;
  display: grid;
  align-content: start;
  min-height: 56px;
  height: 56px;
  padding: 10px 12px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.025);
  border-radius: 15px;
  background: #f2f2f3;
}

.lead-field.wide {
  grid-column: 1 / -1;
}

.lead-field.raised {
  background: #ffffff;
  box-shadow: 0 9px 18px rgba(15, 23, 42, 0.08);
}

.lead-field.note {
  min-height: 76px;
  height: 76px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.lead-field span {
  display: block;
  color: rgba(17, 24, 39, 0.48);
  font-size: 0.7rem;
  font-weight: 750;
  text-align: center;
}

.lead-field i {
  display: block;
  width: 54%;
  height: 15px;
  margin: 8px auto 0;
  border-radius: 5px;
  background: #e8e8ea;
}

.lead-field strong {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
  margin-top: 8px;
  color: #141922;
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead-field.note i {
  height: 38px;
  margin-top: 6px;
}

.lead-field.note strong {
  height: auto;
  min-height: 38px;
  margin-top: 6px;
  line-height: 1.18;
  white-space: normal;
}

.lead-reveal-handle {
  position: absolute;
  top: 2.55%;
  bottom: 2.45%;
  left: var(--lead-handle, var(--lead-reveal));
  z-index: 8;
  width: 2px;
  background: linear-gradient(180deg, transparent, #22c55e 8%, #22c55e 92%, transparent);
  transform: translateX(-50%);
  pointer-events: none;
  will-change: left;
}

.lead-reveal-handle span {
  position: absolute;
  left: 50%;
  top: 55%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
  background: #22c55e;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 18px 38px rgba(34, 197, 94, 0.34), 0 0 0 12px rgba(34, 197, 94, 0.1);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lead-reveal-range {
  position: absolute;
  inset: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  touch-action: none;
}

.lead-phone:hover .lead-reveal-handle span,
.lead-phone.is-dragging .lead-reveal-handle span {
  box-shadow: 0 20px 46px rgba(34, 197, 94, 0.42), 0 0 0 16px rgba(34, 197, 94, 0.12);
  transform: translate(-50%, -50%) scale(1.07);
}

.lead-card-copy {
  max-width: 620px;
}

.lead-card-copy > span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(132, 255, 215, 0.2);
  border-radius: 999px;
  color: #84ffd7;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  background: rgba(132, 255, 215, 0.07);
}

.lead-card-copy h2 {
  max-width: 11ch;
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(2.55rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.lead-card-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 550;
  line-height: 1.55;
}

.lead-card-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.lead-card-points div {
  display: grid;
  gap: 5px;
  padding: 16px 0 16px 20px;
  border-left: 1px solid rgba(132, 255, 215, 0.28);
}

.lead-card-points strong {
  color: #ffffff;
  font-size: 1.02rem;
}

.lead-card-points small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.95rem;
  line-height: 1.35;
}

.joy-command-shell {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border: 1px solid rgba(10, 24, 36, 0.08);
  border-radius: 46px;
  background:
    radial-gradient(560px 300px at 18% 72%, rgba(122, 214, 255, 0.2), transparent 68%),
    radial-gradient(620px 330px at 78% 28%, rgba(255, 198, 107, 0.22), transparent 72%),
    radial-gradient(460px 260px at 55% 55%, rgba(181, 129, 255, 0.12), transparent 76%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 54%, #f3f7fb 100%);
  box-shadow:
    0 44px 120px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  isolation: isolate;
  padding: 76px min(7vw, 86px) 58px;
}

.joy-command-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(11, 31, 48, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 48, 0.055) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at 50% 42%, black 0%, transparent 78%);
}

.joy-command-shell::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  top: 210px;
  height: 230px;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(121, 216, 255, 0.22), rgba(255, 202, 113, 0.2), rgba(180, 129, 255, 0.16));
  filter: blur(34px);
  opacity: 0.82;
  transition: opacity 500ms ease, transform 700ms ease;
}

.joy-command-video.is-typing .joy-command-shell::after,
.joy-command-video.is-send-click .joy-command-shell::after,
.joy-command-video.is-notifying .joy-command-shell::after {
  opacity: 1;
  transform: scaleX(1.08) translateY(8px);
}

.joy-command-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.7;
}

.joy-command-glow-a {
  left: -90px;
  bottom: 72px;
  width: 260px;
  height: 260px;
  background: rgba(80, 201, 255, 0.2);
  animation: joyGlowFloat 8s ease-in-out infinite;
}

.joy-command-glow-b {
  right: -70px;
  top: 70px;
  width: 300px;
  height: 300px;
  background: rgba(255, 178, 79, 0.2);
  animation: joyGlowFloat 10s ease-in-out infinite reverse;
}

@keyframes joyGlowFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(22px, -18px, 0) scale(1.08); }
}

.joy-command-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1), filter 520ms ease;
}

.joy-command-heading h2 {
  max-width: 900px;
  margin: 0;
  color: #05070b;
  font-size: clamp(2.25rem, 4.8vw, 4.9rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.joy-command-heading strong {
  color: #3b163f;
  font-weight: 700;
}

.joy-command-agent {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  overflow: hidden;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd874, #e76cff);
  box-shadow: 0 20px 42px rgba(80, 32, 91, 0.24);
}

.joy-command-agent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
}

.joy-command-tools {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 36px 0 30px;
  transition: opacity 420ms ease, transform 680ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms ease;
}

.joy-command-tools span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(9, 24, 36, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(12, 30, 45, 0.06);
  color: rgba(8, 18, 28, 0.7);
  font-size: 0.86rem;
  font-weight: 700;
}

.joy-command-card {
  position: relative;
  z-index: 2;
  width: min(100%, 1010px);
  min-height: 210px;
  margin: 0 auto;
  border: 1px solid rgba(7, 18, 28, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow:
    0 30px 76px rgba(14, 29, 43, 0.18),
    0 10px 26px rgba(14, 29, 43, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  backdrop-filter: blur(18px);
  transform-origin: 50% 62%;
  transition: opacity 520ms ease, transform 680ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 520ms ease, border-color 520ms ease, filter 520ms ease;
}

.joy-command-video.is-typing .joy-command-card {
  border-color: rgba(31, 166, 235, 0.24);
  box-shadow:
    0 58px 130px rgba(14, 29, 43, 0.24),
    0 0 0 8px rgba(71, 185, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.joy-command-video.is-send-click .joy-command-card {
  transform-origin: 82% 78%;
  box-shadow:
    0 64px 150px rgba(14, 29, 43, 0.26),
    0 0 0 10px rgba(8, 41, 45, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.joy-command-video.is-notifying .joy-command-heading,
.joy-command-video.is-notifying .joy-command-tools,
.joy-command-video.is-notifying .joy-command-card {
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
  transform: translateY(-22px) scale(0.97);
}

.joy-command-input {
  min-height: 120px;
  padding: 30px 32px 16px;
  text-align: left;
}

.joy-command-input p {
  display: inline;
  margin: 0;
  color: #0c1118;
  font-size: clamp(1.05rem, 2vw, 1.58rem);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.035em;
}

.joy-command-caret {
  display: inline-block;
  width: 3px;
  height: 1.45em;
  margin-left: 5px;
  transform: translateY(7px);
  background: #111821;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(8, 41, 45, 0.08);
  opacity: 0;
}

.joy-command-video.is-typing .joy-command-caret {
  opacity: 0;
  animation: none;
}

.joy-command-video.is-caret-on .joy-command-caret {
  opacity: 1;
  animation: joyCaretBlink 820ms steps(2) infinite;
}

@keyframes joyCaretBlink {
  0%, 42% { opacity: 1; }
  43%, 100% { opacity: 0; }
}

.joy-command-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 28px 26px;
}

.joy-command-send {
  border: 0;
  font-family: inherit;
}

.joy-command-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px 0 24px;
  border-radius: 16px;
  background: #08292d;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(8, 41, 45, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.joy-command-video.is-clicking .joy-command-send {
  background: #0d4d55;
  box-shadow: 0 18px 42px rgba(13, 77, 85, 0.28);
  transform: scale(0.97);
}

.joy-command-results {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: grid;
  width: min(100% - 84px, 1080px);
  gap: 34px;
  padding: 46px;
  border: 1px solid rgba(8, 24, 34, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(420px 180px at 20% 0%, rgba(112, 217, 255, 0.18), transparent 70%),
    rgba(255, 255, 255, 0.86);
  box-shadow:
    0 48px 120px rgba(18, 37, 52, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(22px);
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -42%, 0) scale(0.93);
  transition: opacity 620ms ease, transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.joy-command-video.is-notifying .joy-command-results {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.joy-result-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
}

.joy-result-head img {
  width: 68px;
  height: 68px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  object-fit: cover;
  object-position: 50% 8%;
  box-shadow: 0 14px 30px rgba(65, 32, 90, 0.18);
}

.joy-result-head span {
  display: block;
  color: rgba(7, 16, 24, 0.52);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.joy-result-head strong {
  display: block;
  color: #071018;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.joy-command-notifications {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 340px;
  overflow: visible;
  pointer-events: none;
}

.joy-command-toast {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 220px;
  padding: 34px 40px;
  border: 1px solid rgba(9, 28, 40, 0.075);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.95)),
    #ffffff;
  box-shadow:
    0 36px 80px rgba(15, 34, 48, 0.16),
    0 12px 28px rgba(15, 34, 48, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translate3d(0, 180px, 0) scale(0.94);
  animation: joyToastRoll 3100ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.joy-command-toast::before {
  content: none;
}

.joy-command-toast img {
  width: 92px;
  height: 92px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  object-fit: cover;
  object-position: 50% 8%;
  box-shadow: 0 10px 20px rgba(70, 31, 88, 0.15);
}

.joy-command-toast em {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(8, 41, 45, 0.08);
  color: rgba(8, 41, 45, 0.78);
  font-size: clamp(0.86rem, 1vw, 0.96rem);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.joy-command-toast span {
  display: block;
  margin-top: 16px;
  color: rgba(7, 16, 24, 0.6);
  font-size: clamp(2.05rem, 3.1vw, 3.15rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.joy-command-toast i {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #24d18e;
  box-shadow: 0 0 0 5px rgba(36, 209, 142, 0.12);
}

@keyframes joyToastRoll {
  0% { opacity: 0; transform: translate3d(0, 190px, 0) scale(0.92); filter: blur(10px); }
  20%, 66% { opacity: 1; transform: translate3d(0, -50%, 0) scale(1); filter: blur(0); }
  100% { opacity: 0; transform: translate3d(0, -310px, 0) scale(0.94); filter: blur(6px); }
}

.joy-command-video.is-ben-sequence .joy-command-shell {
  background:
    radial-gradient(560px 300px at 18% 74%, rgba(255, 42, 155, 0.18), transparent 68%),
    radial-gradient(620px 330px at 78% 22%, rgba(255, 214, 94, 0.2), transparent 72%),
    radial-gradient(460px 260px at 55% 55%, rgba(26, 217, 255, 0.12), transparent 76%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 62%, #f1f6fb 100%);
}

.joy-command-video.is-ben-sequence .joy-command-agent {
  background: linear-gradient(135deg, #ff2a9b, #ffd45e);
}

.joy-command-video.is-ben-sequence .joy-command-send {
  background: linear-gradient(135deg, #111827, #5b1037 48%, #ff2a9b);
}

.ben-campaign-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.58fr);
  gap: 26px;
  min-height: 520px;
  padding: 4px;
}

.ben-visual-reel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(360px 220px at 25% 18%, rgba(255, 42, 155, 0.08), transparent 72%),
    radial-gradient(320px 220px at 78% 12%, rgba(255, 208, 82, 0.06), transparent 74%),
    #000000;
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ben-visual-frame {
  position: absolute;
  inset: auto;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: visible;
  width: min(74%, 420px);
  height: min(86%, 460px);
  border-radius: 30px;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  filter: none;
  animation: noaProductIn 820ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay) both;
}

.ben-visual-frame-1 {
  left: 50%;
  top: 52%;
  width: min(56%, 300px);
  height: min(88%, 470px);
  transform: translate3d(-50%, -50%, 0) rotate(0deg);
  z-index: 1;
}

.ben-visual-frame-2 {
  left: 39%;
  top: 43%;
  width: min(72%, 430px);
  height: min(78%, 420px);
  transform: translate3d(-50%, -50%, 0) rotate(-7deg);
  z-index: 3;
}

.ben-visual-frame-3 {
  left: 60%;
  top: 48%;
  width: min(70%, 410px);
  height: min(78%, 420px);
  transform: translate3d(-50%, -50%, 0) rotate(6deg);
  z-index: 4;
}

.ben-visual-frame-4 {
  left: 50%;
  top: 58%;
  width: min(68%, 390px);
  height: min(72%, 390px);
  transform: translate3d(-50%, -50%, 0) rotate(-2deg);
  z-index: 5;
}

.ben-visual-frame img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 30px 60px rgba(16, 22, 33, 0.32));
}

.ben-visual-frame-product,
.ben-visual-frame-product img {
  background: transparent;
}

.ben-visual-frame-product img {
  filter: drop-shadow(0 30px 54px rgba(255, 42, 155, 0.2)) drop-shadow(0 24px 50px rgba(0, 0, 0, 0.46));
}

.ben-visual-frame-campaign img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.ben-visual-frame.is-missing img {
  opacity: 0;
}

.ben-visual-missing {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  padding: 28px;
  color: rgba(17, 24, 39, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  background:
    radial-gradient(260px 180px at 52% 16%, rgba(255, 42, 155, 0.14), transparent 70%),
    linear-gradient(135deg, #ffffff, #f6f8fb);
}

.ben-visual-frame.is-missing .ben-visual-missing {
  display: grid;
}

.ben-speech-stack {
  position: relative;
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 520px;
}

.ben-speech-bubble {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(11, 24, 34, 0.075);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.94)),
    #ffffff;
  box-shadow:
    0 24px 50px rgba(13, 28, 40, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  opacity: 0;
  transform: translate3d(36px, 24px, 0) scale(0.95);
  filter: blur(10px);
  animation: noaSpeechIn 4600ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay) both;
}

.ben-speech-bubble img {
  width: 52px;
  height: 52px;
  border: 2px solid #ffffff;
  border-radius: 18px;
  object-fit: cover;
  object-position: 50% 8%;
  box-shadow: 0 12px 26px rgba(82, 26, 72, 0.16);
}

.ben-speech-bubble span {
  color: rgba(7, 16, 24, 0.72);
  font-size: clamp(1.02rem, 1.25vw, 1.26rem);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

@keyframes noaProductIn {
  from { opacity: 0; filter: blur(14px); }
  to { opacity: 1; filter: blur(0); }
}

@keyframes noaSpeechIn {
  0% { opacity: 0; transform: translate3d(36px, 24px, 0) scale(0.95); filter: blur(10px); }
  10%, 58% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
  78%, 100% { opacity: 0; transform: translate3d(-22px, -18px, 0) scale(0.98); filter: blur(5px); }
}

.joy-command-status {
  position: absolute;
  left: min(7vw, 88px);
  bottom: 46px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(8, 24, 34, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(7, 16, 24, 0.66);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(16, 36, 50, 0.1);
  backdrop-filter: blur(18px);
}

.joy-command-status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #9aa8b2;
  transition: background 260ms ease, box-shadow 260ms ease;
}

.joy-command-video.is-notifying .joy-command-status::before {
  background: #21c989;
  box-shadow: 0 0 0 6px rgba(33, 201, 137, 0.13);
}

.joy-command-results .joy-command-status {
  position: relative;
  left: auto;
  bottom: auto;
  justify-self: center;
  margin-top: 2px;
}

.joy-command-cursor {
  position: absolute;
  left: 50%;
  top: 58%;
  z-index: 6;
  display: grid;
  gap: 2px;
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(0.78) rotate(-7deg);
  transform-origin: 10% 10%;
  transition:
    left 1450ms cubic-bezier(0.16, 1, 0.3, 1),
    top 1450ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 420ms ease;
}

.joy-cursor-pointer {
  position: relative;
  width: 30px;
  height: 34px;
  background: #0b1118;
  clip-path: polygon(0 0, 0 100%, 28% 76%, 43% 100%, 60% 91%, 45% 68%, 78% 66%);
  filter: drop-shadow(0 12px 15px rgba(6, 16, 24, 0.24));
}

.joy-cursor-pointer::after {
  content: "";
  position: absolute;
  left: -12px;
  top: -12px;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(38, 141, 232, 0.5);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.45);
}

.joy-cursor-label {
  justify-self: end;
  min-width: 48px;
  padding: 5px 10px;
  border-radius: 10px;
  background: #268de8;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 24px rgba(38, 141, 232, 0.28);
}

.joy-command-video.is-input-click .joy-command-cursor {
  left: var(--joy-cursor-input-x);
  top: var(--joy-cursor-input-y);
  transform: translate3d(0, 0, 0) scale(1.18) rotate(-5deg);
}

.joy-command-video.is-input-press .joy-cursor-pointer::after,
.joy-command-video.is-clicking .joy-cursor-pointer::after {
  animation: linaClickPulse 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.joy-command-video.is-typing .joy-command-cursor {
  left: var(--joy-cursor-rest-x);
  top: var(--joy-cursor-rest-y);
  opacity: 0.78;
  transform: translate3d(0, 0, 0) scale(0.9) rotate(-7deg);
}

.joy-command-video.is-send-click .joy-command-cursor {
  left: var(--joy-cursor-send-x);
  top: var(--joy-cursor-send-y);
  transform: translate3d(0, 0, 0) scale(1.1) rotate(-3deg);
}

.joy-command-video.is-clicking .joy-command-cursor {
  left: var(--joy-cursor-send-x);
  top: var(--joy-cursor-send-y);
  transform: translate3d(0, 0, 0) scale(1.1) rotate(-3deg);
}

.joy-command-video.is-notifying .joy-command-cursor {
  left: 82%;
  top: 63%;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.86) rotate(-3deg);
}

@keyframes linaClickPulse {
  0% { opacity: 0.82; transform: scale(0.45); }
  100% { opacity: 0; transform: scale(1.45); }
}

@media (max-width: 980px) {
  .lead-card-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px;
  }

  .lead-phone-stage {
    order: 2;
    min-height: auto;
  }

  .lead-card-copy {
    order: 1;
    max-width: none;
    text-align: center;
  }

  .lead-card-copy h2,
  .lead-card-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .lead-card-points {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .contact-flow-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px;
  }

  .contact-flow-phone {
    order: 2;
    min-height: auto;
  }

  .contact-flow-copy {
    order: 1;
    max-width: none;
    text-align: center;
  }

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

  .contact-flow-points {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .joy-command-shell {
    min-height: 700px;
    padding: 58px 20px 34px;
    border-radius: 34px;
  }

  .joy-command-heading h2 {
    font-size: clamp(2.3rem, 9vw, 4.4rem);
  }

  .joy-command-card {
    min-height: 230px;
  }

  .joy-command-results {
    width: calc(100% - 32px);
    padding: 20px;
  }

  .joy-command-notifications {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-height: 390px;
  }

  .ben-campaign-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ben-visual-reel,
  .ben-speech-stack {
    min-height: 430px;
  }

  .joy-command-status {
    left: 22px;
    bottom: 28px;
  }

  .joy-command-results .joy-command-status {
    left: auto;
    bottom: auto;
  }

  .joy-command-video.is-typing .joy-command-cursor {
    left: 12%;
    top: 49%;
  }

  .joy-command-video.is-send-click .joy-command-cursor {
    left: 72%;
    top: 61%;
  }
}

@media (max-width: 620px) {
  .lead-card-section {
    margin-bottom: 86px;
    padding: 22px 16px;
    border-radius: 30px;
  }

  .lead-phone {
    width: min(100%, 250px);
  }

  .lead-card-copy h2 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 12vw, 3.35rem);
  }

  .contact-flow-section {
    margin-bottom: 86px;
    padding: 22px 16px;
    border-radius: 30px;
  }

  .contact-phone-frame {
    width: min(100%, 304px);
    min-height: 620px;
    border-radius: 40px;
  }

  .contact-flow-copy h2 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 12vw, 3.35rem);
  }

  .joy-command-video {
    margin-bottom: 96px;
  }

  .joy-command-shell {
    min-height: 680px;
    padding-top: 46px;
  }

  .joy-command-tools {
    gap: 8px;
    margin: 26px 0 22px;
  }

  .joy-command-tools span {
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.74rem;
  }

  .joy-command-input {
    min-height: 150px;
    padding: 22px 20px 12px;
  }

  .joy-command-actions {
    gap: 8px;
    padding: 0 18px 20px;
  }

  .joy-command-send {
    min-height: 48px;
    padding: 0 16px;
  }

  .joy-command-toast {
    grid-template-columns: 52px 1fr auto;
    min-height: 120px;
    padding: 16px;
  }

  .joy-command-toast img {
    width: 52px;
    height: 52px;
  }

  .joy-command-cursor {
    display: none;
  }

  .ben-visual-reel,
  .ben-speech-stack {
    min-height: 360px;
  }

  .ben-speech-bubble {
    grid-template-columns: 42px 1fr;
    padding: 13px 14px;
    border-radius: 22px;
  }

  .ben-speech-bubble img {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }
}

.action-chat-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.68fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  min-height: 720px;
  margin: 0 auto 128px;
  padding: clamp(28px, 5vw, 66px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(34px, 5vw, 58px);
  background:
    radial-gradient(circle at 13% 12%, rgba(44, 255, 186, 0.2), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(73, 126, 255, 0.18), transparent 30%),
    radial-gradient(circle at 74% 88%, rgba(255, 179, 83, 0.14), transparent 32%),
    linear-gradient(140deg, #030507 0%, #07100f 48%, #020305 100%);
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.action-chat-stage::before {
  width: 320px;
  height: 320px;
  left: -70px;
  bottom: -86px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle, rgba(50, 255, 184, 0.08), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent);
  box-shadow: inset 0 0 80px rgba(44, 255, 186, 0.05);
}

.action-chat-stage::after {
  right: 18%;
  top: 10%;
  width: 10px;
  height: 10px;
  background: #70ffaf;
  box-shadow:
    0 0 0 13px rgba(112, 255, 175, 0.06),
    0 0 52px rgba(112, 255, 175, 0.5);
}

.action-chat-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.action-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(112, 255, 175, 0.24);
  border-radius: 999px;
  background: rgba(112, 255, 175, 0.08);
  color: #79ffb6;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.action-chat-copy .card-title {
  max-width: 12.8ch;
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(2.2rem, 4.1vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.action-chat-copy .card-copy {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 560;
  line-height: 1.62;
}

.action-proof-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.action-proof-list div {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 17px 18px 17px 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 10% 0%, rgba(112, 255, 175, 0.13), transparent 56%);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.action-proof-list div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 19px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #70ffaf;
  box-shadow: 0 0 26px rgba(112, 255, 175, 0.45);
}

.action-proof-list strong {
  color: #ffffff;
  font-size: 1.02rem;
}

.action-proof-list small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.94rem;
  line-height: 1.35;
}

.math-phone-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.math-phone {
  position: relative;
  width: min(100%, 392px);
  aspect-ratio: 488 / 967;
  filter: none;
}

.math-phone-screen {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 47px;
  background: transparent;
}

.math-phone-template {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.math-profile-photo {
  position: absolute;
  z-index: 4;
  top: 11.55%;
  left: 20.85%;
  width: 7.6%;
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
}

.math-profile-photo img {
  position: absolute;
  left: 50%;
  top: 0;
  width: 108%;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}

.math-chat-thread {
  position: absolute;
  z-index: 4;
  inset: 19.7% 9.4% 12.7%;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0;
  pointer-events: none;
}

.math-wa-bubble {
  position: relative;
  max-width: 86%;
  padding: 10px 12px 18px;
  border-radius: 5px 18px 18px 18px;
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 18px, 0) scale(0.98);
  transition:
    opacity 520ms ease,
    filter 520ms ease,
    transform 520ms cubic-bezier(0.2, 0.85, 0.22, 1);
  color: #f6fbf7;
  font-size: clamp(0.68rem, 0.82vw, 0.84rem);
  font-weight: 760;
  line-height: 1.32;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.math-wa-bubble.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.math-wa-bubble.user {
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  background: linear-gradient(145deg, #006f6a, #00504f);
}

.math-wa-bubble.agent {
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  background: linear-gradient(145deg, #3e4248, #303338);
}

.math-wa-bubble span {
  position: absolute;
  right: 12px;
  bottom: 6px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

@media (max-width: 980px) {
  .action-chat-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .action-chat-copy {
    max-width: none;
    margin: 0 auto;
  }

  .action-chat-copy .card-title,
  .action-chat-copy .card-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .action-proof-list {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .math-phone {
    width: min(100%, 392px);
  }
}

@media (max-width: 620px) {
  .action-chat-stage {
    margin-bottom: 86px;
    padding: 22px 14px 28px;
    border-radius: 30px;
  }

  .action-chat-copy .card-title {
    max-width: 10ch;
    font-size: clamp(2.25rem, 12vw, 3.45rem);
  }

  .action-proof-list div {
    padding: 15px 15px 15px 42px;
  }

  .math-phone {
    width: min(100%, 250px);
  }

  .math-wa-bubble {
    max-width: 88%;
    font-size: 0.68rem;
  }
}

@media (max-width: 920px) {
  .faq-section {
    grid-template-columns: 1fr;
    padding-top: 10px;
  }

  .faq-copy {
    position: relative;
    top: auto;
    text-align: center;
  }

  .faq-copy .section-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .final-cta {
    text-align: center;
  }

  .final-cta p,
  .final-cta .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .faq-item summary {
    min-height: 66px;
    padding: 0 18px;
    font-size: 0.96rem;
  }

  .faq-item p {
    padding: 0 18px 20px;
    font-size: 0.94rem;
  }

  .final-cta {
    margin-bottom: 86px;
    padding: 28px 18px;
    border-radius: 30px;
  }

  .final-cta h2 {
    font-size: clamp(2.1rem, 12vw, 3.45rem);
  }

  .footer-shell {
    padding-top: 42px;
    padding-bottom: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-header,
  .site-nav-wrap,
  .btn,
  .btn-secondary,
  .nav-cta,
  .showcase-screen,
  .floating-note,
  .testimonials-strip,
  .fade-in,
  .fade-in.visible {
    transition: none;
    transform: none !important;
    opacity: 1;
  }

  .testimonials-strip {
    animation: none;
  }

  .chat-bubble {
    opacity: 1;
    transform: none;
  }

  .math-wa-bubble {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}


