@font-face {
  font-family: "Unbounded Local";
  src: url("assets/fonts/unbounded-300-cyrillic.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #edf6f9;
  --bg-soft: #f7fbfc;
  --surface: rgba(255, 255, 255, .66);
  --surface-strong: rgba(255, 255, 255, .84);
  --line: rgba(146, 183, 201, .24);
  --line-bright: rgba(255, 255, 255, .9);
  --text: #1d2d3c;
  --muted: #5d7182;
  --muted-2: #8193a1;
  --cyan: #55cfe9;
  --cyan-bright: #93ebf8;
  --cyan-deep: #308bc6;
  --blue: #708cff;
  --lavender: #a98fff;
  --shadow: 0 26px 80px rgba(77, 123, 148, .13), inset 0 1px 0 rgba(255,255,255,.96);
  --shadow-soft: 0 14px 40px rgba(79, 125, 151, .1), inset 0 1px 0 rgba(255,255,255,.9);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shell: 1320px;
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 7%, rgba(164, 232, 245, .35), transparent 26%),
    radial-gradient(circle at 12% 24%, rgba(200, 189, 255, .19), transparent 24%),
    linear-gradient(180deg, #f8fbfc 0%, #edf6f9 36%, #f5f9fa 100%);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.22), transparent 74%);
}

body.menu-open { overflow: hidden; }
a { color: inherit; }
img, video, svg { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(48,139,198,.5);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 11px 15px;
  border-radius: 12px;
  background: #173144;
  color: white;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(var(--shell), calc(100% - 72px));
  margin-inline: auto;
}

.section { position: relative; isolation: isolate; padding: 96px 0; }

.glass-panel,
.glass-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.9);
  background:
    linear-gradient(145deg, rgba(255,255,255,.52), rgba(230,244,249,.22) 56%, rgba(222,229,255,.16)),
    rgba(239,248,251,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.98),
    inset 0 -1px 0 rgba(123,174,197,.1),
    0 22px 64px rgba(64,112,137,.12);
  backdrop-filter: blur(32px) saturate(148%);
  -webkit-backdrop-filter: blur(32px) saturate(148%);
}

.glass-panel::before,
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255,255,255,.62), transparent 26%, rgba(255,255,255,.08) 64%, rgba(177,226,240,.12)),
    radial-gradient(circle at 12% 7%, rgba(255,255,255,.76), transparent 24%);
  opacity: .72;
}

.problem-section::before,
.conversation-section::before,
.capability-section::before,
.channels-section::before,
.implementation-section::before,
.support-section::before,
.fit-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 4% 0;
  pointer-events: none;
  filter: blur(4px);
}

.problem-section::before { background: radial-gradient(circle at 16% 28%, rgba(119,143,255,.2), transparent 24%), radial-gradient(circle at 82% 70%, rgba(85,207,233,.22), transparent 25%); }
.conversation-section::before { background: radial-gradient(circle at 50% 42%, rgba(120,139,255,.2), transparent 31%); }
.capability-section::before { background: radial-gradient(circle at 22% 46%, rgba(85,207,233,.22), transparent 25%), radial-gradient(circle at 80% 35%, rgba(169,143,255,.18), transparent 25%); }
.channels-section::before { background: radial-gradient(circle at 78% 45%, rgba(85,207,233,.2), transparent 28%); }
.implementation-section::before { background: radial-gradient(circle at 18% 25%, rgba(169,143,255,.18), transparent 23%), radial-gradient(circle at 75% 72%, rgba(85,207,233,.19), transparent 27%); }
.support-section::before { background: radial-gradient(circle at 50% 45%, rgba(104,140,255,.17), transparent 32%); }
.fit-section::before { background: radial-gradient(circle at 18% 55%, rgba(85,207,233,.15), transparent 24%), radial-gradient(circle at 82% 40%, rgba(169,143,255,.15), transparent 24%); }

.page-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  pointer-events: none;
}

.page-progress i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--lavender));
  box-shadow: 0 0 14px rgba(85,207,233,.7);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  background: rgba(247,252,253,.78);
  border-color: rgba(154,188,203,.24);
  box-shadow: 0 12px 36px rgba(62,100,119,.08);
  backdrop-filter: blur(22px) saturate(140%);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--text);
  text-decoration: none;
}

.brand > span:last-child { display: flex; flex-direction: column; line-height: 1.15; }
.brand strong { font-size: 18px; letter-spacing: -.025em; }
.brand small { margin-top: 4px; color: var(--muted-2); font-size: 12px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border: 1px solid rgba(97,183,214,.34);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(197,239,247,.6));
  box-shadow: inset 0 1px 0 white, 0 8px 18px rgba(71,149,177,.12);
}

.brand-mark i,
.brand-mark b {
  position: absolute;
  top: 7px;
  width: 8px;
  height: 20px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  transform: skew(-22deg);
}

.brand-mark i { left: 9px; }
.brand-mark b { right: 9px; opacity: .72; }

.site-menu { display: flex; justify-content: center; gap: clamp(18px, 2.2vw, 34px); }
.site-menu a { color: var(--muted); font-size: 15px; font-weight: 650; text-decoration: none; transition: color .2s ease; }
.site-menu a:hover { color: var(--cyan-deep); }
.menu-toggle { display: none; }

.button {
  position: relative;
  isolation: isolate;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 16px;
  background: linear-gradient(110deg, #708cff 0%, #56cde7 76%);
  box-shadow: 0 15px 28px rgba(79,155,205,.22), inset 0 1px 0 rgba(255,255,255,.58);
  color: white;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -30% -80%;
  transform: translateX(-42%) rotate(12deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent);
  animation: buttonShine 6s ease-in-out infinite;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 20px 34px rgba(79,155,205,.28), inset 0 1px 0 rgba(255,255,255,.72); }
.button-small { min-height: 48px; padding-inline: 18px; border-radius: 14px; font-size: 14px; }
.button-ghost { border-color: rgba(127,170,191,.24); background: rgba(255,255,255,.5); box-shadow: var(--shadow-soft); color: #294359; }
.button-ghost::before { opacity: .5; }

.eyebrow {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4f7287;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow > span { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px rgba(85,207,233,.8); }

.section-heading { max-width: 800px; margin-bottom: 44px; }
.section-heading-wide { max-width: 980px; }
.section-heading h2,
.analytics-copy h2,
.support-intro h2,
.faq-heading h2,
.final-copy h2 {
  margin: 0;
  max-width: 900px;
  color: #183044;
  font-size: clamp(36px, 4.1vw, 64px);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.section-heading > p:last-child,
.analytics-copy > p,
.faq-heading > p:last-child {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .78s ease, transform .78s cubic-bezier(.2,.75,.2,1);
}

[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.hero-copy[data-reveal] { opacity: 1; transform: none; }

/* Hero */
.hero { padding: 118px 0 0; }
.hero-shell { min-height: 760px; overflow: hidden; border-radius: var(--radius-xl); }
.hero-shell::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(250,253,254,.98) 0%, rgba(249,253,254,.94) 40%, rgba(246,252,253,.32) 64%, rgba(245,251,252,.05) 100%);
}

.hero-media { position: absolute; z-index: 0; inset: 0; overflow: hidden; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: center; background: url("assets/alina-hero-headset.webp") center / cover no-repeat; }
.hero-scan { position: absolute; inset: -20% 0; background: linear-gradient(100deg, transparent 42%, rgba(255,255,255,.72) 50%, transparent 58%); transform: translateX(-90%); animation: heroScan 9s ease-in-out infinite; opacity: .52; }
.hero-prism { position: absolute; border: 1px solid rgba(255,255,255,.64); filter: drop-shadow(0 15px 26px rgba(75,153,182,.14)); }
.hero-prism-a { width: 220px; height: 220px; top: 4%; right: -4%; clip-path: polygon(46% 0, 100% 18%, 80% 100%, 8% 82%); background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(89,211,237,.16)); animation: prismFloat 10s ease-in-out infinite; }
.hero-prism-b { width: 120px; height: 120px; bottom: 4%; left: 46%; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); background: linear-gradient(135deg, rgba(255,255,255,.35), rgba(171,145,255,.1)); animation: prismFloat 8s ease-in-out infinite reverse; }

.hero-copy { position: relative; z-index: 3; width: 55%; padding: 96px 0 74px 52px; }
.hero-copy h1 { margin: 0; }
.chrome-title {
  display: block;
  position: relative;
  isolation: isolate;
  width: max-content;
  max-width: 100%;
  font-family: "Unbounded Local", "Arial Black", sans-serif;
  font-size: clamp(76px, 8.8vw, 136px);
  font-weight: 300;
  line-height: .88;
  letter-spacing: -.075em;
  color: rgba(226,246,250,.16);
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.78) 0%,
      rgba(214,239,246,.08) 20%,
      rgba(255,255,255,.3) 42%,
      rgba(115,160,179,.06) 64%,
      rgba(255,255,255,.54) 82%,
      rgba(199,232,241,.12) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2.15px rgba(62,91,105,.72);
  paint-order: stroke fill;
  text-shadow:
    -1px -1px 0 rgba(255,255,255,.98),
    1.5px 1.5px 0 rgba(50,78,92,.56),
    3px 4px 0 rgba(204,231,238,.72),
    0 3px 7px rgba(255,255,255,.55),
    0 15px 26px rgba(55,105,127,.2);
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.95)) drop-shadow(0 10px 18px rgba(61,112,133,.18));
}
.chrome-title::before,
.chrome-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.chrome-title::before {
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 6.5px rgba(226,247,251,.48);
  filter: blur(.7px);
  transform: translate(1px, 2px);
}
.chrome-title::after {
  z-index: 1;
  color: transparent;
  background: linear-gradient(174deg, rgba(255,255,255,.98) 4%, rgba(255,255,255,0) 22%, rgba(139,220,236,.58) 45%, rgba(255,255,255,.14) 57%, rgba(255,255,255,.9) 78%, rgba(180,152,255,.3) 94%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: .85px rgba(255,255,255,.98);
  mix-blend-mode: screen;
  opacity: .88;
}

.hero-role { display: block; max-width: 660px; margin-top: 24px; color: #263d4e; font-size: clamp(23px, 2.3vw, 34px); font-weight: 730; line-height: 1.12; letter-spacing: -.035em; }
.hero-lead { max-width: 700px; margin: 25px 0 0; color: #415c6e; font-size: 18px; }
.hero-channel { margin: 16px 0 0; color: #5e7484; font-size: 16px; }
.hero-channel strong { color: #2d586f; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-channel-button { min-width: min(100%, 270px); min-height: 70px; padding: 9px 16px; display: grid; grid-template-columns: 42px 1fr 20px; justify-content: initial; gap: 11px; text-align: left; }
.hero-channel-button img { width: 42px; height: 42px; padding: 5px; object-fit: contain; border-radius: 13px; background: rgba(255,255,255,.88); box-shadow: 0 8px 18px rgba(53,93,133,.16); }
.hero-channel-button span,.hero-channel-button strong,.hero-channel-button small { display: block; }
.hero-channel-button strong { color: inherit; font-size: 14px; line-height: 1.2; }
.hero-channel-button small { margin-top: 3px; color: rgba(255,255,255,.78); font-size: 11px; line-height: 1.2; }
.hero-channel-button i { font-size: 18px; font-style: normal; text-align: right; }
.hero-channel-button-max { background: linear-gradient(110deg,#765cff 0%,#4bcbe5 100%); }
.hero-channel-button-telegram { border-color: rgba(92,160,197,.28); background: rgba(255,255,255,.68); color: #2f5970; box-shadow: var(--shadow-soft); }
.hero-channel-button-telegram::before { opacity: .45; }
.hero-channel-button-telegram small { color: #718795; }
.hero-secondary-actions { margin-top: 13px; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.hero-secondary-actions a { display: inline-flex; align-items: center; gap: 7px; color: #496f85; font-size: 13px; font-weight: 800; text-decoration: none; }
.hero-secondary-actions a:hover { color: #2d566e; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; color: #536d7e; font-size: 14px; font-weight: 700; }
.hero-trust i { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(99,174,201,.26); border-radius: 50%; background: rgba(255,255,255,.6); color: var(--cyan-deep); font-style: normal; }

.fact-ribbon { margin-top: 20px; min-height: 150px; padding: 26px 34px; display: grid; grid-template-columns: repeat(4, 1fr) 1.15fr; align-items: center; overflow: hidden; border-radius: 28px; }
.fact { min-height: 82px; padding: 5px 22px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(128,169,188,.2); }
.fact-icon { color: var(--cyan-deep); font-size: 24px; }
.fact strong { margin-top: 6px; font-size: 19px; line-height: 1.15; }
.fact small { margin-top: 6px; color: var(--muted-2); font-size: 13px; }
.fact-ribbon > p { margin: 0; padding-left: 34px; color: #526b7b; font-size: 15px; }

/* Problem */
.problem-section { padding-top: 122px; }
.loss-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.loss-card { min-height: 215px; padding: 28px; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); transition: transform .28s ease, box-shadow .28s ease; }
.loss-card:hover { transform: translateY(-5px); box-shadow: 0 24px 52px rgba(77,123,148,.16), inset 0 1px 0 white; }
.loss-card > span { color: transparent; font-size: 46px; font-weight: 300; line-height: 1; letter-spacing: -.05em; -webkit-text-stroke: 1px rgba(67,130,160,.38); filter: drop-shadow(0 8px 18px rgba(62,132,166,.1)); }
.loss-card h3 { max-width: 300px; margin: 26px 0 9px; font-size: 23px; line-height: 1.1; letter-spacing: -.03em; }
.loss-card p { max-width: 320px; margin: 0; color: var(--muted); font-size: 16px; }
.section-note { margin: 20px 0 0; padding: 24px 28px; border-radius: 18px; color: #466274; font-size: 16px; box-shadow: var(--shadow-soft); }

/* Demo */
.demo-section { position: relative; }
.demo-section::before { content: ""; position: absolute; inset: 12% 0 0; z-index: -1; background: radial-gradient(circle at 50% 42%, rgba(87,206,234,.22), transparent 31%); }
.demo-route { margin-bottom: 20px; padding: 22px 28px; display: grid; grid-template-columns: 1fr 70px 1fr 70px 1fr; align-items: center; border-radius: 22px; box-shadow: var(--shadow-soft); }
.demo-route > div { min-width: 0; display: grid; grid-template-columns: 42px 1fr; gap: 2px 12px; align-items: center; }
.demo-route span { grid-row: 1/3; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(83,180,211,.22); border-radius: 14px; background: rgba(255,255,255,.56); color: #4385a2; font-size: 13px; font-weight: 850; }
.demo-route strong { color: #34556a; font-size: 16px; line-height: 1.15; }
.demo-route small { color: var(--muted-2); font-size: 13px; }
.demo-route > i { height: 1px; position: relative; overflow: hidden; background: rgba(90,167,196,.24); }
.demo-route > i::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, var(--cyan), transparent); animation: lineFlow 2.8s ease-in-out infinite; }
.demo-stage { min-height: 820px; padding: 46px; display: grid; grid-template-columns: .92fr 1.08fr; gap: 44px; align-items: center; overflow: hidden; border-radius: var(--radius-xl); }
.demo-phone { position: relative; z-index: 2; width: min(490px,100%); min-height: 760px; margin-inline: auto; padding: 18px; border: 1px solid rgba(255,255,255,.85); border-radius: 38px; background: linear-gradient(160deg, rgba(21,48,73,.96), rgba(13,30,51,.98)); box-shadow: 0 40px 80px rgba(34,75,100,.25), inset 0 1px 0 rgba(255,255,255,.2); color: white; transform: rotate(-1.2deg); }
.phone-top { height: 70px; padding: 0 12px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.09); }
.avatar { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; background: linear-gradient(145deg, var(--cyan), var(--blue)); font-weight: 800; }
.phone-top div { display: flex; flex-direction: column; }
.phone-top strong { font-size: 15px; }
.phone-top small { margin-top: 2px; color: #9eb8c9; font-size: 12px; }
.phone-top > i { width: 9px; height: 9px; margin-left: auto; border-radius: 50%; background: #6de6c2; box-shadow: 0 0 12px rgba(109,230,194,.7); }
.conversation { padding: 20px 4px 48px; display: flex; flex-direction: column; gap: 12px; }
.message { max-width: 86%; padding: 13px 14px 9px; border-radius: 17px; opacity: 0; transform: translateY(14px) scale(.98); transition: opacity .4s ease, transform .4s ease; }
.message.is-shown { opacity: 1; transform: translateY(0) scale(1); }
.message p { margin: 0; font-size: 14px; line-height: 1.46; }
.message time { display: block; margin-top: 5px; color: rgba(255,255,255,.64); font-size: 12px; text-align: right; }
.message-client { align-self: flex-end; border: 1px solid rgba(116,143,255,.28); border-bottom-right-radius: 5px; background: linear-gradient(135deg, rgba(104,130,241,.32), rgba(53,78,119,.55)); }
.message-alina { align-self: flex-start; border: 1px solid rgba(99,215,239,.2); border-bottom-left-radius: 5px; background: linear-gradient(135deg, rgba(51,128,157,.5), rgba(34,65,88,.78)); }
.typing { position: absolute; left: 24px; bottom: 24px; width: 64px; height: 30px; display: flex; align-items: center; justify-content: center; gap: 4px; border-radius: 14px; background: rgba(70,117,142,.45); transition: opacity .3s ease; }
.typing span { width: 5px; height: 5px; border-radius: 50%; background: #aee9f3; animation: typing 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .17s; }
.typing span:nth-child(3) { animation-delay: .34s; }
.demo-stage.is-complete .typing { opacity: 0; }

.demo-result { position: relative; z-index: 2; padding: 34px; border: 1px solid rgba(255,255,255,.9); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.48), rgba(225,242,248,.2)); box-shadow: var(--shadow-soft); backdrop-filter: blur(26px) saturate(145%); }
.demo-result-head { display: flex; justify-content: space-between; gap: 20px; color: #6a8190; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.demo-result-head b { padding: 6px 10px; border-radius: 99px; background: rgba(81,204,230,.1); color: #338aae; font-size: 12px; }
.demo-stage.is-complete .demo-result-head b { background: rgba(86,218,192,.14); color: #287d6d; box-shadow: 0 0 0 4px rgba(86,218,192,.06); }
.result-person { margin-top: 26px; padding-bottom: 22px; display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 12px; border-bottom: 1px solid rgba(126,170,190,.18); }
.result-avatar { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(145deg, rgba(85,207,233,.23), rgba(112,140,255,.18)); color: #337a9e; font-weight: 800; }
.result-person div { display: flex; flex-direction: column; }
.result-person small { color: var(--muted-2); }
.result-person em { padding: 7px 11px; border: 1px solid rgba(53,174,152,.2); border-radius: 99px; background: rgba(86,218,192,.12); color: #287d6d; font-size: 12px; font-style: normal; font-weight: 750; }
.demo-result dl { margin: 12px 0 0; }
.demo-result dl div { padding: 14px 0; display: grid; grid-template-columns: 140px 1fr; gap: 18px; border-bottom: 1px solid rgba(126,170,190,.14); }
.demo-result dt { color: var(--muted-2); font-size: 14px; }
.demo-result dd { margin: 0; color: #314d60; font-size: 15px; font-weight: 650; }
.handoff-summary { margin-top: 22px; padding: 17px 18px; border: 1px solid rgba(89,188,211,.19); border-radius: 17px; background: linear-gradient(135deg, rgba(221,248,250,.56), rgba(238,235,255,.34)); }
.handoff-summary strong { color: #31566a; font-size: 15px; }
.handoff-summary p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.handoff-line { margin-top: 24px; display: flex; align-items: center; gap: 10px; color: #5e788a; font-size: 12px; font-weight: 750; }
.handoff-line i { flex: 1; height: 1px; position: relative; overflow: hidden; background: rgba(91,174,205,.22); }
.handoff-line i::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, var(--cyan), transparent); transform: translateX(-100%); animation: lineFlow 2.8s ease-in-out infinite; }
.demo-replay { margin-top: 26px; padding: 0; border: 0; background: none; color: var(--cyan-deep); font-size: 15px; font-weight: 800; cursor: pointer; }
.demo-glow { position: absolute; width: 560px; height: 560px; left: 28%; top: 8%; border-radius: 50%; background: radial-gradient(circle, rgba(114,226,247,.2), transparent 62%); filter: blur(12px); animation: glowPulse 5s ease-in-out infinite; }
.demo-outcome { margin-top: 20px; padding: 30px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: center; overflow: hidden; border-radius: 24px; }
.demo-outcome::before { content: ""; position: absolute; width: 360px; height: 360px; right: -180px; bottom: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(105,220,239,.2), transparent 68%); pointer-events: none; }
.demo-outcome > div { min-height: 92px; padding: 18px; border-left: 2px solid rgba(82,191,218,.38); background: rgba(255,255,255,.28); }
.demo-outcome > div span { display: block; color: #718a99; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.demo-outcome > div strong { display: block; margin-top: 8px; color: #315064; font-size: 17px; line-height: 1.25; }
.demo-outcome > p { grid-column: 1/3; margin: 0; color: #4f6b7c; font-size: 16px; }
.demo-outcome > .button { justify-self: end; }

/* Conversation rail */
.conversation-section { padding-top: 118px; }
.conversation-rail { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; }
.rail-line { position: absolute; top: 126px; left: 5%; right: 5%; height: 2px; overflow: hidden; background: rgba(91,167,197,.2); }
.rail-line i { display: block; height: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--blue), var(--cyan), var(--lavender)); box-shadow: 0 0 12px rgba(85,207,233,.7); }
.conversation-rail.is-running .rail-line i { animation: railFill 2.6s cubic-bezier(.2,.8,.2,1) forwards; }
.conversation-step { position: relative; z-index: 1; padding: 8px; }
.conversation-step > span { color: #5e8197; font-size: 17px; font-weight: 850; letter-spacing: .1em; }
.conversation-step h3 { margin: 22px 0 8px; font-size: 19px; line-height: 1.12; letter-spacing: -.025em; }
.conversation-step p { margin: 0; color: var(--muted); font-size: 15px; }
.step-visual {
  position: relative;
  height: 158px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.84);
  border-radius: 22px;
  background: #071a32;
  box-shadow: 0 18px 34px rgba(24,55,87,.24), inset 0 1px 0 rgba(255,255,255,.3);
}
.step-visual::before { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(125deg, rgba(255,255,255,.2), transparent 23% 70%, rgba(111,219,241,.12)); }
.step-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.2,1), filter .7s ease; }
.conversation-step:hover .step-visual img { transform: scale(1.075); filter: brightness(1.07) saturate(1.08); }

/* Capability */
.capability-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.capability-grid > article { min-height: 650px; padding: 34px; overflow: hidden; border-radius: var(--radius-lg); }
.panel-label { margin: 0 0 12px; color: #6e8b9c; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.capability-grid h2 { margin: 0; font-size: 32px; line-height: 1.08; letter-spacing: -.04em; }
.ability-list { margin: 36px 0 0; padding: 0; list-style: none; }
.ability-list li { margin-bottom: 16px; }
.ability-list span { display: block; color: #506b7d; font-size: 15px; font-weight: 650; }
.ability-list i { display: block; height: 4px; margin-top: 9px; overflow: hidden; border-radius: 99px; background: rgba(95,154,180,.13); }
.ability-list i::after { content: ""; display: block; width: 100%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--cyan), rgba(85,207,233,.18)); transform: scaleX(0); transform-origin: left; transition: transform 1.2s .2s ease; }
.capability-panel.is-visible .ability-list i::after { transform: scaleX(1); }
.capability-note { margin: 24px 0 0; padding-top: 20px; border-top: 1px solid rgba(112,163,185,.18); color: var(--muted); font-size: 15px; }

.knowledge-panel > p:not(.panel-label) { color: var(--muted); font-size: 15px; }
.handoff-panel > p:not(.panel-label) { color: var(--muted); font-size: 15px; }
.handoff-reasons { margin: 20px 0 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.handoff-reasons li { position: relative; padding-left: 24px; color: #526e80; font-size: 15px; }
.handoff-reasons li::before { content: ""; position: absolute; left: 0; top: .57em; width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(145deg, var(--cyan), var(--blue)); box-shadow: 0 0 0 4px rgba(85,207,233,.1); }
.feature-scene { position: relative; height: 320px; margin: 26px 0; overflow: hidden; border: 1px solid rgba(255,255,255,.82); border-radius: 24px; background: #071a32; box-shadow: 0 22px 42px rgba(24,55,87,.23), inset 0 1px 0 rgba(255,255,255,.28); }
.feature-scene::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(125deg, rgba(255,255,255,.2), transparent 22% 72%, rgba(111,219,241,.1)); }
.feature-scene img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.75,.2,1), filter .8s ease; }
.knowledge-panel:hover .feature-scene img,
.handoff-panel:hover .feature-scene img { transform: scale(1.055); filter: brightness(1.06) saturate(1.08); }

/* Analytics */
.analytics-shell { padding: 54px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 54px; align-items: center; overflow: hidden; border-radius: var(--radius-xl); }
.analytics-copy > p { color: var(--muted); }
.analytics-list { margin: 20px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; list-style: none; }
.analytics-list li { position: relative; padding-left: 20px; color: #526e80; font-size: 15px; }
.analytics-list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px rgba(85,207,233,.55); }
.analytics-note { padding: 16px; border-left: 2px solid var(--cyan); background: rgba(255,255,255,.38); border-radius: 0 14px 14px 0; font-size: 15px; }
.dashboard { min-width: 0; padding: 20px; border: 1px solid rgba(255,255,255,.88); border-radius: 26px; background: linear-gradient(150deg, rgba(248,253,254,.94), rgba(224,244,248,.63)); box-shadow: 0 30px 60px rgba(53,109,136,.15), inset 0 1px 0 white; }
.dash-top { display: flex; justify-content: space-between; gap: 20px; color: #607989; font-size: 12px; }
.dash-top span { display: flex; align-items: center; gap: 7px; }
.dash-top i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.dash-grid { margin-top: 18px; display: grid; grid-template-columns: 1.15fr .85fr .85fr .85fr; gap: 10px; }
.dash-card { min-height: 126px; padding: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.9); border-radius: 16px; background: rgba(255,255,255,.58); box-shadow: 0 8px 20px rgba(70,122,147,.07); }
.dash-card small { color: #6b8595; font-size: 12px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.dash-line { grid-column: span 2; }
.dash-line svg { width: 100%; margin-top: 5px; overflow: visible; }
.dash-line .area { fill: url(#lineFill); opacity: 0; transition: opacity 1s ease; }
.dash-line .line { fill: none; stroke: #58c5e1; stroke-width: 2; stroke-linecap: round; stroke-dasharray: 420; stroke-dashoffset: 420; transition: stroke-dashoffset 2s ease; }
.dashboard.is-running .dash-line .area { opacity: 1; }
.dashboard.is-running .dash-line .line { stroke-dashoffset: 0; }
.dash-bars i { display: block; width: 100%; height: 7px; margin-top: 11px; overflow: hidden; border-radius: 99px; background: rgba(96,156,181,.12); }
.dash-bars i::after { content: ""; display: block; width: var(--bar); height: 100%; border-radius: inherit; background: linear-gradient(90deg, #78a3ff, #5ed1e9); transform: scaleX(0); transform-origin: left; transition: transform 1.4s ease; }
.dashboard.is-running .dash-bars i::after { transform: scaleX(1); }
.dash-time strong { display: block; margin-top: 10px; color: #32556b; font-size: 34px; }
.dash-time span { color: #778f9e; font-size: 12px; }
.dash-time svg { width: 100%; margin-top: 12px; }
.dash-time path { fill: none; stroke: #77cfe5; stroke-width: 2; stroke-dasharray: 260; stroke-dashoffset: 260; transition: stroke-dashoffset 1.8s ease; }
.dashboard.is-running .dash-time path { stroke-dashoffset: 0; }
.dash-ring div { position: relative; width: 68px; height: 68px; margin: 14px auto 0; display: grid; place-items: center; }
.dash-ring i { position: absolute; inset: 0; border: 9px solid rgba(103,179,207,.14); border-top-color: #62cde5; border-right-color: #7795ff; border-radius: 50%; animation: ringTurn 8s linear infinite; }
.dash-ring span { color: #49687a; font-size: 22px; }
.dash-wide { grid-column: span 4; min-height: 102px; }
.dash-wide > div { margin-top: 14px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.dash-wide span { padding: 10px 8px; border-radius: 10px; background: rgba(220,243,248,.65); color: #607b8c; font-size: 12px; text-align: center; }

/* Channels */
.channels-layout { display: grid; grid-template-columns: .74fr 1.26fr; gap: 54px; align-items: center; }
.channel-board { min-height: 530px; padding: 34px; display: grid; grid-template-columns: 180px 1fr; gap: 24px; border-radius: var(--radius-xl); }
.channel-core { position: relative; align-self: center; width: 130px; height: 130px; margin-inline: auto; display: grid; place-items: center; border-radius: 38px; background: linear-gradient(145deg, rgba(85,207,233,.38), rgba(112,140,255,.3)); box-shadow: 0 24px 50px rgba(60,135,165,.2), inset 0 1px 0 rgba(255,255,255,.9); transform: rotate(45deg); }
.channel-core span { color: white; font-size: 54px; font-weight: 720; transform: rotate(-45deg); }
.channel-core i { position: absolute; inset: -20px; border: 1px solid rgba(80,194,222,.18); border-radius: 46px; animation: corePulse 3.6s ease-in-out infinite; }
.channel-group { position: relative; z-index: 2; align-self: center; }
.channel-group > small { display: block; margin-bottom: 12px; color: #728e9f; font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.channel-list > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.channel-list span { min-height: 74px; padding: 12px 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.9); border-radius: 16px; background: linear-gradient(145deg, rgba(255,255,255,.52), rgba(212,239,247,.24)); color: #526f81; font-size: 13px; font-weight: 750; text-align: center; box-shadow: 0 12px 30px rgba(64,126,151,.08); backdrop-filter: blur(22px); }
.channel-list b { min-width: 28px; height: 28px; padding: 0 5px; display: grid; place-items: center; border-radius: 9px; background: linear-gradient(145deg, #70d2e8, #7c92ef); color: white; font-size: 12px; letter-spacing: -.03em; }
.channel-modes { grid-column: 1/-1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.channel-modes div { padding: 16px 18px; border: 1px solid rgba(255,255,255,.82); border-radius: 16px; background: rgba(255,255,255,.3); backdrop-filter: blur(20px); }
.channel-modes small { display: block; margin-bottom: 5px; color: #78909f; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.channel-modes strong { color: #385a6f; font-size: 14px; }
.channel-board > p { grid-column: 1/-1; margin: 0; padding: 16px 18px; align-self: end; border: 1px solid rgba(255,255,255,.7); border-radius: 15px; background: rgba(209,238,246,.28); color: #647e8e; font-size: 14px; backdrop-filter: blur(18px); }

/* Implementation */
.phase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.phase-card { min-height: 550px; padding: 32px; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow-soft); }
.phase-card-main { transform: translateY(-18px); border-color: rgba(114,189,220,.4); box-shadow: 0 32px 70px rgba(64,145,177,.17), inset 0 1px 0 white; }
.phase-number { color: transparent; font-size: 70px; font-weight: 300; line-height: 1; -webkit-text-stroke: 1px rgba(79,132,156,.3); }
.phase-card h3 { margin: 0; font-size: 28px; letter-spacing: -.04em; }
.phase-card ol { position: relative; z-index: 2; margin: 25px 0 0; padding: 0; list-style: none; counter-reset: steps; }
.phase-card li { position: relative; margin-bottom: 14px; padding-left: 27px; color: var(--muted); font-size: 15px; }
.phase-card li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 8px; height: 8px; border: 2px solid white; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 1px rgba(70,161,194,.28); }
.phase-visual { position: absolute; left: 32px; right: 32px; bottom: 30px; height: 178px; overflow: hidden; border: 1px solid rgba(255,255,255,.82); border-radius: 22px; background: #071a32; box-shadow: 0 20px 38px rgba(24,55,87,.22), inset 0 1px 0 rgba(255,255,255,.28); }
.phase-visual::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(125deg, rgba(255,255,255,.18), transparent 24% 72%, rgba(111,219,241,.1)); }
.phase-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.75,.2,1), filter .8s ease; }
.phase-card:hover .phase-visual img { transform: scale(1.06); filter: brightness(1.06) saturate(1.07); }

/* Pricing */
.price-section { background: linear-gradient(180deg, rgba(255,255,255,.28), rgba(221,241,246,.35)); }
.payback-banner { position: relative; margin-bottom: 44px; padding: 30px 34px; display: grid; grid-template-columns: minmax(170px,.65fr) minmax(210px,.7fr) minmax(300px,1.5fr) auto; gap: 28px; align-items: center; overflow: hidden; border-color: rgba(255,255,255,.92); border-radius: 28px; background: linear-gradient(112deg, rgba(240,250,255,.92), rgba(217,244,250,.8) 46%, rgba(226,221,255,.72)); box-shadow: 0 28px 70px rgba(65,145,179,.18), inset 0 1px 0 white; }
.payback-banner::before { content: ""; position: absolute; width: 390px; height: 390px; right: -155px; top: -215px; border-radius: 50%; background: radial-gradient(circle, rgba(116,111,255,.32), rgba(81,209,228,.12) 42%, transparent 70%); pointer-events: none; }
.payback-banner::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(105deg, transparent 28%, rgba(255,255,255,.55) 46%, transparent 64%); transform: translateX(-110%); animation: payback-shine 7s ease-in-out infinite; }
.payback-banner > * { position: relative; z-index: 1; }
.payback-banner-label { display: flex; align-items: center; gap: 9px; color: #4c758b; font-size: 13px; font-weight: 850; letter-spacing: .095em; line-height: 1.35; text-transform: uppercase; }
.payback-banner-label span { width: 9px; height: 9px; flex: 0 0 auto; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--violet)); box-shadow: 0 0 0 7px rgba(77,199,224,.1); }
.payback-banner-value { display: flex; align-items: baseline; gap: 9px; white-space: nowrap; }
.payback-banner-value strong { color: #203f55; font-size: clamp(58px,6vw,88px); line-height: .82; letter-spacing: -.075em; text-shadow: 0 8px 24px rgba(65,145,179,.15); }
.payback-banner-value span { color: #41667c; font-size: 20px; font-weight: 800; }
.payback-banner p { margin: 0; color: #4d6d80; font-size: 16px; line-height: 1.6; }
.payback-banner a { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 13px 20px; border-radius: 16px; background: linear-gradient(110deg, var(--blue), var(--cyan)); box-shadow: 0 14px 32px rgba(71,135,218,.25); color: white; font-size: 14px; font-weight: 800; line-height: 1.3; text-align: center; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.payback-banner a:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(71,135,218,.32); }
@keyframes payback-shine { 0%,66% { transform: translateX(-110%); } 88%,100% { transform: translateX(110%); } }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; perspective: 1100px; }
.price-card { --rx: 0deg; --ry: 0deg; --px: 50%; --py: 15%; min-height: 510px; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow-soft); transform: rotateX(var(--rx)) rotateY(var(--ry)); transform-style: preserve-3d; transition: transform .18s ease, box-shadow .25s ease; }
.price-card::after { content: ""; position: absolute; inset: -40%; pointer-events: none; background: radial-gradient(circle at var(--px) var(--py), rgba(255,255,255,.7), transparent 18%); opacity: .55; }
.price-card-main { min-height: 545px; margin-top: -18px; border-color: rgba(255,255,255,.94); background: linear-gradient(145deg, rgba(255,255,255,.58), rgba(199,234,244,.26), rgba(221,216,255,.2)); box-shadow: 0 34px 72px rgba(63,141,173,.18), inset 0 1px 0 white; }
.price-card-inner { position: relative; z-index: 2; min-height: 100%; padding: 38px; display: flex; flex-direction: column; align-items: flex-start; transform: translateZ(18px); }
.price-card strong { display: block; margin: 46px 0 3px; color: #234156; font-size: clamp(38px, 4.2vw, 58px); line-height: 1; letter-spacing: -.055em; }
.price-card h3 { margin: 14px 0; font-size: 24px; letter-spacing: -.035em; }
.price-card p { color: var(--muted); font-size: 15px; }
.price-chip { margin-top: auto; padding: 8px 11px; border: 1px solid rgba(87,182,215,.2); border-radius: 99px; background: rgba(224,244,249,.68); color: #47839f; font-size: 12px; font-weight: 750; }
.popular { position: absolute; top: 0; left: 50%; padding: 8px 20px; border-radius: 0 0 15px 15px; background: linear-gradient(90deg, var(--blue), var(--cyan)); color: white; font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; transform: translateX(-50%); }
.price-card a:not(.button) { margin-top: auto; color: var(--cyan-deep); font-size: 14px; font-weight: 800; text-decoration: none; }
.resource-note { margin-top: 22px; padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; border-radius: 22px; box-shadow: var(--shadow-soft); }
.resource-note > div + div { padding-left: 36px; border-left: 1px solid rgba(115,167,188,.2); }
.resource-note strong { color: #34556a; font-size: 15px; }
.resource-note p { margin: 8px 0 0; color: var(--muted); font-size: 15px; }
.audit-economics { margin-top: 20px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; }
.audit-economics > div { padding: 34px; border-radius: 24px; box-shadow: var(--shadow-soft); }
.audit-economics > div > span { color: #638294; font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.audit-economics h3 { max-width: 660px; margin: 18px 0 10px; font-size: 26px; line-height: 1.1; letter-spacing: -.035em; }
.audit-economics p { color: var(--muted); font-size: 15px; }
.audit-included details { margin-top: 18px; border-top: 1px solid rgba(112,163,185,.18); }
.audit-included summary { padding-top: 17px; color: #3e728a; font-size: 15px; font-weight: 750; cursor: pointer; }
.economics-link { background: linear-gradient(145deg, rgba(222,243,249,.4), rgba(235,229,255,.28)); }
.economics-link .button { margin-top: 15px; }

/* Support */
.support-shell { padding: 54px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 52px; border-radius: var(--radius-xl); }
.support-intro h2 { font-size: clamp(36px, 3.5vw, 54px); }
.support-intro > p { color: var(--muted); }
.support-intro ul { margin: 25px 0; padding: 0; list-style: none; }
.support-intro li { position: relative; margin-bottom: 10px; padding-left: 25px; color: #526e80; font-size: 15px; }
.support-intro li::before { content: ""; position: absolute; left: 0; top: .6em; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px rgba(85,207,233,.6); }
.support-intro > a { color: var(--cyan-deep); font-size: 15px; font-weight: 800; text-decoration: none; }
.support-context-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.support-context-links a { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; padding: 0 15px; border: 1px solid rgba(66,170,192,.18); border-radius: 13px; color: var(--cyan-deep); background: rgba(255,255,255,.52); font-size: 14px; font-weight: 800; text-decoration: none; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.support-context-links a:hover { transform: translateY(-1px); border-color: rgba(66,170,192,.38); background: rgba(255,255,255,.78); }
.sla-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.sla-grid article { min-width: 0; padding: 24px; border: 1px solid rgba(255,255,255,.9); border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.46), rgba(220,240,247,.2)); box-shadow: var(--shadow-soft); backdrop-filter: blur(24px); }
.sla-grid article > div:first-child { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.sla-grid article > div:first-child span { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(145deg, rgba(91,208,232,.27), rgba(118,139,255,.2)); color: #397d9c; font-size: 16px; font-weight: 850; }
.sla-grid em { color: #738b99; font-size: 12px; font-style: normal; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.sla-grid h3 { min-height: 96px; margin: 22px 0 16px; font-size: 17px; line-height: 1.28; letter-spacing: -.02em; }
.sla-grid dl { margin: 0; }
.sla-grid dl div { padding: 12px 0; border-top: 1px solid rgba(108,160,183,.16); }
.sla-grid dt { color: var(--muted-2); font-size: 12px; }
.sla-grid dd { margin: 3px 0 0; color: #36566a; font-size: 14px; font-weight: 750; }
.sla-grid article > small { display: block; margin-top: 10px; color: #8195a2; font-size: 12px; }

/* Fit */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fit-card { min-height: 520px; padding: 42px; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow-soft); }
.fit-card::after { content: ""; position: absolute; right: -70px; top: -70px; width: 230px; height: 230px; border: 1px solid rgba(84,194,222,.18); border-radius: 50%; box-shadow: inset 0 0 50px rgba(85,207,233,.08); }
.fit-card > span { color: #48849e; font-size: 12px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.fit-card h3 { max-width: 500px; margin: 38px 0 25px; font-size: 31px; line-height: 1.08; letter-spacing: -.04em; }
.fit-card ul { margin: 0; padding: 0; list-style: none; }
.fit-card li { position: relative; margin-bottom: 13px; padding-left: 27px; color: #536f80; font-size: 15px; }
.fit-card li::before { content: ""; position: absolute; left: 0; top: .55em; width: 10px; height: 10px; border-radius: 50%; background: #66d1e7; box-shadow: 0 0 0 4px rgba(102,209,231,.12); }
.fit-card > p { margin-top: 27px; padding-top: 21px; border-top: 1px solid rgba(111,162,184,.18); color: var(--muted); font-size: 15px; }
.fit-card-no { background: linear-gradient(145deg, rgba(255,255,255,.48), rgba(228,227,255,.24)); }
.fit-card-no li::before { background: #9b9ee7; box-shadow: 0 0 0 4px rgba(155,158,231,.12); }

/* FAQ */
.faq-section { padding-top: 110px; }
.faq-layout { display: grid; grid-template-columns: .64fr 1.36fr; gap: 70px; align-items: start; }
.faq-heading { position: sticky; top: 130px; }
.faq-heading h2 { font-size: clamp(40px, 4.5vw, 66px); }
.faq-list details { border-bottom: 1px solid rgba(101,155,179,.2); }
.faq-list summary { min-height: 86px; display: grid; grid-template-columns: 1fr 34px; align-items: center; gap: 20px; color: #29485c; font-size: 19px; font-weight: 730; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 32px; height: 32px; border: 1px solid rgba(78,169,202,.2); border-radius: 50%; background: rgba(255,255,255,.48); }
.faq-list summary span::before,.faq-list summary span::after { content: ""; position: absolute; left: 9px; right: 9px; top: 15px; height: 1px; background: #4a8da8; transition: transform .25s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 780px; margin: -4px 0 25px; padding-right: 60px; color: var(--muted); font-size: 15px; }

/* Final */
.final-section { padding-bottom: 34px; }
.final-panel { min-height: 610px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; overflow: hidden; border-radius: var(--radius-xl); }
.final-copy { position: relative; z-index: 3; max-width: 790px; padding: 58px 52px; }
.final-copy h2 { max-width: 650px; font-size: clamp(40px, 4vw, 58px); }
.final-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); }
.final-art { position: absolute; inset: 0 0 0 48%; overflow: hidden; }
.final-art img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; opacity: .88; mask-image: linear-gradient(90deg, transparent, black 34%); }
.consultation-choices { max-width: 650px; margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consultation-channel { min-height: 82px; padding: 13px 14px; display: grid; grid-template-columns: 46px 1fr 24px; align-items: center; gap: 12px; border: 1px solid rgba(92,154,183,.2); border-radius: 19px; background: rgba(255,255,255,.58); color: #36576b; text-align: left; box-shadow: 0 14px 30px rgba(65,116,139,.08), inset 0 1px 0 rgba(255,255,255,.95); cursor: pointer; backdrop-filter: blur(20px); transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.consultation-channel:hover,.consultation-channel:focus-visible { transform: translateY(-3px); border-color: rgba(84,163,202,.42); background: rgba(255,255,255,.86); box-shadow: 0 18px 38px rgba(65,116,139,.14), inset 0 1px 0 white; }
.consultation-channel-max { border-color: rgba(101,139,255,.42); background: linear-gradient(135deg,rgba(255,255,255,.88),rgba(217,244,249,.78),rgba(230,224,255,.62)); box-shadow: 0 18px 42px rgba(92,128,182,.16), inset 0 1px 0 white; }
.consultation-channel img { width: 46px; height: 46px; padding: 6px; object-fit: contain; border-radius: 14px; background: rgba(255,255,255,.82); box-shadow: 0 8px 18px rgba(73,119,144,.12); }
.consultation-channel span { min-width: 0; }
.consultation-channel strong,.consultation-channel small { display: block; }
.consultation-channel strong { color: #294b60; font-size: 14px; line-height: 1.2; }
.consultation-channel small { margin-top: 4px; color: #718897; font-size: 11px; line-height: 1.25; }
.consultation-channel > i { color: #6687a0; font-size: 18px; font-style: normal; text-align: right; }
.consultation-status { min-height: 22px; margin: 12px 0 0!important; color: #587488!important; font-size: 13px; }
.consultation-form-link { width: fit-content; margin-top: 9px; display: inline-flex; align-items: center; gap: 8px; color: #49748d; font-size: 13px; font-weight: 800; text-decoration: none; }
.consultation-form-link:hover { color: #315c75; }

/* Footer */
.site-footer { padding: 52px 0 26px; border-top: 1px solid rgba(99,154,177,.16); background: rgba(244,250,251,.64); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 44px; }
.footer-brand > p { max-width: 350px; margin: 22px 0 0; color: var(--muted); font-size: 14px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-column > strong { margin-bottom: 8px; font-size: 14px; }
.footer-column a,.footer-column span,.footer-bottom { color: var(--muted); font-size: 13px; text-decoration: none; }
.footer-column a:hover { color: var(--cyan-deep); }
.footer-bottom { margin-top: 42px; padding-top: 22px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(99,154,177,.15); }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 20px; }

/* Motion */
@keyframes buttonShine { 0%,60%{transform:translateX(-45%) rotate(12deg)} 82%,100%{transform:translateX(45%) rotate(12deg)} }
@keyframes heroBreath { from{transform:scale(1)} to{transform:scale(1.035) translate3d(-.3%,.3%,0)} }
@keyframes heroScan { 0%,55%{transform:translateX(-90%)} 80%,100%{transform:translateX(90%)} }
@keyframes prismFloat { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-15px) rotate(4deg)} }
@keyframes orbitSpin { to{transform:rotate(360deg)} }
@keyframes typing { 0%,60%,100%{transform:translateY(0);opacity:.4} 30%{transform:translateY(-4px);opacity:1} }
@keyframes lineFlow { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }
@keyframes glowPulse { 0%,100%{transform:scale(.94);opacity:.7} 50%{transform:scale(1.08);opacity:1} }
@keyframes railFill { to{transform:scaleX(1)} }
@keyframes visualPulse { 0%,100%{transform:scale(.94) rotate(-2deg)} 50%{transform:scale(1.05) rotate(2deg)} }
@keyframes cardDrift { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes orbitMini { to{transform:rotate(360deg) translateX(8px) rotate(-360deg)} }
@keyframes coreFloat { 0%,100%{transform:translate(-50%,-50%) rotate(30deg) translateY(0)} 50%{transform:translate(-50%,-50%) rotate(34deg) translateY(-9px)} }
@keyframes knowledgeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes ringTurn { to{transform:rotate(360deg)} }
@keyframes corePulse { 0%,100%{transform:scale(.92);opacity:.45} 50%{transform:scale(1.08);opacity:1} }
@keyframes phaseFlow { from{transform:translateX(0)} to{transform:translateX(60px)} }
@keyframes launchDot { 0%{left:30px;opacity:0} 20%{opacity:1} 80%{opacity:1} 100%{left:calc(100% - 38px);opacity:0} }
@media (max-width: 1180px) {
  .shell { width: min(var(--shell), calc(100% - 44px)); }
  .header-inner { grid-template-columns: 210px 1fr auto; gap: 18px; }
  .site-menu { gap: 18px; }
  .hero-shell { min-height: 720px; }
  .hero-copy { width: 60%; padding-left: 42px; }
  .chrome-title { font-size: clamp(68px, 8.6vw, 106px); }
  .fact-ribbon { grid-template-columns: repeat(4, 1fr); }
  .fact-ribbon > p { grid-column: 1/-1; padding: 18px 20px 0; text-align: center; }
  .conversation-rail { grid-template-columns: repeat(3, 1fr); gap: 24px 16px; }
  .rail-line { display: none; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .handoff-panel { grid-column: 1/-1; min-height: 560px!important; }
  .handoff-panel .feature-scene { max-width: 760px; margin-inline: auto; }
  .analytics-shell,.support-shell { grid-template-columns: 1fr; }
  .analytics-copy { max-width: 850px; }
  .channels-layout { grid-template-columns: 1fr; }
  .channel-board { min-height: 460px; }
  .sla-grid article { padding: 20px; }
  .sla-grid h3 { min-height: 118px; font-size: 15px; }
}

@media (max-width: 920px) {
  body { font-size: 16px; }
  .section { padding: 78px 0; }
  .header-inner { min-height: 78px; grid-template-columns: 1fr auto auto; }
  .site-menu { position: fixed; top: 78px; left: 18px; right: 18px; padding: 22px; display: none; flex-direction: column; align-items: stretch; border: 1px solid rgba(255,255,255,.88); border-radius: 22px; background: rgba(247,252,253,.94); box-shadow: var(--shadow); backdrop-filter: blur(22px); }
  .site-menu.is-open { display: flex; }
  .site-menu a { padding: 10px 4px; font-size: 16px; }
  .menu-toggle { width: 45px; height: 45px; display: grid; place-content: center; gap: 6px; border: 1px solid rgba(110,166,190,.2); border-radius: 14px; background: rgba(255,255,255,.48); }
  .menu-toggle > span:not(.sr-only) { width: 19px; height: 2px; display: block; background: #4b6879; }
  .header-cta { min-height: 45px; }
  .hero { padding-top: 98px; }
  .hero-shell { min-height: 920px; }
  .hero-shell::after { background: linear-gradient(180deg, rgba(250,253,254,.98) 0%, rgba(249,253,254,.91) 50%, rgba(249,253,254,.2) 72%, transparent 100%); }
  .hero-media { top: 36%; }
  .hero-media video { object-position: 68% center; }
  .hero-copy { width: 100%; padding: 62px 34px 420px; }
  .chrome-title { font-size: clamp(80px, 18vw, 132px); }
  .hero-role { max-width: 620px; }
  .fact-ribbon { grid-template-columns: 1fr 1fr; }
  .fact:nth-of-type(2) { border-right: 0; }
  .fact:nth-of-type(-n+2) { border-bottom: 1px solid rgba(128,169,188,.2); }
  .loss-grid { grid-template-columns: 1fr 1fr; }
  .demo-stage { grid-template-columns: 1fr; padding: 34px; }
  .demo-phone { width: min(490px,100%); }
  .demo-outcome { grid-template-columns: 1fr 1fr; }
  .demo-outcome > div:last-of-type { grid-column: 1/-1; }
  .demo-outcome > p { grid-column: 1/-1; }
  .demo-outcome > .button { grid-column: 1/-1; justify-self: start; }
  .conversation-rail { grid-template-columns: 1fr 1fr; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid > article { min-height: auto; }
  .capability-panel { padding-bottom: 34px!important; }
  .handoff-panel { grid-column: auto; }
  .analytics-shell { padding: 38px; }
  .dash-grid { grid-template-columns: 1fr 1fr; }
  .dash-wide { grid-column: span 2; }
  .channel-board { grid-template-columns: 150px 1fr; }
  .phase-grid,.price-grid { grid-template-columns: 1fr; }
  .payback-banner { grid-template-columns: .7fr .9fr 1.7fr; }
  .payback-banner a { grid-column: 1 / -1; justify-self: stretch; }
  .phase-card,.price-card { min-height: 470px; }
  .phase-card-main,.price-card-main { margin-top: 0; transform: none; }
  .resource-note,.audit-economics { grid-template-columns: 1fr; }
  .resource-note > div + div { padding-left: 0; padding-top: 24px; border-left: 0; border-top: 1px solid rgba(115,167,188,.2); }
  .support-shell { padding: 38px; }
  .sla-grid { grid-template-columns: 1fr; }
  .sla-grid h3 { min-height: auto; }
  .fit-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 25px; }
  .faq-heading { position: static; }
  .final-panel { min-height: 850px; grid-template-columns: 1fr; align-items: start; }
  .final-copy { max-width: none; padding: 48px 40px 390px; }
  .final-art { inset: 52% 0 0 0; }
  .final-art img { object-position: 70% 30%; mask-image: linear-gradient(180deg, transparent, black 25%); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2/4; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 24px, var(--shell)); }
  .section { padding: 64px 0; }
  .header-cta { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .hero-shell { min-height: 920px; border-radius: 25px; }
  .hero-copy { padding: 42px 20px 410px; }
  .chrome-title { font-size: clamp(54px, 16vw, 84px); letter-spacing: -.09em; }
  .hero-role { margin-top: 18px; font-size: 24px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; padding-inline: 17px; }
  .hero-channel-button { min-width: 0; }
  .hero-secondary-actions { align-items: flex-start; flex-direction: column; }
  .hero-trust { gap: 10px 14px; }
  .hero-trust span { font-size: 13px; }
  .hero-media { top: 48%; }
  .hero-media video { object-position: 65% center; }
  .fact-ribbon { padding: 12px; border-radius: 22px; }
  .fact { min-height: 126px; padding: 18px 12px; }
  .fact strong { font-size: 16px; }
  .fact small { font-size: 12px; }
  .fact-ribbon > p { padding: 18px 8px 8px; }
  .section-heading h2,.analytics-copy h2,.support-intro h2,.faq-heading h2,.final-copy h2 { font-size: 36px; }
  .section-heading > p:last-child,.analytics-copy > p,.faq-heading > p:last-child { font-size: 16px; }
  .loss-grid { grid-template-columns: 1fr; }
  .loss-card { min-height: 190px; }
  .demo-route { padding: 22px; grid-template-columns: 1fr; gap: 12px; }
  .demo-route > i { width: 1px; height: 22px; margin-left: 21px; }
  .demo-stage { padding: 14px; border-radius: 24px; }
  .demo-phone { min-height: 760px; border-radius: 30px; transform: none; }
  .demo-result { padding: 22px; }
  .demo-result dl div { grid-template-columns: 1fr; gap: 4px; }
  .result-person { grid-template-columns: 44px 1fr; }
  .result-person em { grid-column: 2; justify-self: start; }
  .handoff-line { display: grid; grid-template-columns: 1fr; gap: 7px; text-align: center; }
  .handoff-line i { width: 1px; height: 20px; justify-self: center; }
  .demo-outcome { padding: 20px; grid-template-columns: 1fr; }
  .demo-outcome > div:last-of-type,.demo-outcome > p,.demo-outcome > .button { grid-column: 1; }
  .demo-outcome > .button { width: 100%; justify-content: center; }
  .conversation-rail { grid-template-columns: 1fr; }
  .conversation-step { display: grid; grid-template-columns: 120px 1fr; gap: 8px 15px; align-items: start; }
  .conversation-step > span { grid-column: 1/-1; }
  .step-visual { grid-row: span 2; height: 112px; margin: 0; }
  .conversation-step h3 { margin: 0; }
  .capability-grid > article { padding: 26px; border-radius: 23px; }
  .feature-scene { height: 260px; }
  .analytics-list { grid-template-columns: 1fr; }
  .analytics-shell { padding: 25px 14px; border-radius: 24px; }
  .dashboard { padding: 12px; }
  .dash-top { flex-direction: column; }
  .dash-grid { grid-template-columns: 1fr; }
  .dash-line,.dash-wide { grid-column: auto; }
  .dash-wide > div { grid-template-columns: 1fr 1fr; }
  .channel-board { padding: 24px; grid-template-columns: 1fr; }
  .channel-core { width: 110px; height: 110px; }
  .channel-list { grid-column: 1; }
  .channel-list > div { grid-template-columns: 1fr 1fr; }
  .channel-modes { grid-template-columns: 1fr; }
  .phase-card { min-height: 520px; padding: 25px; }
  .phase-visual { left: 25px; right: 25px; }
  .price-card-inner { padding: 30px; }
  .payback-banner { margin-bottom: 32px; padding: 26px; grid-template-columns: 1fr; gap: 16px; }
  .payback-banner-value strong { font-size: 68px; }
  .payback-banner p { font-size: 16px; }
  .payback-banner a { grid-column: auto; width: 100%; }
  .price-card strong { font-size: 42px; }
  .resource-note,.audit-economics > div { padding: 24px; }
  .support-shell { padding: 26px; border-radius: 24px; }
  .fit-card { min-height: auto; padding: 30px; }
  .fit-card h3 { font-size: 27px; }
  .faq-list summary { min-height: 76px; font-size: 17px; }
  .faq-list details p { padding-right: 0; }
  .final-panel { min-height: 980px; border-radius: 24px; }
  .final-copy { padding: 36px 24px 390px; }
  .consultation-choices { grid-template-columns: 1fr; }
  .consultation-channel { min-height: 76px; }
  .final-art { inset: 63% 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .footer-column:last-child { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
  [data-reveal] { opacity: 1; transform: none; }
  .message { opacity: 1; transform: none; }
}

/* Final readability floor for compact product-interface labels. */
.brand small,
.breadcrumbs,
.phone-top small,
.message time,
.demo-result-head b,
.result-person em,
.handoff-line,
.demo-outcome > div span,
.panel-label,
.dash-top,
.dash-card small,
.dash-time span,
.dash-wide span,
.channel-group > small,
.channel-list b,
.price-chip,
.popular,
.audit-economics > div > span,
.sla-grid em,
.sla-grid dt,
.sla-grid article > small,
.fit-card > span,
.manager-actions button,
.document-stack b,
.funnel-track span,
.funnel-track strong,
.dash-top small,
.dash-tabs button,
.funnel-summary small,
.dash-stage > div span,
.client-table-head,
.client-table strong,
.client-table span,
.client-table em,
.client-table b,
.client-profile > span,
.client-profile li,
.insight-cloud span,
.insight-board small,
.agent-metrics small,
.agent-metrics span,
.channel-brand-scene small,
.channel-flow small,
.channel-footer small { font-size: 13px; }

/* Product page v2: corporate context, sales workspace and intelligence */
.site-menu-parent { position: relative; padding-right: 18px; color: #34566b!important; font-weight: 800!important; }
.site-menu-parent::after { content: "↗"; position: absolute; right: 0; top: 50%; color: #688ca0; font-size: 11px; transform: translateY(-52%); }
.breadcrumbs { margin-bottom: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: #698394; font-size: 13px; font-weight: 700; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: #2d789b; }
.breadcrumbs span { color: #9bb0bc; }
.breadcrumbs b { color: #365b70; }
.panel-label { font-size: 13px; }

/* Upgraded product demo */
.demo-route { grid-template-columns: 1fr 44px 1fr 44px 1fr 44px 1fr; }
.demo-stage { min-height: 970px; grid-template-columns: .94fr 1.06fr; gap: 32px; }
.demo-phone { min-height: 900px; }
.conversation { padding-bottom: 62px; gap: 9px; }
.message { padding: 11px 13px 8px; }
.message p { font-size: 13.5px; line-height: 1.42; }
.demo-result { padding: 30px; }
.manager-tabs { margin-top: 20px; padding: 5px; display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; border: 1px solid rgba(118,161,183,.18); border-radius: 15px; background: rgba(222,239,246,.36); }
.manager-tabs button { min-height: 40px; padding: 8px 9px; border: 0; border-radius: 11px; background: transparent; color: #6b8290; font-size: 13px; font-weight: 800; cursor: pointer; }
.manager-tabs button.is-active { background: rgba(255,255,255,.82); color: #31566b; box-shadow: 0 8px 18px rgba(71,119,142,.1), inset 0 1px 0 white; }
.manager-panel { display: none; min-height: 220px; }
.manager-panel.is-active { display: block; animation: panelIn .38s ease both; }
.manager-panel > p { margin: 26px 0 0; color: #506c7d; font-size: 15px; line-height: 1.65; }
.manager-panel > ul { margin: 24px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.manager-panel > ul li { position: relative; padding: 13px 14px 13px 39px; border: 1px solid rgba(111,166,190,.15); border-radius: 13px; background: rgba(255,255,255,.36); color: #466375; font-size: 14px; }
.manager-panel > ul li::before { content: "✦"; position: absolute; left: 14px; top: 12px; color: #5a9bb9; }
.manager-actions { margin-top: 18px; display: grid; grid-template-columns: 1.45fr 1fr 1fr; gap: 8px; }
.manager-actions button { min-height: 58px; padding: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(107,160,184,.18); border-radius: 13px; background: rgba(255,255,255,.52); color: #3c6075; font-size: 12px; font-weight: 800; line-height: 1.25; cursor: pointer; box-shadow: inset 0 1px 0 rgba(255,255,255,.9); transition: transform .24s ease, background .24s ease, color .24s ease; }
.manager-actions button:first-child { border-color: rgba(88,173,201,.28); background: linear-gradient(135deg, rgba(102,214,235,.24), rgba(112,140,255,.16)); }
.manager-actions button:hover { transform: translateY(-2px); background: rgba(255,255,255,.86); color: #27536b; }
.manager-actions button span { font-size: 17px; }
.demo-control-row { min-height: 34px; margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.demo-control-row .demo-replay { margin-top: 0; white-space: nowrap; }
.manager-toast { color: #287d6d; font-size: 13px; font-weight: 800; opacity: 0; transform: translateY(4px); transition: opacity .25s ease, transform .25s ease; }
.manager-toast.is-visible { opacity: 1; transform: translateY(0); }

/* Sales capability bento */
.capability-section { overflow: clip; }
.capability-pulse { margin-bottom: 20px; padding: 14px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; border: 1px solid rgba(255,255,255,.8); border-radius: 20px; background: rgba(255,255,255,.32); box-shadow: var(--shadow-soft); backdrop-filter: blur(24px); }
.capability-pulse span { min-height: 58px; padding: 10px 16px; display: flex; align-items: center; gap: 10px; border-radius: 14px; background: rgba(255,255,255,.38); color: #526f80; font-size: 15px; }
.capability-pulse b { color: #2d6c8a; }
.capability-bento { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: minmax(135px,auto); gap: 18px; }
.power-card { min-height: 310px; padding: 30px; overflow: hidden; border-radius: 26px; box-shadow: var(--shadow-soft); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; }
.power-card:hover { transform: translateY(-5px); box-shadow: 0 30px 70px rgba(71,123,148,.17), inset 0 1px 0 white; }
.power-card > * { position: relative; z-index: 2; }
.power-card h3 { max-width: 480px; margin: 7px 0 10px; font-size: 27px; line-height: 1.08; letter-spacing: -.035em; }
.power-card > p:not(.panel-label) { max-width: 520px; margin: 0; color: var(--muted); font-size: 15px; }
.power-index { position: absolute; z-index: 1; right: 22px; top: 16px; color: transparent; font-size: 74px; font-weight: 300; line-height: 1; -webkit-text-stroke: 1px rgba(76,134,161,.22); }
.power-card-main { grid-column: span 7; min-height: 420px; background: linear-gradient(145deg, rgba(255,255,255,.68), rgba(204,239,247,.28), rgba(218,213,255,.25)); }
.power-card-objection { grid-column: span 5; min-height: 420px; background: linear-gradient(145deg, rgba(255,255,255,.62), rgba(240,222,255,.26), rgba(216,238,248,.22)); }
.power-card-action,.power-card-docs,.power-card-handoff { grid-column: span 4; }
.power-card-docs { min-height: 380px; padding-bottom: 156px; }
.power-card-client { grid-column: span 5; }
.power-card-funnel { grid-column: span 7; min-height: 350px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 24px; background: linear-gradient(135deg, rgba(25,42,65,.95), rgba(45,70,105,.92)); color: white; box-shadow: 0 32px 70px rgba(31,61,87,.25), inset 0 1px 0 rgba(255,255,255,.2); }
.power-card-funnel .power-index { -webkit-text-stroke-color: rgba(255,255,255,.18); }
.power-card-funnel .panel-label { color: #9ddced; }
.power-card-funnel h3 { color: white; }
.power-card-funnel p:not(.panel-label) { color: #bed0dc; }
.conversation-orbit { position: absolute; left: 28px; right: 28px; bottom: 30px; min-height: 122px; padding: 20px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.7); border-radius: 22px; background: rgba(255,255,255,.32); backdrop-filter: blur(18px); }
.conversation-orbit span,.conversation-orbit strong { flex: 1; min-height: 54px; padding: 10px; display: grid; place-items: center; border-radius: 15px; background: rgba(255,255,255,.7); color: #4b6e81; font-size: 13px; text-align: center; box-shadow: 0 10px 20px rgba(72,118,141,.08); }
.conversation-orbit strong { background: linear-gradient(135deg,#6a90ff,#59d0e8); color: white; }
.conversation-orbit i { width: 17px; height: 1px; position: relative; background: #72bdd5; }
.conversation-orbit i::after { content: ""; position: absolute; right: -1px; top: -3px; border: 3px solid transparent; border-left-color: #72bdd5; }
.objection-visual { position: absolute; left: 30px; right: 30px; bottom: 32px; min-height: 126px; display: grid; grid-template-columns: 1fr 44px 1.25fr; align-items: center; gap: 10px; }
.objection-visual span,.objection-visual strong { min-height: 96px; padding: 15px; display: grid; place-items: center; border-radius: 22px; text-align: center; }
.objection-visual span { border: 1px solid rgba(144,108,195,.2); background: rgba(238,225,255,.55); color: #77569f; font-size: 19px; }
.objection-visual i { color: #7595a8; font-size: 28px; font-style: normal; text-align: center; animation: objectionFlow 2.6s ease-in-out infinite; }
.objection-visual strong { background: linear-gradient(145deg,rgba(255,255,255,.84),rgba(209,243,248,.62)); color: #3d687d; font-size: 15px; box-shadow: 0 16px 30px rgba(82,130,153,.1); }
.action-calendar { position: absolute; left: 28px; right: 28px; bottom: 26px; min-height: 80px; padding: 15px; display: grid; grid-template-columns: 68px 1fr 40px; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.8); border-radius: 18px; background: rgba(255,255,255,.48); }
.action-calendar span { padding: 9px; border-radius: 11px; background: #edf8fa; color: #3e7893; font-weight: 850; text-align: center; }
.action-calendar strong { color: #426174; font-size: 14px; }
.action-calendar i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: #74dbc8; color: white; font-style: normal; box-shadow: 0 0 0 7px rgba(116,219,200,.12); }
.document-stack { position: absolute; left: 28px; right: 28px; bottom: 24px; height: 100px; }
.document-stack > i { position: absolute; width: 58%; height: 78px; left: 18%; border: 1px solid rgba(120,161,180,.2); border-radius: 16px; background: rgba(255,255,255,.45); }
.document-stack > i:first-child { top: -12px; transform: rotate(-5deg); }
.document-stack > i:nth-child(2) { top: -6px; left: 22%; transform: rotate(4deg); }
.document-stack div { position: absolute; z-index: 2; inset: 0; padding: 19px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 1px solid rgba(255,255,255,.88); border-radius: 17px; background: rgba(255,255,255,.76); box-shadow: 0 15px 30px rgba(72,118,141,.12); }
.document-stack span { color: #365b71; font-weight: 850; }
.document-stack b { padding: 8px 10px; border-radius: 99px; background: rgba(112,140,255,.12); color: #5972bd; font-size: 12px; }
.heat-meter { position: absolute; left: 30px; right: 30px; bottom: 30px; }
.heat-meter span { color: #6d8493; font-size: 13px; }
.heat-meter i { height: 12px; margin: 9px 0; display: block; overflow: hidden; border-radius: 99px; background: rgba(104,154,177,.14); }
.heat-meter i b { width: 86%; height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg,#70d8ea,#7288ff,#b278f0); animation: heatPulse 3s ease-in-out infinite; }
.heat-meter strong { color: #596fb3; font-size: 14px; }
.client-signal { position: absolute; left: 30px; right: 30px; bottom: 26px; display: grid; grid-template-columns: 84px 1fr; align-items: center; gap: 10px 14px; }
.client-signal span { color: #617b8b; font-size: 13px; }
.client-signal i { height: 9px; overflow: hidden; border-radius: 99px; background: rgba(104,154,177,.14); }
.client-signal i::after { content: ""; width: var(--signal); height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg,#6ed7e9,#7e8fff); }
.funnel-track { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.funnel-track span,.funnel-track strong { min-height: 51px; padding: 10px 13px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(255,255,255,.07); color: #d8e4eb; font-size: 12px; text-align: center; backdrop-filter: blur(16px); }
.funnel-track strong { background: linear-gradient(135deg,rgba(102,143,255,.75),rgba(78,203,225,.72)); color: white; }
.funnel-track i { width: 13px; height: 1px; background: rgba(137,220,235,.65); }
.capability-foundation { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.capability-foundation article { min-height: 330px; padding: 28px; display: grid; grid-template-columns: 1fr 210px; align-items: center; gap: 20px; overflow: hidden; border-radius: 26px; }
.capability-foundation h3 { margin: 7px 0 12px; font-size: 26px; line-height: 1.1; letter-spacing: -.035em; }
.capability-foundation p:not(.panel-label) { margin: 0; color: var(--muted); font-size: 15px; }
.capability-foundation .feature-scene { width: 210px; height: 250px; margin: 0; }

/* Executive intelligence dashboard */
.analytics-shell { grid-template-columns: .68fr 1.32fr; gap: 42px; align-items: stretch; background: linear-gradient(145deg,rgba(255,255,255,.62),rgba(230,240,255,.25),rgba(221,247,247,.3)); }
.analytics-copy { align-self: center; }
.analytics-copy h2 { font-size: clamp(38px,4vw,58px); }
.analytics-list { grid-template-columns: 1fr; }
.analytics-list li { font-size: 15px; }
.analytics-callout { margin-top: 24px; padding: 20px; border-left: 3px solid #747df3; border-radius: 0 16px 16px 0; background: linear-gradient(90deg,rgba(112,124,255,.09),rgba(255,255,255,.35)); }
.analytics-callout strong { color: #3a526d; font-size: 16px; }
.analytics-callout p { margin: 7px 0 0; color: #637786; font-size: 14px; }
.inline-context-link { display: inline; color: #4558c9; font-weight: 800; text-decoration: underline; text-decoration-color: rgba(69,88,201,.25); text-underline-offset: 3px; }
.inline-context-link:hover { text-decoration-color: currentColor; }
.dashboard-pro { min-height: 620px; padding: 18px; background: linear-gradient(150deg,rgba(247,250,255,.97),rgba(223,233,249,.78)); }
.dashboard-pro .dash-top { align-items: center; }
.dash-top > div { display: flex; flex-direction: column; gap: 2px; }
.dash-top strong { color: #31465d; font-size: 14px; }
.dash-top small { color: #7c8d9c; font-size: 12px; }
.dash-tabs { margin-top: 16px; padding: 5px; display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; border: 1px solid rgba(112,134,170,.15); border-radius: 14px; background: rgba(222,229,242,.52); }
.dash-tabs button { min-height: 40px; padding: 8px 9px; border: 0; border-radius: 10px; background: transparent; color: #66788c; font-size: 12px; font-weight: 800; cursor: pointer; }
.dash-tabs button.is-active { background: rgba(255,255,255,.9); color: #344f6d; box-shadow: 0 7px 18px rgba(51,74,111,.1); }
.dash-screen { display: none; min-height: 510px; padding-top: 14px; }
.dash-screen.is-active { display: block; animation: panelIn .42s ease both; }
.funnel-summary { min-height: 104px; padding: 14px; display: grid; grid-template-columns: 1fr 30px 1.2fr 30px 1.1fr; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.82); border-radius: 17px; background: rgba(255,255,255,.54); }
.funnel-summary div { display: flex; flex-direction: column; gap: 3px; }
.funnel-summary small { color: #8491a1; font-size: 12px; text-transform: uppercase; }
.funnel-summary strong { color: #405671; font-size: 13px; }
.funnel-summary > i { height: 1px; background: linear-gradient(90deg,transparent,#7387ef,transparent); }
.dashboard-pro .dash-grid { grid-template-columns: 1.15fr .85fr; }
.dashboard-pro .dash-line { grid-column: auto; }
.dashboard-pro .dash-wide { grid-column: 1/-1; }
.dash-stage > div { margin-top: 9px; display: grid; grid-template-columns: 82px 1fr; align-items: center; gap: 8px; }
.dash-stage > div span { color: #738296; font-size: 12px; }
.dash-stage > div i { height: 8px; overflow: hidden; border-radius: 99px; background: rgba(109,128,168,.12); }
.dash-stage > div i::after { content: ""; width: var(--bar); height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg,#7b86ef,#65cfdf); transform-origin: left; animation: dashGrow 1.2s ease both; }
.client-table { overflow: hidden; border: 1px solid rgba(255,255,255,.86); border-radius: 18px; background: rgba(255,255,255,.56); }
.client-table > div { min-height: 66px; padding: 12px 15px; display: grid; grid-template-columns: 1.1fr 1fr .8fr 1fr; align-items: center; gap: 10px; border-bottom: 1px solid rgba(112,134,170,.12); }
.client-table > div:last-child { border-bottom: 0; }
.client-table-head { min-height: 42px!important; background: rgba(225,231,244,.55); color: #8491a1; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.client-table strong,.client-table span,.client-table em,.client-table b { min-width: 0; font-size: 12px; font-style: normal; }
.client-table strong { color: #3d526c; }
.client-table span { color: #687b8f; }
.client-table em { justify-self: start; padding: 6px 8px; border-radius: 9px; background: rgba(113,128,236,.1); color: #606fc0; }
.client-table b { color: #438274; }
.client-profile { margin-top: 12px; padding: 20px; border: 1px solid rgba(255,255,255,.86); border-radius: 18px; background: linear-gradient(135deg,rgba(255,255,255,.62),rgba(226,245,247,.45)); }
.client-profile > span { color: #78899a; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.client-profile h3 { margin: 7px 0 12px; color: #405670; font-size: 19px; }
.client-profile ul { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; list-style: none; }
.client-profile li { padding: 10px; border-radius: 11px; background: rgba(255,255,255,.56); color: #697b8c; font-size: 12px; }
.insight-cloud { min-height: 230px; padding: 24px; display: flex; flex-wrap: wrap; align-content: center; justify-content: center; gap: 10px; border: 1px solid rgba(255,255,255,.84); border-radius: 19px; background: radial-gradient(circle at center,rgba(130,120,255,.14),transparent 57%),rgba(255,255,255,.48); }
.insight-cloud span { padding: 11px 14px; border: 1px solid rgba(115,131,183,.15); border-radius: 99px; background: rgba(255,255,255,.7); color: #64758a; font-size: 12px; box-shadow: 0 8px 18px rgba(61,83,116,.07); animation: insightFloat 4s ease-in-out infinite; }
.insight-cloud span:nth-child(even) { animation-delay: -1.8s; }
.insight-cloud .is-main { padding: 16px 22px; background: linear-gradient(135deg,#7a86ef,#6ed1df); color: white; font-size: 16px; }
.insight-board { margin-top: 12px; display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.insight-board div { min-height: 150px; padding: 17px; border: 1px solid rgba(255,255,255,.85); border-radius: 16px; background: rgba(255,255,255,.52); }
.insight-board small { color: #8392a2; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.insight-board strong { display: block; margin-top: 12px; color: #405670; font-size: 14px; line-height: 1.35; }
.agent-radar { position: relative; width: 250px; height: 250px; margin: 8px auto 18px; display: grid; place-items: center; border: 1px solid rgba(109,129,178,.15); border-radius: 50%; background: repeating-radial-gradient(circle,rgba(117,136,184,.11) 0 1px,transparent 1px 42px),linear-gradient(145deg,rgba(255,255,255,.64),rgba(220,232,247,.46)); }
.radar-core { position: relative; z-index: 2; width: 80px; height: 80px; display: grid; place-items: center; border-radius: 26px; background: linear-gradient(145deg,#7785ef,#65d0e0); box-shadow: 0 15px 30px rgba(92,123,187,.26); }
.radar-core span { color: white; font-size: 34px; font-weight: 850; }
.agent-radar > i { position: absolute; width: 6px; height: 6px; left: 50%; top: 50%; border-radius: 50%; background: #6ebdcb; box-shadow: 0 0 10px #6ebdcb; transform: rotate(var(--ray)) translateX(90px); }
.agent-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.agent-metrics article { min-height: 112px; padding: 13px; border: 1px solid rgba(255,255,255,.86); border-radius: 15px; background: rgba(255,255,255,.5); }
.agent-metrics small { color: #8794a4; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.agent-metrics strong { display: block; margin-top: 8px; color: #405670; font-size: 14px; }
.agent-metrics span { color: #718194; font-size: 12px; }

/* Multi-channel animated scene */
.channels-layout { grid-template-columns: .66fr 1.34fr; }
.channel-switcher { min-width: 0; overflow: hidden; border-radius: 34px; background: linear-gradient(145deg,rgba(255,255,255,.56),rgba(226,240,247,.24)); transition: background .5s ease; }
.channel-tabs { padding: 14px; display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; border-bottom: 1px solid rgba(122,164,183,.16); background: rgba(255,255,255,.32); }
.channel-tabs button { min-width: 0; min-height: 60px; padding: 8px; display: flex; align-items: center; justify-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.75); border-radius: 15px; background: rgba(255,255,255,.34); color: #637b8c; font-size: 13px; font-weight: 800; cursor: pointer; transition: transform .25s ease, background .35s ease, color .35s ease, box-shadow .35s ease; }
.channel-tabs button:hover { transform: translateY(-2px); }
.channel-tabs button.is-active { background: color-mix(in srgb,var(--channel-color) 12%,white 88%); color: color-mix(in srgb,var(--channel-color) 75%,#213449 25%); box-shadow: inset 0 1px 0 white,0 12px 26px color-mix(in srgb,var(--channel-color) 16%,transparent); }
.channel-tabs img { width: 29px; height: 29px; object-fit: contain; }
.avito-logo { width: 30px; height: 30px; position: relative; flex: 0 0 auto; }
.avito-logo i { position: absolute; width: 8px; height: 8px; border-radius: 50%; }
.avito-logo i:nth-child(1) { left: 1px; top: 1px; background: #00aaff; }
.avito-logo i:nth-child(2) { right: 1px; top: 1px; background: #ff6163; }
.avito-logo i:nth-child(3) { left: 1px; bottom: 1px; background: #97cf26; }
.avito-logo i:nth-child(4) { right: 1px; bottom: 1px; background: #a169f7; }
.site-chat-logo { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: #16212e; color: #7be1d1; font-size: 20px; }
.vk-logo { width: 30px; height: 30px; display: grid; place-items: center; color: #0077ff; }
.vk-logo svg { width: 100%; height: 100%; fill: currentColor; }
.channel-stage { min-height: 430px; position: relative; padding: 36px; overflow: hidden; background: radial-gradient(circle at 18% 34%,color-mix(in srgb,var(--channel-color-soft) 34%,transparent),transparent 30%),linear-gradient(135deg,color-mix(in srgb,var(--channel-color) 54%,#101e32 46%),color-mix(in srgb,var(--channel-color-soft) 30%,#14263a 70%)); transition: background .7s ease; }
.channel-stage::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(125deg,rgba(255,255,255,.13),transparent 31% 70%,rgba(255,255,255,.08)); }
.channel-ambient i { position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; animation: channelOrbit 8s linear infinite; }
.channel-ambient i:first-child { width: 310px; height: 310px; left: -90px; top: -90px; }
.channel-ambient i:nth-child(2) { width: 220px; height: 220px; right: -60px; bottom: -50px; animation-direction: reverse; }
.channel-ambient i:nth-child(3) { width: 130px; height: 130px; left: 47%; top: 9%; animation-duration: 5s; }
.channel-brand-scene { position: relative; z-index: 2; max-width: 560px; display: grid; grid-template-columns: 116px 1fr; align-items: center; gap: 24px; color: white; }
.channel-icon-large { width: 116px; height: 116px; padding: 20px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 34px; background: rgba(255,255,255,.22); box-shadow: 0 24px 60px rgba(18,38,67,.2),inset 0 1px 0 rgba(255,255,255,.8); backdrop-filter: blur(18px); }
.channel-icon-large img { width: 100%; height: 100%; object-fit: contain; }
.channel-icon-large .avito-logo { width: 74px; height: 74px; }
.channel-icon-large .avito-logo i { width: 22px; height: 22px; }
.channel-icon-large .site-chat-logo { width: 74px; height: 74px; border-radius: 22px; font-size: 48px; }
.channel-icon-large .vk-logo { width: 74px; height: 74px; border-radius: 22px; font-size: 26px; }
.channel-brand-scene small { display: block; color: rgba(255,255,255,.82); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-shadow: 0 1px 12px rgba(6,18,31,.55); text-transform: uppercase; }
.channel-brand-scene strong { display: block; margin-top: 4px; color: white; font-size: 42px; line-height: 1; letter-spacing: -.04em; text-shadow: 0 2px 18px rgba(6,18,31,.48); }
.channel-brand-scene p { margin: 14px 0 0; padding: 13px 15px; border: 1px solid rgba(255,255,255,.38); border-radius: 17px 17px 17px 4px; background: rgba(10,24,42,.48); color: white; font-size: 14px; box-shadow: inset 0 1px 0 rgba(255,255,255,.12); text-shadow: 0 1px 10px rgba(5,17,30,.42); backdrop-filter: blur(16px); }
.channel-flow { position: absolute; z-index: 2; left: 36px; right: 36px; bottom: 34px; display: grid; grid-template-columns: 1fr 34px 1.05fr 34px 1.25fr; align-items: center; gap: 8px; }
.channel-flow span { min-height: 92px; padding: 13px; display: grid; grid-template-columns: 36px 1fr; align-content: center; align-items: center; gap: 2px 10px; border: 1px solid rgba(255,255,255,.42); border-radius: 18px; background: rgba(8,22,39,.38); color: white; box-shadow: inset 0 1px 0 rgba(255,255,255,.12),0 14px 30px rgba(5,18,32,.12); backdrop-filter: blur(18px); }
.channel-flow span > i { grid-row: 1/3; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.24); color: white; font-style: normal; }
.channel-flow b { font-size: 14px; text-shadow: 0 1px 9px rgba(5,17,30,.42); }
.channel-flow small { color: rgba(255,255,255,.82); font-size: 12px; text-shadow: 0 1px 9px rgba(5,17,30,.42); }
.channel-flow em { height: 1px; position: relative; overflow: hidden; background: rgba(255,255,255,.25); }
.channel-flow em::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,transparent,white,transparent); animation: channelLine 2.4s ease-in-out infinite; }
.channel-footer { padding: 18px; display: grid; grid-template-columns: .7fr .7fr 1.6fr; gap: 10px; }
.channel-footer > div,.channel-footer > p { margin: 0; min-height: 84px; padding: 15px; border: 1px solid rgba(255,255,255,.84); border-radius: 15px; background: rgba(255,255,255,.38); }
.channel-footer small { display: block; color: #788f9e; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.channel-footer strong { display: block; margin-top: 6px; color: #3d6074; font-size: 14px; }
.channel-footer > p { color: #607b8c; font-size: 13px; }

@keyframes panelIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }
@keyframes objectionFlow { 0%,100%{transform:translateX(-3px);opacity:.55} 50%{transform:translateX(4px);opacity:1} }
@keyframes heatPulse { 0%,100%{filter:saturate(.9);transform:scaleX(.95);transform-origin:left} 50%{filter:saturate(1.3);transform:scaleX(1)} }
@keyframes dashGrow { from{transform:scaleX(0)} to{transform:scaleX(1)} }
@keyframes insightFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
@keyframes channelOrbit { to{transform:rotate(360deg)} }
@keyframes channelLine { 0%{transform:translateX(-110%)} 65%,100%{transform:translateX(110%)} }

@media (max-width: 1180px) {
  .demo-stage { grid-template-columns: 1fr; }
  .demo-phone { min-height: 890px; }
  .manager-actions { grid-template-columns: 1fr 1fr 1fr; }
  .power-card-main,.power-card-objection { grid-column: span 6; }
  .power-card-action,.power-card-docs { grid-column: span 6; }
  .power-card-handoff,.power-card-client { grid-column: span 6; }
  .power-card-funnel { grid-column: 1/-1; }
  .capability-foundation article { grid-template-columns: 1fr 180px; }
  .capability-foundation .feature-scene { width: 180px; height: 220px; }
  .channels-layout { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .breadcrumbs { margin-bottom: 16px; }
  .demo-route { grid-template-columns: 1fr; }
  .demo-route > i { width: 1px; height: 22px; margin-left: 21px; }
  .capability-pulse { grid-template-columns: 1fr; }
  .power-card { grid-column: 1/-1!important; }
  .power-card-funnel { grid-template-columns: 1fr; }
  .capability-foundation { grid-template-columns: 1fr; }
  .analytics-shell { grid-template-columns: 1fr; }
  .dashboard-pro { min-height: 640px; }
  .channel-tabs { overflow-x: auto; grid-template-columns: repeat(5,minmax(128px,1fr)); scrollbar-width: thin; }
  .channel-footer { grid-template-columns: 1fr 1fr; }
  .channel-footer > p { grid-column: 1/-1; }
}

@media (max-width: 640px) {
  .breadcrumbs { font-size: 12px; }
  .demo-phone { min-height: 900px; padding: 12px; }
  .message p { font-size: 13px; }
  .manager-tabs { grid-template-columns: 1fr; }
  .manager-tabs button { min-height: 44px; }
  .manager-panel { min-height: 0; }
  .manager-actions { grid-template-columns: 1fr; }
  .manager-actions button { justify-content: flex-start; padding-inline: 15px; }
  .demo-control-row { align-items: flex-start; flex-direction: column; }
  .capability-pulse span { font-size: 14px; }
  .power-card { min-height: 360px; padding: 24px; }
  .power-card-docs { min-height: 390px; padding-bottom: 146px; }
  .power-card h3 { font-size: 25px; }
  .power-card-main,.power-card-objection { min-height: 470px; }
  .conversation-orbit { left: 20px; right: 20px; bottom: 22px; padding: 12px; flex-wrap: wrap; }
  .conversation-orbit span,.conversation-orbit strong { flex: 1 1 42%; }
  .conversation-orbit i { display: none; }
  .objection-visual { left: 22px; right: 22px; grid-template-columns: 1fr; }
  .objection-visual span,.objection-visual strong { min-height: 70px; }
  .objection-visual i { transform: rotate(90deg); }
  .power-card-funnel { min-height: 540px; }
  .funnel-track { align-items: stretch; flex-direction: column; }
  .funnel-track i { width: 1px; height: 10px; align-self: center; }
  .capability-foundation article { min-height: auto; padding: 24px; grid-template-columns: 1fr; }
  .capability-foundation .feature-scene { width: 100%; height: 230px; }
  .dash-tabs { overflow-x: auto; grid-template-columns: repeat(4,minmax(124px,1fr)); }
  .funnel-summary { grid-template-columns: 1fr; }
  .funnel-summary > i { width: 1px; height: 16px; justify-self: center; }
  .dashboard-pro .dash-grid { grid-template-columns: 1fr; }
  .dashboard-pro .dash-wide { grid-column: auto; }
  .client-table { overflow-x: auto; }
  .client-table > div { min-width: 620px; }
  .client-profile ul { grid-template-columns: 1fr; }
  .insight-board { grid-template-columns: 1fr; }
  .agent-radar { width: 220px; height: 220px; }
  .agent-radar > i { transform: rotate(var(--ray)) translateX(76px); }
  .agent-metrics { grid-template-columns: 1fr 1fr; }
  .channel-stage { min-height: 610px; padding: 24px; }
  .channel-brand-scene { grid-template-columns: 82px 1fr; gap: 15px; }
  .channel-icon-large { width: 82px; height: 82px; padding: 14px; border-radius: 24px; }
  .channel-brand-scene strong { font-size: 30px; }
  .channel-flow { left: 24px; right: 24px; bottom: 26px; grid-template-columns: 1fr; }
  .channel-flow em { width: 1px; height: 18px; justify-self: center; }
  .channel-flow span { min-height: 76px; }
  .channel-footer { grid-template-columns: 1fr; }
  .channel-footer > p { grid-column: auto; }
}

/* Keep the enhanced dashboard and channel scenes readable as well. */
.manager-actions button,
.document-stack b,
.funnel-track span,
.funnel-track strong,
.dash-top small,
.dash-tabs button,
.funnel-summary small,
.dash-stage > div span,
.client-table-head,
.client-table strong,
.client-table span,
.client-table em,
.client-table b,
.client-profile > span,
.client-profile li,
.insight-cloud span,
.insight-board small,
.agent-metrics small,
.agent-metrics span,
.channel-brand-scene small,
.channel-flow small,
.channel-footer small { font-size: 13px; }

@media (max-width: 640px) {
  .breadcrumbs { font-size: 13px; }
  .eyebrow { font-size: 13px; }
  .message p { font-size: 14px; }
}
